blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
201
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
85
| license_type
stringclasses 2
values | repo_name
stringlengths 7
100
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 260
values | visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 11.4k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 17
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 80
values | src_encoding
stringclasses 28
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 8
9.86M
| extension
stringclasses 52
values | content
stringlengths 8
9.86M
| authors
sequencelengths 1
1
| author
stringlengths 0
119
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
184803c04e85f717e7d34dfcd760eb96f9fbf17e | a8e3289de7cd2bd7b879e4a2745670ad47569a89 | /interview-preparation-kit/stacks-queues/largestRectangle.cpp | 965d187589e11d90f6fd0450c1645db037277a1d | [] | no_license | filippos47/HackerRank | 5a6a107dabc2871e45a233229cdbc0a96d1128cd | 7ec4831a50c2a244affb95a6da00bc79b3158ced | refs/heads/master | 2023-04-15T22:07:53.820634 | 2020-04-05T20:56:57 | 2020-04-05T20:56:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,056 | cpp | #include <bits/stdc++.h>
using namespace std;
vector<string> split_string(string);
// Complete the largestRectangle function below.
long largestRectangle(vector<int> h) {
long res = 0, temp;
int left, right, n = h.size();
for(int i = 0; i < n; i++) {
left = i - 1;
right = i + 1;
while(left > -1) {
if(h[left] >= h[i]) {
left--;
}
else {
break;
}
}
while(right < n) {
if(h[right] >= h[i]) {
right++;
}
else {
break;
}
}
left++; right--;
temp = (right - left + 1) * h[i];
if(temp > res) {
res = temp;
}
}
return res;
}
int main()
{
ofstream fout(getenv("OUTPUT_PATH"));
int n;
cin >> n;
cin.ignore(numeric_limits<streamsize>::max(), '\n');
string h_temp_temp;
getline(cin, h_temp_temp);
vector<string> h_temp = split_string(h_temp_temp);
vector<int> h(n);
for (int i = 0; i < n; i++) {
int h_item = stoi(h_temp[i]);
h[i] = h_item;
}
long result = largestRectangle(h);
fout << result << "\n";
fout.close();
return 0;
}
vector<string> split_string(string input_string) {
string::iterator new_end = unique(input_string.begin(), input_string.end(), [] (const char &x, const char &y) {
return x == y and x == ' ';
});
input_string.erase(new_end, input_string.end());
while (input_string[input_string.length() - 1] == ' ') {
input_string.pop_back();
}
vector<string> splits;
char delimiter = ' ';
size_t i = 0;
size_t pos = input_string.find(delimiter);
while (pos != string::npos) {
splits.push_back(input_string.substr(i, pos - i));
i = pos + 1;
pos = input_string.find(delimiter, i);
}
splits.push_back(input_string.substr(i, min(pos, input_string.length()) - i + 1));
return splits;
}
| [
"[email protected]"
] | |
fc1b472961060d26f1e43e08e6b15dd395fc95b8 | 03de887d30e47b43a2ffb71f5c5ff97f24bb77e7 | /21951127王瀚林/project04/HW/Camera.h | adbe4454c094b363d8fb8cff73e969ef19176cde | [] | no_license | BenHu556/graphics2019 | 67e922b8b5181a98ea8141c37dd400bb66dd663f | abf93086bad3a418d5de11609df6ed67404931e4 | refs/heads/master | 2022-04-10T13:34:28.650445 | 2020-02-15T07:33:12 | 2020-02-15T07:33:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 621 | h | #pragma once
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
class Camera
{
public:
Camera(glm::vec3 position, glm::vec3 target, glm::vec3 worldup);
Camera(glm::vec3 position, float pitch, float yaw, glm::vec3 worldup);
~Camera();
glm::vec3 Position;
glm::vec3 Forward;
glm::vec3 Right;
glm::vec3 Up;
glm::vec3 WorldUp;
float Yaw;
float Pitch;
float SenseX = 0.001f;
float SenseY = 0.001f;
bool constrainPitch = true;
float speedZ = 0;
glm::mat4 GetViewMatrix();
void ProcessMouseMovement(float deltaX, float deltaY);
void UpdateCameraPos();
private:
void UpdateCameraVectors();
};
| [
"[email protected]"
] | |
45650822b42137998a783f3cb0d214a964c4664d | bc287c241c7778ec33866af38f4f7919d591477e | /teensy3/yield.cpp | 8f455fcd68e3ad0d7474f8c832a1530cab1c17a5 | [] | no_license | tomsmalley/strobe | 11ef147664775b8b78901bb5b75c76cb1b688802 | f65a0158c29370bda5164facf8b8b967a2971d23 | refs/heads/master | 2020-12-25T14:12:40.883073 | 2016-07-06T16:27:50 | 2016-07-06T16:27:50 | 60,713,867 | 22 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,041 | cpp | /* Teensyduino Core Library
* http://www.pjrc.com/teensy/
* Copyright (c) 2014 PJRC.COM, LLC.
*
* 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:
*
* 1. The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* 2. If the Software is incorporated into a build system that allows
* selection among a list of target devices, then similar target
* devices manufactured by PJRC.COM must be included in the list of
* target devices and selectable in the same manner.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "core_pins.h"
#include "HardwareSerial.h"
#include "usb_serial.h"
#include "usb_seremu.h"
void yield(void) __attribute__ ((weak));
void yield(void)
{
static uint8_t running=0;
if (running) return; // TODO: does this need to be atomic?
running = 1;
if (Serial.available()) serialEvent();
if (Serial1.available()) serialEvent1();
if (Serial2.available()) serialEvent2();
if (Serial3.available()) serialEvent3();
#ifdef HAS_KINETISK_UART3
if (Serial4.available()) serialEvent4();
#endif
#ifdef HAS_KINETISK_UART4
if (Serial5.available()) serialEvent5();
#endif
running = 0;
};
| [
"[email protected]"
] | |
6ff265f9ec157bc8bba306ed9ef32229515ede74 | fcf64d18154ed142371db8cb058a82049c23f78f | /WorkZix/3rdparty/ibeosdk4_5_1/ibeosdk/datablocks/snippets/ReferencePlane.hpp | 78d6f8794a91dd973d95c5b4d92be468faeeae2a | [] | no_license | peterdu88/WorkZix | fc1408b59dc21a1aa16ce3a8f5eb0ff0b1b72827 | 9223999b95a24fc1134f808853a97fce7f27812a | refs/heads/master | 2022-03-13T04:32:11.654753 | 2018-09-24T16:42:54 | 2018-09-24T16:42:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,264 | hpp |
//======================================================================
/*! \file ReferencePlane.hpp
*\verbatim
* ------------------------------------------
* (C) 2016 Ibeo Automotive Systems GmbH, Hamburg, Germany
* ------------------------------------------
*
* Created on: Mar 15, 2016
* by: Kristian Bischoff
*\endverbatim
*///-------------------------------------------------------------------
//======================================================================
#ifndef REFERENCEPLANE_HPP_SEEN
#define REFERENCEPLANE_HPP_SEEN
//======================================================================
#include <ibeosdk/misc/WinCompatibility.hpp>
#include <ibeosdk/datablocks/snippets/Snippet.hpp>
#include <ibeosdk/datablocks/snippets/GpsPoint.hpp>
#include <ibeosdk/datablocks/VehicleStateBasicEcu2808.hpp>
#include <ibeosdk/RotationMatrix3dFloat.hpp>
//======================================================================
namespace ibeosdk {
//======================================================================
class ReferencePlane: public Snippet {
public:
ReferencePlane()
: m_gpsPoint(),
m_yaw(0.f),
m_pitch(0.f),
m_roll(0.f),
m_rotationMatrixIsValid(false),
m_rotationMatrix()
{}
ReferencePlane(const GpsPoint& point,
const float yaw = 0.f,
const float pitch = 0.f,
const float roll = 0.f)
: m_gpsPoint(point),
m_yaw(yaw),
m_pitch(pitch),
m_roll(roll),
m_rotationMatrixIsValid(false),
m_rotationMatrix()
{}
ReferencePlane(const VehicleStateBasicEcu2808& vsb);
public:
bool operator==(const ReferencePlane& other) const;
bool operator!=(const ReferencePlane& other) const;
public:
virtual std::streamsize getSerializedSize() const;
virtual bool deserialize(std::istream& is);
virtual bool serialize(std::ostream& os) const;
public:
GpsPoint& gpsPoint() { return m_gpsPoint; }
const GpsPoint& getGpsPoint() const { return m_gpsPoint; }
void setGpsPoint(const GpsPoint& point) { m_gpsPoint = point; }
float getYaw() const { return m_yaw; }
void setYaw(const float yaw) { m_rotationMatrixIsValid = false; m_yaw = yaw; }
float getPitch() const { return m_pitch; }
void setPitch(const float pitch) { m_rotationMatrixIsValid = false; m_pitch = pitch; }
float getRoll() const { return m_roll; }
void setRoll(const float roll) { m_rotationMatrixIsValid = false; m_roll = roll; }
const RotationMatrix3dFloat& getRotationMatrix() const
{
if (!m_rotationMatrixIsValid) {
m_rotationMatrix.setToUnity();
m_rotationMatrix.rotMatZ(m_yaw);
m_rotationMatrix.rotMatY(m_pitch);
m_rotationMatrix.rotMatX(m_roll);
}
return m_rotationMatrix;
}
//========================================
private:
GpsPoint m_gpsPoint;
float m_yaw;
float m_pitch;
float m_roll;
private: // rotation matrix cache
bool m_rotationMatrixIsValid;
mutable RotationMatrix3dFloat m_rotationMatrix;
}; // ReferencePlane
//======================================================================
} // namespace ibeosdk
//======================================================================
#endif // REFERENCEPLANE_HPP_SEEN
//======================================================================
| [
"[email protected]"
] | |
0fcfbb4c183eee219aa46d4d8e3c127e107d97f9 | abbb1e132b3d339ba2173129085f252e2f3311dc | /inference-engine/src/transformations/src/transformations/softplus_to_mish_fusion.cpp | ead17a3a8dcc95d19342dc9de440a837d3bab938 | [
"Apache-2.0"
] | permissive | 0xF6/openvino | 56cce18f1eb448e25053fd364bcbc1da9f34debc | 2e6c95f389b195f6d3ff8597147d1f817433cfb3 | refs/heads/master | 2022-12-24T02:49:56.686062 | 2020-09-22T16:05:34 | 2020-09-22T16:05:34 | 297,745,570 | 2 | 0 | Apache-2.0 | 2020-09-22T19:03:06 | 2020-09-22T19:03:04 | null | UTF-8 | C++ | false | false | 1,596 | cpp | // Copyright (C) 2018-2020 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include "transformations/softplus_to_mish_fusion.hpp"
#include <memory>
#include <vector>
#include <ngraph/opsets/opset4.hpp>
#include <ngraph/rt_info.hpp>
#include <ngraph/pattern/op/wrap_type.hpp>
NGRAPH_RTTI_DEFINITION(ngraph::pass::SoftPlusToMishFusion, "SoftPlusToMishFusion", 0);
ngraph::pass::SoftPlusToMishFusion::SoftPlusToMishFusion() {
auto input = ngraph::pattern::any_input();
auto softplus = ngraph::pattern::wrap_type<ngraph::opset4::SoftPlus>({input}, pattern::consumers_count(1));
auto tanh = ngraph::pattern::wrap_type<ngraph::opset4::Tanh>({softplus}, pattern::consumers_count(1));
auto mul = std::make_shared<ngraph::opset4::Multiply>(input, tanh);
ngraph::matcher_pass_callback callback = [=](ngraph::pattern::Matcher& m) {
auto & pattern_to_output = m.get_pattern_value_map();
auto exp_input = pattern_to_output.at(input);
auto mish = std::make_shared<ngraph::opset4::Mish>(exp_input);
mish->set_friendly_name(m.get_match_root()->get_friendly_name());
ngraph::copy_runtime_info({pattern_to_output.at(mul).get_node_shared_ptr(),
pattern_to_output.at(tanh).get_node_shared_ptr(),
pattern_to_output.at(softplus).get_node_shared_ptr()}, mish);
ngraph::replace_node(m.get_match_root(), mish);
return true;
};
auto m = std::make_shared<ngraph::pattern::Matcher>(mul, "SoftPlusToMishFusion");
register_matcher(m, callback);
}
| [
"[email protected]"
] | |
0d7d1debbaf9edbee05795212690a17d7c72d93d | ad74f7a42e8dec14ec7576252fcbc3fc46679f27 | /SLSKSpooferDLL/SLSKtask.cpp | c315896279ee1292e1c374c4fb86ba70d04acdf7 | [] | no_license | radtek/TrapperKeeper | 56fed7afa259aee20d6d81e71e19786f2f0d9418 | 63f87606ae02e7c29608fedfdf8b7e65339b8e9a | refs/heads/master | 2020-05-29T16:49:29.708375 | 2013-05-15T08:33:23 | 2013-05-15T08:33:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 881 | cpp |
#include "stdafx.h"
#include "SLSKtask.h"
SLSKtask::SLSKtask(void)
{
m_port = 0;
m_state = 0;
m_token = 0;
m_user_name = "";
m_album = "";
m_artist = "";
//m_project_id = 0;
m_ip = "";
}
/*SLSKtask::SLSKtask(CString username, CString connection_ip, buffer Buffer, int Port)
{
un = username;
ip = connection_ip;
buf = Buffer;
port = Port;
}
*/
SLSKtask::~SLSKtask()
{
//tracks.clear();
}
/*void SLSKtask::setUN(CString username)
{
un = username;
}
void SLSKtask::setBuf(buffer &Buffer)
{
buf.SetBuffer( Buffer.GetCharPtr(), Buffer.Size() );
}
*/
void SLSKtask::setIP(CString connection_ip)
{
m_ip = connection_ip;
}
CString SLSKtask::getIP(void)
{
return m_ip;
}
/*CString SLSKtask::getUN(void)
{
return un;
}
buffer SLSKtask::getBuf(void)
{
return buf;
}
void SLSKtask::setPort(int p)
{
port = p;
}
int SLSKtask::getPort(void)
{
return port;
}
*/ | [
"[email protected]"
] | |
6681355d1591f614cbcf5c0c85bf5fa24844b234 | 90e4e9522a96ff25fe07e968f3c06cb8da425426 | /5 BT Gia Ki/BAI 2.cpp | 596cc9d9f61b6ee9c69655a1f2e31ee0962ca2c4 | [] | no_license | tuannguyenTDT/TestTTC | 4d2df25f2280ec0411ec0c1ffbda642aa1c6e994 | ba773f7254ba59cbae21b4466a73fcd9ceaf2b97 | refs/heads/master | 2022-12-19T05:44:50.550238 | 2020-09-07T06:56:07 | 2020-09-07T06:56:07 | 293,424,850 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,222 | cpp | #include<string.h>
#include<conio.h>
#include<stdio.h>
struct SV{
char ht[50],t[50];
float sd;
};
void nhapdl(SV sv[],int n)
{int i;
for(i=1;i<=n;i++)
{
printf("ho ten : ");fflush(stdin);gets(sv[i].ht);
printf("diem thi : ");scanf("%f",&sv[i].sd);
printf("truong : ");fflush(stdin);gets(sv[i].t);
}
}
/*void indl(SV sv[],int n)
{int i;
for(i=1;i<=n;i++)
{
printf("ho ten : %s\n",sv[i].ht);
printf("diem thi : %0.1f\n",sv[i].sd);
printf("truong : %s",sv[i].t);
}
}*/
void ttd(SV sv[],int n)
{int i,j;
float td;
int d[n];
for(i=1;i<=n;i++) d[i]=0;
for(i=1;i<=n;i++)
{
td=sv[i].sd;
for(j=(i+1);j<=n;j++)
{
if(strcmp(sv[i].t,sv[j].t)==0&&d[j]==0)
{
td+=sv[j].sd;
d[j]=1;
}
}
if(d[i]==0)
printf("tong diem cua truong %s = %0.1f\n",sv[i].t,td);
}
}
void sx(SV sv[],int n)
{
int i,j;
for(i=1;i<=(n-1);i++)
for(j=(i+1);j<=n;j++)
{
if(sv[i].sd<=sv[j].sd)
{
sv[0]=sv[i];
sv[i]=sv[j];
sv[j]=sv[0];
}
}
for(i=1;i<=n;i++)
{
printf("ho ten : %s\n",sv[i].ht);
printf("diem thi : %0.1f\n",sv[i].sd);
printf("truong : %s\n",sv[i].t);
}
}
int main()
{int n;
printf("nhap so hoc sinh : ");scanf("%d",&n);
SV sv[n+1];
nhapdl(sv,n);
//indl(sv,n);
ttd(sv,n);
sx(sv,n);
getch();
}
| [
"[email protected]"
] | |
66232f33abdb5397785bcb4cbb08eaab5a49a6f4 | a67525d691669313d81aa634ca88ef4bf34d1ea7 | /dc_motor/dc_motor.ino | 03d483294775f4749c6f982483a37c00eea4ae90 | [] | no_license | nichepah/arduino-workshop | 437ba57571167bdfbb96dde5e9d6f5aa6c989ba4 | 7e7f014c55c357ecd889f23bd19ab308a4d4ae66 | refs/heads/master | 2020-03-22T04:41:12.524339 | 2018-07-03T01:45:25 | 2018-07-03T01:45:25 | 139,513,905 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,646 | ino |
#include <Motor_Shield.h>
/*
* Ammus collision-avoiding Kasha
*/
int i, j;
DCMotor Amotor(1);
DCMotor Bmotor(2);
DCMotor Cmotor(3);
DCMotor Dmotor(4);
// defines pins numbers
const int trigPin = 3;
const int echoPin = 10;
const int motorSpeed = 200;
const int led = 13;
const int buzzer = 2;
const int delayStep = 30;
int duration = 0;
int distance = 4;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output
pinMode(echoPin, INPUT); // Sets the echoPin as an Input
//pinMode(ledRed, OUTPUT); // Lights up on collission detected
pinMode(buzzer, OUTPUT); //
Serial.begin(9600);
// random seed generated from A0
randomSeed(analogRead(0));
}
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, LOW);
// Ultrasound code goes here
// Clears the trigPin
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro seconds
digitalWrite(trigPin, HIGH);
delayMicroseconds(20);
digitalWrite(trigPin, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration = pulseIn(echoPin, HIGH);
// Calculating the distance
distance= duration*0.034/2;
// Prints the distance in on the Serial Monitor
Serial.println("Distance: ");
Serial.println(distance);
delay(10);
// Activate the motor
Forward(motorSpeed); // move forward with default speed till
if(distance < 40) { // obstacle found within 40 cm
Stop();
tone(buzzer, 1000);
digitalWrite(led, HIGH);
delay(delayStep*5);
int j = (int) random(7);
for( int i = 0; i<j; i++){
if (j >3) { // random right and left turn with a slight +ve bias to right
digitalWrite(led, LOW);
Right();
delay(delayStep*5);
digitalWrite(led, HIGH);
delay(delayStep*5);
}
else {
digitalWrite(led, LOW);
Left();
delay(delayStep*5);
digitalWrite(led, HIGH);
delay(delayStep*5);
}
//delay(100);
}
noTone(buzzer);
}
}
void Forward(unsigned char Speed)
{
Amotor.run(FORWARD);
Bmotor.run(FORWARD);
Cmotor.run(FORWARD);
Dmotor.run(FORWARD);
Amotor.setSpeed(Speed);
Bmotor.setSpeed(Speed);
Cmotor.setSpeed(Speed);
Dmotor.setSpeed(Speed);
}
void Backward(unsigned char Speed) // Robot runs in backward direction
{
Amotor.run(BACKWARD);
Bmotor.run(BACKWARD);
Cmotor.run(BACKWARD);
Dmotor.run(BACKWARD);
Amotor.setSpeed(Speed);
Bmotor.setSpeed(Speed);
Cmotor.setSpeed(Speed);
Dmotor.setSpeed(Speed);
}
void Right(void) // Skid steer left turn.
{
Amotor.run(FORWARD);
Cmotor.run(BACKWARD);
Bmotor.run(BACKWARD);
Dmotor.run(FORWARD);
Amotor.setSpeed(255);
Bmotor.setSpeed(255);
Cmotor.setSpeed(255);
Dmotor.setSpeed(255);
}
void Left(void) // Skid steer right turn.
{
Amotor.run(BACKWARD);
Cmotor.run(FORWARD);
Bmotor.run(FORWARD);
Dmotor.run(BACKWARD);
Amotor.setSpeed(255);
Bmotor.setSpeed(255);
Cmotor.setSpeed(255);
Dmotor.setSpeed(255);
}
void Right_Forward() // Right side motor forward
{
Amotor.run(FORWARD);
Dmotor.run(FORWARD);
Amotor.setSpeed(255);
Dmotor.setSpeed(255);
}
void Right_Backward() // Right side motor backward
{
Amotor.run(BACKWARD);
Dmotor.run(BACKWARD);
Amotor.setSpeed(255);
Dmotor.setSpeed(255);
}
void Left_Forward() // Left side motor forward
{
Bmotor.run(FORWARD);
Cmotor.run(FORWARD);
Bmotor.setSpeed(255);
Cmotor.setSpeed(255);
}
void Left_Backward() // Left side motor backward
{
Bmotor.run(BACKWARD);
Cmotor.run(BACKWARD);
Bmotor.setSpeed(255);
Cmotor.setSpeed(255);
}
void Stop(void) // All motor halt
{
Amotor.setSpeed(0);
Bmotor.setSpeed(0);
Cmotor.setSpeed(0);
Dmotor.setSpeed(0);
}
| [
"[email protected]"
] | |
16d4e6aea8ac56d71f7b810e277e2bb0209320aa | d5d5039cfac453be2605a7967deef22ff4bfd4b2 | /installation/Linux/sources/BorderHitCalculator.cpp | 6e67922b1980f6428e5d906ff701b61780115d8f | [] | no_license | profeIMA/PID-UdG | ca3509204426e836a3d8d9913fbe674e309d910b | f8be446ef6aa051a73e6db9f3c4cad670ca84537 | refs/heads/master | 2020-04-20T10:53:57.599968 | 2019-07-16T15:39:41 | 2019-07-16T15:39:41 | 168,801,582 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,541 | cpp | #include "BorderHitCalculator.h"
#include "CommonUtils.h"
#include <iostream>
#define WINDOWADDON_PI 3.14159265358979323846
#define WINDOWADDON_PI_2 1.57079632679489661923
const double MARGIN_OF_ERROR = 0.0001; //less than 0.01 degrees
bool BorderHitCalculator::positionInsideScreen(Point2D p, WindowSpec window){
return p.x >= 0 && p.x < window.width && p.y >= 0 && p.y < window.height;
}
std::pair<Point2D, BorderHitCalculator::border_hit> BorderHitCalculator::computeHit(Point2D previous_pos, double direction, double distance, WindowSpec window)
{
double norm_direction = normalise(direction, 0, 2 * WINDOWADDON_PI);
Point2D hit_point;
border_hit hit_type;
//You should imagine that the screen is being "split" by its reverse diagonal (bottom left to top right corners). This way we exectue less calculations and the function runs faster.
//This is a simplification, because the line that splits the screen is not a straight line. It's a division made to separate the top and left edges' calculations from the others.
double angle_to_tr_corner = normalise(atan2(window.height - 1 - previous_pos.y, window.width - 1 - previous_pos.x), 0, 2 * WINDOWADDON_PI); //Angle between X axis and the line that joins point previous_pos with top right corner.
double angle_to_bl_corner = normalise(atan2( - previous_pos.y, - previous_pos.x), 0, 2 * WINDOWADDON_PI); //Angle between X axis and the line that joins point previous_pos with bottom left corner.
double alpha, beta; //angles needed in order to compute the hit points.
if (norm_direction > angle_to_tr_corner && norm_direction < angle_to_bl_corner) { //if the direction is pointing to the top or left border.
double angle_to_tl_corner = normalise(atan2(window.height - 1 - previous_pos.y, - previous_pos.x), 0, 2 * WINDOWADDON_PI); //Angle between X axis and the line that joins point previous_pos with top left corner.
if (norm_direction < angle_to_tl_corner) { //direction points to top edge.
alpha = angle_to_tl_corner - norm_direction;
beta = norm_direction;
double x = (previous_pos.distance(Point2D(0, (float)window.height - 1)) * sin(alpha)) / sin(beta);
hit_point = Point2D((float)x, (float)window.height - 1);
hit_type = TOP_EDGE_HIT;
}
else if (norm_direction > angle_to_tl_corner) { //direction points to left edge.
alpha = angle_to_bl_corner - norm_direction;
beta = norm_direction - WINDOWADDON_PI_2;
double y = (previous_pos.distance(Point2D(0, 0)) * sin(alpha)) / sin(beta);
hit_point = Point2D(0, (float)y);
hit_type = LEFT_EDGE_HIT;
}
else { //norm_direction == angle_to_tl_corner, direction is pointing to the top left corner.
hit_point = Point2D(0, (float)window.height - 1);
if (norm_direction > WINDOWADDON_PI - MARGIN_OF_ERROR) hit_type = LEFT_EDGE_HIT; //if the direction mostly points to the left.
else if (norm_direction > WINDOWADDON_PI_2 - MARGIN_OF_ERROR) hit_type = TOP_EDGE_HIT; //if the direction mostly points to the top.
else hit_type = TOP_LEFT_CORNER_HIT;
}
}
else if (norm_direction < angle_to_tr_corner || norm_direction > angle_to_bl_corner) { //if the direction is not pointing to the top or left border and none of the corners in that range.
if (norm_direction < angle_to_tr_corner) norm_direction += 2 * WINDOWADDON_PI; //adding a complete turn
double angle_to_br_corner = normalise(atan2( - previous_pos.y, window.width - 1 - previous_pos.x), 0, 2 * WINDOWADDON_PI); //Angle between X axis and the line that joins point previous_pos with bottom right corner.
if (norm_direction < angle_to_br_corner) { //if direction points to bottom edge.
alpha = norm_direction - angle_to_bl_corner;
beta = 2 * WINDOWADDON_PI - norm_direction;
double x = (previous_pos.distance(Point2D(0, 0)) * sin(alpha)) / sin(beta);
hit_point = Point2D((float)x, 0);
hit_type = BOTTOM_EDGE_HIT;
}
else if (norm_direction > angle_to_br_corner) { //if direction points to right edge, we have to bear in mind that in this case the transition between 2*PI and 0 occurs.
norm_direction = normalise(norm_direction - WINDOWADDON_PI_2, 0, 2 * WINDOWADDON_PI); //rotate all angles 90 degrees in order to avoid conditionals.
angle_to_br_corner = normalise(angle_to_br_corner - WINDOWADDON_PI_2, 0, 2 * WINDOWADDON_PI); //rotate all angles 90 degrees in order to avoid conditionals.
alpha = norm_direction - angle_to_br_corner;
beta = 2 * WINDOWADDON_PI - norm_direction;
double y = (previous_pos.distance(Point2D((float)window.width - 1, 0)) * sin(alpha)) / sin(beta);
hit_point = Point2D((float)window.width - 1, (float)y);
hit_type = RIGHT_EDGE_HIT;
}
else { //norm_direction == angle_to_br_corner, direction is pointing to the bottom right corner.
hit_point = Point2D((float)window.width - 1, 0);
if (norm_direction > 2 * WINDOWADDON_PI - MARGIN_OF_ERROR) hit_type = RIGHT_EDGE_HIT; //if the direction mostly points to the right.
else if (norm_direction > WINDOWADDON_PI + WINDOWADDON_PI_2 - MARGIN_OF_ERROR) hit_type = BOTTOM_EDGE_HIT; //if the direction mostly points to the bottom.
else hit_type = BOTTOM_RIGHT_CORNER_HIT;
}
}
else if (norm_direction == angle_to_tr_corner) { //if the direction is pointing to the top right corner.
hit_point = Point2D((float)window.width - 1, (float)window.height - 1);
if(norm_direction > MARGIN_OF_ERROR) hit_type = RIGHT_EDGE_HIT; //if direction mostly points to the right.
else if(norm_direction > WINDOWADDON_PI_2 - MARGIN_OF_ERROR) hit_type = TOP_EDGE_HIT; //if direction mostly points to the top.
else hit_type = TOP_RIGHT_CORNER_HIT;
}
else { //norm_direction == angle_to_bl_corner, the direction is pointing to the bottom left corner.
hit_point = Point2D(0, 0);
if (norm_direction > WINDOWADDON_PI - MARGIN_OF_ERROR) hit_type = LEFT_EDGE_HIT; //if direction mostly points to the right.
else if (norm_direction > WINDOWADDON_PI + WINDOWADDON_PI_2 - MARGIN_OF_ERROR) hit_type = BOTTOM_EDGE_HIT; //if direction mostly points to the top.
else hit_type = BOTTOM_LEFT_CORNER_HIT;
}
double movement_dist = previous_pos.distance(hit_point);
if (movement_dist > distance) { //if we don't have enough remaining distance to hit the border
double scale_ratio = distance / movement_dist;
hit_point = Point2D(previous_pos.x + (hit_point.x - previous_pos.x) * (float)scale_ratio, previous_pos.y + (hit_point.y - previous_pos.y) * (float)scale_ratio);
hit_type = NO_HIT;
}
return std::pair<Point2D, border_hit>(hit_point, hit_type);
}
| [
"[email protected]"
] | |
ac8f46b93c33bbc05fef9d82c016e7b8352ce555 | d8ae2f3cc0c16b52dbb440f70e961cd342f188b1 | /Uva/1124 - Celebrity jeopardy.cpp | 686520f605225f2d26a9111f51c84356f4fef4e7 | [] | no_license | syntaxhacker/competitive-programming | 2de89d7245ad0de7d4f9fc23d1f2fb58869c3ce2 | 6781a7015427db100bc07da9327552bd8ea69120 | refs/heads/master | 2020-06-21T02:16:34.601671 | 2019-10-20T19:33:31 | 2019-10-20T19:33:31 | 197,320,561 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,264 | cpp | #include <bits/stdc++.h>
using namespace std;
/*------------------junk----------------------*/
#define TMP template<typename
#ifdef _COOL_
#define oo(...) __f(#__VA_ARGS__, __VA_ARGS__)
TMP Arg1>
void __f(const char *name, Arg1 &&arg1)
{cout << name << ": " << arg1 << "\n";}
TMP Arg1, typename... Args>
void __f(const char *names, Arg1 &&arg1, Args &&... args)
{const char *comma = strchr(names + 1, ',');cout.write(names, comma - names) << ": " << arg1 << " |";__f(comma + 1, args...);
}
#endif
TMP... T>
void oup(T&... args){
((cout << args <<"\n") , ...);
}
typedef long long int lli;
typedef unsigned long long int ulli;
const int MOD = 1e9 + 7;
#define F first
#define S second
#define gc getchar_unlocked
#define fri(i, j , n) for (int (i) = (j); (i) < (n); ++(i))
#define frie(i, j , n) for (int (i) = (j); (i) <= (n); ++(i))
#define frb(i,j, n) for (int (i) = (j); (i) >= (n); (i)--)
#define all(x) (x).begin(),(x).end()
#define sz(x) (int)(x).size()
#define rall(x) (x).rbegin(),(x).rend()
#define f2a(x , n , v) fill(&(x)[0][0], &(x)[0][0] + (0 + n) *(0 + n) , (v))
#define fa(x , n , v) fill( (x), (x)+(n), (v))
#define ra(a) for(int &x : (a)) cin >> (x)
#define pa(a) for(int &x : (a)) cout << (x) << " ";cout << "\n"
#define pb emplace_back
#define mp make_pair
#define vi vector<int>
#define vlli vector<lli>
/*----------fast input-------------*/
#ifdef ff
inline void in(lli &x)
{
register lli c = getchar_unlocked();
x = 0;
lli neg = 0;
for(;((c<48 || c>57) && c != '-');c = getchar_unlocked());
if(c=='-') {neg=1;c=getchar_unlocked();}
for(;c>47 && c<58;c = getchar_unlocked()) {x = (x<<1) + (x<<3) + c - 48;}
if(neg) x=-x;
}
//lower and upper case
void ins(string &s)
{
string i="";
int temp=getchar_unlocked();
while((temp<'a'&& temp>'z') || (temp<'A' && temp>'Z'))
temp=getchar_unlocked();
while((temp>='a'&&temp<='z') || (temp>='A'&&temp<='Z'))
{
i+=(char)temp;
temp=getchar_unlocked();
}
s = i;
}
#else
TMP... T>
void in(T&... args){
((cin >> args) , ...);
}
#endif
/*----------check constraints again-------------*/
int32_t main()
{
std::istreambuf_iterator<char> begin(std::cin), end;
string s(begin, end);
string ans = s;
cout << ans;
}
| [
"[email protected]"
] | |
716a7cf8926595c950cc6716dda2817ed104f2b0 | 60399c5bad2d633ea09786742ea174c3de23b589 | /Source/DialogSystemRuntime/Public/Dialog/DialogScript.h | 00a56df8a746f4f06313a35e5b10c9e3e3d5a4a1 | [
"Apache-2.0"
] | permissive | kunmny/QaDS | fa1876693893fc58a82b0d2e959d05654aff6729 | 8860f92efbd43056a5e55318c025d77a03862150 | refs/heads/master | 2022-02-21T01:40:22.021931 | 2019-09-29T21:48:48 | 2019-09-29T21:48:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 372 | h | #pragma once
#include "DialogScript.generated.h"
UCLASS(Blueprintable)
class DIALOGSYSTEMRUNTIME_API ADialogScript : public AInfo
{
GENERATED_BODY()
public:
ADialogScript();
UPROPERTY()
class UDialogProcessor* Implementer;
UFUNCTION(BlueprintPure, Category = "Dialog")
AActor* GetPlayer();
UFUNCTION(BlueprintPure, Category = "Dialog")
AActor* GetNPC();
};
| [
"[email protected]"
] | |
abf139f64a88975e9d95964871fa795094bda005 | 94ff5fbbf241c8b5236d71006e440b41e0ef6a95 | /User/HuongLX/Arduino Code/otofun/otofun.ino | c93d04f4c266e68b8d15f7d4aca41dc033fbe5a0 | [] | no_license | baoanhgleez/MEx | 1d9ffec2ae7b657e09c441148279001e9af9710f | fa300c4b526512bc8bf5370127e87c29c5e013f6 | refs/heads/master | 2021-03-27T06:28:58.015563 | 2017-09-01T05:21:48 | 2017-09-01T05:21:48 | 87,083,954 | 0 | 0 | null | 2017-08-17T13:07:23 | 2017-04-03T14:32:48 | Java | UTF-8 | C++ | false | false | 766 | ino | #include <AFMotor.h>
#include<Servo.h>
Servo servo1;
AF_DCMotor motor1(1,MOTOR12_64KHZ);
AF_DCMotor motor2(2,MOTOR12_64KHZ);
long time;
long resetTime = 1000;
bool switchChannel = false;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
time = millis();
motor1.setSpeed(100);
motor2.setSpeed(100);
servo1.attach(9);
}
int rad = 0;
void loop() {
//
// // put your main code here, to run repeatedly:
if(millis()-time >resetTime) reset();
if(switchChannel){
motor2.run(FORWARD);
motor1.run(BACKWARD);
servo1.write(55);
}
else{
motor2.run(BACKWARD);
motor1.run(FORWARD);
servo1.write(135);
}
}
void reset(){
time = millis();
switchChannel=!switchChannel;
// servo1.write(90);
}
| [
"[email protected]"
] | |
d529d75f28e27ee041f61e1316bf65ce772622ae | 0dbbd31878150e63cfc6bb03c49f6d1ca9b8adb3 | /main.cpp | 724f2c79192626d3d3bb451be174fd795cad78e2 | [] | no_license | brmi/Project1_32 | 8a702cb897884f7f200d90e80a4c2a92e6dfecb3 | 86561da3738a82f363314561a96ea82c7ec44a9b | refs/heads/master | 2021-01-18T14:58:12.958353 | 2015-01-16T21:08:43 | 2015-01-16T21:08:43 | 29,168,502 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 516 | cpp | //
// main.cpp
// Project1_32
//
// Created by desiree on 1/7/15.
// Copyright (c) 2015 desiree. All rights reserved.
//
// snakepit.cpp
#include <cstdlib>
#include <ctime>
#include "Game.h"
//didn't include
//using namespace std;
int main()
{
// Initialize the random number generator. (You don't need to
// understand how this works.)
srand(static_cast<unsigned int>(time(0)));
// Create a game
// Use this instead to create a mini-game: Game g(3, 3, 2);
Game g(9, 10, 40);
// Play the game
g.play();
} | [
"[email protected]"
] | |
9b7aa69d138512ab72dc019ed79db4705da1e3c9 | 1132448e27024faa8fe358c3c97c520d76482595 | /Button.h | e849746a93984a01e6d16795e139d03798324e3b | [] | no_license | Murzaza/glCalculator | 8976cb7ba0d44e87c32003a9cc9b49d490267014 | 79eb1ec12091d3b80c45c86ebee121e42be61e59 | refs/heads/master | 2020-05-20T11:46:06.501043 | 2012-09-27T05:13:06 | 2012-09-27T05:13:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 588 | h | #ifndef __BUTTON__
#define __BUTTON__
#ifdef __APPLE__
# include <GLUT/glut.h>
#else
# include <GL/glut.h>
#endif
#include <iostream>
#include <string>
struct Vector2D
{
GLfloat x;
GLfloat y;
};
class Button
{
public:
Button();
Button(std::string t);
~Button();
void draw();
/**Getters**/
std::string getText();
Vector2D getTop();
Vector2D getBot();
int getValue();
/**Setters**/
void setText(std::string t);
void setTop(Vector2D t);
void setBot(Vector2D t);
void setValue(int v);
private:
std::string text;
Vector2D topR;
Vector2D botL;
int value;
};
#endif
| [
"mirza@ZanzibarLand.(none)"
] | mirza@ZanzibarLand.(none) |
aeb2f300e943c53363ce5df61ef2ca76df40be2f | e8b0f1376ccfb4dab4796d6a20f12613cb93a854 | /md5anim/md5animExport.cpp | 8293c902acfe4defd9764a745c184009acc99831 | [] | no_license | poerlang/3ds-md5-exporter | 8d5ab72835f072529609dd51050786e5a9d8c504 | ea7a6f873ef11d905563a7aa4100877514d2e7df | refs/heads/master | 2021-11-30T01:36:57.412259 | 2016-07-16T12:31:39 | 2016-07-16T12:31:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,805 | cpp | //**************************************************************************/
// Copyright (c) 1998-2007 Autodesk, Inc.
// All rights reserved.
//
// These coded instructions, statements, and computer programs contain
// unpublished proprietary information written by Autodesk, Inc., and are
// protected by Federal copyright law. They may not be disclosed to third
// parties or copied or duplicated in any form, in whole or in part, without
// the prior written consent of Autodesk, Inc.
//**************************************************************************/
// DESCRIPTION: Appwizard generated plugin
// AUTHOR:
//***************************************************************************/
#include <boost/lexical_cast.hpp>
#include "md5animExport.h"
#include "MaxUtils.h"
#include <Commctrl.h>
#define md5anim_CLASS_ID Class_ID(0x6fdbea13, 0x83f32a8e)
class md5anim : public SceneExport {
public:
//Constructor/Destructor
md5anim();
~md5anim();
int ExtCount(); // Number of extensions supported
const TCHAR * Ext(int n); // Extension #n (i.e. "3DS")
const TCHAR * LongDesc(); // Long ASCII description (i.e. "Autodesk 3D Studio File")
const TCHAR * ShortDesc(); // Short ASCII description (i.e. "3D Studio")
const TCHAR * AuthorName(); // ASCII Author name
const TCHAR * CopyrightMessage(); // ASCII Copyright message
const TCHAR * OtherMessage1(); // Other message #1
const TCHAR * OtherMessage2(); // Other message #2
unsigned int Version(); // Version number * 100 (i.e. v3.01 = 301)
void ShowAbout(HWND hWnd); // Show DLL's "About..." box
BOOL SupportsOptions(int ext, DWORD options);
int DoExport(const TCHAR *name,ExpInterface *ei,Interface *i, BOOL suppressPrompts=FALSE, DWORD options=0);
void setOption(HWND hWnd);
void onExport(HWND hWnd);
};
class md5animClassDesc : public ClassDesc2
{
public:
virtual int IsPublic() { return TRUE; }
virtual void* Create(BOOL /*loading = FALSE*/) { return new md5anim(); }
virtual const TCHAR * ClassName() { return GetString(IDS_CLASS_NAME); }
virtual SClass_ID SuperClassID() { return SCENE_EXPORT_CLASS_ID; }
virtual Class_ID ClassID() { return md5anim_CLASS_ID; }
virtual const TCHAR* Category() { return GetString(IDS_CATEGORY); }
virtual const TCHAR* InternalName() { return _T("md5anim"); } // returns fixed parsable name (scripter-visible name)
virtual HINSTANCE HInstance() { return hInstance; } // returns owning module handle
};
ClassDesc2* Getmd5animDesc() {
static md5animClassDesc md5animDesc;
return &md5animDesc;
}
INT_PTR CALLBACK md5animOptionsDlgProc(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam) {
static md5anim* imp = nullptr;
switch(message) {
case WM_INITDIALOG:
imp = (md5anim *)lParam;
imp->setOption(hWnd);
CenterWindow(hWnd,GetParent(hWnd));
return TRUE;
case WM_CLOSE:
EndDialog(hWnd, 0);
return 1;
case WM_COMMAND:
switch (wParam) {
case IDC_EXPORT_BTN:
imp = (md5anim *)lParam;
imp->onExport(hWnd);
break;
}
return TRUE;
case WM_NOTIFY:
return TRUE;
case WM_MOVE:
return TRUE;
case PBM_SETPOS:
return TRUE;
}
return 0;
}
//--- md5anim -------------------------------------------------------
md5anim::md5anim()
{
}
md5anim::~md5anim()
{
}
int md5anim::ExtCount()
{
#pragma message(TODO("Returns the number of file name extensions supported by the plug-in."))
return 1;
}
const TCHAR *md5anim::Ext(int /*i*/)
{
//#pragma message(TODO("Return the 'i-th' file name extension (i.e. \"3DS\")."))
return _T("md5anim");
}
const TCHAR *md5anim::LongDesc()
{
//#pragma message(TODO("Return long ASCII description (i.e. \"Targa 2.0 Image File\")"))
return _T("a pluging for 3ds max export md5 animation");
}
const TCHAR *md5anim::ShortDesc()
{
//#pragma message(TODO("Return short ASCII description (i.e. \"Targa\")"))
return _T("md5 anim export");
}
const TCHAR *md5anim::AuthorName()
{
//#pragma message(TODO("Return ASCII Author name"))
return _T("James Huang");
}
const TCHAR *md5anim::CopyrightMessage()
{
//#pragma message(TODO("Return ASCII Copyright message"))
return _T("use by your own reason");
}
const TCHAR *md5anim::OtherMessage1()
{
//TODO: Return Other message #1 if any
return _T("");
}
const TCHAR *md5anim::OtherMessage2()
{
//TODO: Return other message #2 in any
return _T("0.1");
}
unsigned int md5anim::Version()
{
//#pragma message(TODO("Return Version number * 100 (i.e. v3.01 = 301)"))
return 100;
}
void md5anim::ShowAbout(HWND /*hWnd*/)
{
// Optional
}
BOOL md5anim::SupportsOptions(int /*ext*/, DWORD /*options*/)
{
//#pragma message(TODO("Decide which options to support. Simply return true for each option supported by each Extension the exporter supports."))
return TRUE;
}
Interface* gInterface;
MyUtils *pMyUtils=nullptr;
MaxUtils *pMaxUtils=nullptr;
void init();
int md5anim::DoExport(const TCHAR* name/**/, ExpInterface* /*ei*/, Interface* ip/**/, BOOL suppressPrompts, DWORD /*options*/)
{
//#pragma message(TODO("Implement the actual file Export here and"))
//save interface for glabal use
gInterface = ip;
Md5Anim md5Anim;
MyUtils myUtils(name);
MaxUtils maxUtils;
pMyUtils = &myUtils;
pMaxUtils = &maxUtils;
maxUtils.setMd5Anim(&md5Anim);
pMaxUtils = &maxUtils;
init();
if(!suppressPrompts)
{
DialogBoxParam(hInstance,
MAKEINTRESOURCE(IDD_PANEL),
GetActiveWindow(),
md5animOptionsDlgProc, (LPARAM)this);
}
//#pragma message(TODO("return TRUE If the file is exported properly"))
return TRUE;
}
int gFrameStart(0);
int gFrameEnd(0);
float gBJX(0.0);
float gBJY(0.0);
float gBJZ(0.0);
void init()
{
int tpf = GetTicksPerFrame();
gFrameStart = gInterface->GetAnimRange().Start()/tpf,
gFrameEnd = gInterface->GetAnimRange().End()/tpf;
}
int gRadios[] = {IDC_RADIO1, IDC_RADIO2, IDC_RADIO3, IDC_RADIO4, IDC_RADIO5, IDC_RADIO6};
int gFlagRadios[] = {IDC_RADIO7, IDC_RADIO8};
void md5anim::setOption(HWND hWnd)
{
SetDlgItemInt(hWnd, IDC_FRAME_START, static_cast<UINT>(gFrameStart), false);
SetDlgItemInt(hWnd, IDC_FRAME_END, static_cast<UINT>(gFrameEnd), false);
SetDlgItemInt(hWnd, IDC_BJ_INC1, static_cast<UINT>(0), false);
SetDlgItemInt(hWnd, IDC_BJ_INC2, static_cast<UINT>(0), false);
SetDlgItemInt(hWnd, IDC_BJ_INC3, static_cast<UINT>(0), false);
//set default and ratio check,Only the first radio button in the group should have the Group property set to True
CheckRadioButton(hWnd,gRadios[0], gRadios[5], gRadios[4]);
CheckRadioButton(hWnd,gFlagRadios[0], gFlagRadios[1], gFlagRadios[0]);
}
void initProgress();
float flagPrecision(.01f);
void md5anim::onExport(HWND hWnd)
{
BOOL success = false;
gFrameStart = GetDlgItemInt(hWnd, IDC_FRAME_START, &success, false);
//DebugPrint(_T("gFrameStart:%d,%d\n"),gFrameStart,success);
success = false;
gFrameEnd = GetDlgItemInt(hWnd, IDC_FRAME_END, &success, false);
//DebugPrint(_T("gFrameEnd:%d,%d\n"),gFrameEnd,success);
wchar_t text[20];
std::string str;
::memset(text, 0, (sizeof text)/sizeof(wchar_t));
GetDlgItemText(hWnd, IDC_BJ_INC1, text, 20);
str = MyUtils::widechar2str(text);
::memset(text, 0, (sizeof text)/sizeof(wchar_t));
gBJX = boost::lexical_cast<float, std::string>(str);
GetDlgItemText(hWnd, IDC_BJ_INC2, text, 20);
str = MyUtils::widechar2str(text);
gBJY = boost::lexical_cast<float, std::string>(str);
::memset(text, 0, (sizeof text)/sizeof(wchar_t));
GetDlgItemText(hWnd, IDC_BJ_INC3, text, 20);
str = MyUtils::widechar2str(text);
gBJZ = boost::lexical_cast<float, std::string>(str);
for(int i(0);i<sizeof gRadios/sizeof(int);i++)
{
if( IsDlgButtonChecked(hWnd,gRadios[i])){
Md5Anim::setPrecision(i);
break;
}
}
flagPrecision = 0.001f;
for(int i(0);i<sizeof gFlagRadios/sizeof(int);i++)
{
if( IsDlgButtonChecked(hWnd,gFlagRadios[i])){
break;
}
flagPrecision*=0.01f;
}
initProgress();
pMaxUtils->dump();
//DestroyWindow(hwndPB);
MessageBox( GetActiveWindow(), _T("all jobs done!"), _T("Message"), 0 );
EndDialog(GetActiveWindow(), IDOK);
}
void initProgress()
{
HWND hwndPB = GetDlgItem( GetActiveWindow(), IDC_PROGRESS1 );
if(hwndPB)
{
::ShowWindow(hwndPB,SW_SHOW);
SendMessage(hwndPB, PBM_SETRANGE, 0, MAKELPARAM(0, 5));//
SendMessage(hwndPB, PBM_SETSTEP, (WPARAM) 1, 0);
}
HWND hwndExportBtn = GetDlgItem( GetActiveWindow(), IDC_EXPORT_BTN );
if(hwndExportBtn)
{
::ShowWindow(hwndExportBtn,SW_HIDE);
}
}
void updateProgress(const char * msg, bool progress)
{
HWND hwndPB = GetDlgItem( GetActiveWindow(), IDC_PROGRESS1 );
if(hwndPB&&progress)
{
SendMessage(hwndPB, PBM_STEPIT, 0, 0);
}
const wchar_t *wmsg = MyUtils::UTF8ToUnicode(msg);
SetDlgItemTextW(GetActiveWindow(), IDC_TEXT_PROGRESS, wmsg);
delete wmsg;
}
| [
"[email protected]"
] | |
2f0b3cc6c7c83770258d282d14549d988e18df35 | 926b3c52070f6e309567c8598248fd5c57095be9 | /src/mmdeploy/csrc/mmdeploy/codebase/mmocr/crnn.cpp | 482bd7fb7e07d0f527ebcc89d781fb338a27590f | [
"Apache-2.0"
] | permissive | fengbingchun/PyTorch_Test | 410f7cd2303707b0141d433fb9d144a961e1f4c8 | df5c2169f0b699bcd6e74adb4cb0e57f7dcd9348 | refs/heads/master | 2023-05-23T16:42:29.711338 | 2023-03-25T11:31:43 | 2023-03-25T11:31:43 | 167,339,907 | 15 | 4 | null | 2023-03-25T11:31:45 | 2019-01-24T09:24:59 | C++ | UTF-8 | C++ | false | false | 5,305 | cpp | // Copyright (c) OpenMMLab. All rights reserved.
#include <algorithm>
#include <sstream>
#include "mmdeploy/core/device.h"
#include "mmdeploy/core/model.h"
#include "mmdeploy/core/registry.h"
#include "mmdeploy/core/tensor.h"
#include "mmdeploy/core/utils/device_utils.h"
#include "mmdeploy/core/utils/formatter.h"
#include "mmdeploy/core/value.h"
#include "mmdeploy/experimental/module_adapter.h"
#include "mmocr.h"
namespace mmdeploy::mmocr {
using std::string;
using std::vector;
class CTCConvertor : public MMOCR {
public:
explicit CTCConvertor(const Value& cfg) : MMOCR(cfg) {
auto model = cfg["context"]["model"].get<Model>();
if (!cfg.contains("params")) {
MMDEPLOY_ERROR("'params' is required, but it's not in the config");
throw_exception(eInvalidArgument);
}
// BaseConverter
auto& _cfg = cfg["params"];
if (_cfg.contains("dict_file")) {
auto filename = _cfg["dict_file"].get<std::string>();
auto content = model.ReadFile(filename).value();
idx2char_ = SplitLines(content);
} else if (_cfg.contains("dict_list")) {
from_value(_cfg["dict_list"], idx2char_);
} else if (_cfg.contains("dict_type")) {
auto dict_type = _cfg["dict_type"].get<std::string>();
if (dict_type == "DICT36") {
idx2char_ = SplitChars(DICT36);
} else if (dict_type == "DICT90") {
idx2char_ = SplitChars(DICT90);
} else {
MMDEPLOY_ERROR("unknown dict_type: {}", dict_type);
throw_exception(eInvalidArgument);
}
} else {
MMDEPLOY_ERROR("either dict_file, dict_list or dict_type must be specified");
throw_exception(eInvalidArgument);
}
// CTCConverter
idx2char_.insert(begin(idx2char_), "<BLK>");
if (_cfg.value("with_unknown", false)) {
unknown_idx_ = static_cast<int>(idx2char_.size());
idx2char_.emplace_back("<UKN>");
}
model_ = model;
}
Result<Value> operator()(const Value& _data, const Value& _prob) {
auto d_conf = _prob["output"].get<Tensor>();
if (!(d_conf.shape().size() == 3 && d_conf.data_type() == DataType::kFLOAT)) {
MMDEPLOY_ERROR("unsupported `output` tensor, shape: {}, dtype: {}", d_conf.shape(),
(int)d_conf.data_type());
return Status(eNotSupported);
}
OUTCOME_TRY(auto h_conf, MakeAvailableOnDevice(d_conf, Device{0}, stream()));
OUTCOME_TRY(stream().Wait());
auto data = h_conf.data<float>();
auto shape = d_conf.shape();
auto w = static_cast<int>(shape[1]);
auto c = static_cast<int>(shape[2]);
auto valid_ratio = _data["img_metas"]["valid_ratio"].get<float>();
auto [indexes, scores] = Tensor2Idx(data, w, c, valid_ratio);
auto text = Idx2Str(indexes);
MMDEPLOY_DEBUG("text: {}", text);
TextRecognizerOutput output{text, scores};
return make_pointer(to_value(output));
}
static std::pair<vector<int>, vector<float> > Tensor2Idx(const float* data, int w, int c,
float valid_ratio) {
auto decode_len = std::min(w, static_cast<int>(std::ceil(w * valid_ratio)));
vector<int> indexes;
indexes.reserve(decode_len);
vector<float> scores;
scores.reserve(decode_len);
vector<float> prob(c);
int prev = blank_idx_;
for (int t = 0; t < decode_len; ++t, data += c) {
softmax(data, prob.data(), c);
auto iter = max_element(begin(prob), end(prob));
auto index = static_cast<int>(iter - begin(prob));
if (index != blank_idx_ && index != prev) {
indexes.push_back(index);
scores.push_back(*iter);
}
prev = index;
}
return {indexes, scores};
}
string Idx2Str(const vector<int>& indexes) {
size_t count = 0;
for (const auto& idx : indexes) {
count += idx2char_[idx].size();
}
std::string text;
text.reserve(count);
for (const auto& idx : indexes) {
text += idx2char_[idx];
}
return text;
}
// TODO: move softmax & top-k into model
static void softmax(const float* src, float* dst, int n) {
auto max_val = *std::max_element(src, src + n);
float sum{};
for (int i = 0; i < n; ++i) {
dst[i] = std::exp(src[i] - max_val);
sum += dst[i];
}
for (int i = 0; i < n; ++i) {
dst[i] /= sum;
}
}
protected:
static vector<string> SplitLines(const string& s) {
std::istringstream is(s);
vector<string> ret;
string line;
while (std::getline(is, line)) {
ret.push_back(std::move(line));
}
return ret;
}
static vector<string> SplitChars(const string& s) {
vector<string> ret;
ret.reserve(s.size());
for (char c : s) {
ret.push_back({c});
}
return ret;
}
static constexpr const auto DICT36 = R"(0123456789abcdefghijklmnopqrstuvwxyz)";
static constexpr const auto DICT90 = R"(0123456789abcdefghijklmnopqrstuvwxyz)"
R"(ABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&'())"
R"(*+,-./:;<=>?@[\]_`~)";
static constexpr const auto kHost = Device(0);
Model model_;
static constexpr const int blank_idx_{0};
int unknown_idx_{-1};
vector<string> idx2char_;
};
REGISTER_CODEBASE_COMPONENT(MMOCR, CTCConvertor);
} // namespace mmdeploy::mmocr
| [
"[email protected]"
] | |
d8926528fc0fbd2e770d1a27a2fddcccb48a81ce | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14043/function14043_schedule_43/function14043_schedule_43_wrapper.cpp | e41837f7ba230582c5a8f960ae71fd7e85836c23 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 857 | cpp | #include "Halide.h"
#include "function14043_schedule_43_wrapper.h"
#include "tiramisu/utils.h"
#include <cstdlib>
#include <iostream>
#include <time.h>
#include <fstream>
#include <chrono>
#define MAX_RAND 200
int main(int, char **){Halide::Buffer<int32_t> buf0(256, 512, 256);
init_buffer(buf0, (int32_t)0);
auto t1 = std::chrono::high_resolution_clock::now();
function14043_schedule_43(buf0.raw_buffer());
auto t2 = std::chrono::high_resolution_clock::now();
std::chrono::duration<double> diff = t2 - t1;
std::ofstream exec_times_file;
exec_times_file.open("../data/programs/function14043/function14043_schedule_43/exec_times.txt", std::ios_base::app);
if (exec_times_file.is_open()){
exec_times_file << diff.count() * 1000000 << "us" <<std::endl;
exec_times_file.close();
}
return 0;
} | [
"[email protected]"
] | |
065bd2fd0652b542cb94baa272db80c199a49e05 | 54f352a242a8ad6ff5516703e91da61e08d9a9e6 | /Source Codes/AtCoder/abc116/C/4255388.cpp | d853f233342e2b719981255c908d0b1f5b4188ba | [] | no_license | Kawser-nerd/CLCDSA | 5cbd8a4c3f65173e4e8e0d7ed845574c4770c3eb | aee32551795763b54acb26856ab239370cac4e75 | refs/heads/master | 2022-02-09T11:08:56.588303 | 2022-01-26T18:53:40 | 2022-01-26T18:53:40 | 211,783,197 | 23 | 9 | null | null | null | null | UTF-8 | C++ | false | false | 486 | cpp | #include <cstdio>
#include <vector>
int main() {
size_t N;
scanf("%zu", &N);
std::vector<int> h(N);
int sum = 0;
for (auto& hi: h) {
scanf("%d", &hi);
sum += hi;
}
int res = 0;
while (sum > 0) {
for (size_t i = 0; i < N; ++i) {
if (h[i] == 0) continue;
for (size_t j = i; j < N; ++j) {
if (h[j] == 0) break;
--h[j];
--sum;
}
++res;
break;
}
}
printf("%d\n", res);
} | [
"[email protected]"
] | |
0045f7a76f001cfae152a77e4e0433bced67b57e | 0c675c41cc3fe7c44db5f8791a2547feef6f16d1 | /src/stats/model/gnuplot.cc | 8f6e6a207440462dacf18c2a3578f1217ad24083 | [] | no_license | otaviobertucini/mptcp-ns3 | 0726110bf526ad96df18578c709e0ec8a3fe3a25 | bb396cdf38c3a5f74f95f56809f5bdf2279822a9 | refs/heads/master | 2021-07-25T01:31:37.359761 | 2020-06-13T13:17:52 | 2020-06-13T13:17:52 | 187,845,309 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 23,489 | cc | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2007 INRIA, 2008 Timo Bingmann
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Original Author: Mathieu Lacage <[email protected]>
* Enhancements: Timo Bingmann <[email protected]>
*/
#include "gnuplot.h"
#include "ns3/assert.h"
#include <ostream>
#include <stdexcept>
namespace ns3 {
// --- GnuplotDataset::Data ------------------------------------------------ //
/**
* \ingroup gnuplot
*
* Structure storing the data to plot.
* Derived classes subclass this struct and add their own data fields.
*/
struct GnuplotDataset::Data
{
// *** Data Variables ***
unsigned int m_references; //!< ref/unref counter for garbage collection
std::string m_title; //!< Dataset title
std::string m_extra; //!< Extra parameters for the plot
/**
* Initializes the reference counter to 1 and sets m_title and m_extra.
* \param title Dataset title
*/
Data(const std::string& title);
/// Required.
virtual ~Data();
/**
* \brief Returns the plot type ("plot" or "splot").
* \returns the plot type ("plot" or "splot").
*/
virtual std::string GetCommand () const = 0;
/**
* Prints the plot description used as argument to (s)plot. Either
* the function expression or a datafile description. Should include
* m_title and m_extra in the output.
*
* If more than one output file is being generated, i.e. separate
* data and control files, then the index for the current dataset
* and the name for the data file are also included.
*
* \param os Output stream
* \param generateOneOutputFile If true, generate only one output file.
* \param dataFileDatasetIndex Dataset Index
* \param dataFileName Dataset file name
*/
virtual void PrintExpression (std::ostream &os,
bool generateOneOutputFile,
unsigned int dataFileDatasetIndex,
std::string &dataFileName) const = 0;
/**
* Print the inline data file contents trailing the plot command. Empty for
* functions.
*
* \param os Output stream
* \param generateOneOutputFile If true, generate only one output file.
*/
virtual void PrintDataFile (std::ostream &os, bool generateOneOutputFile) const = 0;
/**
* Checks to see if this GnuplotDataset is empty.
* \return indicates if this GnuplotDataset is empty.
*/
virtual bool IsEmpty () const = 0;
};
GnuplotDataset::Data::Data(const std::string& title)
: m_references (1),
m_title (title),
m_extra (m_defaultExtra)
{
}
GnuplotDataset::Data::~Data()
{
}
// --- GnuplotDataset ------------------------------------------------------ //
std::string GnuplotDataset::m_defaultExtra = "";
GnuplotDataset::GnuplotDataset (struct Data* data)
: m_data (data)
{
}
GnuplotDataset::GnuplotDataset (const GnuplotDataset& original)
: m_data (original.m_data)
{
++m_data->m_references;
}
GnuplotDataset::~GnuplotDataset()
{
if (--m_data->m_references == 0)
delete m_data;
}
GnuplotDataset& GnuplotDataset::operator= (const GnuplotDataset& original)
{
if (this != &original)
{
if (--m_data->m_references == 0)
delete m_data;
m_data = original.m_data;
++m_data->m_references;
}
return *this;
}
void
GnuplotDataset::SetTitle (const std::string& title)
{
m_data->m_title = title;
}
void
GnuplotDataset::SetDefaultExtra (const std::string& extra)
{
m_defaultExtra = extra;
}
void
GnuplotDataset::SetExtra (const std::string& extra)
{
m_data->m_extra = extra;
}
// --- Gnuplot2dDataset::Data2d -------------------------------------------- //
/**
* \ingroup gnuplot
*
* Structure storing the data to for a 2D plot.
*/
struct Gnuplot2dDataset::Data2d : public GnuplotDataset::Data
{
// *** Data Variables ***
enum Style m_style; //!< The plotting style to use for this dataset.
enum ErrorBars m_errorBars; //!< Whether errorbars should be used for this dataset.
PointSet m_pointset; //!< The set of points in this data set
/**
* Initializes with the values from m_defaultStyle and m_defaultErrorBars.
* \param title Dataset title
*/
Data2d(const std::string& title);
virtual std::string GetCommand () const;
virtual void PrintExpression (std::ostream &os,
bool generateOneOutputFile,
unsigned int dataFileDatasetIndex,
std::string &dataFileName) const;
virtual void PrintDataFile (std::ostream &os, bool generateOneOutputFile) const;
virtual bool IsEmpty () const;
};
Gnuplot2dDataset::Data2d::Data2d(const std::string& title)
: Data (title),
m_style (m_defaultStyle),
m_errorBars (m_defaultErrorBars)
{
}
std::string
Gnuplot2dDataset::Data2d::GetCommand () const
{
return "plot";
}
void
Gnuplot2dDataset::Data2d::PrintExpression (std::ostream &os,
bool generateOneOutputFile,
unsigned int dataFileDatasetIndex,
std::string &dataFileName) const
{
// Print the appropriate thing based on whether separate output and
// date files are being generated.
if (generateOneOutputFile)
{
os << "\"-\" ";
}
else
{
os << "\"" << dataFileName << "\" index " << dataFileDatasetIndex;
}
if (m_title.size ())
os << " title \"" << m_title << "\"";
switch (m_style) {
case MKS:
os << " ";
break;
case LINES:
os << " with lines";
break;
case POINTS:
switch (m_errorBars)
{
case NONE:
os << " with points";
break;
case X:
os << " with xerrorbars";
break;
case Y:
os << " with yerrorbars";
break;
case XY:
os << " with xyerrorbars";
break;
}
break;
case LINES_POINTS:
switch (m_errorBars)
{
case NONE:
os << " with linespoints";
break;
case X:
os << " with errorlines";
break;
case Y:
os << " with yerrorlines";
break;
case XY:
os << " with xyerrorlines";
break;
}
break;
case DOTS:
os << " with dots";
break;
case IMPULSES:
os << " with impulses";
break;
case STEPS:
os << " with steps";
break;
case FSTEPS:
os << " with fsteps";
break;
case HISTEPS:
os << " with histeps";
break;
}
if (m_extra.size ())
os << " " << m_extra;
}
void
Gnuplot2dDataset::Data2d::PrintDataFile (std::ostream &os, bool generateOneOutputFile) const
{
for (PointSet::const_iterator i = m_pointset.begin ();
i != m_pointset.end (); ++i)
{
if (i->empty) {
os << std::endl;
continue;
}
switch (m_errorBars) {
case NONE:
os << i->x << " " << i->y << std::endl;
break;
case X:
os << i->x << " " << i->y << " " << i->dx << std::endl;
break;
case Y:
os << i->x << " " << i->y << " " << i->dy << std::endl;
break;
case XY:
os << i->x << " " << i->y << " " << i->dx << " " << i->dy << std::endl;
break;
}
}
// Print the appropriate thing based on whether separate output and
// date files are being generated.
if (generateOneOutputFile)
{
os << "e" << std::endl;
}
else
{
os << std::endl;
os << std::endl;
}
}
bool
Gnuplot2dDataset::Data2d::IsEmpty () const
{
return (m_pointset.size () == 0);
}
// --- Gnuplot2dDataset ---------------------------------------------------- //
enum Gnuplot2dDataset::Style Gnuplot2dDataset::m_defaultStyle = LINES;
enum Gnuplot2dDataset::ErrorBars Gnuplot2dDataset::m_defaultErrorBars = NONE;
Gnuplot2dDataset::Gnuplot2dDataset (const std::string& title)
: GnuplotDataset ( new Data2d (title) )
{
}
void
Gnuplot2dDataset::SetDefaultStyle (enum Style style)
{
m_defaultStyle = style;
}
void
Gnuplot2dDataset::SetStyle (enum Style style)
{
reinterpret_cast<Data2d*>(m_data)->m_style = style;
}
void
Gnuplot2dDataset::SetDefaultErrorBars (enum ErrorBars errorBars)
{
m_defaultErrorBars = errorBars;
}
void
Gnuplot2dDataset::SetErrorBars (enum ErrorBars errorBars)
{
reinterpret_cast<Data2d*>(m_data)->m_errorBars = errorBars;
}
void
Gnuplot2dDataset::Add (double x, double y)
{
NS_ASSERT (reinterpret_cast<Data2d*>(m_data)->m_errorBars == NONE);
struct Point data;
data.empty = false;
data.x = x;
data.y = y;
data.dx = 0.0;
data.dy = 0.0;
reinterpret_cast<Data2d*>(m_data)->m_pointset.push_back (data);
}
void
Gnuplot2dDataset::Add (double x, double y, double errorDelta)
{
NS_ASSERT ( reinterpret_cast<Data2d*>(m_data)->m_errorBars == X ||
reinterpret_cast<Data2d*>(m_data)->m_errorBars == Y );
struct Point data;
data.empty = false;
data.x = x;
data.y = y;
data.dx = errorDelta;
data.dy = errorDelta;
reinterpret_cast<Data2d*>(m_data)->m_pointset.push_back (data);
}
void
Gnuplot2dDataset::Add (double x, double y, double xErrorDelta, double yErrorDelta)
{
NS_ASSERT ( reinterpret_cast<Data2d*>(m_data)->m_errorBars == XY );
struct Point data;
data.empty = false;
data.x = x;
data.y = y;
data.dx = xErrorDelta;
data.dy = yErrorDelta;
reinterpret_cast<Data2d*>(m_data)->m_pointset.push_back (data);
}
void
Gnuplot2dDataset::AddEmptyLine ()
{
struct Point data;
data.empty = true;
reinterpret_cast<Data2d*>(m_data)->m_pointset.push_back (data);
}
// --- Gnuplot2dFunction::Function2d --------------------------------------- //
/**
* \ingroup gnuplot
*
* Structure storing the function to be used for a 2D plot.
*/
struct Gnuplot2dFunction::Function2d : public GnuplotDataset::Data
{
// *** Data Variables ***
std::string m_function; //!< Function to use
/**
* Initializes with the function and title.
*
* \param title Title of the plot
* \param function Function to plot
*/
Function2d(const std::string& title, const std::string& function);
virtual std::string GetCommand () const;
virtual void PrintExpression (std::ostream &os,
bool generateOneOutputFile,
unsigned int dataFileDatasetIndex,
std::string &dataFileName) const;
virtual void PrintDataFile (std::ostream &os, bool generateOneOutputFile) const;
virtual bool IsEmpty () const;
};
Gnuplot2dFunction::Function2d::Function2d(const std::string& title, const std::string& function)
: Data (title),
m_function (function)
{
}
std::string
Gnuplot2dFunction::Function2d::GetCommand () const
{
return "plot";
}
void
Gnuplot2dFunction::Function2d::PrintExpression (std::ostream &os,
bool generateOneOutputFile,
unsigned int dataFileDatasetIndex,
std::string &dataFileName) const
{
os << m_function;
if (m_title.size ())
os << " title \"" << m_title << "\"";
if (m_extra.size ())
os << " " << m_extra;
}
void
Gnuplot2dFunction::Function2d::PrintDataFile (std::ostream &os, bool generateOneOutputFile) const
{
}
bool
Gnuplot2dFunction::Function2d::IsEmpty () const
{
return false;
}
// --- Gnuplot2dFunction --------------------------------------------------- //
Gnuplot2dFunction::Gnuplot2dFunction (const std::string& title, const std::string& function)
: GnuplotDataset ( new Function2d (title, function) )
{
}
void
Gnuplot2dFunction::SetFunction (const std::string& function)
{
reinterpret_cast<Function2d*>(m_data)->m_function = function;
}
// --- Gnuplot3dDataset::Data3d -------------------------------------------- //
/**
* \ingroup gnuplot
*
* Structure storing the data for a 3D plot.
*/
struct Gnuplot3dDataset::Data3d : public GnuplotDataset::Data
{
// *** Data Variables ***
std::string m_style; //!< The plotting style to use for this dataset.
PointSet m_pointset; //!< The set of points in this data set
/**
* Initializes with value from m_defaultStyle.
* \param title Dataset title
*/
Data3d(const std::string& title);
virtual std::string GetCommand () const;
virtual void PrintExpression (std::ostream &os,
bool generateOneOutputFile,
unsigned int dataFileDatasetIndex,
std::string &dataFileName) const;
virtual void PrintDataFile (std::ostream &os, bool generateOneOutputFile) const;
virtual bool IsEmpty () const;
};
Gnuplot3dDataset::Data3d::Data3d(const std::string& title)
: Data (title),
m_style (m_defaultStyle)
{
}
std::string
Gnuplot3dDataset::Data3d::GetCommand () const
{
return "splot";
}
void
Gnuplot3dDataset::Data3d::PrintExpression (std::ostream &os,
bool generateOneOutputFile,
unsigned int dataFileDatasetIndex,
std::string &dataFileName) const
{
os << "\"-\" ";
if (m_style.size ())
os << " " << m_style;
if (m_title.size ())
os << " title \"" << m_title << "\"";
if (m_extra.size ())
os << " " << m_extra;
}
void
Gnuplot3dDataset::Data3d::PrintDataFile (std::ostream &os, bool generateOneOutputFile) const
{
for (PointSet::const_iterator i = m_pointset.begin ();
i != m_pointset.end (); ++i)
{
if (i->empty) {
os << std::endl;
continue;
}
os << i->x << " " << i->y << " " << i->z << std::endl;
}
os << "e" << std::endl;
}
bool
Gnuplot3dDataset::Data3d::IsEmpty () const
{
return (m_pointset.size () == 0);
}
// --- Gnuplot3dDataset ---------------------------------------------------- //
std::string Gnuplot3dDataset::m_defaultStyle = "";
Gnuplot3dDataset::Gnuplot3dDataset (const std::string& title)
: GnuplotDataset ( new Data3d (title) )
{
}
void
Gnuplot3dDataset::SetDefaultStyle (const std::string& style)
{
m_defaultStyle = style;
}
void
Gnuplot3dDataset::SetStyle (const std::string& style)
{
reinterpret_cast<Data3d*>(m_data)->m_style = style;
}
void
Gnuplot3dDataset::Add (double x, double y, double z)
{
struct Point data;
data.empty = false;
data.x = x;
data.y = y;
data.z = z;
reinterpret_cast<Data3d*>(m_data)->m_pointset.push_back (data);
}
void
Gnuplot3dDataset::AddEmptyLine ()
{
struct Point data;
data.empty = true;
reinterpret_cast<Data3d*>(m_data)->m_pointset.push_back (data);
}
// --- Gnuplot3dFunction::Function3d --------------------------------------- //
/**
* \ingroup gnuplot
*
* Structure storing the function to be used for a 3D plot.
*/
struct Gnuplot3dFunction::Function3d : public GnuplotDataset::Data
{
// *** Data Variables ***
std::string m_function; //!< Function to use
/**
* Initializes with the function and title.
*
* \param title Title of the plot
* \param function Function to plot
*/
Function3d(const std::string& title, const std::string& function);
virtual std::string GetCommand () const;
virtual void PrintExpression (std::ostream &os,
bool generateOneOutputFile,
unsigned int dataFileDatasetIndex,
std::string &dataFileName) const;
virtual void PrintDataFile (std::ostream &os, bool generateOneOutputFile) const;
virtual bool IsEmpty () const;
};
Gnuplot3dFunction::Function3d::Function3d(const std::string& title, const std::string& function)
: Data (title),
m_function (function)
{
}
std::string
Gnuplot3dFunction::Function3d::GetCommand () const
{
return "splot";
}
void
Gnuplot3dFunction::Function3d::PrintExpression (std::ostream &os,
bool generateOneOutputFile,
unsigned int dataFileDatasetIndex,
std::string &dataFileName) const
{
os << m_function;
if (m_title.size ())
os << " title \"" << m_title << "\"";
if (m_extra.size ())
os << " " << m_extra;
}
void
Gnuplot3dFunction::Function3d::PrintDataFile (std::ostream &os, bool generateOneOutputFile) const
{
}
bool
Gnuplot3dFunction::Function3d::IsEmpty () const
{
return false;
}
// --- Gnuplot3dFunction --------------------------------------------------- //
Gnuplot3dFunction::Gnuplot3dFunction (const std::string& title, const std::string& function)
: GnuplotDataset ( new Function3d (title, function) )
{
}
void
Gnuplot3dFunction::SetFunction (const std::string& function)
{
reinterpret_cast<Function3d*>(m_data)->m_function = function;
}
// ------------------------------------------------------------------------- //
Gnuplot::Gnuplot (const std::string& outputFilename, const std::string& title)
: m_outputFilename (outputFilename),
m_terminal ( DetectTerminal (outputFilename) ),
m_title (title),
m_generateOneOutputFile (false),
m_dataFileDatasetIndex (0)
{
}
void Gnuplot::SetOutputFilename (const std::string& outputFilename)
{
m_outputFilename = outputFilename;
}
std::string Gnuplot::DetectTerminal (const std::string& filename)
{
std::string::size_type dotpos = filename.rfind ('.');
if (dotpos == std::string::npos) return "";
if (filename.substr (dotpos) == ".png") {
return "png";
}
else if (filename.substr (dotpos) == ".pdf") {
return "pdf";
}
return "";
}
void
Gnuplot::SetTerminal (const std::string& terminal)
{
m_terminal = terminal;
}
void
Gnuplot::SetTitle (const std::string& title)
{
m_title = title;
}
void
Gnuplot::SetLegend (const std::string& xLegend, const std::string& yLegend)
{
m_xLegend = xLegend;
m_yLegend = yLegend;
}
void
Gnuplot::SetExtra (const std::string& extra)
{
m_extra = extra;
}
void
Gnuplot::AppendExtra (const std::string& extra)
{
m_extra += "\n";
m_extra += extra;
}
void
Gnuplot::AddDataset (const GnuplotDataset& dataset)
{
m_datasets.push_back (dataset);
}
void
Gnuplot::GenerateOutput (std::ostream &os)
{
// If this version of this function is called, it is assumed that a
// single output file is being generated.
m_generateOneOutputFile = true;
// Send the gnuplot metadata to the same stream as the data stream.
GenerateOutput (os, os, "");
}
void
Gnuplot::GenerateOutput (std::ostream &osControl,
std::ostream &osData,
std::string dataFileName)
{
if (m_terminal.size ())
osControl << "set terminal " << m_terminal << std::endl;
if (m_outputFilename.size ())
osControl << "set output \"" << m_outputFilename << "\"" << std::endl;
if (m_title.size ())
osControl << "set title \"" << m_title << "\"" << std::endl;
if (m_xLegend.size ())
osControl << "set xlabel \"" << m_xLegend << "\"" << std::endl;
if (m_yLegend.size ())
osControl << "set ylabel \"" << m_yLegend << "\"" << std::endl;
if (m_extra.size ())
osControl << m_extra << std::endl;
if (m_datasets.empty ())
return;
// Determine the GetCommand() values of all datasets included. Check that all
// are equal and print the command.
std::string command = m_datasets.begin ()->m_data->GetCommand ();
for (Datasets::const_iterator i = m_datasets.begin () + 1;
i != m_datasets.end (); ++i)
{
NS_ASSERT_MSG (command == i->m_data->GetCommand (),
"Cannot mix 'plot' and 'splot' GnuplotDatasets.");
}
osControl << command << " ";
// Print all dataset expressions
bool isDataEmpty;
for (Datasets::const_iterator i = m_datasets.begin (); i != m_datasets.end ();)
{
// Only print the dataset if it's not empty.
isDataEmpty = i->m_data->IsEmpty ();
if (!isDataEmpty)
{
// Print the appropriate expression based on whether we are
// generating separate output and date files.
i->m_data->PrintExpression (osControl,
m_generateOneOutputFile,
m_dataFileDatasetIndex,
dataFileName);
m_dataFileDatasetIndex++;
}
i++;
if (i != m_datasets.end () && !isDataEmpty)
{
osControl << ", ";
}
}
osControl << std::endl;
// followed by the inline datafile.
for (Datasets::const_iterator i = m_datasets.begin (); i != m_datasets.end (); i++)
{
i->m_data->PrintDataFile (osData, m_generateOneOutputFile);
}
}
void
Gnuplot::SetDataFileDatasetIndex (unsigned int index)
{
m_dataFileDatasetIndex = index;
}
// ------------------------------------------------------------------------- //
GnuplotCollection::GnuplotCollection (const std::string& outputFilename)
: m_outputFilename (outputFilename),
m_terminal ( Gnuplot::DetectTerminal (outputFilename) )
{
}
void
GnuplotCollection::SetOutFile(const std::string& outputFilename)
{
m_outputFilename = outputFilename;
m_terminal = Gnuplot::DetectTerminal (outputFilename);
}
void
GnuplotCollection::SetTerminal (const std::string& terminal)
{
m_terminal = terminal;
}
void
GnuplotCollection::AddPlot (const Gnuplot& plot)
{
m_plots.push_back (plot);
}
Gnuplot&
GnuplotCollection::GetPlot (unsigned int id)
{
if (id >= m_plots.size ())
throw(std::range_error ("Gnuplot id is out of range"));
else
return m_plots[id];
}
void
GnuplotCollection::GenerateOutput (std::ostream &os)
{
// If this version of this function is called, it is assumed that a
// single output file is being generated.
if (m_terminal.size ())
os << "set terminal " << m_terminal << std::endl;
if (m_outputFilename.size ())
os << "set output \"" << m_outputFilename << "\"" << std::endl;
for (Plots::iterator i = m_plots.begin (); i != m_plots.end (); ++i)
{
i->GenerateOutput (os);
}
}
void
GnuplotCollection::GenerateOutput (std::ostream &osControl, std::ostream &osData,
std::string dataFileName)
{
// If this version of this function is called, it is assumed that
// separate output and date files are being generated.
if (m_terminal.size ())
osControl << "set terminal " << m_terminal << std::endl;
if (m_outputFilename.size ())
osControl << "set output \"" << m_outputFilename << "\"" << std::endl;
for (Plots::iterator i = m_plots.begin (); i != m_plots.end (); ++i)
{
i->GenerateOutput (osControl, osData, dataFileName);
}
}
// ------------------------------------------------------------------------- //
} // namespace ns3
| [
"[email protected]"
] | |
b95211f7e1997462ccc2043653314842ce74f13c | ebb70b0cbe7626366077cbb66a58334aaf880f49 | /slm_models/gecode.framework/Versions/44/include/int/element/view.hpp | 7bce0ffd3cb84a2a36f944c20773a1a7e15896d9 | [
"MIT"
] | permissive | slemouton/gecodeMCP | fa06936f5159a56829a61825e90b3a297fef78dd | d038c52ffcf7351048fe5a018cee29c432d8184f | refs/heads/master | 2021-07-10T22:33:26.858361 | 2021-05-05T21:03:55 | 2021-05-05T21:03:55 | 60,289,358 | 1 | 1 | MIT | 2019-01-12T16:58:17 | 2016-06-02T18:52:11 | C++ | UTF-8 | C++ | false | false | 12,763 | hpp | /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* Main authors:
* Christian Schulte <[email protected]>
*
* Contributing authors:
* Guido Tack <[email protected]>
*
* Copyright:
* Christian Schulte, 2004
* Guido Tack, 2004
*
* Last modified:
* $Date: 2016-06-30 01:28:17 +1000 (Thu, 30 Jun 2016) $ by $Author: schulte $
* $Revision: 15137 $
*
* This file is part of Gecode, the generic constraint
* development environment:
* http://www.gecode.org
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
#include <algorithm>
namespace Gecode { namespace Int { namespace Element {
/**
* \brief Class for bounds-equality test
*
*/
template<class VA, class VC>
class RelTestBnd {
public:
RelTest operator ()(VA,VC);
};
/**
* \brief Class for bounds-equality test (specialized)
*
*/
template<class VA>
class RelTestBnd<VA,ConstIntView> {
public:
RelTest operator ()(VA,ConstIntView);
};
/**
* \brief Class for domain-equality test
*
*/
template<class VA, class VC>
class RelTestDom {
public:
RelTest operator ()(VA,VC);
};
/**
* \brief Class for domain-equality test (specialized)
*
*/
template<class VA>
class RelTestDom<VA,ConstIntView> {
public:
RelTest operator ()(VA,ConstIntView);
};
template<class VA, class VC>
forceinline RelTest
RelTestBnd<VA,VC>::operator ()(VA x, VC y) {
return rtest_eq_bnd(x,y);
}
template<class VA>
forceinline RelTest
RelTestBnd<VA,ConstIntView>::operator ()(VA x, ConstIntView y) {
return rtest_eq_bnd(x,y.val());
}
template<class VA, class VC>
forceinline RelTest
RelTestDom<VA,VC>::operator ()(VA x, VC y) {
return rtest_eq_dom(x,y);
}
template<class VA>
forceinline RelTest
RelTestDom<VA,ConstIntView>::operator ()(VA x, ConstIntView y) {
return rtest_eq_dom(x,y.val());
}
/*
* Base class
*
*/
template<class VA, class VB, class VC, PropCond pc_ac>
View<VA,VB,VC,pc_ac>::View(Home home, IdxViewArray<VA>& iv0,
VB y0, VC y1)
: Propagator(home), iv(iv0), x0(y0), x1(y1) {
x0.subscribe(home,*this,PC_INT_DOM);
x1.subscribe(home,*this,pc_ac);
iv.subscribe(home,*this,pc_ac);
}
template<class VA, class VB, class VC, PropCond pc_ac>
forceinline
View<VA,VB,VC,pc_ac>::View(Space& home, bool share, View& p)
: Propagator(home,share,p) {
x0.update(home,share,p.x0);
x1.update(home,share,p.x1);
iv.update(home,share,p.iv);
}
template<class VA, class VB, class VC, PropCond pc_ac>
PropCost
View<VA,VB,VC,pc_ac>::cost(const Space&, const ModEventDelta&) const {
// This is required for subscribing to variables in the
// above constructor, but this is then the only time this
// virtual function is ever used!
return PropCost::linear(PropCost::LO,iv.size()+2);
}
template<class VA, class VB, class VC, PropCond pc_ac>
void
View<VA,VB,VC,pc_ac>::reschedule(Space& home) {
x0.reschedule(home,*this,PC_INT_DOM);
x1.reschedule(home,*this,pc_ac);
iv.reschedule(home,*this,pc_ac);
}
template<class VA, class VB, class VC, PropCond pc_ac>
forceinline size_t
View<VA,VB,VC,pc_ac>::dispose(Space& home) {
x0.cancel(home,*this,PC_INT_DOM);
x1.cancel(home,*this,pc_ac);
iv.cancel(home,*this,pc_ac);
(void) Propagator::dispose(home);
return sizeof(*this);
}
/**
* \brief Value iterator for indices in index-view map
*
*/
template<class View>
class IterIdxView {
private:
const IdxView<View> *cur, *end;
public:
IterIdxView(void);
IterIdxView(const IdxView<View>*, const IdxView<View>*);
void init(const IdxView<View>*, const IdxView<View>*);
bool operator ()(void) const;
void operator ++(void);
int val(void) const;
};
template<class View>
forceinline
IterIdxView<View>::IterIdxView(void) {}
template<class View>
forceinline
IterIdxView<View>::IterIdxView(const IdxView<View>* b,
const IdxView<View>* e)
: cur(b), end(e) {}
template<class View>
forceinline void
IterIdxView<View>::init(const IdxView<View>* b,
const IdxView<View>* e) {
cur=b; end=e;
}
template<class View>
forceinline bool
IterIdxView<View>::operator ()(void) const {
return cur < end;
}
template<class View>
forceinline void
IterIdxView<View>::operator ++(void) {
cur++;
}
template<class View>
forceinline int
IterIdxView<View>::val(void) const {
return cur->idx;
}
/*
* Generic scanning: does all but computing new domain for result
* (which is specific to bounds/domain version)
*
*/
template<class VA, class VB, class VC, PropCond pc_ac, class RelTest>
ExecStatus
scan(Space& home, IdxViewArray<VA>& iv,
VB x0, VC x1, Propagator& p, RelTest rt) {
assert(iv.size() > 1);
/*
* Prunes pairs of index, variable
* - checks for idx value removed
* - checks for disequal variables
*
*/
ViewValues<VB> vx0(x0);
int i = 0;
int j = 0;
while (vx0() && (i < iv.size())) {
if (iv[i].idx < vx0.val()) {
iv[i].view.cancel(home,p,pc_ac);
++i;
} else if (iv[i].idx > vx0.val()) {
++vx0;
} else {
assert(iv[i].idx == vx0.val());
switch (rt(iv[i].view,x1)) {
case RT_FALSE:
iv[i].view.cancel(home,p,pc_ac);
break;
case RT_TRUE:
case RT_MAYBE:
iv[j++] = iv[i];
break;
default: GECODE_NEVER;
}
++vx0; ++i;
}
}
while (i < iv.size())
iv[i++].view.cancel(home,p,pc_ac);
bool adjust = (j<iv.size());
iv.size(j);
if (iv.size() == 0)
return ES_FAILED;
if (iv.size() == 1) {
GECODE_ME_CHECK(x0.eq(home,iv[0].idx));
} else if (adjust) {
IterIdxView<VA> v(&iv[0],&iv[0]+iv.size());
GECODE_ME_CHECK(x0.narrow_v(home,v,false));
assert(x0.size() == static_cast<unsigned int>(iv.size()));
}
return ES_OK;
}
/*
* Bounds consistent propagator
*
*/
template<class VA, class VB, class VC>
forceinline
ViewBnd<VA,VB,VC>::ViewBnd(Home home,
IdxViewArray<VA>& iv, VB x0, VC x1)
: View<VA,VB,VC,PC_INT_BND>(home,iv,x0,x1) {}
template<class VA, class VB, class VC>
ExecStatus
ViewBnd<VA,VB,VC>::post(Home home,
IdxViewArray<VA>& iv, VB x0, VC x1) {
GECODE_ME_CHECK(x0.gq(home,0));
GECODE_ME_CHECK(x0.le(home,iv.size()));
if (x0.assigned()) {
(void) new (home) Rel::EqBnd<VA,VC>(home,iv[x0.val()].view,x1);
return ES_OK;
} else {
assert(iv.size()>1);
(void) new (home) ViewBnd<VA,VB,VC>(home,iv,x0,x1);
}
return ES_OK;
}
template<class VA, class VB, class VC>
forceinline
ViewBnd<VA,VB,VC>::ViewBnd(Space& home, bool share, ViewBnd& p)
: View<VA,VB,VC,PC_INT_BND>(home,share,p) {}
template<class VA, class VB, class VC>
Actor*
ViewBnd<VA,VB,VC>::copy(Space& home, bool share) {
return new (home) ViewBnd<VA,VB,VC>(home,share,*this);
}
template<class VA, class VB, class VC>
ExecStatus
ViewBnd<VA,VB,VC>::propagate(Space& home, const ModEventDelta&) {
assert(iv.size() > 1);
RelTestBnd<VA,VC> rt;
GECODE_ES_CHECK((scan<VA,VB,VC,PC_INT_BND,RelTestBnd<VA,VC> >
(home,iv,x0,x1,*this,rt)));
if (iv.size() == 1) {
ExecStatus es = home.ES_SUBSUMED(*this);
(void) new (home) Rel::EqBnd<VA,VC>(home(*this),iv[0].view,x1);
return es;
}
assert(iv.size() > 1);
// Compute new result
int min = iv[iv.size()-1].view.min();
int max = iv[iv.size()-1].view.max();
for (int i=iv.size()-1; i--; ) {
min = std::min(iv[i].view.min(),min);
max = std::max(iv[i].view.max(),max);
}
ExecStatus es = shared(x0,x1) ? ES_NOFIX : ES_FIX;
{
ModEvent me = x1.lq(home,max);
if (me_failed(me))
return ES_FAILED;
if (me_modified(me) && (x1.max() != max))
es = ES_NOFIX;
}
{
ModEvent me = x1.gq(home,min);
if (me_failed(me))
return ES_FAILED;
if (me_modified(me) && (x1.min() != min))
es = ES_NOFIX;
}
return (x1.assigned() && (min == max)) ?
home.ES_SUBSUMED(*this) : es;
}
/*
* Domain consistent propagator
*
*/
template<class VA, class VB, class VC>
forceinline
ViewDom<VA,VB,VC>::ViewDom(Home home,
IdxViewArray<VA>& iv, VB x0, VC x1)
: View<VA,VB,VC,PC_INT_DOM>(home,iv,x0,x1) {}
template<class VA, class VB, class VC>
ExecStatus
ViewDom<VA,VB,VC>::post(Home home,
IdxViewArray<VA>& iv, VB x0, VC x1){
GECODE_ME_CHECK(x0.gq(home,0));
GECODE_ME_CHECK(x0.le(home,iv.size()));
if (x0.assigned()) {
(void) new (home) Rel::EqDom<VA,VC>(home,iv[x0.val()].view,x1);
return ES_OK;
} else {
assert(iv.size()>1);
(void) new (home) ViewDom<VA,VB,VC>(home,iv,x0,x1);
}
return ES_OK;
}
template<class VA, class VB, class VC>
forceinline
ViewDom<VA,VB,VC>::ViewDom(Space& home, bool share, ViewDom& p)
: View<VA,VB,VC,PC_INT_DOM>(home,share,p) {}
template<class VA, class VB, class VC>
Actor*
ViewDom<VA,VB,VC>::copy(Space& home, bool share) {
return new (home) ViewDom<VA,VB,VC>(home,share,*this);
}
template<class VA, class VB, class VC>
PropCost
ViewDom<VA,VB,VC>::cost(const Space&, const ModEventDelta& med) const {
return PropCost::linear((VA::me(med) != ME_INT_DOM) ?
PropCost::LO : PropCost::HI, iv.size()+2);
}
template<class VA, class VB, class VC>
ExecStatus
ViewDom<VA,VB,VC>::propagate(Space& home, const ModEventDelta& med) {
assert(iv.size() > 1);
if (VA::me(med) != ME_INT_DOM) {
RelTestBnd<VA,VC> rt;
GECODE_ES_CHECK((scan<VA,VB,VC,PC_INT_DOM,RelTestBnd<VA,VC> >
(home,iv,x0,x1,*this,rt)));
if (iv.size() == 1) {
ExecStatus es = home.ES_SUBSUMED(*this);
(void) new (home) Rel::EqDom<VA,VC>(home(*this),iv[0].view,x1);
return es;
}
// Compute new result
int min = iv[iv.size()-1].view.min();
int max = iv[iv.size()-1].view.max();
for (int i=iv.size()-1; i--; ) {
min = std::min(iv[i].view.min(),min);
max = std::max(iv[i].view.max(),max);
}
GECODE_ME_CHECK(x1.lq(home,max));
GECODE_ME_CHECK(x1.gq(home,min));
return (x1.assigned() && (min == max)) ?
home.ES_SUBSUMED(*this) :
home.ES_NOFIX_PARTIAL(*this,VA::med(ME_INT_DOM));
}
RelTestDom<VA,VC> rt;
GECODE_ES_CHECK((scan<VA,VB,VC,PC_INT_DOM,RelTestDom<VA,VC> >
(home,iv,x0,x1,*this,rt)));
if (iv.size() == 1) {
ExecStatus es = home.ES_SUBSUMED(*this);
(void) new (home) Rel::EqDom<VA,VC>(home(*this),iv[0].view,x1);
return es;
}
assert(iv.size() > 1);
if (x1.assigned()) {
for (int i = iv.size(); i--; )
if (iv[i].view.in(x1.val()))
return shared(x0,x1) ? ES_NOFIX : ES_FIX;
return ES_FAILED;
} else {
Region r(home);
ViewRanges<VA>* i_view = r.alloc<ViewRanges<VA> >(iv.size());
for (int i = iv.size(); i--; )
i_view[i].init(iv[i].view);
Iter::Ranges::NaryUnion i_val(r, i_view, iv.size());
ModEvent me = x1.inter_r(home,i_val);
r.free<ViewRanges<VA> >(i_view,iv.size());
GECODE_ME_CHECK(me);
return (shared(x0,x1) || me_modified(me)) ? ES_NOFIX : ES_FIX;
}
}
}}}
// STATISTICS: int-prop
| [
"[email protected]"
] | |
75b1e21d24a8ad3c0924a7db6daf7dd00dc5d4d9 | 80ee2a0df0ee1c927c2c828dd651793054f68905 | /code/src/caros/hwcomponents/caros_universalrobot/include/caros/universal_robots.h | 4d29c12969ac82e0b633363b9d55b8ab8dc27050 | [] | no_license | ROVI2-SDU-GROUP1/ROVI2 | d92904aff31a28b12c63f42a1a6b51db411f7602 | 93dd07b5815c6da9da3a790d58bd7e16ce55c2db | refs/heads/master | 2021-06-21T15:03:17.935201 | 2017-05-22T10:02:10 | 2017-05-22T10:02:10 | 84,427,466 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,181 | h | #ifndef CAROS_UNIVERSAL_ROBOTS_H
#define CAROS_UNIVERSAL_ROBOTS_H
#include <caros/ur_service_interface.h>
#include <caros/caros_node_service_interface.h>
#include <caros/serial_device_service_interface.h>
#include <rw/invkin/JacobianIKSolver.hpp>
#include <rw/math/Transform3D.hpp>
#include <rw/math/Q.hpp>
#include <rw/math/Wrench6D.hpp>
#include <rwhw/universalrobots/URCallBackInterface.hpp>
#include <rwhw/universalrobots/UniversalRobotsRTLogging.hpp>
#include <queue>
#include <string>
#define SUPPORTED_Q_LENGTH_FOR_UR 6
namespace caros
{
class UniversalRobots : public caros::CarosNodeServiceInterface,
public caros::SerialDeviceServiceInterface,
public URServiceInterface
{
public:
explicit UniversalRobots(const ros::NodeHandle& nodehandle);
virtual ~UniversalRobots();
enum URNODE_ERRORCODE
{
URNODE_MISSING_PARAMETER = 1,
URNODE_URSERVICE_CONFIGURE_FAIL,
URNODE_SERIALDEVICESERVICE_CONFIGURE_FAIL,
URNODE_MISSING_WORKCELL,
URNODE_NO_SUCH_DEVICE_IN_WORKCELL,
URNODE_INVALID_CALLBACKPORT,
URNODE_UNSUCCESSFUL_CONNECT_TO_URRT,
URNODE_UNSUCCESSFUL_CONNECT_TO_UR,
URNODE_UNSUPPORTED_Q_LENGTH,
URNODE_INTERNAL_ERROR
};
/************************************************************************
* URServiceInterface functions
************************************************************************/
//! @copydoc URServiceInterface::servoT
bool urServoT(const rw::math::Transform3D<>& target);
//! @copydoc URServiceInterface::servoQ
bool urServoQ(const rw::math::Q& target);
//! @copydoc URServiceInterface::forceModeStart
bool urForceModeStart(const rw::math::Transform3D<>& ref_t_offset, const rw::math::Q& selection,
const rw::math::Wrench6D<>& wrench_target, const rw::math::Q& limits);
//! @copydoc URServiceInterface::forceModeUpdate
bool urForceModeUpdate(const rw::math::Wrench6D<>& wrench_target);
//! @copydoc URServiceInterface::forceModeStop
bool urForceModeStop();
//! @copydoc URServiceInterface::setPayload
bool urSetPayload(const double &mass, const rw::math::Vector3D<> &com);
/************************************************************************
* SerialDeviceServiceInterface functions
************************************************************************/
//! @copydoc caros::SerialDeviceServiceInterface::moveLin
bool moveLin(const TransformAndSpeedContainer_t& targets);
//! @copydoc caros::SerialDeviceServiceInterface::movePtp
bool movePtp(const QAndSpeedContainer_t& targets);
//! @copydoc caros::SerialDeviceServiceInterface::movePtpT
bool movePtpT(const TransformAndSpeedContainer_t& targets);
//! @copydoc caros::SerialDeviceServiceInterface::moveVelQ
bool moveVelQ(const rw::math::Q& q_vel);
//! @copydoc caros::SerialDeviceServiceInterface::moveVelT
bool moveVelT(const rw::math::VelocityScrew6D<>& t_vel);
//! @copydoc caros::SerialDeviceServiceInterface::moveServoQ
bool moveServoQ(const QAndSpeedContainer_t& targets);
//! @copydoc caros::SerialDeviceServiceInterface::moveServoT
bool moveServoT(const TransformAndSpeedContainer_t& targets);
//! @copydoc caros::SerialDeviceServiceInterface::moveStop
bool moveStop();
protected:
/************************************************************************
* Hooks implemented from CarosNodeServiceInterface base class
************************************************************************/
bool activateHook();
bool recoverHook(const std::string& error_msg, const int64_t error_code);
void runLoopHook();
void errorLoopHook();
void fatalErrorLoopHook();
private:
/* convenience functions */
bool isInWorkingCondition();
bool supportedQSize(const rw::math::Q& q);
private:
ros::NodeHandle nodehandle_;
rw::models::WorkCell::Ptr workcell_;
rw::models::Device::Ptr device_;
rw::math::Q qcurrent_; /* Updated in runLoopHook() */
rwhw::URCallBackInterface ur_;
rwhw::UniversalRobotsRTLogging urrt_;
rw::invkin::JacobianIKSolver::Ptr ik_solver_;
rw::kinematics::State state_;
};
} // namespace caros
#endif // CAROS_UNIVERSAL_ROBOTS_H
| [
"[email protected]"
] | |
d3dc9b8cc243a5b71c782910a276998acc224358 | 26df6604faf41197c9ced34c3df13839be6e74d4 | /src/org/apache/poi/hssf/usermodel/HeaderFooter.cpp | e8fbd3af44f9e9563b6c5c21ffc606b495879109 | [
"Apache-2.0"
] | permissive | pebble2015/cpoi | 58b4b1e38a7769b13ccfb2973270d15d490de07f | 6dcc0c5e13e3e722b4ef9fd0baffbf62bf71ead6 | refs/heads/master | 2021-07-09T09:02:41.986901 | 2017-10-08T12:12:56 | 2017-10-08T12:12:56 | 105,988,119 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,989 | cpp | // Generated from /POI/java/org/apache/poi/hssf/usermodel/HeaderFooter.java
#include <org/apache/poi/hssf/usermodel/HeaderFooter.hpp>
#include <java/io/Serializable.hpp>
#include <java/lang/ArrayStoreException.hpp>
#include <java/lang/CharSequence.hpp>
#include <java/lang/Comparable.hpp>
#include <java/lang/Enum.hpp>
#include <java/lang/Math.hpp>
#include <java/lang/NullPointerException.hpp>
#include <java/lang/String.hpp>
#include <java/lang/StringBuilder.hpp>
#include <org/apache/poi/hssf/usermodel/HeaderFooter_MarkupTag.hpp>
#include <SubArray.hpp>
#include <ObjectArray.hpp>
template<typename ComponentType, typename... Bases> struct SubArray;
namespace java
{
namespace io
{
typedef ::SubArray< ::java::io::Serializable, ::java::lang::ObjectArray > SerializableArray;
} // io
namespace lang
{
typedef ::SubArray< ::java::lang::CharSequence, ObjectArray > CharSequenceArray;
typedef ::SubArray< ::java::lang::Comparable, ObjectArray > ComparableArray;
typedef ::SubArray< ::java::lang::Enum, ObjectArray, ComparableArray, ::java::io::SerializableArray > EnumArray;
typedef ::SubArray< ::java::lang::String, ObjectArray, ::java::io::SerializableArray, ComparableArray, CharSequenceArray > StringArray;
} // lang
} // java
namespace poi
{
namespace hssf
{
namespace usermodel
{
typedef ::SubArray< ::poi::hssf::usermodel::HeaderFooter_MarkupTag, ::java::lang::EnumArray > HeaderFooter_MarkupTagArray;
} // usermodel
} // hssf
} // poi
template<typename T>
static T* npc(T* t)
{
if(!t) throw new ::java::lang::NullPointerException();
return t;
}
poi::hssf::usermodel::HeaderFooter::HeaderFooter(const ::default_init_tag&)
: super(*static_cast< ::default_init_tag* >(0))
{
clinit();
}
poi::hssf::usermodel::HeaderFooter::HeaderFooter()
: HeaderFooter(*static_cast< ::default_init_tag* >(0))
{
ctor();
}
void poi::hssf::usermodel::HeaderFooter::ctor()
{
super::ctor();
}
java::lang::StringArray* poi::hssf::usermodel::HeaderFooter::splitParts()
{
auto text = getRawText();
auto _left = u""_j;
auto _center = u""_j;
auto _right = u""_j;
while (npc(text)->length() > 1) {
bool outer0_continue = false;
if(npc(text)->charAt(int32_t(0)) != u'&') {
_center = text;
break;
}
auto pos = npc(text)->length();
switch (npc(text)->charAt(int32_t(1))) {
case u'L':
if(npc(text)->contains(u"&C"_j)) {
pos = ::java::lang::Math::min(pos, npc(text)->indexOf(u"&C"_j));
}
if(npc(text)->contains(u"&R"_j)) {
pos = ::java::lang::Math::min(pos, npc(text)->indexOf(u"&R"_j));
}
_left = npc(text)->substring(2, pos);
text = npc(text)->substring(pos);
break;
case u'C':
if(npc(text)->contains(u"&L"_j)) {
pos = ::java::lang::Math::min(pos, npc(text)->indexOf(u"&L"_j));
}
if(npc(text)->contains(u"&R"_j)) {
pos = ::java::lang::Math::min(pos, npc(text)->indexOf(u"&R"_j));
}
_center = npc(text)->substring(2, pos);
text = npc(text)->substring(pos);
break;
case u'R':
if(npc(text)->contains(u"&C"_j)) {
pos = ::java::lang::Math::min(pos, npc(text)->indexOf(u"&C"_j));
}
if(npc(text)->contains(u"&L"_j)) {
pos = ::java::lang::Math::min(pos, npc(text)->indexOf(u"&L"_j));
}
_right = npc(text)->substring(2, pos);
text = npc(text)->substring(pos);
break;
default:
_center = text;
goto outer0_break;
}
}
outer0_break:;
return new ::java::lang::StringArray({
_left
, _center
, _right
});
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::getLeft()
{
return (*splitParts())[int32_t(0)];
}
void poi::hssf::usermodel::HeaderFooter::setLeft(::java::lang::String* newLeft)
{
updatePart(0, newLeft);
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::getCenter()
{
return (*splitParts())[int32_t(1)];
}
void poi::hssf::usermodel::HeaderFooter::setCenter(::java::lang::String* newCenter)
{
updatePart(1, newCenter);
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::getRight()
{
return (*splitParts())[int32_t(2)];
}
void poi::hssf::usermodel::HeaderFooter::setRight(::java::lang::String* newRight)
{
updatePart(2, newRight);
}
void poi::hssf::usermodel::HeaderFooter::updatePart(int32_t partIndex, ::java::lang::String* newValue)
{
auto parts = splitParts();
parts->set(partIndex, newValue == nullptr ? u""_j : newValue);
updateHeaderFooterText(parts);
}
void poi::hssf::usermodel::HeaderFooter::updateHeaderFooterText(::java::lang::StringArray* parts)
{
auto _left = (*parts)[int32_t(0)];
auto _center = (*parts)[int32_t(1)];
auto _right = (*parts)[int32_t(2)];
if(npc(_center)->length() < 1 && npc(_left)->length() < 1 && npc(_right)->length() < 1) {
setHeaderFooterText(u""_j);
return;
}
auto sb = new ::java::lang::StringBuilder(int32_t(64));
npc(sb)->append(u"&C"_j);
npc(sb)->append(_center);
npc(sb)->append(u"&L"_j);
npc(sb)->append(_left);
npc(sb)->append(u"&R"_j);
npc(sb)->append(_right);
auto text = npc(sb)->toString();
setHeaderFooterText(text);
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::fontSize(int16_t size)
{
clinit();
return ::java::lang::StringBuilder().append(u"&"_j)->append(size)->toString();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::font(::java::lang::String* font, ::java::lang::String* style)
{
clinit();
return ::java::lang::StringBuilder().append(u"&\""_j)->append(font)
->append(u","_j)
->append(style)
->append(u"\""_j)->toString();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::page()
{
clinit();
return npc(HeaderFooter_MarkupTag::PAGE_FIELD)->getRepresentation();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::numPages()
{
clinit();
return npc(HeaderFooter_MarkupTag::NUM_PAGES_FIELD)->getRepresentation();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::date()
{
clinit();
return npc(HeaderFooter_MarkupTag::DATE_FIELD)->getRepresentation();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::time()
{
clinit();
return npc(HeaderFooter_MarkupTag::TIME_FIELD)->getRepresentation();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::file()
{
clinit();
return npc(HeaderFooter_MarkupTag::FILE_FIELD)->getRepresentation();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::tab()
{
clinit();
return npc(HeaderFooter_MarkupTag::SHEET_NAME_FIELD)->getRepresentation();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::startBold()
{
clinit();
return npc(HeaderFooter_MarkupTag::BOLD_FIELD)->getRepresentation();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::endBold()
{
clinit();
return npc(HeaderFooter_MarkupTag::BOLD_FIELD)->getRepresentation();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::startUnderline()
{
clinit();
return npc(HeaderFooter_MarkupTag::UNDERLINE_FIELD)->getRepresentation();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::endUnderline()
{
clinit();
return npc(HeaderFooter_MarkupTag::UNDERLINE_FIELD)->getRepresentation();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::startDoubleUnderline()
{
clinit();
return npc(HeaderFooter_MarkupTag::DOUBLE_UNDERLINE_FIELD)->getRepresentation();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::endDoubleUnderline()
{
clinit();
return npc(HeaderFooter_MarkupTag::DOUBLE_UNDERLINE_FIELD)->getRepresentation();
}
java::lang::String* poi::hssf::usermodel::HeaderFooter::stripFields(::java::lang::String* pText)
{
clinit();
int32_t pos;
if(pText == nullptr || npc(pText)->length() == 0) {
return pText;
}
auto text = pText;
for(auto mt : *npc(HeaderFooter_MarkupTag::values())) {
auto seq = npc(mt)->getRepresentation();
while ((pos = npc(text)->indexOf(seq)) >= 0) {
text = ::java::lang::StringBuilder().append(npc(text)->substring(0, pos))->append(npc(text)->substring(pos + npc(seq)->length()))->toString();
}
}
text = npc(text)->replaceAll(u"\\&\\d+"_j, u""_j);
text = npc(text)->replaceAll(u"\\&\".*?,.*?\""_j, u""_j);
return text;
}
extern java::lang::Class *class_(const char16_t *c, int n);
java::lang::Class* poi::hssf::usermodel::HeaderFooter::class_()
{
static ::java::lang::Class* c = ::class_(u"org.apache.poi.hssf.usermodel.HeaderFooter", 42);
return c;
}
java::lang::Class* poi::hssf::usermodel::HeaderFooter::getClass0()
{
return class_();
}
| [
"[email protected]"
] | |
0b7d4775b1e557b28a079c928c37dcb67841d37b | 5539e15b1b0589dce6cdedfc23c9d643ce42a0a8 | /twoSubstr.cpp | bec894d32f5e42036cf9e5d29efb9eb77cbe9a12 | [] | no_license | dthinkcs/problemSolving | 92838312ec34acb11a5cb17dadfb1440789872ce | 7e072b09fb0d5d25ec994738f2a8606496082a3f | refs/heads/master | 2020-04-27T21:25:23.548700 | 2019-06-12T18:08:01 | 2019-06-12T18:08:01 | 174,695,636 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,591 | cpp | #include <bits/stdc++.h>
using namespace std;
int findMy(string s, string sub)
{
for (int i = 0; i < s.length(); i++)
{
if (s[i] == sub[0])
{
int j = 0;
for (int inner_i = i; j < sub.length(); j++, inner_i++)
if (s[inner_i] != sub[j])
break;
if (j == sub.length())
return i;
//j = 0;
}
}
return -1;
}
void twoSubstrings(string s)
{
int indexAB = findMy(s, "AB");
if (indexAB == -1)
{
cout << "no" << endl;
return;
}
int indexBA = findMy(s, "BA");
if (indexBA == -1)
{
cout << "no" << endl;
return;
}
// difference between 2 indices must be 2 or greater
if (abs(indexAB - indexBA) < 2)
{
cout << "no" << endl;
}
else
cout << "yes" << endl;
}
void twoSubstrings1( string s)
{
int indexAB = s.find("AB");
if (indexAB == string::npos)
{
cout << "no" << endl;
return;
}
int indexBA = s.find("BA");
if (indexBA == string::npos)
{
cout << "no" << endl;
return;
}
// difference between 2 indices must be 2 or greater
if (abs(indexAB - indexBA) < 2)
{
cout << "no" << endl;
}
else
cout << "yes" << endl;
}
bool twoSubstrings2( string s)
{
int indexAB = s.find("AB");
if (indexAB == string::npos)
return false;
int indexBA = s.find("BA");
if (indexBA == string::npos)
return false;
return (abs(indexAB - indexBA));
}
| [
"[email protected]"
] | |
da425ce8725259f04aa9e7a55a4ceb66771446a4 | 00c98408c6bc423117d7c87c963dc16b11740108 | /Widgets/vtkKWEPaintbrushSelectionRepresentation.cxx | 7f912daebc6b5b30ae34933fa7e363220d9dcbe7 | [] | no_license | wuzhuobin/vtkEdge | 7c4f125f0c6fd497056993f27658ca5494f6727e | ed13af68a72cec79e3645f7e842d6074592abfa2 | refs/heads/master | 2021-01-20T03:54:36.966290 | 2017-08-25T06:57:30 | 2017-08-25T06:57:30 | 101,374,382 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,241 | cxx | //=============================================================================
// This file is part of VTKEdge. See vtkedge.org for more information.
//
// Copyright (c) 2010 Kitware, Inc.
//
// VTKEdge may be used under the terms of the BSD License
// Please see the file Copyright.txt in the root directory of
// VTKEdge for further information.
//
// Alternatively, you may see:
//
// http://www.vtkedge.org/vtkedge/project/license.html
//
//
// For custom extensions, consulting services, or training for
// this or any other Kitware supported open source project, please
// contact Kitware at [email protected].
//
//
//=============================================================================
#include "vtkKWEPaintbrushSelectionRepresentation.h"
#include "vtkKWEPaintbrushDrawing.h"
#include "vtkKWEPaintbrushProperty.h"
#include "vtkKWEPaintbrushData.h"
#include "vtkCoordinate.h"
#include "vtkRenderer.h"
#include "vtkObjectFactory.h"
#include "vtkInteractorObserver.h"
#include "vtkPointPlacer.h"
#include "vtkProperty.h"
#include <algorithm>
vtkCxxRevisionMacro(vtkKWEPaintbrushSelectionRepresentation, "$Revision: 1774 $");
vtkCxxSetObjectMacro(vtkKWEPaintbrushSelectionRepresentation, PointPlacer, vtkPointPlacer);
vtkCxxSetObjectMacro(vtkKWEPaintbrushSelectionRepresentation, PaintbrushDrawing, vtkKWEPaintbrushDrawing);
//----------------------------------------------------------------------
vtkKWEPaintbrushSelectionRepresentation::vtkKWEPaintbrushSelectionRepresentation()
{
this->PaintbrushDrawing = NULL;
this->PointPlacer = NULL;
this->SelectedSketch = NULL;
this->InteractionState = None;
this->DragBeginPoint[0] =
this->DragBeginPoint[1] =
this->DragBeginPoint[2] = VTK_DOUBLE_MIN;
}
//----------------------------------------------------------------------
vtkKWEPaintbrushSelectionRepresentation::~vtkKWEPaintbrushSelectionRepresentation()
{
this->SetPaintbrushDrawing(NULL);
this->SetPointPlacer(NULL);
}
//----------------------------------------------------------------------
int vtkKWEPaintbrushSelectionRepresentation
::ComputeInteractionState( int X, int Y, int vtkNotUsed(modifier) )
{
const int nSketches = this->PaintbrushDrawing->GetNumberOfItems();
if (this->InteractionState == PaintbrushRequestSketchSelect)
{
// First check if the point placer validates us.
double displayPos[2] = {X, Y}, worldPos[3], worldOrient[9] = {1.0,0.0,0.0,
0.0,1.0,0.0,
0.0,0.0,1.0};
if ( this->PointPlacer->ComputeWorldPosition( this->Renderer,
displayPos, worldPos, worldOrient ) )
{
// Traverse the list of selected sketches and see if we are trying
// to unselect any of them.
for (SelectedSketchesType::reverse_iterator rit =
this->SelectedSketches.rbegin();
rit != this->SelectedSketches.rend(); ++rit)
{
if (this->WorldPositionIsInside( *rit, worldPos ))
{
// We clicked on a selected sketch. We should toggle its selection;
// Unselect it.
this->InteractionState =
this->PrevInteractionState = PaintbrushSketchUnselect;
this->SelectedSketch = *rit; // Its really an unselected sketch.
this->RemoveSketchFromSelection(*rit);
return this->InteractionState;
}
}
// Now traverse the list of un-selected sketches in the drawing and see
// if we are trying to select any of them.
for (int i = 0; i < nSketches; i++)
{
vtkKWEPaintbrushSketch *s = this->PaintbrushDrawing->GetItem(i);
// Skip any sketches that are already selected for efficiency. We
// know that we aren't over an already selected sketch; if we were,
// we'd have unselected it in above.
if (vtkstd::find(this->SelectedSketches.begin(),
this->SelectedSketches.end(), s) != this->SelectedSketches.end())
{
continue;
}
if (this->WorldPositionIsInside( s, worldPos ))
{
// Select this sketch.
this->InteractionState =
this->PrevInteractionState = PaintbrushSketchSelect;
this->SelectedSketch = s;
this->AddSketchToSelection(s);
return this->InteractionState;
}
}
}
}
// Drag and drop merge support...
else if (this->InteractionState == PaintbrushRequestSketchMerge
&& nSketches > 1)
{
double displayPos[2]={X, Y}, worldOrient[9] = {1.0,0.0,0.0,
0.0,1.0,0.0,
0.0,0.0,1.0};
if (this->PrevInteractionState == PaintbrushSketchSelect &&
this->SelectedSketch )
{
this->DragEndPoint[0] =
this->DragEndPoint[1] =
this->DragEndPoint[2] = VTK_DOUBLE_MIN;
if ( !this->PointPlacer->ComputeWorldPosition( this->Renderer,
displayPos, this->DragBeginPoint, worldOrient ) )
{
this->DragBeginPoint[0] =
this->DragBeginPoint[1] =
this->DragBeginPoint[2] = VTK_DOUBLE_MIN;
}
this->PrevInteractionState = PaintbrushRequestSketchMerge;
}
if ( !this->PointPlacer->ComputeWorldPosition( this->Renderer,
displayPos, this->DragEndPoint, worldOrient ) )
{
this->DragEndPoint[0] =
this->DragEndPoint[1] =
this->DragEndPoint[2] = VTK_DOUBLE_MIN;
}
else
{
this->DragAndDropDestination = NULL;
for (int i = nSketches-1; i >= 0 ; --i)
{
vtkKWEPaintbrushSketch *s = this->PaintbrushDrawing->GetItem(i);
if (this->WorldPositionIsInside( s, this->DragEndPoint))
{
this->DragAndDropDestination = s;
this->InteractionState = PaintbrushSketchMerge;
break;
}
}
}
return this->InteractionState;
}
// Clearly, if we got here, we haven't managed to toggle the selected
// state of any sketch.
this->InteractionState = None;
this->SelectedSketch = NULL;
return this->InteractionState;
}
//----------------------------------------------------------------------
void vtkKWEPaintbrushSelectionRepresentation
::AddSketchToSelection( vtkKWEPaintbrushSketch * s )
{
if (vtkstd::find(this->SelectedSketches.begin(),
this->SelectedSketches.end(), s) == this->SelectedSketches.end())
{
this->SelectedSketches.push_back(s);
s->GetPaintbrushProperty()->HighlightOn();
}
}
//----------------------------------------------------------------------
void vtkKWEPaintbrushSelectionRepresentation::SelectAllSketches()
{
this->SelectedSketches.clear();
const int nSketches = this->PaintbrushDrawing->GetNumberOfItems();
for (int n = 0; n < nSketches; n++)
{
vtkKWEPaintbrushSketch * s = this->PaintbrushDrawing->GetItem(n);
this->SelectedSketches.push_back(s);
s->GetPaintbrushProperty()->HighlightOn();
}
}
//----------------------------------------------------------------------
void vtkKWEPaintbrushSelectionRepresentation::UnSelectAllSketches()
{
// Iterate over all the sketches and un-highlight them.
for (SelectedSketchesType::iterator it = this->SelectedSketches.begin();
it != this->SelectedSketches.end(); ++it)
{
if (this->PaintbrushDrawing->IsItemPresent(*it))
{
(*it)->GetPaintbrushProperty()->HighlightOff();
}
}
this->SelectedSketches.clear();
}
//----------------------------------------------------------------------
void vtkKWEPaintbrushSelectionRepresentation
::RemoveSketchFromSelection( vtkKWEPaintbrushSketch * s )
{
SelectedSketchesType::iterator it = vtkstd::find(
this->SelectedSketches.begin(), this->SelectedSketches.end(), s);
if (it != this->SelectedSketches.end())
{
s->GetPaintbrushProperty()->HighlightOff();
this->SelectedSketches.erase(it);
}
}
//----------------------------------------------------------------------
int vtkKWEPaintbrushSelectionRepresentation
::WorldPositionIsInside( vtkKWEPaintbrushSketch *s, double worldPos[3] )
{
return s->GetPaintbrushData()->IsInside(worldPos);
}
//----------------------------------------------------------------------
int vtkKWEPaintbrushSelectionRepresentation
::DisplayPositionIsInside( vtkKWEPaintbrushSketch *s, double dispPos[2] )
{
// First check if the point placer validates us.
double worldPos[3], worldOrient[9] = {1.0,0.0,0.0,
0.0,1.0,0.0,
0.0,0.0,1.0};
if ( this->PointPlacer->ComputeWorldPosition( this->Renderer,
dispPos, worldPos, worldOrient ) )
{
return this->WorldPositionIsInside( s, worldPos );
}
return 0;
}
//----------------------------------------------------------------------
int vtkKWEPaintbrushSelectionRepresentation::DeleteSelectedSketches()
{
int nSketchesRemoved = 0;
for (SelectedSketchesType::iterator it = this->SelectedSketches.begin();
it != this->SelectedSketches.end(); ++it)
{
nSketchesRemoved += this->PaintbrushDrawing->RemoveItem( *it );
}
this->SelectedSketch = NULL;
this->SelectedSketches.clear();
// Don't let the drawing lie without any sketches at all. Keep one there,
// so that we can draw something.
return nSketchesRemoved;
}
//----------------------------------------------------------------------
int vtkKWEPaintbrushSelectionRepresentation
::MergeSelectedSketches( vtkKWEPaintbrushSketch *mergedSketch,
int removeSketches )
{
if (this->SelectedSketches.size() < 2)
{
return 0; // We need at least two to merge.
}
// Assert that mergedSketch, if supplied, is a sketch from the drawing.
if (mergedSketch && this->PaintbrushDrawing->IsItemPresent(mergedSketch) == 0)
{
vtkErrorMacro( "The sketch youre trying to merge into must be a sketch"
<< " from the drawing" );
return 0;
}
SelectedSketchesType::iterator it = this->SelectedSketches.begin();
vtkKWEPaintbrushSketch *sketchToMergeInto = mergedSketch ? mergedSketch : (*it);
// Now merge all the selected sketches into sketchToMergeInto
for (; it != this->SelectedSketches.end(); ++it)
{
// We don't want to merge the sketchToMergeInto with sketchToMergeInto
if (*it != sketchToMergeInto)
{
// Sanity check to make sure that the sketch is present in the drawing
if (this->PaintbrushDrawing->IsItemPresent(*it))
{
sketchToMergeInto->GetPaintbrushData()->Add( (*it)->GetPaintbrushData() );
if (removeSketches)
{
(*it)->GetPaintbrushProperty()->HighlightOff();
this->PaintbrushDrawing->RemoveItem( *it );
}
}
}
}
if (removeSketches)
{
// If the sketch being merged into was a part of the selection, leave it as
// selected and remove the rest.
if (vtkstd::find(this->SelectedSketches.begin(), this->SelectedSketches.end(),
sketchToMergeInto) != this->SelectedSketches.end())
{
this->SelectedSketch = sketchToMergeInto;
this->SelectedSketches.clear();
this->SelectedSketches.push_back( sketchToMergeInto );
}
else
{
this->SelectedSketch = NULL;
this->SelectedSketches.clear();
}
}
// Don't let the drawing lie without any sketches at all. Keep one there,
// so that we can draw something.
return 1;
}
//----------------------------------------------------------------------
void vtkKWEPaintbrushSelectionRepresentation::DeepCopy(vtkWidgetRepresentation *rep)
{
vtkKWEPaintbrushSelectionRepresentation *r
= vtkKWEPaintbrushSelectionRepresentation::SafeDownCast(rep);
if (this == r || !r)
{
return;
}
//if (this->PointPlacer && r->PointPlacer)
// {
// this->PointPlacer->DeepCopy(r->PointPlacer);
// }
this->InteractionState = r->InteractionState;
this->SelectedSketch = r->SelectedSketch;
this->SelectedSketches = r->SelectedSketches;
this->SetPaintbrushDrawing( r->GetPaintbrushDrawing() );
}
//----------------------------------------------------------------------
int vtkKWEPaintbrushSelectionRepresentation::DragAndDropMerge()
{
// If both the drag and the drop sketches aren't null..
if (this->SelectedSketch && this->DragAndDropDestination &&
this->PaintbrushDrawing->IsItemPresent(this->SelectedSketch) &&
this->PaintbrushDrawing->IsItemPresent(this->DragAndDropDestination))
{
this->DragAndDropDestination->GetPaintbrushData()->Add(
this->SelectedSketch->GetPaintbrushData() );
this->RemoveSketchFromSelection(this->SelectedSketch);
this->PaintbrushDrawing->RemoveItem(this->SelectedSketch);
this->SelectedSketch = NULL;
return 1;
}
return 0;
}
//----------------------------------------------------------------------
void vtkKWEPaintbrushSelectionRepresentation
::PrintSelf(ostream& os, vtkIndent indent)
{
//Superclass typedef defined in vtkTypeMacro() found in vtkSetGet.h
this->Superclass::PrintSelf(os,indent);
}
| [
"[email protected]"
] | |
49fe3db47a4a703e42a5f92562d013057a3c14a6 | 950aaf9de62953618843485f0e5bd19cda6956fa | /Plugins/rtik/Source/rtik/Private/Utility/AnimUtil.cpp | 091fdd5a242dca5407a51ca829caceaa1a5f662f | [
"MIT"
] | permissive | vr-marco/rtik | adfb368c57fe5fa6ea2c61d6e2a357f9d0e7dd5e | f71206aaaa74fec671a31e8cab8fd13fd76742a6 | refs/heads/master | 2020-10-02T06:33:44.994657 | 2019-12-15T15:38:38 | 2019-12-15T15:38:38 | 227,722,614 | 1 | 0 | MIT | 2019-12-13T00:34:09 | 2019-12-13T00:34:08 | null | UTF-8 | C++ | false | false | 1,635 | cpp | // Copyright (c) Henry Cooney 2017
// Provides animation utility functions (many blueprintable). All functions defined here are pure.
#include "rtik.h"
#include "AnimUtil.h"
#include "AnimationRuntime.h"
// Get the world space location vector for a bone
FVector FAnimUtil::GetBoneWorldLocation(USkeletalMeshComponent& SkelComp, FCSPose<FCompactPose>& MeshBases, FCompactPoseBoneIndex BoneIndex)
{
FTransform BoneTransform = MeshBases.GetComponentSpaceTransform(BoneIndex);
FAnimationRuntime::ConvertCSTransformToBoneSpace(SkelComp.GetComponentTransform(), MeshBases, BoneTransform, BoneIndex, BCS_WorldSpace);
return BoneTransform.GetLocation();
}
// Get the world space transform for a bone
FTransform FAnimUtil::GetBoneWorldTransform(USkeletalMeshComponent& SkelComp, FCSPose<FCompactPose>& MeshBases, FCompactPoseBoneIndex BoneIndex)
{
FTransform BoneTransform = MeshBases.GetComponentSpaceTransform(BoneIndex);
FAnimationRuntime::ConvertCSTransformToBoneSpace(SkelComp.GetComponentTransform(), MeshBases, BoneTransform, BoneIndex, BCS_WorldSpace);
return BoneTransform;
}
// Get the world space location vector for a bone
FVector FAnimUtil::GetBoneCSLocation(USkeletalMeshComponent& SkelComp, FCSPose<FCompactPose>& MeshBases, FCompactPoseBoneIndex BoneIndex)
{
return MeshBases.GetComponentSpaceTransform(BoneIndex).GetLocation();
}
// Get the world space transform for a bone
FTransform FAnimUtil::GetBoneCSTransform(USkeletalMeshComponent& SkelComp, FCSPose<FCompactPose>& MeshBases, FCompactPoseBoneIndex BoneIndex)
{
return MeshBases.GetComponentSpaceTransform(BoneIndex);
}
| [
"[email protected]"
] | |
14dd052eb1205db0addbc730d5240a5d4e23b15e | 00ffb48a05204c6b9aac4c569a8637a336b460dc | /src/bnspatch/xmlreader.h | bd93974a23c9bcd3f1eb692e2a0cbeea621767a2 | [
"ISC",
"LicenseRef-scancode-unknown-license-reference",
"CC-BY-4.0",
"MIT"
] | permissive | Yberion/bnspatch | 6dd99680fdd8f0bd037e2e065f7ed655fcbbe0a0 | e6f5bac44fc1b0212bb1a3ad8f06109525f76562 | refs/heads/main | 2023-06-24T05:11:43.964582 | 2021-07-14T06:04:20 | 2021-07-14T06:04:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,500 | h | #pragma once
#include <cstdint>
class XmlReaderIO
{
public:
enum ErrCode
{
ERR_NO_ERROR,
ERR_UNKNOWN,
ERR_SYSTEM,
ERR_NO_MORE_FILE,
ERR_NOT_IMPLEMENTED,
ERR_INVALID_PARAM,
ERR_INSUFFICIENT_BUFFER
};
virtual enum ErrCode Open(const wchar_t *path, const wchar_t *xml, bool recursive) = 0;
virtual enum ErrCode Read(unsigned char *buf, unsigned int *bufsize) const = 0;
virtual unsigned int GetFileSize() const = 0;
virtual const wchar_t *GetFileName() const = 0;
virtual enum ErrCode Next() = 0;
virtual void Close() = 0;
}; /* size: 0x0008 */
class XmlReaderLog
{
public:
virtual void Error(const wchar_t *format, ...) const = 0;
virtual void Debug(const wchar_t *format, ...) const = 0;
virtual void Trace(const wchar_t *format, ...) const = 0;
}; /* size = 0x0008 */
class XmlDoc
{
public:
virtual bool IsValid() const = 0;
virtual const wchar_t *Name() const = 0;
virtual class XmlElement *Root() = 0;
virtual int BinarySize() const = 0;
virtual void SerializeTo(char *buf, int size) const = 0;
virtual void SerializeFrom(char *buf, int size) = 0;
}; /* size: 0x0008 */
class XmlNode
{
public:
enum TYPE
{
XML_NONE,
XML_ELEMENT,
XML_TEXT,
};
virtual enum TYPE Type() const = 0;
virtual bool IsValid() const = 0;
virtual const wchar_t *Name() const = 0;
virtual class XmlDoc const *GetDoc() const = 0;
virtual class XmlNode const *Parent() const = 0;
virtual int ChildCount() const = 0;
virtual const class XmlNode *FirstChild() const = 0;
virtual const class XmlNode *Child(int) const = 0;
virtual const class XmlNode *Next() const = 0;
virtual long LineNumber() const = 0;
virtual const wchar_t *GetURI() const = 0;
virtual int MemSize() const = 0;
virtual int Clone(char *buf, int size) const = 0;
virtual class XmlNode *CloneNode(char *buf, int size) const = 0;
virtual int BinarySize() const = 0;
virtual void SerializeTo(char *&buf, int &size) const = 0;
virtual void SerializeFrom(char *&buf, int &size) = 0;
virtual const class XmlElement *ToXmlElement() const = 0;
virtual class XmlElement *ToXmlElement() = 0;
virtual const class XmlTextNode *ToXmlTextNode() const = 0;
virtual class XmlTextNode *ToXmlTextNode() = 0;
}; /* size: 0x0008 */
class XmlElement
{
public:
virtual int ChildElementCount() const = 0;
virtual const class XmlElement *FirstChildElement() const = 0;
virtual const class XmlElement *NextElement() const = 0;
virtual const wchar_t *Name() const = 0;
virtual long LineNumber() const = 0;
virtual int AttributeCount() const = 0;
virtual const wchar_t *Attribute(unsigned int nameHash, const wchar_t *name) const = 0;
virtual const wchar_t *Attribute(int index) const = 0;
virtual const wchar_t *Attribute(const wchar_t *name) const = 0;
virtual const wchar_t *AttributeName(int index) const = 0;
virtual int AttributeIndex(const wchar_t *name) const = 0;
virtual const class XmlNode *ToXmlNode() const = 0;
virtual class XmlNode *ToXmlNode() = 0;
}; /* size: 0x0008 */
class _XmlSaxHandler
{
public:
virtual bool StartParser() = 0;
virtual bool EndParser() = 0;
virtual bool StartElement(class XmlElement *) = 0;
virtual bool EndElement(class XmlElement *) = 0;
};
#if defined( XMLREADER_INTERFACE_VERSION_13 )
class XmlReader
{
public:
virtual bool Initialize(class XmlReaderIO *io, const class XmlReaderLog *log, bool useExpat) const = 0;
virtual const class XmlReaderLog *SetLog(const class XmlReaderLog *log) const = 0;
virtual const class XmlReaderLog *GetLog() const = 0;
virtual void Cleanup(bool clearMemory) const = 0;
virtual class XmlReaderIO *GetIO() const = 0;
virtual bool Read(const wchar_t *xml, class _XmlSaxHandler &handler) const = 0;
virtual class XmlDoc *Read(const wchar_t *xml) const = 0;
virtual class XmlDoc *Read(const unsigned char *mem, unsigned int size, const wchar_t *xmlFileNameForLogging) const = 0;
virtual void Close(class XmlDoc *doc) const = 0;
virtual class XmlDoc *NewDoc() const = 0;
virtual bool IsBinary(const wchar_t *xml) const = 0;
virtual bool IsBinary(const unsigned char *mem, unsigned int size) const = 0;
}; /* size: 0x0008 */
#else
class XmlPieceReader
{
public:
virtual bool Read(class XmlDoc *doc) = 0;
virtual int GetMaxNodeCountPerPiece() = 0;
}; /* size: 0x0008 */
class XmlReader
{
public:
virtual bool Initialize(class XmlReaderIO *io, const class XmlReaderLog *log, bool useExpat) const = 0;
virtual const class XmlReaderLog *SetLog(const class XmlReaderLog *) const = 0;
virtual const class XmlReaderLog *GetLog() const = 0;
virtual void Cleanup(bool) const = 0;
virtual class XmlReaderIO *GetIO() const = 0;
virtual bool Read(const wchar_t *xml, class _XmlSaxHandler &handler) const = 0;
virtual class XmlDoc *Read(const wchar_t *xml, class XmlPieceReader *xmlPieceReader) const = 0;
virtual class XmlDoc *Read(const unsigned char *mem, unsigned int size, const wchar_t *xmlFileNameForLogging, class XmlPieceReader *xmlPieceReader) const = 0;
virtual void Close(class XmlDoc *doc) const = 0;
virtual class XmlDoc *NewDoc() const = 0;
virtual bool IsBinary(const unsigned char *mem, unsigned int size) const = 0;
virtual bool IsBinary(const wchar_t *xml) const = 0;
}; /* size: 0x0008 */
#endif
class XmlTextNode
{
public:
virtual const wchar_t *Value() const = 0;
virtual const class XmlNode *ToXmlNode() const = 0;
virtual class XmlNode *ToXmlNode() = 0;
}; /* size: 0x0008 */
| [
"[email protected]"
] | |
205ae05f3bd1254b66bbed89b403a17b8804fa44 | 576e1c2aa00d605c255b8cdd11471a3cc8ac27b3 | /8.Sorting/sorting stepwise/SELECTIO.CPP | 470a86731287cc7a05b4de5f7ac71c379faa6d4c | [] | no_license | adithya-kk/Data-Structures-C-C- | 8bfedc04ea12248ce415a74517e6a846c1a8e20e | cb76b79474dfe73bd627b6c616d1f408b4978e7f | refs/heads/master | 2022-12-12T13:28:14.749410 | 2020-09-10T05:08:47 | 2020-09-10T05:08:47 | 267,853,912 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 651 | cpp | #include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int arr[20],n,i,min,temp,loc,j;
gotoxy(33,2);
cout<<"SELECTION SORT\n";
cout<<"Input the number of elements in the list: ";
cin>>n;
cout<<"\nInput the elements of the list\n";
for(i=0;i<n;i++)
cin>>arr[i];
cout<<"Sorting...."<<endl;
for(i=0;i<n-2;i++)
{
min=arr[i];
loc=i;
for(j=i+1;j<n;j++)
{
if(min>arr[j])
{
min=arr[j];
loc=j;
for(int l=0;l<n;l++)
cout<<arr[l]<<" ";
cout<<endl;
}
}
temp=arr[i];
arr[i]=arr[loc];
arr[loc]=temp;
}
cout<<"Entered list is as follow:\n";
for(i=0;i<n;i++)
cout<<arr[i]<<" ";
getch();
}
| [
"[email protected]"
] | |
81e6d9d80667f0526f09a219c9c709d2a5b15cb5 | d933fe507b14dde86997e11afc8168f6c8c27afa | /project/Ekiis/body/SoftCircle.cpp | 5aecd7ebc8ba61c53512574c7c88444af2011d1d | [
"BSD-2-Clause"
] | permissive | ronhemmers/Ekiis | 91329236510227765bfec8e9073bc4574a634781 | 7588f89b0758d2b53d237fe1a270b7c559783e96 | refs/heads/master | 2020-05-04T02:35:31.837160 | 2015-02-20T10:11:31 | 2015-02-20T10:11:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,700 | cpp | #include <math.h>
#include <SFML/OpenGL.hpp>
#include "SoftCircle.hpp"
#include "Circle.hpp"
using namespace sf;
SoftCircle::SoftCircle(float posx,float posy,float rayon,float duretee,const unsigned int quality): Body(posx,posy), nb_circles(quality>16?(quality<100?quality:100):16), texture(0)
{
if (duretee >1)
duretee = 1;
else if (duretee<0)
duretee=0;
// Determine part radius
const float angleStep = (pi * 2.0f) / nb_circles;
const float sinHalfAngle = sinf(angleStep * 0.5f);
const float subCircleRadius = sinHalfAngle * rayon / (1.0f + sinHalfAngle);
float radius = (rayon - subCircleRadius * 2.0f) * (1.0f - duretee);
/// create the centre circle
shape = new CircleShape(radius);
b2shape = new b2CircleShape;
static_cast<b2CircleShape*>(b2shape)->m_p.Set(0,0); //position, relative to body position
static_cast<b2CircleShape*>(b2shape)->m_radius = toMet(radius); //radius
fixtureDef.shape = b2shape;
fixture=body->CreateFixture(&fixtureDef);
shape->setOrigin(radius,radius);
SetPosition(posx,posy);
//SetColor(Color::Red);
/// create the other
bodys = new NotDrawableCircleBody*[nb_circles];
textcoord = new fpoint[nb_circles];
{
float angle = 0;
for (unsigned int i=0;i<nb_circles;++i)
{
float c = cos(angle);
float s = sin(angle);
bodys[i] = new NotDrawableCircleBody(
c*(rayon-subCircleRadius)+posx,
s*(rayon-subCircleRadius)+posy,
subCircleRadius);
///TODO
if (angle <= pi/4) // 45
{
textcoord[i].x = 1;
textcoord[i].y = tan(angle);
}
else if (angle <=2.0*pi/4.0 ) //90
{
textcoord[i].x = 1-tan(angle-pi/4.0);
textcoord[i].y = 1;
}
else if (angle <= 3.0*pi/4 ) //135
{
textcoord[i].x = -tan(angle-2.0*pi/4.0);
textcoord[i].y = 1;
}
else if (angle <= pi) //180
{
textcoord[i].x = -1;
textcoord[i].y = - tan(angle);
}
else if (angle <= 5.0*pi/4.0 ) //225
{
textcoord[i].x = -1;
textcoord[i].y = -tan(angle);
}
else if (angle <= 6.0*pi/4.0) //270
{
textcoord[i].x = tan(angle - pi/4.0)-1;
textcoord[i].y = -1;
}
else if (angle <= 7.0*pi/4.0) //315
{
textcoord[i].x = tan(angle -6.0*pi/4.0);
textcoord[i].y = -1;
}
else //360
{
textcoord[i].x = 1;
textcoord[i].y = -(1-tan(angle-3.0*pi/4.0));
}
textcoord[i].x = (1 + textcoord[i].x)/2 ;
textcoord[i].y = (1 + textcoord[i].y)/2;
angle += angleStep;
}
}
// join together
b2DistanceJointDef jointDef;
for (unsigned int i=0;i<nb_circles;++i)
{
const int neighborIndex = (i + 1)< nb_circles?i+1:0;
bodys[i]->DistanceJoinWith(*this,10-duretee*10);
bodys[i]->DistanceJoinWith(*bodys[neighborIndex],0);
}
};
void SoftCircle::Draw(sf::RenderTarget& window)
{
Next();
if (texture)
{
glClear(GL_DEPTH_BUFFER_BIT);
glBindTexture(GL_TEXTURE_2D, texture);
glEnable(GL_TEXTURE_2D);
}
// Bind our texture
glColor4f(1.f, 1.f, 1.f, 1.f);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
#define z -100
glTranslatef(0,0, z);
glBegin(GL_TRIANGLE_FAN);
b2Vec2 origine = body->GetPosition();
glTexCoord2f(0.5, 0.5);
glVertex3f(toPix(origine.x),-toPix(origine.y), -z);
for(unsigned int i=0;i<nb_circles;++i)
{
b2Vec2 centre = bodys[i]->body->GetPosition();
centre += (1.0/6)*(centre - origine);
glTexCoord2f(textcoord[i].x, textcoord[i].y);
glVertex3f(toPix(centre.x),-toPix(centre.y), -z);
}
b2Vec2 centre = bodys[0]->body->GetPosition();
centre += (1.0/6)*(centre - origine);
glTexCoord2f(textcoord[0].x, textcoord[0].y);
glVertex3f(toPix(centre.x),-toPix(centre.y), -z);
glEnd();
#undef z
if (texture)
glDisable(GL_TEXTURE_2D);
};
SoftCircle::~SoftCircle()
{
for (unsigned int i=0; i<nb_circles;++i)
delete bodys[i];
delete bodys;
delete textcoord;
};
| [
"[email protected]"
] | |
68f7d8a51c9e0c860e6e304e5bd701b59ef7cc7a | 1832fdd9b4f581133256ffaae08cae9744c1ba53 | /src/SalamancerApplication.cpp | 066e7e19d11f967ac99c235538dd38738dea4b7d | [] | no_license | nathanial/salamancer | a7a2cac3f4864aef7039735f66c98c143d156cdd | ea755c95dc95b87496aba93c414cce550be8a147 | refs/heads/master | 2020-06-01T19:05:40.720972 | 2014-10-11T08:06:38 | 2014-10-11T08:06:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,646 | cpp | #include "SalamancerApplication.h"
#include "framework/Position.h"
#include "framework/meshers/GreedyMesher.h"
#include "framework/World.h"
#include "framework/MeshLoader.h"
#include <functional>
#include "include/cef_app.h"
#include "include/cef_client.h"
#include "include/cef_render_handler.h"
#include "cef/ClientHandler.h"
#include "cef/App.h"
#include <OIS/OIS.h>
#include <X11/Xcursor/Xcursor.h>
#include <X11/keysym.h>
#include <X11/XF86keysym.h>
#include "ois/linux/CustomLinuxInputManager.h"
#include "ois/linux/CustomLinuxMouse.h"
using namespace Ogre;
void createColourCube(void);
//-------------------------------------------------------------------------------------
SalamancerApplication::SalamancerApplication(AppContextPtr context, CefRefPtr<CefApp> cefApp)
: mRoot(0),
mCamera(0),
mSceneMgr(0),
mWindow(0),
mResourcesCfg(Ogre::StringUtil::BLANK),
mPluginsCfg(Ogre::StringUtil::BLANK),
mTrayMgr(0),
mCameraMan(0),
mDetailsPanel(0),
mCursorWasVisible(false),
mShutDown(false),
mInputManager(0),
mMouse(0),
mKeyboard(0),
context(context),
cefApp(cefApp)
{
}
//-------------------------------------------------------------------------------------
SalamancerApplication::~SalamancerApplication(void)
{
if (mTrayMgr) delete mTrayMgr;
if (mCameraMan) delete mCameraMan;
//Remove ourself as a Window listener
Ogre::WindowEventUtilities::removeWindowEventListener(mWindow, this);
windowClosed(mWindow);
delete mRoot;
}
//---------SalamancerApplication----------------------------------------------------------------------------
void SalamancerApplication::createScene(void) {
mSceneMgr->setAmbientLight(Ogre::ColourValue(1.0f, 1.0f, 1.0f));
}
void SalamancerApplication::createBrowser(){
Ogre::TexturePtr renderTexture = Ogre::TextureManager::getSingleton().createManual(
"texture",
Ogre::ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME,
Ogre::TEX_TYPE_2D, mWindow->getWidth(), mWindow->getHeight(), 0, Ogre::PF_A8R8G8B8, Ogre::TU_WRITE_ONLY);
Ogre::MaterialPtr material = Ogre::MaterialManager::getSingletonPtr()->create("BrowserMaterial", Ogre::ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME);
material->getTechnique(0)->getPass(0)->setCullingMode(Ogre::CULL_CLOCKWISE); // print both sides of the polygones
material->getTechnique(0)->getPass(0)->createTextureUnitState("texture");
material->getTechnique(0)->getPass(0)->setSceneBlending(SBT_TRANSPARENT_ALPHA);
material->getTechnique(0)->getPass(0)->setLightingEnabled(false);
Ogre::Overlay *overlay = Ogre::OverlayManager::getSingletonPtr()->create("BrowserOverlay");
Ogre::OverlayContainer* panel = static_cast<OverlayContainer*>(Ogre::OverlayManager::getSingletonPtr()->createOverlayElement("Panel", "BrowserPanel"));
panel->setPosition(0.0, 0.0);
panel->setDimensions(1.0, 1.0);
panel->setMaterialName("BrowserMaterial");
overlay->add2D(panel);
overlay->show();
this->windowInfo.SetAsWindowless(0, true);
this->clientHandler = new ClientHandler(renderTexture, this->mRoot->getAutoCreatedWindow(), mMouse, this->mCamera, this->mSceneMgr, this->world, this->context);
browserSettings.web_security = STATE_DISABLED;
this->browser = CefBrowserHost::CreateBrowserSync(windowInfo, this->clientHandler.get(),
"file:///home/nathan/Projects/salamancer/dist/bin/hud/index.html",
browserSettings,
NULL);
this->clientHandler->SetBrowser(this->browser);
mRoot->addFrameListener(this->clientHandler.get());
}
int main(int argc, char *argv[])
{
CefMainArgs args(argc, argv);
CefRefPtr<CefApp> cefApp = new App();
int result = CefExecuteProcess(args, cefApp, nullptr);
// checkout CefApp, derive it and set it as second parameter, for more control on
// command args and resources.
if (result >= 0) // child proccess has endend, so exit.
{
return result;
}
CefSettings settings;
settings.remote_debugging_port = 9999;
settings.windowless_rendering_enabled = true;
settings.no_sandbox = true;
result = CefInitialize(args, settings, cefApp, nullptr);
if (!result)
{
return -1;
}
AppContextPtr context(new AppContext());
if (!CefRegisterSchemeHandlerFactory("http", "", new BatchCreateVoxelsHandlerFactory(context))) {
throw std::runtime_error("Could not register custom scheme");
}
// Create application object
SalamancerApplication app(context, cefApp);
try {
app.go();
} catch( Ogre::Exception& e ) {
std::cerr << "An exception has occured: " <<
e.getFullDescription().c_str() << std::endl;
}
CefShutdown();
return 0;
}
//-------------------------------------------------------------------------------------
bool SalamancerApplication::configure(void)
{
// Show the configuration dialog and initialise the system
// You can skip this and use root.restoreConfig() to load configuration
// settings if you were sure there are valid ones saved in ogre.cfg
if(mRoot->showConfigDialog()){
// If returned true, user clicked OK so initialise
// Here we choose to let the system create a default rendering window by passing 'true'
mWindow = mRoot->initialise(true, "TutorialApplication Render Window");
return true;
} else {
return false;
}
//
// mWindow = mRoot->initialise(true, "TutorialApplication Render Window");
// return true;
}
//-------------------------------------------------------------------------------------
void SalamancerApplication::chooseSceneManager(void)
{
// Get the SceneManager, in this case a generic one
mSceneMgr = mRoot->createSceneManager(Ogre::ST_GENERIC);
mOverlaySystem = new Ogre::OverlaySystem();
mSceneMgr->addRenderQueueListener(mOverlaySystem);
world = WorldPtr(new World(mSceneMgr));
}
//-------------------------------------------------------------------------------------
void SalamancerApplication::createCamera(void)
{
// Create the camera
mCamera = mSceneMgr->createCamera("PlayerCam");
// Position it at 500 in Z direction
mCamera->setPosition(Ogre::Vector3(0,0,80));
// Look back along -Z
mCamera->lookAt(Ogre::Vector3(0,0,-300));
mCamera->setNearClipDistance(5);
mCameraMan = new OgreBites::SdkCameraMan(mCamera); // create a default camera controller
mCamera->setPolygonMode(Ogre::PM_SOLID);
}
//-------------------------------------------------------------------------------------
void SalamancerApplication::createFrameListener(void)
{
Ogre::LogManager::getSingletonPtr()->logMessage("*** Initializing OIS ***");
OIS::ParamList pl;
size_t windowHnd = 0;
std::ostringstream windowHndStr;
mWindow->getCustomAttribute("WINDOW", &windowHnd);
windowHndStr << windowHnd;
pl.insert(std::make_pair(std::string("WINDOW"), windowHndStr.str()));
pl.insert(std::make_pair(std::string("x11_mouse_grab"), std::string("false")));
pl.insert(std::make_pair(std::string("x11_mouse_hide"), std::string("false")));
pl.insert(std::make_pair(std::string("x11_keyboard_grab"), std::string("false")));
pl.insert(std::make_pair(std::string("XAutoRepeatOn"), std::string("true")));
mInputManager = new OIS::CustomLinuxInputManager();
mInputManager->_initialize(pl);
mKeyboard = static_cast<OIS::Keyboard*>(mInputManager->createInputObject( OIS::OISKeyboard, true ));
mMouse = static_cast<OIS::Mouse*>(mInputManager->createInputObject( OIS::OISMouse, true ));
mMouse->setEventCallback(this);
mKeyboard->setEventCallback(this);
//Set initial mouse clipping size
windowResized(mWindow);
//Register as a Window listener
Ogre::WindowEventUtilities::addWindowEventListener(mWindow, this);
OgreBites::InputContext inputContext;
inputContext.mMouse = mMouse;
inputContext.mKeyboard = mKeyboard;
mTrayMgr = new OgreBites::SdkTrayManager("InterfaceName", mWindow, inputContext, this);
mTrayMgr->showFrameStats(OgreBites::TL_BOTTOMRIGHT);
mTrayMgr->hideCursor();
// create a params panel for displaying sample details
Ogre::StringVector items;
items.push_back("cam.pX");
items.push_back("cam.pY");
items.push_back("cam.pZ");
items.push_back("");
items.push_back("cam.oW");
items.push_back("cam.oX");
items.push_back("cam.oY");
items.push_back("cam.oZ");
items.push_back("");
items.push_back("Filtering");
items.push_back("Poly Mode");
mDetailsPanel = mTrayMgr->createParamsPanel(OgreBites::TL_NONE, "DetailsPanel", 200, items);
mDetailsPanel->setParamValue(9, "Bilinear");
mDetailsPanel->setParamValue(10, "Solid");
mDetailsPanel->hide();
mRoot->addFrameListener(this);
this->createBrowser();
Ogre::MaterialManager::getSingleton().setDefaultTextureFiltering(Ogre::TFO_NONE);
Ogre::MaterialManager::getSingleton().setDefaultAnisotropy(1);
RenderWindow* window = mRoot->getAutoCreatedWindow();
std::cout << "Window Name: " << window->getName() << std::endl;
}
//-------------------------------------------------------------------------------------
void SalamancerApplication::destroyScene(void)
{
}
//-------------------------------------------------------------------------------------
void SalamancerApplication::createViewports(void)
{
// Create one viewport, entire window
Ogre::Viewport* vp = mWindow->addViewport(mCamera);
vp->setBackgroundColour(Ogre::ColourValue(0,0,0));
// Alter the camera aspect ratio to match the viewport
mCamera->setAspectRatio(
Ogre::Real(vp->getActualWidth()) / Ogre::Real(vp->getActualHeight()));
}
//-------------------------------------------------------------------------------------
void SalamancerApplication::setupResources(void)
{
// Load resource paths from config file
Ogre::ConfigFile cf;
cf.load(mResourcesCfg);
// Go through all sections & settings in the file
Ogre::ConfigFile::SectionIterator seci = cf.getSectionIterator();
Ogre::String secName, typeName, archName;
while (seci.hasMoreElements())
{
secName = seci.peekNextKey();
Ogre::ConfigFile::SettingsMultiMap *settings = seci.getNext();
Ogre::ConfigFile::SettingsMultiMap::iterator i;
for (i = settings->begin(); i != settings->end(); ++i)
{
typeName = i->first;
archName = i->second;
Ogre::ResourceGroupManager::getSingleton().addResourceLocation(
archName, typeName, secName);
}
}
}
//-------------------------------------------------------------------------------------
void SalamancerApplication::createResourceListener(void)
{
}
//-------------------------------------------------------------------------------------
void SalamancerApplication::loadResources(void)
{
Ogre::ResourceGroupManager::getSingleton().initialiseAllResourceGroups();
}
//-------------------------------------------------------------------------------------
void SalamancerApplication::go(void)
{
#ifdef _DEBUG
mResourcesCfg = "resources_d.cfg";
mPluginsCfg = "plugins_d.cfg";
#else
mResourcesCfg = "resources.cfg";
mPluginsCfg = "plugins.cfg";
#endif
if (!setup())
return;
mRoot->startRendering();
// clean up
destroyScene();
}
//-------------------------------------------------------------------------------------
bool SalamancerApplication::setup(void)
{
mRoot = new Ogre::Root(mPluginsCfg);
setupResources();
bool carryOn = configure();
if (!carryOn) return false;
chooseSceneManager();
createCamera();
createViewports();
// Set default mipmap level (NB some APIs ignore this)
Ogre::TextureManager::getSingleton().setDefaultNumMipmaps(5);
// Create any resource listeners (for loading screens)
createResourceListener();
// Load resources
loadResources();
// Create the scene
createScene();
createFrameListener();
return true;
};
//-------------------------------------------------------------------------------------
bool SalamancerApplication::frameRenderingQueued(const Ogre::FrameEvent& evt)
{
if(mWindow->isClosed())
return false;
if(mShutDown)
return false;
//Need to capture/update each device
mKeyboard->capture();
mMouse->capture();
mTrayMgr->frameRenderingQueued(evt);
if (!mTrayMgr->isDialogVisible())
{
mCameraMan->frameRenderingQueued(evt); // if dialog isn't up, then update the camera
if (mDetailsPanel->isVisible()) // if details panel is visible, then update its contents
{
mDetailsPanel->setParamValue(0, Ogre::StringConverter::toString(mCamera->getDerivedPosition().x));
mDetailsPanel->setParamValue(1, Ogre::StringConverter::toString(mCamera->getDerivedPosition().y));
mDetailsPanel->setParamValue(2, Ogre::StringConverter::toString(mCamera->getDerivedPosition().z));
mDetailsPanel->setParamValue(4, Ogre::StringConverter::toString(mCamera->getDerivedOrientation().w));
mDetailsPanel->setParamValue(5, Ogre::StringConverter::toString(mCamera->getDerivedOrientation().x));
mDetailsPanel->setParamValue(6, Ogre::StringConverter::toString(mCamera->getDerivedOrientation().y));
mDetailsPanel->setParamValue(7, Ogre::StringConverter::toString(mCamera->getDerivedOrientation().z));
}
}
return true;
}
//-------------------------------------------------------------------------------------
bool SalamancerApplication::keyPressed( const OIS::KeyEvent &arg )
{
if (mTrayMgr->isDialogVisible()) return true; // don't process any more keys if dialog is up
if(arg.key == OIS::KC_ESCAPE){
mShutDown = true;
} else if(arg.key == OIS::KC_LMENU || arg.key == OIS::KC_RMENU){
this->toggleHud();
return true;
} else if(this->browser != 0 && this->hudVisible) {
return this->clientHandler->keyPressed(arg);
} else {
this->mCameraMan->injectKeyDown(arg);
}
return true;
}
bool SalamancerApplication::keyReleased( const OIS::KeyEvent &arg )
{
if(this->browser != 0 && this->hudVisible){
return this->clientHandler->keyReleased(arg);
} else {
this->mCameraMan->injectKeyUp(arg);
}
return true;
}
bool SalamancerApplication::mouseMoved( const OIS::MouseEvent &arg ) {
if(this->browser != 0 && this->hudVisible){
this->clientHandler->mouseMoved(arg);
} else {
this->mCameraMan->injectMouseMove(arg);
}
return true;
}
bool SalamancerApplication::mousePressed( const OIS::MouseEvent &arg, OIS::MouseButtonID id )
{
if(this->browser != 0 && this->hudVisible){
return this->clientHandler->mousePressed(arg, id);
} else {
this->mCameraMan->injectMouseDown(arg, id);
}
return true;
}
bool SalamancerApplication::mouseReleased( const OIS::MouseEvent &arg, OIS::MouseButtonID id )
{
if(this->browser != 0 && this->hudVisible){
return this->clientHandler->mouseReleased(arg, id);
} else {
this->mCameraMan->injectMouseUp(arg, id);
}
return true;
}
//Adjust mouse clipping area
void SalamancerApplication::windowResized(Ogre::RenderWindow* rw)
{
unsigned int width, height, depth;
int left, top;
rw->getMetrics(width, height, depth, left, top);
const OIS::MouseState &ms = mMouse->getMouseState();
ms.width = width;
ms.height = height;
}
//Unattach OIS before window shutdown (very important under Linux)
void SalamancerApplication::windowClosed(Ogre::RenderWindow* rw)
{
//Only close for window that created OIS (the main window in these demos)
if( rw == mWindow )
{
if( mInputManager )
{
mInputManager->destroyInputObject( mMouse );
mInputManager->destroyInputObject( mKeyboard );
OIS::InputManager::destroyInputSystem(mInputManager);
mInputManager = 0;
}
}
}
void SalamancerApplication::toggleHud(){
OIS::CustomLinuxMouse *linuxMouse = static_cast<OIS::CustomLinuxMouse*>(this->mMouse);
if(hudVisible){
hudVisible = false;
linuxMouse->hide(true);
linuxMouse->grab(true);
} else {
hudVisible = true;
linuxMouse->hide(false);
linuxMouse->grab(false);
}
} | [
"[email protected]"
] | |
e570ca02936e036e04cf9d2bc27ed9d8f09d2783 | 45e3eb85ad842e22efefad6d3c1af327998eb297 | /AtCoder/ABC/132/a.cpp | 67f3180d7c2a54e217aa4c45dc65563396699007 | [] | no_license | sawamotokai/competitive-programming | 6b5e18217c765184acfb2613b681d0ac9ec3f762 | 9659124def45447be5fccada6e835cd7e09d8f79 | refs/heads/master | 2023-06-12T06:56:01.985876 | 2021-07-05T16:55:56 | 2021-07-05T16:55:56 | 241,240,765 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 726 | cpp | #include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define ok() puts(ok?"Yes":"No");
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> ii;
typedef vector<vi> vvi;
typedef vector<ii> vii;
typedef vector<bool> vb;
typedef vector<vb> vvb;
typedef set<int> si;
typedef map<string, int> msi;
typedef greater<int> gt;
typedef priority_queue<int, vector<int>, gt> minq;
typedef long long ll;
typedef pair<ll,ll> pll;
const ll LINF = 1e18L + 1;
const int INF = 1e9 + 1;
//clang++ -std=c++11 -stdlib=libc++
int main() {
string s; cin >> s;
set<char> st;
bool ok = s.length() == 4;
rep(i, s.length()) st.insert(s[i]);
ok &= st.size() == 2;
ok();
return 0;
} | [
"[email protected]"
] | |
eeba55d2cff73855b06f597cd1f59d6f17dbad0f | 28a9e27e1b8671c656237ead7a33f2e35d07c803 | /self_La_Piscine/totalNumOfNumbers.cpp | 1a36f58069630e4ad536112ade3e3fa689d9579d | [] | no_license | heuristicwave/TrainingGround | b25d3914958a90b58d1a4f1718cce8e3ddf747be | aa180954a02f984d0786a17016919c92b89da422 | refs/heads/master | 2021-01-05T13:59:25.829180 | 2020-11-21T06:23:04 | 2020-11-21T06:23:04 | 241,042,376 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 388 | cpp | #include<cstdio>
int main() {
freopen("input.txt", "rt", stdin);
int num, sum = 0;
int c=1, d=9;
int res = 0;
scanf("%d", &num);
while(sum+d<num){
res = res+(c*d);
sum += d;
c++;
d = d*10;
}
res = res + ((num-sum)*c);
// for(int i=1; i<=num; i++){
// tmp = i;
// while(tmp>0){
// tmp = tmp / 10;
// cnt++;
// }
// }
printf("%d\n", res);
return 0;
}
| [
"[email protected]"
] | |
1e33100bfcc448426dbb8fca3a46b88cc11106d8 | f99fe3656d82eb42d62890c29568307b732645a2 | /Source/TextureSampler.h | a4507cecaf19a64fec4bd51e83902ee54804e72c | [] | no_license | VaasKahnGrim/freeking | b1b708e3d229dc5c25a74b1d0dea0f3cbb6c944d | 1a7a7fe5d9150724f608aa20c68c5ae8dfa01d39 | refs/heads/master | 2020-12-12T19:57:15.749807 | 2020-01-16T01:13:45 | 2020-01-16T01:13:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 423 | h | #pragma once
#include <glad/glad.h>
namespace Freeking
{
enum class WrapMode : int
{
WRAPMODE_REPEAT,
WRAPMODE_CLAMP_EDGE,
};
enum class FilterMode : int
{
FILTERMODE_LINEAR,
FILTERMODE_NEAREST,
FILTERMODE_LINEAR_NO_MIP,
};
class TextureSampler
{
public:
TextureSampler(WrapMode wrapMode, FilterMode filterMode);
~TextureSampler();
void Bind(GLuint unit);
private:
GLuint _handle;
};
}
| [
"[email protected]"
] | |
79e8e71a8bafa4bd7434b27cc7b795cd08d73729 | 1a93a3b56dc2d54ffe3ee344716654888b0af777 | /env/Library/include/qt/QtWinExtras/5.12.9/QtWinExtras/private/qwinthumbnailtoolbar_p.h | 38d210bc54d0f58ba34b0b38b60566ba41687152 | [
"BSD-3-Clause",
"GPL-1.0-or-later",
"GPL-3.0-only",
"GPL-2.0-only",
"Python-2.0",
"LicenseRef-scancode-python-cwi",
"LicenseRef-scancode-other-copyleft",
"0BSD",
"LicenseRef-scancode-free-unknown"
] | permissive | h4vlik/TF2_OD_BRE | ecdf6b49b0016407007a1a049f0fdb952d58cbac | 54643b6e8e9d76847329b1dbda69efa1c7ae3e72 | refs/heads/master | 2023-04-09T16:05:27.658169 | 2021-02-22T14:59:07 | 2021-02-22T14:59:07 | 327,001,911 | 0 | 0 | BSD-3-Clause | 2021-02-22T14:59:08 | 2021-01-05T13:08:03 | null | UTF-8 | C++ | false | false | 4,362 | h | /****************************************************************************
**
** Copyright (C) 2016 Ivan Vizir <[email protected]>
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtWinExtras module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version approved by the KDE Free
** Qt Foundation. The licenses are as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QWINTHUMBNAILTOOLBAR_P_H
#define QWINTHUMBNAILTOOLBAR_P_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include "qwinthumbnailtoolbar.h"
#include <QtCore/qhash.h>
#include <QtCore/qlist.h>
#include <QtGui/qicon.h>
#include <QtGui/qpixmap.h>
#include <QtCore/qabstractnativeeventfilter.h>
#include "winshobjidl_p.h"
QT_BEGIN_NAMESPACE
class QWinThumbnailToolBarPrivate : public QObject, QAbstractNativeEventFilter
{
public:
class IconicPixmapCache
{
public:
IconicPixmapCache() : m_bitmap(0) {}
~IconicPixmapCache() { deleteBitmap(); }
operator bool() const { return !m_pixmap.isNull(); }
QPixmap pixmap() const { return m_pixmap; }
bool setPixmap(const QPixmap &p);
HBITMAP bitmap(const QSize &maxSize);
private:
void deleteBitmap();
QPixmap m_pixmap;
QSize m_size;
HBITMAP m_bitmap;
};
QWinThumbnailToolBarPrivate();
~QWinThumbnailToolBarPrivate();
void initToolbar();
void clearToolbar();
void _q_updateToolbar();
void _q_scheduleUpdate();
bool eventFilter(QObject *, QEvent *) Q_DECL_OVERRIDE;
virtual bool nativeEventFilter(const QByteArray &eventType, void *message, long *result) Q_DECL_OVERRIDE;
static void initButtons(THUMBBUTTON *buttons);
static int makeNativeButtonFlags(const QWinThumbnailToolButton *button);
static int makeButtonMask(const QWinThumbnailToolButton *button);
static QString msgComFailed(const char *function, HRESULT hresult);
bool updateScheduled;
QList<QWinThumbnailToolButton *> buttonList;
QWindow *window;
ITaskbarList4 * const pTbList;
IconicPixmapCache iconicThumbnail;
IconicPixmapCache iconicLivePreview;
private:
bool hasHandle() const;
HWND handle() const;
void updateIconicPixmapsEnabled(bool invalidate);
void updateIconicThumbnail(const MSG *message);
void updateIconicLivePreview(const MSG *message);
QWinThumbnailToolBar *q_ptr;
Q_DECLARE_PUBLIC(QWinThumbnailToolBar)
bool withinIconicThumbnailRequest;
bool withinIconicLivePreviewRequest;
};
QT_END_NAMESPACE
#endif // QWINTHUMBNAILTOOLBAR_P_H
| [
"[email protected]"
] | |
c55df0f15837ebd7f47ce490d585dfde4c19eed5 | 694c187c8a00bee8c670c1690170099bad9b16b3 | /bacteriareproduction.cpp | 5434d345740c11a4d4150338cbdcad0cdafdf56d | [] | no_license | ajayvenkat10/Competitive | 301f220b6d296f7e34328f192c43c4d7ef208cb1 | 14f2ecebe10eb19f72cc412dd0c414b3b1de9b4d | refs/heads/master | 2022-11-20T14:31:33.590099 | 2020-07-23T15:39:14 | 2020-07-23T15:39:14 | 281,599,951 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,804 | cpp | #include <bits/stdc++.h>
#define ll long long
using namespace std;
ll arr[500000] = {0};
ll ind = 0;
ll dfs_order[500000] = {0};
ll ind_arr[500000] = {0};
void addEdge(vector<ll> adj[], ll u, ll v)
{
adj[u].push_back(v);
adj[v].push_back(u);
}
void DFSUtil(ll u, vector<ll> adj[],
vector<bool> &visited)
{
visited[u] = true;
dfs_order[ind++] = u;
for (ll i = 0; i < adj[u].size(); i++)
if (visited[adj[u][i]] == false)
DFSUtil(adj[u][i], adj, visited);
}
void DFS(vector<ll> adj[], ll V)
{
vector<bool> visited(V, false);
for (ll u = 0; u < V; u++)
if (visited[u] == false)
DFSUtil(u, adj, visited);
}
int main()
{
ll N, Q;
cin >> N >> Q;
vector<ll> *adj = new vector<ll>[N];
ll V = N;
V -= 1;
while (V--)
{
ll u, v;
cin >> u >> v;
addEdge(adj, u - 1, v - 1);
}
DFS(adj, N);
for (ll i = 0; i < N; i++)
cin >> arr[i];
for (ll i = 0; i < N; i++)
ind_arr[dfs_order[i]] = i;
char operation;
while (Q--)
{
for (ll i = N - 1; i >= 0; i--)
{
ll count = 0;
for (auto it = adj[dfs_order[i]].begin(); it!= adj[dfs_order[i]].end(); it++)
{
if (ind_arr[*it] > ind_arr[dfs_order[i]])
{
arr[*it] += arr[dfs_order[i]];
count++;
}
}
if (count)
arr[dfs_order[i]] = 0;
}
cin >> operation;
ll x, val;
if (operation == '+')
{
cin >> x >> val;
arr[x - 1] += val;
}
else
{
cin >> x;
cout << arr[x - 1] << endl;
}
}
return 0;
}
| [
"[email protected]"
] | |
aa11942286d56c9c9290e42218d091bffc58607b | 5dcbbfb4033b3f41157305a97b1ab75835070e27 | /src/lib/lod/lodReader.hxx | bcae8734f1ad4779127421113391321388dd0574 | [] | no_license | DavidZeni/homm3Tool | 83ff55a8eb6721414f87adbc053a95e308236676 | ffd090897fdca136aaef5c839c827c3ed7fd0930 | refs/heads/master | 2020-04-11T00:38:43.888480 | 2015-09-04T14:59:55 | 2015-09-04T14:59:55 | 41,513,014 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 40 | hxx | #pragma once
namespace lodReader
{
} | [
"[email protected]"
] | |
24b3f0f7f192e02ef46b85ab5ae7fb633dc8b585 | ae013c60f7f7efa4e80763c0b2b0b1ae56734b94 | /ss1_2013/day1_basic/q10_ballspace.cpp | 853debd5fb44c4776a2c422b3beccbfddf549dfd | [] | no_license | pureexe/toisu | 60952b096c6c54e99fc1bb36073eb6deb9126601 | cfe916e864f2bb62ad50166eeea0bfe1dd65eada | refs/heads/master | 2016-09-05T10:20:16.366973 | 2014-04-06T11:32:52 | 2014-04-06T11:32:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 179 | cpp | #include<iostream>
#define M_PI 3.14
using namespace std;
int main()
{
int r;
cin >> r;
cout << 4*r*r*M_PI; //พื้นที่ผิว
return 0;
}
| [
"[email protected]"
] | |
8f899d3562c4dc93999ef4f1845e1112f9b2e942 | 2095af306a0eb2e10c78aa6047f85a7dcdc7c47d | /include/Util/UIInput.h | 972fe1a4722965b37b4adaf4eebce9893bbbc6bc | [
"MIT",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-scintilla"
] | permissive | grimtraveller/LongUI | ff4e5f565a44c266a8aede6925b75de711e5ea41 | d4fed468217312cb77e99b7f1ead45bdab9223b6 | refs/heads/master | 2020-12-11T03:25:13.373234 | 2016-03-12T12:13:36 | 2016-03-12T12:13:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,712 | h | #pragma once
/**
* Copyright (c) 2014-2016 dustpg mailto:[email protected]
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include <Xinput.h>
// longui namespace
namespace LongUI {
// input of ui
class CUIInput final {
public:
// the buffer size of kerboard
enum : DWORD { KEYBOARD_BUFFER_SIZE = 256 } ;
public:
// ctor
CUIInput() noexcept { m_ptMouseL = { 0, 0 }; std::memset(m_abKeyStateBuffer, 0, sizeof(m_abKeyStateBuffer)); };
// get mouse position
auto GetMousePosition() const noexcept { return m_ptMouse; };
// get mouse position/long
auto GetMousePositionL() const noexcept { return m_ptMouseL; };
// is key pressed?
auto IsKeyPressed(uint32_t index) const noexcept { return m_pKeyState[index] != 0; }
// is key down?
auto IsKeyDown(uint32_t index) const noexcept { return m_pKeyState[index] != 0 && m_pKeyStateOld[index] == 0; }
// is key down?
auto IsKeyUp(uint32_t index) const noexcept { return m_pKeyState[index] == 0 && m_pKeyStateOld[index] != 0; }
public:
// update, impl @ UIUtil.cpp
auto Update() noexcept;
protected:
// mouse postion
D2D1_POINT_2F m_ptMouse = D2D1::Point2F();
// mouse postion
POINT m_ptMouseL = POINT();
// KeyState for now
uint8_t* m_pKeyState = m_abKeyStateBuffer;
// KeyState for last frame
uint8_t* m_pKeyStateOld = m_abKeyStateBuffer + KEYBOARD_BUFFER_SIZE;
// key state buffer
uint8_t m_abKeyStateBuffer[KEYBOARD_BUFFER_SIZE*2];
};
}
| [
"[email protected]"
] | |
cecefcd7cae1574f0693c4933b424c7900ae083d | 992cda2b2f07684a14c06b248423c1d9d5301a8e | /tests/simple_manual/testsimple.cpp | b3c5140f40f9a974256f77c5c37f9e65b9f444f6 | [] | no_license | m-liu/connectal | e02a78831dda72f4dfb741a05c7a0fa582a698a9 | 2c6e417f2c6070bba9d0c3f50be2ee4e2ea2ba25 | refs/heads/master | 2020-05-29T12:24:57.203275 | 2014-11-21T21:06:12 | 2014-11-21T21:06:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,102 | cpp |
// Copyright (c) 2014 Quanta Research Cambridge, Inc.
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the "Software"), to deal in the Software without
// restriction, including without limitation the rights to use, copy,
// modify, merge, publish, distribute, sublicense, and/or sell copies
// of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
// BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include <stdio.h>
#include <unistd.h>
#include "SimpleIndication.h"
#include "SimpleRequest.h"
int v1a = 42;
int v2a = 2;
int v2b = 4;
class SimpleIndication : public SimpleIndicationWrapper
{
public:
virtual void heard1(uint32_t a) {
fprintf(stderr, "heard1(%d)\n", a);
}
virtual void heard2(uint32_t a, uint32_t b) {
fprintf(stderr, "heard2(%d %d)\n", a, b);
}
SimpleIndication(unsigned int id) : SimpleIndicationWrapper(id) {}
};
int main(int argc, const char **argv)
{
SimpleIndication *indication = new SimpleIndication(IfcNames_SimpleIndication);
SimpleRequestProxy *device = new SimpleRequestProxy(IfcNames_SimpleRequest);
fprintf(stderr, "Main::creating exec thread\n");
portalExec_start();
fprintf(stderr, "Main::calling say1(%d)\n", v1a);
device->say1(v1a);
fprintf(stderr, "Main::calling say2(%d, %d)\n", v2a,v2b);
device->say2(v2a,v2b);
fprintf(stderr, "Main::about to go to sleep\n");
sleep(5);
exit(0);
}
| [
"[email protected]"
] | |
fec1eb5cbda106aa37ddfb5b592a8a6256912f74 | f28f6363b70f2f6bae282075fc2b865ed9f07bab | /player.h | f25ada406b4994a6d78ccd5d63c9a59c450699fc | [] | no_license | elcerdo/hex | 23a34464e1f1fd2cfe4b480e8d2c7e17afca7777 | bdb4403fb3f060f7c36d4a61a4455b97f3926ea2 | refs/heads/master | 2021-01-19T04:16:27.815145 | 2016-07-06T15:51:25 | 2016-07-06T15:51:25 | 61,955,793 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 266 | h | #pragma once
#include "board.h"
struct Player
{
const Board& board;
const std::string name;
int player;
Player(const Board& board, const std::string& name);
virtual void update(const BoardState& state) = 0;
virtual Move getMove() = 0;
};
| [
"[email protected]"
] | |
96296ef18cfc03fdf194f586ec9b9edc31d2cf70 | 409beb9aa75d153c9d49834354fed5b53fc56187 | /FirmwareModifier/Common/inc/EmTcpSendThread.h | ebad8f7d2e3c1c1800df3e15b954cbf62b8e00fe | [] | no_license | shzhbx/FWFactoryTool | 604faaec209dfd5a77252314c95d85014fa84674 | 67d32965a6aec815c5b9942a2fe46848e6d5d541 | refs/heads/master | 2023-03-18T07:34:29.252551 | 2016-08-16T08:47:57 | 2016-08-16T08:47:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 373 | h | #ifndef _h_EmTcpSendThread
#define _h_EmTcpSendThread
#include "EmBase.h"
#include "EmTcpBase.h"
#include "EmThread.h"
namespace em
{
class EmTcpConnectWorker;
class EmTcpSendThread : public EmThread
{
public:
virtual void InitStopTag();
virtual void StopSafely();
virtual void Run();
protected:
virtual void PreRun();
virtual void PostRun();
};
}
#endif | [
"[email protected]"
] | |
f3dcc257475331f124c96cdf693b21a71a5066d4 | 1e721766bf548792b3397fb7cf4c026b072fbd35 | /Test-1/45811_task3.cpp | 5890a9d712c1d3691eec8461b19ed6bc6f22c468 | [] | no_license | BlinkDrink/Introduction-To-Programming | 46ab33de20b5779a2159c0ed9aaa152752d0dd02 | 3f4854af4d5615c66c7e821cc2694ccd733da6e9 | refs/heads/main | 2023-02-26T08:46:05.770721 | 2021-01-26T12:53:27 | 2021-01-26T12:53:27 | 304,914,128 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,945 | cpp | #include <iostream>
#include <cmath>
using std::cin;
using std::cout;
//
// СУ "Св. Климент Охридски"
// Факултет по математика и информатика
// Курс Увод в Програмирането 2020/21
// Контролно 1
// 2020-11-29
//
// Начален час на контролното: 9:00
// Име: Петко Иванов Петков
// ФН: 45811
// Специалност: Информатика
// Курс: 1
// Административна група: 5
// Използван компилатор: mingw-w64
//
const long MAX_SIZE = 1000000;
void readArray(float arr[], unsigned size)
{
for (unsigned i = 0; i < size; i++)
{
cin >> arr[i];
}
}
float absValue(float a, float b)
{
float diff = a - b;
return diff < 0 ? -diff : diff;
}
int absValueInt(int a, int b)
{
int diff = a - b;
return diff < 0 ? -diff : diff;
}
int main()
{
long n, resArrIndex = 0;
do
{
cin >> n;
} while (n < 1 || n > MAX_SIZE);
float arr[50];
unsigned distanceArr[50];
unsigned diffArr[50];
readArray(arr, n);
bool appliedForAll = true;
float diff = 0;
float diffPerStep = 0;
// for (unsigned i = 0; i < n - 1; i++)
// {
// float currEl = arr[i];
// for (unsigned j = 1; j < n - 1; j++)
// {
// for (unsigned k = 1; k < n - 1; k += j)
// {
// diff = absValue(currEl, arr[j]);
// if (diff != absValue(currEl, arr[k]))
// {
// break;
// }
// }
// }
// if (diff != absValue(currEl, arr[j + 1]))
// {
// appliedForAll = false;
// }
// if (appliedForAll)
// {
// distanceArr[resArrIndex] = absValueInt(j, i);
// diffArr[resArrIndex++] = diff;
// }
// }
float nextDiff = 0;
unsigned lastIndex = 0;
unsigned step = 0;
for (unsigned i = 1; i < n; i++)
{
float diff = absValue(arr[i - 1], arr[i + step]);
float currEl = arr[i - 1];
for (unsigned k = 1; k < n; k++)
{
for (unsigned j = 1; j < n; j += k)
{
if (absValue(arr[i], arr[j - 1]) != diff)
{
appliedForAll = false;
}
lastIndex = j;
}
if (appliedForAll)
{
distanceArr[resArrIndex] = absValueInt(lastIndex, i);
diffArr[resArrIndex++] = diff;
}
step++;
}
}
unsigned maxDistance = 0;
for (unsigned i = 0; i < resArrIndex; i++)
{
if (distanceArr[i] > distanceArr[maxDistance])
{
maxDistance = i;
}
}
cout << distanceArr[maxDistance] << " " << diffArr[maxDistance];
return 0;
} | [
"[email protected]"
] | |
3a79e9031583ab181ca06f21c985925b49a806cb | 53ff4fabe94e3d8a4d7531525c6911755f2ab322 | /array/maxhamdist/main.cpp | 1506ecc325aa0b0f2ec3075823b4aefc0849a97b | [] | no_license | Srivatsha108/DataStructures-using-Cpp | 13384a26f430cdc7841895f2e30f50bc273408ea | 83b04cfc97b69b602f4e84abfb3a8ba34928c3f0 | refs/heads/master | 2023-04-03T00:43:05.834587 | 2021-04-07T05:28:55 | 2021-04-07T05:28:55 | 355,421,572 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 462 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int n,i;
int sum=0;
cin>>n;
int a[n];
for(i=0;i<n;i++)
{
cin>>a[i];
}
int a1[n];
for(int i=0;i<n;i++)
a1[i]=a[i];
for(i=0;i<n-1;i++)
{
int s=0;
int temp=a[n-1];
for(int j=n-1;j>=1;j--)
a[j]=a[j-1];
a[0]=temp;
for(int i=0;i<n;i++)
{
if(a1[i]!=a[i])
s+=1;
}
if(s>sum)
sum=s;
}
cout<<sum;
} | [
"[email protected]"
] | |
a8b112677162cf476cffceb99b628af47d2b1b49 | 5456502f97627278cbd6e16d002d50f1de3da7bb | /components/sync/model/sync_error.cc | 89d477bed7666c549a74e5252e0374e42549c7c9 | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/Chromium_7C66 | 72d108a413909eb3bd36c73a6c2f98de1573b6e5 | c8649ab2a0f5a747369ed50351209a42f59672ee | refs/heads/master | 2023-03-16T12:51:40.231959 | 2017-12-20T10:38:26 | 2017-12-20T10:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,370 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/sync/model/sync_error.h"
#include <ostream>
#include "base/location.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
namespace syncer {
SyncError::SyncError() {
Clear();
}
SyncError::SyncError(const tracked_objects::Location& location,
ErrorType error_type,
const std::string& message,
ModelType model_type) {
DCHECK(error_type != UNSET);
Init(location, message, model_type, error_type);
PrintLogError();
}
SyncError::SyncError(const SyncError& other) {
Copy(other);
}
SyncError::~SyncError() {}
SyncError& SyncError::operator=(const SyncError& other) {
if (this == &other) {
return *this;
}
Copy(other);
return *this;
}
void SyncError::Copy(const SyncError& other) {
if (other.IsSet()) {
Init(other.location(), other.message(), other.model_type(),
other.error_type());
} else {
Clear();
}
}
void SyncError::Clear() {
location_.reset();
message_ = std::string();
model_type_ = UNSPECIFIED;
error_type_ = UNSET;
}
void SyncError::Reset(const tracked_objects::Location& location,
const std::string& message,
ModelType model_type) {
Init(location, message, model_type, DATATYPE_ERROR);
PrintLogError();
}
void SyncError::Init(const tracked_objects::Location& location,
const std::string& message,
ModelType model_type,
ErrorType error_type) {
location_ = base::MakeUnique<tracked_objects::Location>(location);
message_ = message;
model_type_ = model_type;
error_type_ = error_type;
}
bool SyncError::IsSet() const {
return error_type_ != UNSET;
}
const tracked_objects::Location& SyncError::location() const {
CHECK(IsSet());
return *location_;
}
const std::string& SyncError::message() const {
CHECK(IsSet());
return message_;
}
ModelType SyncError::model_type() const {
CHECK(IsSet());
return model_type_;
}
SyncError::ErrorType SyncError::error_type() const {
CHECK(IsSet());
return error_type_;
}
SyncError::Severity SyncError::GetSeverity() const {
switch (error_type_) {
case UNREADY_ERROR:
case DATATYPE_POLICY_ERROR:
return SYNC_ERROR_SEVERITY_INFO;
default:
return SYNC_ERROR_SEVERITY_ERROR;
}
}
std::string SyncError::GetMessagePrefix() const {
std::string type_message;
switch (error_type_) {
case UNRECOVERABLE_ERROR:
type_message = "unrecoverable error was encountered: ";
break;
case DATATYPE_ERROR:
type_message = "datatype error was encountered: ";
break;
case PERSISTENCE_ERROR:
type_message = "persistence error was encountered: ";
break;
case CRYPTO_ERROR:
type_message = "cryptographer error was encountered: ";
break;
case UNREADY_ERROR:
type_message = "unready error was encountered: ";
break;
case DATATYPE_POLICY_ERROR:
type_message = "disabled due to configuration constraints: ";
break;
case UNSET:
NOTREACHED() << "Invalid error type";
break;
}
return type_message;
}
std::string SyncError::ToString() const {
if (!IsSet()) {
return std::string();
}
return location_->ToString() + ", " + ModelTypeToString(model_type_) + " " +
GetMessagePrefix() + message_;
}
void SyncError::PrintLogError() const {
logging::LogSeverity logSeverity = (GetSeverity() == SYNC_ERROR_SEVERITY_INFO)
? logging::LOG_VERBOSE
: logging::LOG_ERROR;
LAZY_STREAM(logging::LogMessage(location_->file_name(),
location_->line_number(), logSeverity)
.stream(),
logSeverity >= ::logging::GetMinLogLevel())
<< ModelTypeToString(model_type_) << " " << GetMessagePrefix()
<< message_;
}
void PrintTo(const SyncError& sync_error, std::ostream* os) {
*os << sync_error.ToString();
}
} // namespace syncer
| [
"[email protected]"
] | |
354f0a9669021eaa76f80f86a469fc14dfcf061d | 043f12b3721faa2aaff444670b839a7f2fdf5457 | /houdini/cmd/src/rop_naiadcam/ROP_NaiadCam.h | c621035f5320b1f6c098ed511d6820fb16e8a70c | [
"MIT"
] | permissive | simonekeberg/Naiad-Buddies | 6393a42e09aad1ee1558af3a2f2da875429047b3 | b7150dccc4a21044695b90e82d181914be13a05a | refs/heads/master | 2021-01-18T04:05:50.437652 | 2012-07-16T15:44:39 | 2012-07-16T15:44:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,410 | h | /*
* ROP_NaiadCam.C
*
* Houdini Buddy - Naiad camera converter
*
* Copyright (c) 2010 Van Aarde Krynauw.
*
* 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.
*/
#ifndef __ROP_NAIAD_CAM_H__
#define __ROP_NAIAD_CAM_H__
#include <ROP/ROP_Node.h>
#include <SOP_UI_Macros.h>
class OP_TemplatePair;
class OP_VariablePair;
//TODO: Add parameters to control the output EMP timestamp
#define PRM_FILENAME "file"
#define PRM_CAMERA "camera"
#define PRM_BODYNAME "bodyname"
namespace HoudiniBuddy
{
static const std::string PRM_FileName;
class ROP_NaiadCam : public ROP_Node
{
public:
static PRM_Template myTemplateList[];
/// Provides access to our parm templates.
static OP_TemplatePair *getTemplatePair();
/// Provides access to our variables.
static OP_VariablePair *getVariablePair();
/// Creates an instance of this node.
static OP_Node *myConstructor(OP_Network *net, const char*name, OP_Operator *op);
protected:
ROP_NaiadCam(OP_Network *net, const char *name, OP_Operator *entry);
virtual ~ROP_NaiadCam();
/// Called at the beginning of rendering to perform any intialization
/// necessary.
/// @param nframes Number of frames being rendered.
/// @param s Start time, in seconds.
/// @param e End time, in seconds.
/// @return True of success, false on failure (aborts the render).
virtual int startRender(int nframes, float s, float e);
/// Called once for every frame that is rendered.
/// @param time The time to render at.
/// @param boss Interrupt handler.
/// @return Return a status code indicating whether to abort the
/// render, continue, or retry the current frame.
virtual ROP_RENDER_CODE renderFrame(float time, UT_Interrupt *boss);
/// Called after the rendering is done to perform any post-rendering steps
/// required.
/// @return Return a status code indicating whether to abort the
/// render, continue, or retry.
virtual ROP_RENDER_CODE endRender();
public:
/// A convenience method to evaluate our custom file parameter.
//void OUTPUT(UT_String &str, float t)
//{ STR_PARM("file", 0, 0, t) }
GET_PARM_S(PRM_FILENAME, OutputFile);
GET_PARM_S(PRM_CAMERA, CameraNode);
GET_PARM_S(PRM_BODYNAME, BodyName);
private:
static int *ifdIndirect;
float myEndTime;
};
}
#endif
| [
"[email protected]"
] | |
86d35a9e3d16fb1a83165bb2da3402b0459dd91f | b1be8471950a7d7a834d67b11b24d70aa7ece501 | /DemoFramework/FslBase/source/FslBase/Math/Vector3.cpp | 5e0b3adca2d0d101f8ad255ddfbe3866398a4b9a | [
"GPL-1.0-or-later",
"JSON"
] | permissive | alexvonduar/gtec-demo-framework | 1b212d9b43094abdfeae61e0d2e8a258e5a97771 | 6f8a7e429d0e15242ba64eb4cb41bfc2dd7dc749 | refs/heads/master | 2021-06-15T13:25:02.498022 | 2021-03-26T06:11:43 | 2021-03-26T06:11:43 | 168,854,730 | 0 | 0 | BSD-3-Clause | 2019-03-25T23:59:42 | 2019-02-02T16:59:46 | C++ | UTF-8 | C++ | false | false | 10,984 | cpp | /*
MIT License
Copyright (C) 2006 The Mono.Xna Team
All rights reserved.
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.
*/
// The functions in this file are a port of an MIT licensed library: MonoGame - Vector3.cs.
#include <cassert>
#include <FslBase/Exceptions.hpp>
#include <FslBase/Math/MathHelper.hpp>
#include <FslBase/Math/Matrix.hpp>
#include <FslBase/Math/Vector3.hpp>
#include <FslBase/Math/Quaternion.hpp>
#include <cassert>
#include <cmath>
#include <cstddef>
#include "MatrixInternals.hpp"
namespace Fsl
{
// Verify that our assumption about the structure packing is correct
static_assert(offsetof(Vector3, X) == (sizeof(float) * 0), "Vector3.X component not at the expected offset");
static_assert(offsetof(Vector3, Y) == (sizeof(float) * 1), "Vector3.Y component not at the expected offset");
static_assert(offsetof(Vector3, Z) == (sizeof(float) * 2), "Vector3.Z component not at the expected offset");
static_assert(sizeof(Vector3) == (sizeof(float) * 3), "Vector3 not of the expected size");
Vector3 Vector3::Barycentric(const Vector3& value1, const Vector3& value2, const Vector3& value3, const float amount1, const float amount2)
{
return {MathHelper::Barycentric(value1.X, value2.X, value3.X, amount1, amount2),
MathHelper::Barycentric(value1.Y, value2.Y, value3.Y, amount1, amount2),
MathHelper::Barycentric(value1.Z, value2.Z, value3.Z, amount1, amount2)};
}
void Vector3::Barycentric(const Vector3& value1, const Vector3& value2, const Vector3& value3, const float amount1, const float amount2,
Vector3& rResult)
{
rResult.X = MathHelper::Barycentric(value1.X, value2.X, value3.X, amount1, amount2);
rResult.Y = MathHelper::Barycentric(value1.Y, value2.Y, value3.Y, amount1, amount2);
rResult.Z = MathHelper::Barycentric(value1.Z, value2.Z, value3.Z, amount1, amount2);
}
Vector3 Vector3::CatmullRom(const Vector3& value1, const Vector3& value2, const Vector3& value3, const Vector3& value4, const float amount)
{
return {MathHelper::CatmullRom(value1.X, value2.X, value3.X, value4.X, amount),
MathHelper::CatmullRom(value1.Y, value2.Y, value3.Y, value4.Y, amount),
MathHelper::CatmullRom(value1.Z, value2.Z, value3.Z, value4.Z, amount)};
}
void Vector3::CatmullRom(const Vector3& value1, const Vector3& value2, const Vector3& value3, const Vector3& value4, const float amount,
Vector3& rResult)
{
rResult.X = MathHelper::CatmullRom(value1.X, value2.X, value3.X, value4.X, amount);
rResult.Y = MathHelper::CatmullRom(value1.Y, value2.Y, value3.Y, value4.Y, amount);
rResult.Z = MathHelper::CatmullRom(value1.Z, value2.Z, value3.Z, value4.Z, amount);
}
Vector3 Vector3::Clamp(const Vector3& value, const Vector3& min, const Vector3& max)
{
return {MathHelper::Clamp(value.X, min.X, max.X), MathHelper::Clamp(value.Y, min.Y, max.Y), MathHelper::Clamp(value.Z, min.Z, max.Z)};
}
void Vector3::Clamp(const Vector3& value, const Vector3& min, const Vector3& max, Vector3& rResult)
{
rResult = Vector3(MathHelper::Clamp(value.X, min.X, max.X), MathHelper::Clamp(value.Y, min.Y, max.Y), MathHelper::Clamp(value.Z, min.Z, max.Z));
}
Vector3 Vector3::Cross(const Vector3& vector1, const Vector3& vector2)
{
// Vector3 result(OptimizationFlag::NoInitialization);
Vector3 result;
Cross(vector1, vector2, result);
return result;
}
void Vector3::Cross(const Vector3& vector1, const Vector3& vector2, Vector3& rResult)
{
rResult = Vector3(vector1.Y * vector2.Z - vector2.Y * vector1.Z, -(vector1.X * vector2.Z - vector2.X * vector1.Z),
vector1.X * vector2.Y - vector2.X * vector1.Y);
}
float Vector3::Distance(const Vector3& vector1, const Vector3& vector2)
{
return std::sqrt(DistanceSquared(vector1, vector2));
}
Vector3 Vector3::Hermite(const Vector3& value1, const Vector3& tangent1, const Vector3& value2, const Vector3& tangent2, const float amount)
{
return {MathHelper::Hermite(value1.X, tangent1.X, value2.X, tangent2.X, amount),
MathHelper::Hermite(value1.Y, tangent1.Y, value2.Y, tangent2.Y, amount),
MathHelper::Hermite(value1.Z, tangent1.Z, value2.Z, tangent2.Z, amount)};
}
void Vector3::Hermite(const Vector3& value1, const Vector3& tangent1, const Vector3& value2, const Vector3& tangent2, const float amount,
Vector3& rResult)
{
rResult.X = MathHelper::Hermite(value1.X, tangent1.X, value2.X, tangent2.X, amount);
rResult.Y = MathHelper::Hermite(value1.Y, tangent1.Y, value2.Y, tangent2.Y, amount);
rResult.Z = MathHelper::Hermite(value1.Z, tangent1.Z, value2.Z, tangent2.Z, amount);
}
float Vector3::Length() const
{
return std::sqrt((X * X) + (Y * Y) + (Z * Z));
}
Vector3 Vector3::Lerp(const Vector3& value1, const Vector3 value2, const float amount)
{
return {MathHelper::Lerp(value1.X, value2.X, amount), MathHelper::Lerp(value1.Y, value2.Y, amount), MathHelper::Lerp(value1.Z, value2.Z, amount)};
}
void Vector3::Lerp(const Vector3& value1, const Vector3 value2, const float amount, Vector3& rResult)
{
rResult = Vector3(MathHelper::Lerp(value1.X, value2.X, amount), MathHelper::Lerp(value1.Y, value2.Y, amount),
MathHelper::Lerp(value1.Z, value2.Z, amount));
}
Vector3 Vector3::Max(const Vector3& value1, const Vector3& value2)
{
return {std::max(value1.X, value2.X), std::max(value1.Y, value2.Y), std::max(value1.Z, value2.Z)};
}
void Vector3::Max(const Vector3& value1, const Vector3& value2, Vector3& rResult)
{
rResult = Vector3(std::max(value1.X, value2.X), std::max(value1.Y, value2.Y), std::max(value1.Z, value2.Z));
}
Vector3 Vector3::Min(const Vector3& value1, const Vector3& value2)
{
return {std::min(value1.X, value2.X), std::min(value1.Y, value2.Y), std::min(value1.Z, value2.Z)};
}
void Vector3::Min(const Vector3& value1, const Vector3& value2, Vector3& rResult)
{
rResult = Vector3(std::min(value1.X, value2.X), std::min(value1.Y, value2.Y), std::min(value1.Z, value2.Z));
}
void Vector3::Negate(const Vector3& value, Vector3& rResult)
{
rResult.X = -value.X;
rResult.Y = -value.Y;
rResult.Z = -value.Z;
}
void Vector3::Normalize()
{
float factor = Length();
assert(factor != 0.0f);
factor = 1.0f / factor;
X *= factor;
Y *= factor;
Z *= factor;
}
Vector3 Vector3::Normalize(const Vector3& vector)
{
// Vector3 result(OptimizationFlag::NoInitialization);
Vector3 result;
Normalize(vector, result);
return result;
}
void Vector3::Normalize(const Vector3& value, Vector3& rResult)
{
float factor = value.Length();
assert(factor != 0.0f);
factor = 1.0f / factor;
rResult.X = value.X * factor;
rResult.Y = value.Y * factor;
rResult.Z = value.Z * factor;
}
Vector3 Vector3::Reflect(const Vector3& vector, const Vector3& normal)
{
// I is the original array
// N is the normal of the incident plane
// R = I - (2 * N * ( DotProduct[ I,N] ))
const float factor = 2.0f * ((vector.X * normal.X) + (vector.Y * normal.Y) + (vector.Z * normal.Z));
return {vector.X - (normal.X * factor), vector.Y - (normal.Y * factor), vector.Z - (normal.Z * factor)};
}
void Vector3::Reflect(const Vector3& vector, const Vector3& normal, Vector3& rResult)
{
// I is the original array
// N is the normal of the incident plane
// R = I - (2 * N * ( DotProduct[ I,N] ))
const float factor = 2.0f * ((vector.X * normal.X) + (vector.Y * normal.Y) + (vector.Z * normal.Z));
rResult.X = vector.X - (normal.X * factor);
rResult.Y = vector.Y - (normal.Y * factor);
rResult.Z = vector.Z - (normal.Z * factor);
}
Vector3 Vector3::SmoothStep(const Vector3& value1, const Vector3& value2, const float amount)
{
return {MathHelper::SmoothStep(value1.X, value2.X, amount), MathHelper::SmoothStep(value1.Y, value2.Y, amount),
MathHelper::SmoothStep(value1.Z, value2.Z, amount)};
}
void Vector3::SmoothStep(const Vector3& value1, const Vector3& value2, const float amount, Vector3& rResult)
{
rResult.X = MathHelper::SmoothStep(value1.X, value2.X, amount);
rResult.Y = MathHelper::SmoothStep(value1.Y, value2.Y, amount);
rResult.Z = MathHelper::SmoothStep(value1.Z, value2.Z, amount);
}
Vector3 Vector3::Transform(const Vector3& position, const Matrix& matrix)
{
// Vector3 result(OptimizationFlag::NoInitialization);
Vector3 result;
MatrixInternals::Transform(result, position, matrix);
return result;
}
void Vector3::Transform(const Vector3& position, const Matrix& matrix, Vector3& rResult)
{
MatrixInternals::Transform(rResult, position, matrix);
}
Vector3 Vector3::Transform(const Vector3& vec, const Quaternion& quat)
{
Vector3 result;
Transform(vec, quat, result);
return result;
}
void Vector3::Transform(const Vector3& value, const Quaternion& rotation, Vector3& rResult)
{
const float x = 2 * (rotation.Y * value.Z - rotation.Z * value.Y);
const float y = 2 * (rotation.Z * value.X - rotation.X * value.Z);
const float z = 2 * (rotation.X * value.Y - rotation.Y * value.X);
rResult.X = value.X + x * rotation.W + (rotation.Y * z - rotation.Z * y);
rResult.Y = value.Y + y * rotation.W + (rotation.Z * x - rotation.X * z);
rResult.Z = value.Z + z * rotation.W + (rotation.X * y - rotation.Y * x);
}
Vector3 Vector3::TransformNormal(const Vector3& position, const Matrix& matrix)
{
// Vector3 result(OptimizationFlag::NoInitialization);
Vector3 result;
MatrixInternals::TransformNormal(result, position, matrix);
return result;
}
void Vector3::TransformNormal(const Vector3& position, const Matrix& matrix, Vector3& rResult)
{
MatrixInternals::TransformNormal(rResult, position, matrix);
}
}
| [
"[email protected]"
] | |
b97833d55113171b9b7e6576158168ba1a1de100 | 3c62ae7164da3b336be07452d200eba34000303d | /leanTouch_singleHit_ballz/Beest2/Beest2/Classes/Native/Il2CppInteropDataTable.cpp | 64c0d78019f7c8e938cf3ab9499b3977c49b6c3d | [] | no_license | sgrutman978/smallerProjects | 135c83153777c0ef34d8546b765cfb759fc01d4b | 64c85a4ee782adafdd066bcf9ccc0833839485e8 | refs/heads/master | 2022-02-28T12:57:25.917632 | 2022-01-24T20:42:36 | 2022-01-24T20:42:36 | 128,837,072 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 85,293 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
extern "C" void Context_t1744531130_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Context_t1744531130_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Context_t1744531130_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Context_t1744531130_0_0_0;
extern "C" void Escape_t3294788190_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Escape_t3294788190_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Escape_t3294788190_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Escape_t3294788190_0_0_0;
extern "C" void PreviousInfo_t2148130204_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void PreviousInfo_t2148130204_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void PreviousInfo_t2148130204_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType PreviousInfo_t2148130204_0_0_0;
extern "C" void DelegatePInvokeWrapper_AppDomainInitializer_t682969308();
extern const RuntimeType AppDomainInitializer_t682969308_0_0_0;
extern "C" void DelegatePInvokeWrapper_Swapper_t2822380397();
extern const RuntimeType Swapper_t2822380397_0_0_0;
extern "C" void DictionaryEntry_t3123975638_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void DictionaryEntry_t3123975638_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void DictionaryEntry_t3123975638_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType DictionaryEntry_t3123975638_0_0_0;
extern "C" void Slot_t3975888750_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Slot_t3975888750_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Slot_t3975888750_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Slot_t3975888750_0_0_0;
extern "C" void Slot_t384495010_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Slot_t384495010_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Slot_t384495010_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Slot_t384495010_0_0_0;
extern "C" void Enum_t4135868527_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Enum_t4135868527_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Enum_t4135868527_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Enum_t4135868527_0_0_0;
extern "C" void DelegatePInvokeWrapper_ReadDelegate_t714865915();
extern const RuntimeType ReadDelegate_t714865915_0_0_0;
extern "C" void DelegatePInvokeWrapper_WriteDelegate_t4270993571();
extern const RuntimeType WriteDelegate_t4270993571_0_0_0;
extern "C" void MonoIOStat_t592533987_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void MonoIOStat_t592533987_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void MonoIOStat_t592533987_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType MonoIOStat_t592533987_0_0_0;
extern "C" void MonoEnumInfo_t3694469084_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void MonoEnumInfo_t3694469084_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void MonoEnumInfo_t3694469084_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType MonoEnumInfo_t3694469084_0_0_0;
extern "C" void CustomAttributeNamedArgument_t287865710_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void CustomAttributeNamedArgument_t287865710_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void CustomAttributeNamedArgument_t287865710_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType CustomAttributeNamedArgument_t287865710_0_0_0;
extern "C" void CustomAttributeTypedArgument_t2723150157_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void CustomAttributeTypedArgument_t2723150157_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void CustomAttributeTypedArgument_t2723150157_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType CustomAttributeTypedArgument_t2723150157_0_0_0;
extern "C" void ILTokenInfo_t2325775114_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ILTokenInfo_t2325775114_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ILTokenInfo_t2325775114_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ILTokenInfo_t2325775114_0_0_0;
extern "C" void MonoResource_t4103430009_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void MonoResource_t4103430009_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void MonoResource_t4103430009_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType MonoResource_t4103430009_0_0_0;
extern "C" void MonoWin32Resource_t1904229483_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void MonoWin32Resource_t1904229483_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void MonoWin32Resource_t1904229483_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType MonoWin32Resource_t1904229483_0_0_0;
extern "C" void RefEmitPermissionSet_t484390987_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void RefEmitPermissionSet_t484390987_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void RefEmitPermissionSet_t484390987_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType RefEmitPermissionSet_t484390987_0_0_0;
extern "C" void MonoEventInfo_t346866618_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void MonoEventInfo_t346866618_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void MonoEventInfo_t346866618_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType MonoEventInfo_t346866618_0_0_0;
extern "C" void MonoMethodInfo_t1248819020_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void MonoMethodInfo_t1248819020_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void MonoMethodInfo_t1248819020_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType MonoMethodInfo_t1248819020_0_0_0;
extern "C" void MonoPropertyInfo_t3087356066_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void MonoPropertyInfo_t3087356066_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void MonoPropertyInfo_t3087356066_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType MonoPropertyInfo_t3087356066_0_0_0;
extern "C" void ParameterModifier_t1461694466_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ParameterModifier_t1461694466_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ParameterModifier_t1461694466_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ParameterModifier_t1461694466_0_0_0;
extern "C" void ResourceCacheItem_t51292791_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ResourceCacheItem_t51292791_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ResourceCacheItem_t51292791_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ResourceCacheItem_t51292791_0_0_0;
extern "C" void ResourceInfo_t2872965302_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ResourceInfo_t2872965302_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ResourceInfo_t2872965302_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ResourceInfo_t2872965302_0_0_0;
extern "C" void ProcessMessageRes_t3710547145_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ProcessMessageRes_t3710547145_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ProcessMessageRes_t3710547145_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ProcessMessageRes_t3710547145_0_0_0;
extern "C" void DelegatePInvokeWrapper_CrossContextDelegate_t387175271();
extern const RuntimeType CrossContextDelegate_t387175271_0_0_0;
extern "C" void DelegatePInvokeWrapper_CallbackHandler_t3280319253();
extern const RuntimeType CallbackHandler_t3280319253_0_0_0;
extern "C" void SerializationEntry_t648286436_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void SerializationEntry_t648286436_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void SerializationEntry_t648286436_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType SerializationEntry_t648286436_0_0_0;
extern "C" void StreamingContext_t3711869237_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void StreamingContext_t3711869237_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void StreamingContext_t3711869237_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType StreamingContext_t3711869237_0_0_0;
extern "C" void DSAParameters_t1885824122_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void DSAParameters_t1885824122_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void DSAParameters_t1885824122_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType DSAParameters_t1885824122_0_0_0;
extern "C" void RSAParameters_t1728406613_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void RSAParameters_t1728406613_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void RSAParameters_t1728406613_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType RSAParameters_t1728406613_0_0_0;
extern "C" void SecurityFrame_t1422462475_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void SecurityFrame_t1422462475_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void SecurityFrame_t1422462475_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType SecurityFrame_t1422462475_0_0_0;
extern "C" void DelegatePInvokeWrapper_ThreadStart_t1006689297();
extern const RuntimeType ThreadStart_t1006689297_0_0_0;
extern "C" void ValueType_t3640485471_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ValueType_t3640485471_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ValueType_t3640485471_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ValueType_t3640485471_0_0_0;
extern "C" void DelegatePInvokeWrapper_ReadMethod_t893206259();
extern const RuntimeType ReadMethod_t893206259_0_0_0;
extern "C" void DelegatePInvokeWrapper_UnmanagedReadOrWrite_t876388624();
extern const RuntimeType UnmanagedReadOrWrite_t876388624_0_0_0;
extern "C" void DelegatePInvokeWrapper_WriteMethod_t2538911768();
extern const RuntimeType WriteMethod_t2538911768_0_0_0;
extern "C" void DelegatePInvokeWrapper_ReadDelegate_t4266946825();
extern const RuntimeType ReadDelegate_t4266946825_0_0_0;
extern "C" void DelegatePInvokeWrapper_WriteDelegate_t2016697242();
extern const RuntimeType WriteDelegate_t2016697242_0_0_0;
extern "C" void DelegatePInvokeWrapper_SocketAsyncCall_t1521370843();
extern const RuntimeType SocketAsyncCall_t1521370843_0_0_0;
extern "C" void SocketAsyncResult_t2080034863_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void SocketAsyncResult_t2080034863_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void SocketAsyncResult_t2080034863_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType SocketAsyncResult_t2080034863_0_0_0;
extern "C" void X509ChainStatus_t133602714_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void X509ChainStatus_t133602714_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void X509ChainStatus_t133602714_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType X509ChainStatus_t133602714_0_0_0;
extern "C" void IntStack_t2189327687_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void IntStack_t2189327687_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void IntStack_t2189327687_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType IntStack_t2189327687_0_0_0;
extern "C" void Interval_t1802865632_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Interval_t1802865632_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Interval_t1802865632_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Interval_t1802865632_0_0_0;
extern "C" void DelegatePInvokeWrapper_CostDelegate_t1722821004();
extern const RuntimeType CostDelegate_t1722821004_0_0_0;
extern "C" void UriScheme_t722425697_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void UriScheme_t722425697_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void UriScheme_t722425697_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType UriScheme_t722425697_0_0_0;
extern "C" void DelegatePInvokeWrapper_Action_t1264377477();
extern const RuntimeType Action_t1264377477_0_0_0;
extern "C" void AnimationCurve_t3046754366_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void AnimationCurve_t3046754366_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void AnimationCurve_t3046754366_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType AnimationCurve_t3046754366_0_0_0;
extern "C" void DelegatePInvokeWrapper_LogCallback_t3588208630();
extern const RuntimeType LogCallback_t3588208630_0_0_0;
extern "C" void DelegatePInvokeWrapper_LowMemoryCallback_t4104246196();
extern const RuntimeType LowMemoryCallback_t4104246196_0_0_0;
extern "C" void AsyncOperation_t1445031843_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void AsyncOperation_t1445031843_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void AsyncOperation_t1445031843_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType AsyncOperation_t1445031843_0_0_0;
extern "C" void OrderBlock_t1585977831_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void OrderBlock_t1585977831_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void OrderBlock_t1585977831_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType OrderBlock_t1585977831_0_0_0;
extern "C" void Coroutine_t3829159415_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Coroutine_t3829159415_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Coroutine_t3829159415_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Coroutine_t3829159415_0_0_0;
extern "C" void CullingGroup_t2096318768_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void CullingGroup_t2096318768_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void CullingGroup_t2096318768_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType CullingGroup_t2096318768_0_0_0;
extern "C" void DelegatePInvokeWrapper_StateChanged_t2136737110();
extern const RuntimeType StateChanged_t2136737110_0_0_0;
extern "C" void DelegatePInvokeWrapper_DisplaysUpdatedDelegate_t51287044();
extern const RuntimeType DisplaysUpdatedDelegate_t51287044_0_0_0;
extern "C" void DelegatePInvokeWrapper_UnityAction_t3245792599();
extern const RuntimeType UnityAction_t3245792599_0_0_0;
extern "C" void PlayerLoopSystem_t105772105_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void PlayerLoopSystem_t105772105_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void PlayerLoopSystem_t105772105_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType PlayerLoopSystem_t105772105_0_0_0;
extern "C" void DelegatePInvokeWrapper_UpdateFunction_t377278577();
extern const RuntimeType UpdateFunction_t377278577_0_0_0;
extern "C" void PlayerLoopSystemInternal_t2185485283_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void PlayerLoopSystemInternal_t2185485283_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void PlayerLoopSystemInternal_t2185485283_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType PlayerLoopSystemInternal_t2185485283_0_0_0;
extern "C" void SpriteBone_t303320096_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void SpriteBone_t303320096_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void SpriteBone_t303320096_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType SpriteBone_t303320096_0_0_0;
extern "C" void FailedToLoadScriptObject_t547604379_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void FailedToLoadScriptObject_t547604379_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void FailedToLoadScriptObject_t547604379_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType FailedToLoadScriptObject_t547604379_0_0_0;
extern "C" void Gradient_t3067099924_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Gradient_t3067099924_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Gradient_t3067099924_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Gradient_t3067099924_0_0_0;
extern "C" void Internal_DrawTextureArguments_t1705718261_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Internal_DrawTextureArguments_t1705718261_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Internal_DrawTextureArguments_t1705718261_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Internal_DrawTextureArguments_t1705718261_0_0_0;
extern "C" void LightProbes_t649210852_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void LightProbes_t649210852_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void LightProbes_t649210852_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType LightProbes_t649210852_0_0_0;
extern "C" void Object_t631007953_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Object_t631007953_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Object_t631007953_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Object_t631007953_0_0_0;
extern "C" void PlayableBinding_t354260709_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void PlayableBinding_t354260709_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void PlayableBinding_t354260709_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType PlayableBinding_t354260709_0_0_0;
extern "C" void DelegatePInvokeWrapper_CreateOutputMethod_t2301811773();
extern const RuntimeType CreateOutputMethod_t2301811773_0_0_0;
extern "C" void RectOffset_t1369453676_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void RectOffset_t1369453676_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void RectOffset_t1369453676_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType RectOffset_t1369453676_0_0_0;
extern "C" void ResourceRequest_t3109103591_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ResourceRequest_t3109103591_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ResourceRequest_t3109103591_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ResourceRequest_t3109103591_0_0_0;
extern "C" void ScriptableObject_t2528358522_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ScriptableObject_t2528358522_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ScriptableObject_t2528358522_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ScriptableObject_t2528358522_0_0_0;
extern "C" void HitInfo_t3229609740_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void HitInfo_t3229609740_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void HitInfo_t3229609740_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType HitInfo_t3229609740_0_0_0;
extern "C" void TrackedReference_t1199777556_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void TrackedReference_t1199777556_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void TrackedReference_t1199777556_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType TrackedReference_t1199777556_0_0_0;
extern "C" void DelegatePInvokeWrapper_RequestAtlasCallback_t3100554279();
extern const RuntimeType RequestAtlasCallback_t3100554279_0_0_0;
extern "C" void WorkRequest_t1354518612_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void WorkRequest_t1354518612_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void WorkRequest_t1354518612_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType WorkRequest_t1354518612_0_0_0;
extern "C" void WaitForSeconds_t1699091251_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void WaitForSeconds_t1699091251_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void WaitForSeconds_t1699091251_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType WaitForSeconds_t1699091251_0_0_0;
extern "C" void YieldInstruction_t403091072_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void YieldInstruction_t403091072_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void YieldInstruction_t403091072_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType YieldInstruction_t403091072_0_0_0;
extern "C" void DelegatePInvokeWrapper_FontTextureRebuildCallback_t2467502454();
extern const RuntimeType FontTextureRebuildCallback_t2467502454_0_0_0;
extern "C" void TextGenerationSettings_t1351628751_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void TextGenerationSettings_t1351628751_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void TextGenerationSettings_t1351628751_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType TextGenerationSettings_t1351628751_0_0_0;
extern "C" void TextGenerator_t3211863866_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void TextGenerator_t3211863866_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void TextGenerator_t3211863866_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType TextGenerator_t3211863866_0_0_0;
extern "C" void AnimationEvent_t1536042487_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void AnimationEvent_t1536042487_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void AnimationEvent_t1536042487_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType AnimationEvent_t1536042487_0_0_0;
extern "C" void DelegatePInvokeWrapper_OnOverrideControllerDirtyCallback_t1307045488();
extern const RuntimeType OnOverrideControllerDirtyCallback_t1307045488_0_0_0;
extern "C" void AnimatorTransitionInfo_t2534804151_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void AnimatorTransitionInfo_t2534804151_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void AnimatorTransitionInfo_t2534804151_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType AnimatorTransitionInfo_t2534804151_0_0_0;
extern "C" void HumanBone_t2465339518_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void HumanBone_t2465339518_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void HumanBone_t2465339518_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType HumanBone_t2465339518_0_0_0;
extern "C" void SkeletonBone_t4134054672_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void SkeletonBone_t4134054672_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void SkeletonBone_t4134054672_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType SkeletonBone_t4134054672_0_0_0;
extern "C" void DelegatePInvokeWrapper_PCMReaderCallback_t1677636661();
extern const RuntimeType PCMReaderCallback_t1677636661_0_0_0;
extern "C" void DelegatePInvokeWrapper_PCMSetPositionCallback_t1059417452();
extern const RuntimeType PCMSetPositionCallback_t1059417452_0_0_0;
extern "C" void DelegatePInvokeWrapper_AudioConfigurationChangeHandler_t2089929874();
extern const RuntimeType AudioConfigurationChangeHandler_t2089929874_0_0_0;
extern "C" void DelegatePInvokeWrapper_ConsumeSampleFramesNativeFunction_t1497769677();
extern const RuntimeType ConsumeSampleFramesNativeFunction_t1497769677_0_0_0;
extern "C" void GcAchievementData_t675222246_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void GcAchievementData_t675222246_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void GcAchievementData_t675222246_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType GcAchievementData_t675222246_0_0_0;
extern "C" void GcAchievementDescriptionData_t643925653_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void GcAchievementDescriptionData_t643925653_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void GcAchievementDescriptionData_t643925653_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType GcAchievementDescriptionData_t643925653_0_0_0;
extern "C" void GcLeaderboard_t4132273028_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void GcLeaderboard_t4132273028_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void GcLeaderboard_t4132273028_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType GcLeaderboard_t4132273028_0_0_0;
extern "C" void GcScoreData_t2125309831_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void GcScoreData_t2125309831_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void GcScoreData_t2125309831_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType GcScoreData_t2125309831_0_0_0;
extern "C" void GcUserProfileData_t2719720026_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void GcUserProfileData_t2719720026_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void GcUserProfileData_t2719720026_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType GcUserProfileData_t2719720026_0_0_0;
extern "C" void Event_t2956885303_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Event_t2956885303_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Event_t2956885303_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Event_t2956885303_0_0_0;
extern "C" void DelegatePInvokeWrapper_WindowFunction_t3146511083();
extern const RuntimeType WindowFunction_t3146511083_0_0_0;
extern "C" void GUIContent_t3050628031_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void GUIContent_t3050628031_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void GUIContent_t3050628031_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType GUIContent_t3050628031_0_0_0;
extern "C" void DelegatePInvokeWrapper_SkinChangedDelegate_t1143955295();
extern const RuntimeType SkinChangedDelegate_t1143955295_0_0_0;
extern "C" void GUIStyle_t3956901511_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void GUIStyle_t3956901511_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void GUIStyle_t3956901511_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType GUIStyle_t3956901511_0_0_0;
extern "C" void GUIStyleState_t1397964415_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void GUIStyleState_t1397964415_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void GUIStyleState_t1397964415_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType GUIStyleState_t1397964415_0_0_0;
extern "C" void EmitParams_t2216423628_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void EmitParams_t2216423628_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void EmitParams_t2216423628_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType EmitParams_t2216423628_0_0_0;
extern "C" void ContactFilter2D_t3805203441_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ContactFilter2D_t3805203441_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ContactFilter2D_t3805203441_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ContactFilter2D_t3805203441_0_0_0;
extern "C" void Collision_t4262080450_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Collision_t4262080450_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Collision_t4262080450_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Collision_t4262080450_0_0_0;
extern "C" void ControllerColliderHit_t240592346_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ControllerColliderHit_t240592346_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ControllerColliderHit_t240592346_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ControllerColliderHit_t240592346_0_0_0;
extern "C" void DelegatePInvokeWrapper_WillRenderCanvases_t3309123499();
extern const RuntimeType WillRenderCanvases_t3309123499_0_0_0;
extern "C" void DelegatePInvokeWrapper_SessionStateChanged_t3163629820();
extern const RuntimeType SessionStateChanged_t3163629820_0_0_0;
extern "C" void CustomEventData_t317522481_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void CustomEventData_t317522481_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void CustomEventData_t317522481_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType CustomEventData_t317522481_0_0_0;
extern "C" void UnityAnalyticsHandler_t3011359618_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void UnityAnalyticsHandler_t3011359618_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void UnityAnalyticsHandler_t3011359618_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType UnityAnalyticsHandler_t3011359618_0_0_0;
extern "C" void RemoteConfigSettings_t1247263429_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void RemoteConfigSettings_t1247263429_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void RemoteConfigSettings_t1247263429_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType RemoteConfigSettings_t1247263429_0_0_0;
extern "C" void DelegatePInvokeWrapper_UpdatedEventHandler_t1027848393();
extern const RuntimeType UpdatedEventHandler_t1027848393_0_0_0;
extern "C" void CertificateHandler_t2739891000_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void CertificateHandler_t2739891000_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void CertificateHandler_t2739891000_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType CertificateHandler_t2739891000_0_0_0;
extern "C" void RaycastResult_t3360306849_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void RaycastResult_t3360306849_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void RaycastResult_t3360306849_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType RaycastResult_t3360306849_0_0_0;
extern "C" void ColorTween_t809614380_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ColorTween_t809614380_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ColorTween_t809614380_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ColorTween_t809614380_0_0_0;
extern "C" void FloatTween_t1274330004_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void FloatTween_t1274330004_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void FloatTween_t1274330004_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType FloatTween_t1274330004_0_0_0;
extern "C" void DelegatePInvokeWrapper_OnValidateInput_t2355412304();
extern const RuntimeType OnValidateInput_t2355412304_0_0_0;
extern "C" void Navigation_t3049316579_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void Navigation_t3049316579_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void Navigation_t3049316579_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType Navigation_t3049316579_0_0_0;
extern "C" void DelegatePInvokeWrapper_GetRayIntersectionAllCallback_t3913627115();
extern const RuntimeType GetRayIntersectionAllCallback_t3913627115_0_0_0;
extern "C" void DelegatePInvokeWrapper_GetRayIntersectionAllNonAllocCallback_t2311174851();
extern const RuntimeType GetRayIntersectionAllNonAllocCallback_t2311174851_0_0_0;
extern "C" void DelegatePInvokeWrapper_GetRaycastNonAllocCallback_t3841783507();
extern const RuntimeType GetRaycastNonAllocCallback_t3841783507_0_0_0;
extern "C" void DelegatePInvokeWrapper_Raycast2DCallback_t768590915();
extern const RuntimeType Raycast2DCallback_t768590915_0_0_0;
extern "C" void DelegatePInvokeWrapper_Raycast3DCallback_t701940803();
extern const RuntimeType Raycast3DCallback_t701940803_0_0_0;
extern "C" void DelegatePInvokeWrapper_RaycastAllCallback_t1884415901();
extern const RuntimeType RaycastAllCallback_t1884415901_0_0_0;
extern "C" void SpriteState_t1362986479_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void SpriteState_t1362986479_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void SpriteState_t1362986479_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType SpriteState_t1362986479_0_0_0;
extern "C" void DelegatePInvokeWrapper_unityAdsDidError_t1993223595();
extern const RuntimeType unityAdsDidError_t1993223595_0_0_0;
extern "C" void DelegatePInvokeWrapper_unityAdsDidFinish_t3747416149();
extern const RuntimeType unityAdsDidFinish_t3747416149_0_0_0;
extern "C" void DelegatePInvokeWrapper_unityAdsDidStart_t1058412932();
extern const RuntimeType unityAdsDidStart_t1058412932_0_0_0;
extern "C" void DelegatePInvokeWrapper_unityAdsReady_t96934738();
extern const RuntimeType unityAdsReady_t96934738_0_0_0;
extern "C" void DelegatePInvokeWrapper_OnTrigger_t4184125570();
extern const RuntimeType OnTrigger_t4184125570_0_0_0;
extern "C" void LeanScreenDepth_t1010637882_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void LeanScreenDepth_t1010637882_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void LeanScreenDepth_t1010637882_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType LeanScreenDepth_t1010637882_0_0_0;
extern "C" void ARAnchor_t362826948_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ARAnchor_t362826948_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ARAnchor_t362826948_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ARAnchor_t362826948_0_0_0;
extern "C" void DelegatePInvokeWrapper_DictionaryVisitorHandler_t414487210();
extern const RuntimeType DictionaryVisitorHandler_t414487210_0_0_0;
extern "C" void ARHitTestResult_t1279023930_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ARHitTestResult_t1279023930_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ARHitTestResult_t1279023930_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ARHitTestResult_t1279023930_0_0_0;
extern "C" void ARKitFaceTrackingConfiguration_t386387352_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ARKitFaceTrackingConfiguration_t386387352_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ARKitFaceTrackingConfiguration_t386387352_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ARKitFaceTrackingConfiguration_t386387352_0_0_0;
extern "C" void ARKitObjectScanningSessionConfiguration_t573542873_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ARKitObjectScanningSessionConfiguration_t573542873_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ARKitObjectScanningSessionConfiguration_t573542873_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ARKitObjectScanningSessionConfiguration_t573542873_0_0_0;
extern "C" void ARKitSessionConfiguration_t629136898_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ARKitSessionConfiguration_t629136898_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ARKitSessionConfiguration_t629136898_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ARKitSessionConfiguration_t629136898_0_0_0;
extern "C" void ARKitWorldTrackingSessionConfiguration_t273386347_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ARKitWorldTrackingSessionConfiguration_t273386347_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ARKitWorldTrackingSessionConfiguration_t273386347_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ARKitWorldTrackingSessionConfiguration_t273386347_0_0_0;
extern "C" void ARUserAnchor_t1406831531_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void ARUserAnchor_t1406831531_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void ARUserAnchor_t1406831531_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType ARUserAnchor_t1406831531_0_0_0;
extern "C" void UnityARCamera_t2069150450_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void UnityARCamera_t2069150450_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void UnityARCamera_t2069150450_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType UnityARCamera_t2069150450_0_0_0;
extern "C" void UnityARFaceAnchorData_t2028622935_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void UnityARFaceAnchorData_t2028622935_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void UnityARFaceAnchorData_t2028622935_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType UnityARFaceAnchorData_t2028622935_0_0_0;
extern "C" void UnityARHitTestResult_t4176230866_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void UnityARHitTestResult_t4176230866_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void UnityARHitTestResult_t4176230866_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType UnityARHitTestResult_t4176230866_0_0_0;
extern "C" void UnityARLightData_t2160616730_marshal_pinvoke(void* managedStructure, void* marshaledStructure);
extern "C" void UnityARLightData_t2160616730_marshal_pinvoke_back(void* marshaledStructure, void* managedStructure);
extern "C" void UnityARLightData_t2160616730_marshal_pinvoke_cleanup(void* marshaledStructure);
extern const RuntimeType UnityARLightData_t2160616730_0_0_0;
extern "C" void DelegatePInvokeWrapper_ARSessionCallback_t3772093212();
extern const RuntimeType ARSessionCallback_t3772093212_0_0_0;
extern "C" void DelegatePInvokeWrapper_ARSessionFailed_t2125002991();
extern const RuntimeType ARSessionFailed_t2125002991_0_0_0;
extern "C" void DelegatePInvokeWrapper_ARSessionLocalizeCallback_t3284060032();
extern const RuntimeType ARSessionLocalizeCallback_t3284060032_0_0_0;
extern "C" void DelegatePInvokeWrapper_ARUserAnchorAdded_t1851120876();
extern const RuntimeType ARUserAnchorAdded_t1851120876_0_0_0;
extern "C" void DelegatePInvokeWrapper_ARUserAnchorRemoved_t23344545();
extern const RuntimeType ARUserAnchorRemoved_t23344545_0_0_0;
extern "C" void DelegatePInvokeWrapper_ARUserAnchorUpdated_t4007601678();
extern const RuntimeType ARUserAnchorUpdated_t4007601678_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARAnchorAdded_t1565083332();
extern const RuntimeType internal_ARAnchorAdded_t1565083332_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARAnchorRemoved_t3371657877();
extern const RuntimeType internal_ARAnchorRemoved_t3371657877_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARAnchorUpdated_t2645242205();
extern const RuntimeType internal_ARAnchorUpdated_t2645242205_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_AREnvironmentProbeAnchorAdded_t1786467930();
extern const RuntimeType internal_AREnvironmentProbeAnchorAdded_t1786467930_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_AREnvironmentProbeAnchorRemoved_t3912910743();
extern const RuntimeType internal_AREnvironmentProbeAnchorRemoved_t3912910743_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_AREnvironmentProbeAnchorUpdated_t3576551915();
extern const RuntimeType internal_AREnvironmentProbeAnchorUpdated_t3576551915_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARFaceAnchorAdded_t1021040265();
extern const RuntimeType internal_ARFaceAnchorAdded_t1021040265_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARFaceAnchorRemoved_t2563439402();
extern const RuntimeType internal_ARFaceAnchorRemoved_t2563439402_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARFaceAnchorUpdated_t3423900432();
extern const RuntimeType internal_ARFaceAnchorUpdated_t3423900432_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARFrameUpdate_t3254989823();
extern const RuntimeType internal_ARFrameUpdate_t3254989823_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARImageAnchorAdded_t958088978();
extern const RuntimeType internal_ARImageAnchorAdded_t958088978_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARImageAnchorRemoved_t1751104571();
extern const RuntimeType internal_ARImageAnchorRemoved_t1751104571_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARImageAnchorUpdated_t294417830();
extern const RuntimeType internal_ARImageAnchorUpdated_t294417830_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARObjectAnchorAdded_t1222097505();
extern const RuntimeType internal_ARObjectAnchorAdded_t1222097505_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARObjectAnchorRemoved_t1225376916();
extern const RuntimeType internal_ARObjectAnchorRemoved_t1225376916_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARObjectAnchorUpdated_t3492445690();
extern const RuntimeType internal_ARObjectAnchorUpdated_t3492445690_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARSessionTrackingChanged_t1988849735();
extern const RuntimeType internal_ARSessionTrackingChanged_t1988849735_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARUserAnchorAdded_t3285282493();
extern const RuntimeType internal_ARUserAnchorAdded_t3285282493_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARUserAnchorRemoved_t386858594();
extern const RuntimeType internal_ARUserAnchorRemoved_t386858594_0_0_0;
extern "C" void DelegatePInvokeWrapper_internal_ARUserAnchorUpdated_t3964727538();
extern const RuntimeType internal_ARUserAnchorUpdated_t3964727538_0_0_0;
extern "C" void DelegatePInvokeWrapper_VideoFormatEnumerator_t3131638505();
extern const RuntimeType VideoFormatEnumerator_t3131638505_0_0_0;
extern "C" void DelegatePInvokeWrapper_VideoFormatButtonPressed_t1187798507();
extern const RuntimeType VideoFormatButtonPressed_t1187798507_0_0_0;
extern Il2CppInteropData g_Il2CppInteropData[171] =
{
{ NULL, Context_t1744531130_marshal_pinvoke, Context_t1744531130_marshal_pinvoke_back, Context_t1744531130_marshal_pinvoke_cleanup, NULL, NULL, &Context_t1744531130_0_0_0 } /* Mono.Globalization.Unicode.SimpleCollator/Context */,
{ NULL, Escape_t3294788190_marshal_pinvoke, Escape_t3294788190_marshal_pinvoke_back, Escape_t3294788190_marshal_pinvoke_cleanup, NULL, NULL, &Escape_t3294788190_0_0_0 } /* Mono.Globalization.Unicode.SimpleCollator/Escape */,
{ NULL, PreviousInfo_t2148130204_marshal_pinvoke, PreviousInfo_t2148130204_marshal_pinvoke_back, PreviousInfo_t2148130204_marshal_pinvoke_cleanup, NULL, NULL, &PreviousInfo_t2148130204_0_0_0 } /* Mono.Globalization.Unicode.SimpleCollator/PreviousInfo */,
{ DelegatePInvokeWrapper_AppDomainInitializer_t682969308, NULL, NULL, NULL, NULL, NULL, &AppDomainInitializer_t682969308_0_0_0 } /* System.AppDomainInitializer */,
{ DelegatePInvokeWrapper_Swapper_t2822380397, NULL, NULL, NULL, NULL, NULL, &Swapper_t2822380397_0_0_0 } /* System.Array/Swapper */,
{ NULL, DictionaryEntry_t3123975638_marshal_pinvoke, DictionaryEntry_t3123975638_marshal_pinvoke_back, DictionaryEntry_t3123975638_marshal_pinvoke_cleanup, NULL, NULL, &DictionaryEntry_t3123975638_0_0_0 } /* System.Collections.DictionaryEntry */,
{ NULL, Slot_t3975888750_marshal_pinvoke, Slot_t3975888750_marshal_pinvoke_back, Slot_t3975888750_marshal_pinvoke_cleanup, NULL, NULL, &Slot_t3975888750_0_0_0 } /* System.Collections.Hashtable/Slot */,
{ NULL, Slot_t384495010_marshal_pinvoke, Slot_t384495010_marshal_pinvoke_back, Slot_t384495010_marshal_pinvoke_cleanup, NULL, NULL, &Slot_t384495010_0_0_0 } /* System.Collections.SortedList/Slot */,
{ NULL, Enum_t4135868527_marshal_pinvoke, Enum_t4135868527_marshal_pinvoke_back, Enum_t4135868527_marshal_pinvoke_cleanup, NULL, NULL, &Enum_t4135868527_0_0_0 } /* System.Enum */,
{ DelegatePInvokeWrapper_ReadDelegate_t714865915, NULL, NULL, NULL, NULL, NULL, &ReadDelegate_t714865915_0_0_0 } /* System.IO.FileStream/ReadDelegate */,
{ DelegatePInvokeWrapper_WriteDelegate_t4270993571, NULL, NULL, NULL, NULL, NULL, &WriteDelegate_t4270993571_0_0_0 } /* System.IO.FileStream/WriteDelegate */,
{ NULL, MonoIOStat_t592533987_marshal_pinvoke, MonoIOStat_t592533987_marshal_pinvoke_back, MonoIOStat_t592533987_marshal_pinvoke_cleanup, NULL, NULL, &MonoIOStat_t592533987_0_0_0 } /* System.IO.MonoIOStat */,
{ NULL, MonoEnumInfo_t3694469084_marshal_pinvoke, MonoEnumInfo_t3694469084_marshal_pinvoke_back, MonoEnumInfo_t3694469084_marshal_pinvoke_cleanup, NULL, NULL, &MonoEnumInfo_t3694469084_0_0_0 } /* System.MonoEnumInfo */,
{ NULL, CustomAttributeNamedArgument_t287865710_marshal_pinvoke, CustomAttributeNamedArgument_t287865710_marshal_pinvoke_back, CustomAttributeNamedArgument_t287865710_marshal_pinvoke_cleanup, NULL, NULL, &CustomAttributeNamedArgument_t287865710_0_0_0 } /* System.Reflection.CustomAttributeNamedArgument */,
{ NULL, CustomAttributeTypedArgument_t2723150157_marshal_pinvoke, CustomAttributeTypedArgument_t2723150157_marshal_pinvoke_back, CustomAttributeTypedArgument_t2723150157_marshal_pinvoke_cleanup, NULL, NULL, &CustomAttributeTypedArgument_t2723150157_0_0_0 } /* System.Reflection.CustomAttributeTypedArgument */,
{ NULL, ILTokenInfo_t2325775114_marshal_pinvoke, ILTokenInfo_t2325775114_marshal_pinvoke_back, ILTokenInfo_t2325775114_marshal_pinvoke_cleanup, NULL, NULL, &ILTokenInfo_t2325775114_0_0_0 } /* System.Reflection.Emit.ILTokenInfo */,
{ NULL, MonoResource_t4103430009_marshal_pinvoke, MonoResource_t4103430009_marshal_pinvoke_back, MonoResource_t4103430009_marshal_pinvoke_cleanup, NULL, NULL, &MonoResource_t4103430009_0_0_0 } /* System.Reflection.Emit.MonoResource */,
{ NULL, MonoWin32Resource_t1904229483_marshal_pinvoke, MonoWin32Resource_t1904229483_marshal_pinvoke_back, MonoWin32Resource_t1904229483_marshal_pinvoke_cleanup, NULL, NULL, &MonoWin32Resource_t1904229483_0_0_0 } /* System.Reflection.Emit.MonoWin32Resource */,
{ NULL, RefEmitPermissionSet_t484390987_marshal_pinvoke, RefEmitPermissionSet_t484390987_marshal_pinvoke_back, RefEmitPermissionSet_t484390987_marshal_pinvoke_cleanup, NULL, NULL, &RefEmitPermissionSet_t484390987_0_0_0 } /* System.Reflection.Emit.RefEmitPermissionSet */,
{ NULL, MonoEventInfo_t346866618_marshal_pinvoke, MonoEventInfo_t346866618_marshal_pinvoke_back, MonoEventInfo_t346866618_marshal_pinvoke_cleanup, NULL, NULL, &MonoEventInfo_t346866618_0_0_0 } /* System.Reflection.MonoEventInfo */,
{ NULL, MonoMethodInfo_t1248819020_marshal_pinvoke, MonoMethodInfo_t1248819020_marshal_pinvoke_back, MonoMethodInfo_t1248819020_marshal_pinvoke_cleanup, NULL, NULL, &MonoMethodInfo_t1248819020_0_0_0 } /* System.Reflection.MonoMethodInfo */,
{ NULL, MonoPropertyInfo_t3087356066_marshal_pinvoke, MonoPropertyInfo_t3087356066_marshal_pinvoke_back, MonoPropertyInfo_t3087356066_marshal_pinvoke_cleanup, NULL, NULL, &MonoPropertyInfo_t3087356066_0_0_0 } /* System.Reflection.MonoPropertyInfo */,
{ NULL, ParameterModifier_t1461694466_marshal_pinvoke, ParameterModifier_t1461694466_marshal_pinvoke_back, ParameterModifier_t1461694466_marshal_pinvoke_cleanup, NULL, NULL, &ParameterModifier_t1461694466_0_0_0 } /* System.Reflection.ParameterModifier */,
{ NULL, ResourceCacheItem_t51292791_marshal_pinvoke, ResourceCacheItem_t51292791_marshal_pinvoke_back, ResourceCacheItem_t51292791_marshal_pinvoke_cleanup, NULL, NULL, &ResourceCacheItem_t51292791_0_0_0 } /* System.Resources.ResourceReader/ResourceCacheItem */,
{ NULL, ResourceInfo_t2872965302_marshal_pinvoke, ResourceInfo_t2872965302_marshal_pinvoke_back, ResourceInfo_t2872965302_marshal_pinvoke_cleanup, NULL, NULL, &ResourceInfo_t2872965302_0_0_0 } /* System.Resources.ResourceReader/ResourceInfo */,
{ NULL, ProcessMessageRes_t3710547145_marshal_pinvoke, ProcessMessageRes_t3710547145_marshal_pinvoke_back, ProcessMessageRes_t3710547145_marshal_pinvoke_cleanup, NULL, NULL, &ProcessMessageRes_t3710547145_0_0_0 } /* System.Runtime.Remoting.Channels.CrossAppDomainSink/ProcessMessageRes */,
{ DelegatePInvokeWrapper_CrossContextDelegate_t387175271, NULL, NULL, NULL, NULL, NULL, &CrossContextDelegate_t387175271_0_0_0 } /* System.Runtime.Remoting.Contexts.CrossContextDelegate */,
{ DelegatePInvokeWrapper_CallbackHandler_t3280319253, NULL, NULL, NULL, NULL, NULL, &CallbackHandler_t3280319253_0_0_0 } /* System.Runtime.Serialization.SerializationCallbacks/CallbackHandler */,
{ NULL, SerializationEntry_t648286436_marshal_pinvoke, SerializationEntry_t648286436_marshal_pinvoke_back, SerializationEntry_t648286436_marshal_pinvoke_cleanup, NULL, NULL, &SerializationEntry_t648286436_0_0_0 } /* System.Runtime.Serialization.SerializationEntry */,
{ NULL, StreamingContext_t3711869237_marshal_pinvoke, StreamingContext_t3711869237_marshal_pinvoke_back, StreamingContext_t3711869237_marshal_pinvoke_cleanup, NULL, NULL, &StreamingContext_t3711869237_0_0_0 } /* System.Runtime.Serialization.StreamingContext */,
{ NULL, DSAParameters_t1885824122_marshal_pinvoke, DSAParameters_t1885824122_marshal_pinvoke_back, DSAParameters_t1885824122_marshal_pinvoke_cleanup, NULL, NULL, &DSAParameters_t1885824122_0_0_0 } /* System.Security.Cryptography.DSAParameters */,
{ NULL, RSAParameters_t1728406613_marshal_pinvoke, RSAParameters_t1728406613_marshal_pinvoke_back, RSAParameters_t1728406613_marshal_pinvoke_cleanup, NULL, NULL, &RSAParameters_t1728406613_0_0_0 } /* System.Security.Cryptography.RSAParameters */,
{ NULL, SecurityFrame_t1422462475_marshal_pinvoke, SecurityFrame_t1422462475_marshal_pinvoke_back, SecurityFrame_t1422462475_marshal_pinvoke_cleanup, NULL, NULL, &SecurityFrame_t1422462475_0_0_0 } /* System.Security.SecurityFrame */,
{ DelegatePInvokeWrapper_ThreadStart_t1006689297, NULL, NULL, NULL, NULL, NULL, &ThreadStart_t1006689297_0_0_0 } /* System.Threading.ThreadStart */,
{ NULL, ValueType_t3640485471_marshal_pinvoke, ValueType_t3640485471_marshal_pinvoke_back, ValueType_t3640485471_marshal_pinvoke_cleanup, NULL, NULL, &ValueType_t3640485471_0_0_0 } /* System.ValueType */,
{ DelegatePInvokeWrapper_ReadMethod_t893206259, NULL, NULL, NULL, NULL, NULL, &ReadMethod_t893206259_0_0_0 } /* System.IO.Compression.DeflateStream/ReadMethod */,
{ DelegatePInvokeWrapper_UnmanagedReadOrWrite_t876388624, NULL, NULL, NULL, NULL, NULL, &UnmanagedReadOrWrite_t876388624_0_0_0 } /* System.IO.Compression.DeflateStream/UnmanagedReadOrWrite */,
{ DelegatePInvokeWrapper_WriteMethod_t2538911768, NULL, NULL, NULL, NULL, NULL, &WriteMethod_t2538911768_0_0_0 } /* System.IO.Compression.DeflateStream/WriteMethod */,
{ DelegatePInvokeWrapper_ReadDelegate_t4266946825, NULL, NULL, NULL, NULL, NULL, &ReadDelegate_t4266946825_0_0_0 } /* System.Net.FtpDataStream/ReadDelegate */,
{ DelegatePInvokeWrapper_WriteDelegate_t2016697242, NULL, NULL, NULL, NULL, NULL, &WriteDelegate_t2016697242_0_0_0 } /* System.Net.FtpDataStream/WriteDelegate */,
{ DelegatePInvokeWrapper_SocketAsyncCall_t1521370843, NULL, NULL, NULL, NULL, NULL, &SocketAsyncCall_t1521370843_0_0_0 } /* System.Net.Sockets.Socket/SocketAsyncCall */,
{ NULL, SocketAsyncResult_t2080034863_marshal_pinvoke, SocketAsyncResult_t2080034863_marshal_pinvoke_back, SocketAsyncResult_t2080034863_marshal_pinvoke_cleanup, NULL, NULL, &SocketAsyncResult_t2080034863_0_0_0 } /* System.Net.Sockets.Socket/SocketAsyncResult */,
{ NULL, X509ChainStatus_t133602714_marshal_pinvoke, X509ChainStatus_t133602714_marshal_pinvoke_back, X509ChainStatus_t133602714_marshal_pinvoke_cleanup, NULL, NULL, &X509ChainStatus_t133602714_0_0_0 } /* System.Security.Cryptography.X509Certificates.X509ChainStatus */,
{ NULL, IntStack_t2189327687_marshal_pinvoke, IntStack_t2189327687_marshal_pinvoke_back, IntStack_t2189327687_marshal_pinvoke_cleanup, NULL, NULL, &IntStack_t2189327687_0_0_0 } /* System.Text.RegularExpressions.Interpreter/IntStack */,
{ NULL, Interval_t1802865632_marshal_pinvoke, Interval_t1802865632_marshal_pinvoke_back, Interval_t1802865632_marshal_pinvoke_cleanup, NULL, NULL, &Interval_t1802865632_0_0_0 } /* System.Text.RegularExpressions.Interval */,
{ DelegatePInvokeWrapper_CostDelegate_t1722821004, NULL, NULL, NULL, NULL, NULL, &CostDelegate_t1722821004_0_0_0 } /* System.Text.RegularExpressions.IntervalCollection/CostDelegate */,
{ NULL, UriScheme_t722425697_marshal_pinvoke, UriScheme_t722425697_marshal_pinvoke_back, UriScheme_t722425697_marshal_pinvoke_cleanup, NULL, NULL, &UriScheme_t722425697_0_0_0 } /* System.Uri/UriScheme */,
{ DelegatePInvokeWrapper_Action_t1264377477, NULL, NULL, NULL, NULL, NULL, &Action_t1264377477_0_0_0 } /* System.Action */,
{ NULL, AnimationCurve_t3046754366_marshal_pinvoke, AnimationCurve_t3046754366_marshal_pinvoke_back, AnimationCurve_t3046754366_marshal_pinvoke_cleanup, NULL, NULL, &AnimationCurve_t3046754366_0_0_0 } /* UnityEngine.AnimationCurve */,
{ DelegatePInvokeWrapper_LogCallback_t3588208630, NULL, NULL, NULL, NULL, NULL, &LogCallback_t3588208630_0_0_0 } /* UnityEngine.Application/LogCallback */,
{ DelegatePInvokeWrapper_LowMemoryCallback_t4104246196, NULL, NULL, NULL, NULL, NULL, &LowMemoryCallback_t4104246196_0_0_0 } /* UnityEngine.Application/LowMemoryCallback */,
{ NULL, AsyncOperation_t1445031843_marshal_pinvoke, AsyncOperation_t1445031843_marshal_pinvoke_back, AsyncOperation_t1445031843_marshal_pinvoke_cleanup, NULL, NULL, &AsyncOperation_t1445031843_0_0_0 } /* UnityEngine.AsyncOperation */,
{ NULL, OrderBlock_t1585977831_marshal_pinvoke, OrderBlock_t1585977831_marshal_pinvoke_back, OrderBlock_t1585977831_marshal_pinvoke_cleanup, NULL, NULL, &OrderBlock_t1585977831_0_0_0 } /* UnityEngine.BeforeRenderHelper/OrderBlock */,
{ NULL, Coroutine_t3829159415_marshal_pinvoke, Coroutine_t3829159415_marshal_pinvoke_back, Coroutine_t3829159415_marshal_pinvoke_cleanup, NULL, NULL, &Coroutine_t3829159415_0_0_0 } /* UnityEngine.Coroutine */,
{ NULL, CullingGroup_t2096318768_marshal_pinvoke, CullingGroup_t2096318768_marshal_pinvoke_back, CullingGroup_t2096318768_marshal_pinvoke_cleanup, NULL, NULL, &CullingGroup_t2096318768_0_0_0 } /* UnityEngine.CullingGroup */,
{ DelegatePInvokeWrapper_StateChanged_t2136737110, NULL, NULL, NULL, NULL, NULL, &StateChanged_t2136737110_0_0_0 } /* UnityEngine.CullingGroup/StateChanged */,
{ DelegatePInvokeWrapper_DisplaysUpdatedDelegate_t51287044, NULL, NULL, NULL, NULL, NULL, &DisplaysUpdatedDelegate_t51287044_0_0_0 } /* UnityEngine.Display/DisplaysUpdatedDelegate */,
{ DelegatePInvokeWrapper_UnityAction_t3245792599, NULL, NULL, NULL, NULL, NULL, &UnityAction_t3245792599_0_0_0 } /* UnityEngine.Events.UnityAction */,
{ NULL, PlayerLoopSystem_t105772105_marshal_pinvoke, PlayerLoopSystem_t105772105_marshal_pinvoke_back, PlayerLoopSystem_t105772105_marshal_pinvoke_cleanup, NULL, NULL, &PlayerLoopSystem_t105772105_0_0_0 } /* UnityEngine.Experimental.LowLevel.PlayerLoopSystem */,
{ DelegatePInvokeWrapper_UpdateFunction_t377278577, NULL, NULL, NULL, NULL, NULL, &UpdateFunction_t377278577_0_0_0 } /* UnityEngine.Experimental.LowLevel.PlayerLoopSystem/UpdateFunction */,
{ NULL, PlayerLoopSystemInternal_t2185485283_marshal_pinvoke, PlayerLoopSystemInternal_t2185485283_marshal_pinvoke_back, PlayerLoopSystemInternal_t2185485283_marshal_pinvoke_cleanup, NULL, NULL, &PlayerLoopSystemInternal_t2185485283_0_0_0 } /* UnityEngine.Experimental.LowLevel.PlayerLoopSystemInternal */,
{ NULL, SpriteBone_t303320096_marshal_pinvoke, SpriteBone_t303320096_marshal_pinvoke_back, SpriteBone_t303320096_marshal_pinvoke_cleanup, NULL, NULL, &SpriteBone_t303320096_0_0_0 } /* UnityEngine.Experimental.U2D.SpriteBone */,
{ NULL, FailedToLoadScriptObject_t547604379_marshal_pinvoke, FailedToLoadScriptObject_t547604379_marshal_pinvoke_back, FailedToLoadScriptObject_t547604379_marshal_pinvoke_cleanup, NULL, NULL, &FailedToLoadScriptObject_t547604379_0_0_0 } /* UnityEngine.FailedToLoadScriptObject */,
{ NULL, Gradient_t3067099924_marshal_pinvoke, Gradient_t3067099924_marshal_pinvoke_back, Gradient_t3067099924_marshal_pinvoke_cleanup, NULL, NULL, &Gradient_t3067099924_0_0_0 } /* UnityEngine.Gradient */,
{ NULL, Internal_DrawTextureArguments_t1705718261_marshal_pinvoke, Internal_DrawTextureArguments_t1705718261_marshal_pinvoke_back, Internal_DrawTextureArguments_t1705718261_marshal_pinvoke_cleanup, NULL, NULL, &Internal_DrawTextureArguments_t1705718261_0_0_0 } /* UnityEngine.Internal_DrawTextureArguments */,
{ NULL, LightProbes_t649210852_marshal_pinvoke, LightProbes_t649210852_marshal_pinvoke_back, LightProbes_t649210852_marshal_pinvoke_cleanup, NULL, NULL, &LightProbes_t649210852_0_0_0 } /* UnityEngine.LightProbes */,
{ NULL, Object_t631007953_marshal_pinvoke, Object_t631007953_marshal_pinvoke_back, Object_t631007953_marshal_pinvoke_cleanup, NULL, NULL, &Object_t631007953_0_0_0 } /* UnityEngine.Object */,
{ NULL, PlayableBinding_t354260709_marshal_pinvoke, PlayableBinding_t354260709_marshal_pinvoke_back, PlayableBinding_t354260709_marshal_pinvoke_cleanup, NULL, NULL, &PlayableBinding_t354260709_0_0_0 } /* UnityEngine.Playables.PlayableBinding */,
{ DelegatePInvokeWrapper_CreateOutputMethod_t2301811773, NULL, NULL, NULL, NULL, NULL, &CreateOutputMethod_t2301811773_0_0_0 } /* UnityEngine.Playables.PlayableBinding/CreateOutputMethod */,
{ NULL, RectOffset_t1369453676_marshal_pinvoke, RectOffset_t1369453676_marshal_pinvoke_back, RectOffset_t1369453676_marshal_pinvoke_cleanup, NULL, NULL, &RectOffset_t1369453676_0_0_0 } /* UnityEngine.RectOffset */,
{ NULL, ResourceRequest_t3109103591_marshal_pinvoke, ResourceRequest_t3109103591_marshal_pinvoke_back, ResourceRequest_t3109103591_marshal_pinvoke_cleanup, NULL, NULL, &ResourceRequest_t3109103591_0_0_0 } /* UnityEngine.ResourceRequest */,
{ NULL, ScriptableObject_t2528358522_marshal_pinvoke, ScriptableObject_t2528358522_marshal_pinvoke_back, ScriptableObject_t2528358522_marshal_pinvoke_cleanup, NULL, NULL, &ScriptableObject_t2528358522_0_0_0 } /* UnityEngine.ScriptableObject */,
{ NULL, HitInfo_t3229609740_marshal_pinvoke, HitInfo_t3229609740_marshal_pinvoke_back, HitInfo_t3229609740_marshal_pinvoke_cleanup, NULL, NULL, &HitInfo_t3229609740_0_0_0 } /* UnityEngine.SendMouseEvents/HitInfo */,
{ NULL, TrackedReference_t1199777556_marshal_pinvoke, TrackedReference_t1199777556_marshal_pinvoke_back, TrackedReference_t1199777556_marshal_pinvoke_cleanup, NULL, NULL, &TrackedReference_t1199777556_0_0_0 } /* UnityEngine.TrackedReference */,
{ DelegatePInvokeWrapper_RequestAtlasCallback_t3100554279, NULL, NULL, NULL, NULL, NULL, &RequestAtlasCallback_t3100554279_0_0_0 } /* UnityEngine.U2D.SpriteAtlasManager/RequestAtlasCallback */,
{ NULL, WorkRequest_t1354518612_marshal_pinvoke, WorkRequest_t1354518612_marshal_pinvoke_back, WorkRequest_t1354518612_marshal_pinvoke_cleanup, NULL, NULL, &WorkRequest_t1354518612_0_0_0 } /* UnityEngine.UnitySynchronizationContext/WorkRequest */,
{ NULL, WaitForSeconds_t1699091251_marshal_pinvoke, WaitForSeconds_t1699091251_marshal_pinvoke_back, WaitForSeconds_t1699091251_marshal_pinvoke_cleanup, NULL, NULL, &WaitForSeconds_t1699091251_0_0_0 } /* UnityEngine.WaitForSeconds */,
{ NULL, YieldInstruction_t403091072_marshal_pinvoke, YieldInstruction_t403091072_marshal_pinvoke_back, YieldInstruction_t403091072_marshal_pinvoke_cleanup, NULL, NULL, &YieldInstruction_t403091072_0_0_0 } /* UnityEngine.YieldInstruction */,
{ DelegatePInvokeWrapper_FontTextureRebuildCallback_t2467502454, NULL, NULL, NULL, NULL, NULL, &FontTextureRebuildCallback_t2467502454_0_0_0 } /* UnityEngine.Font/FontTextureRebuildCallback */,
{ NULL, TextGenerationSettings_t1351628751_marshal_pinvoke, TextGenerationSettings_t1351628751_marshal_pinvoke_back, TextGenerationSettings_t1351628751_marshal_pinvoke_cleanup, NULL, NULL, &TextGenerationSettings_t1351628751_0_0_0 } /* UnityEngine.TextGenerationSettings */,
{ NULL, TextGenerator_t3211863866_marshal_pinvoke, TextGenerator_t3211863866_marshal_pinvoke_back, TextGenerator_t3211863866_marshal_pinvoke_cleanup, NULL, NULL, &TextGenerator_t3211863866_0_0_0 } /* UnityEngine.TextGenerator */,
{ NULL, AnimationEvent_t1536042487_marshal_pinvoke, AnimationEvent_t1536042487_marshal_pinvoke_back, AnimationEvent_t1536042487_marshal_pinvoke_cleanup, NULL, NULL, &AnimationEvent_t1536042487_0_0_0 } /* UnityEngine.AnimationEvent */,
{ DelegatePInvokeWrapper_OnOverrideControllerDirtyCallback_t1307045488, NULL, NULL, NULL, NULL, NULL, &OnOverrideControllerDirtyCallback_t1307045488_0_0_0 } /* UnityEngine.AnimatorOverrideController/OnOverrideControllerDirtyCallback */,
{ NULL, AnimatorTransitionInfo_t2534804151_marshal_pinvoke, AnimatorTransitionInfo_t2534804151_marshal_pinvoke_back, AnimatorTransitionInfo_t2534804151_marshal_pinvoke_cleanup, NULL, NULL, &AnimatorTransitionInfo_t2534804151_0_0_0 } /* UnityEngine.AnimatorTransitionInfo */,
{ NULL, HumanBone_t2465339518_marshal_pinvoke, HumanBone_t2465339518_marshal_pinvoke_back, HumanBone_t2465339518_marshal_pinvoke_cleanup, NULL, NULL, &HumanBone_t2465339518_0_0_0 } /* UnityEngine.HumanBone */,
{ NULL, SkeletonBone_t4134054672_marshal_pinvoke, SkeletonBone_t4134054672_marshal_pinvoke_back, SkeletonBone_t4134054672_marshal_pinvoke_cleanup, NULL, NULL, &SkeletonBone_t4134054672_0_0_0 } /* UnityEngine.SkeletonBone */,
{ DelegatePInvokeWrapper_PCMReaderCallback_t1677636661, NULL, NULL, NULL, NULL, NULL, &PCMReaderCallback_t1677636661_0_0_0 } /* UnityEngine.AudioClip/PCMReaderCallback */,
{ DelegatePInvokeWrapper_PCMSetPositionCallback_t1059417452, NULL, NULL, NULL, NULL, NULL, &PCMSetPositionCallback_t1059417452_0_0_0 } /* UnityEngine.AudioClip/PCMSetPositionCallback */,
{ DelegatePInvokeWrapper_AudioConfigurationChangeHandler_t2089929874, NULL, NULL, NULL, NULL, NULL, &AudioConfigurationChangeHandler_t2089929874_0_0_0 } /* UnityEngine.AudioSettings/AudioConfigurationChangeHandler */,
{ DelegatePInvokeWrapper_ConsumeSampleFramesNativeFunction_t1497769677, NULL, NULL, NULL, NULL, NULL, &ConsumeSampleFramesNativeFunction_t1497769677_0_0_0 } /* UnityEngine.Experimental.Audio.AudioSampleProvider/ConsumeSampleFramesNativeFunction */,
{ NULL, GcAchievementData_t675222246_marshal_pinvoke, GcAchievementData_t675222246_marshal_pinvoke_back, GcAchievementData_t675222246_marshal_pinvoke_cleanup, NULL, NULL, &GcAchievementData_t675222246_0_0_0 } /* UnityEngine.SocialPlatforms.GameCenter.GcAchievementData */,
{ NULL, GcAchievementDescriptionData_t643925653_marshal_pinvoke, GcAchievementDescriptionData_t643925653_marshal_pinvoke_back, GcAchievementDescriptionData_t643925653_marshal_pinvoke_cleanup, NULL, NULL, &GcAchievementDescriptionData_t643925653_0_0_0 } /* UnityEngine.SocialPlatforms.GameCenter.GcAchievementDescriptionData */,
{ NULL, GcLeaderboard_t4132273028_marshal_pinvoke, GcLeaderboard_t4132273028_marshal_pinvoke_back, GcLeaderboard_t4132273028_marshal_pinvoke_cleanup, NULL, NULL, &GcLeaderboard_t4132273028_0_0_0 } /* UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard */,
{ NULL, GcScoreData_t2125309831_marshal_pinvoke, GcScoreData_t2125309831_marshal_pinvoke_back, GcScoreData_t2125309831_marshal_pinvoke_cleanup, NULL, NULL, &GcScoreData_t2125309831_0_0_0 } /* UnityEngine.SocialPlatforms.GameCenter.GcScoreData */,
{ NULL, GcUserProfileData_t2719720026_marshal_pinvoke, GcUserProfileData_t2719720026_marshal_pinvoke_back, GcUserProfileData_t2719720026_marshal_pinvoke_cleanup, NULL, NULL, &GcUserProfileData_t2719720026_0_0_0 } /* UnityEngine.SocialPlatforms.GameCenter.GcUserProfileData */,
{ NULL, Event_t2956885303_marshal_pinvoke, Event_t2956885303_marshal_pinvoke_back, Event_t2956885303_marshal_pinvoke_cleanup, NULL, NULL, &Event_t2956885303_0_0_0 } /* UnityEngine.Event */,
{ DelegatePInvokeWrapper_WindowFunction_t3146511083, NULL, NULL, NULL, NULL, NULL, &WindowFunction_t3146511083_0_0_0 } /* UnityEngine.GUI/WindowFunction */,
{ NULL, GUIContent_t3050628031_marshal_pinvoke, GUIContent_t3050628031_marshal_pinvoke_back, GUIContent_t3050628031_marshal_pinvoke_cleanup, NULL, NULL, &GUIContent_t3050628031_0_0_0 } /* UnityEngine.GUIContent */,
{ DelegatePInvokeWrapper_SkinChangedDelegate_t1143955295, NULL, NULL, NULL, NULL, NULL, &SkinChangedDelegate_t1143955295_0_0_0 } /* UnityEngine.GUISkin/SkinChangedDelegate */,
{ NULL, GUIStyle_t3956901511_marshal_pinvoke, GUIStyle_t3956901511_marshal_pinvoke_back, GUIStyle_t3956901511_marshal_pinvoke_cleanup, NULL, NULL, &GUIStyle_t3956901511_0_0_0 } /* UnityEngine.GUIStyle */,
{ NULL, GUIStyleState_t1397964415_marshal_pinvoke, GUIStyleState_t1397964415_marshal_pinvoke_back, GUIStyleState_t1397964415_marshal_pinvoke_cleanup, NULL, NULL, &GUIStyleState_t1397964415_0_0_0 } /* UnityEngine.GUIStyleState */,
{ NULL, EmitParams_t2216423628_marshal_pinvoke, EmitParams_t2216423628_marshal_pinvoke_back, EmitParams_t2216423628_marshal_pinvoke_cleanup, NULL, NULL, &EmitParams_t2216423628_0_0_0 } /* UnityEngine.ParticleSystem/EmitParams */,
{ NULL, ContactFilter2D_t3805203441_marshal_pinvoke, ContactFilter2D_t3805203441_marshal_pinvoke_back, ContactFilter2D_t3805203441_marshal_pinvoke_cleanup, NULL, NULL, &ContactFilter2D_t3805203441_0_0_0 } /* UnityEngine.ContactFilter2D */,
{ NULL, Collision_t4262080450_marshal_pinvoke, Collision_t4262080450_marshal_pinvoke_back, Collision_t4262080450_marshal_pinvoke_cleanup, NULL, NULL, &Collision_t4262080450_0_0_0 } /* UnityEngine.Collision */,
{ NULL, ControllerColliderHit_t240592346_marshal_pinvoke, ControllerColliderHit_t240592346_marshal_pinvoke_back, ControllerColliderHit_t240592346_marshal_pinvoke_cleanup, NULL, NULL, &ControllerColliderHit_t240592346_0_0_0 } /* UnityEngine.ControllerColliderHit */,
{ DelegatePInvokeWrapper_WillRenderCanvases_t3309123499, NULL, NULL, NULL, NULL, NULL, &WillRenderCanvases_t3309123499_0_0_0 } /* UnityEngine.Canvas/WillRenderCanvases */,
{ DelegatePInvokeWrapper_SessionStateChanged_t3163629820, NULL, NULL, NULL, NULL, NULL, &SessionStateChanged_t3163629820_0_0_0 } /* UnityEngine.Analytics.AnalyticsSessionInfo/SessionStateChanged */,
{ NULL, CustomEventData_t317522481_marshal_pinvoke, CustomEventData_t317522481_marshal_pinvoke_back, CustomEventData_t317522481_marshal_pinvoke_cleanup, NULL, NULL, &CustomEventData_t317522481_0_0_0 } /* UnityEngine.Analytics.CustomEventData */,
{ NULL, UnityAnalyticsHandler_t3011359618_marshal_pinvoke, UnityAnalyticsHandler_t3011359618_marshal_pinvoke_back, UnityAnalyticsHandler_t3011359618_marshal_pinvoke_cleanup, NULL, NULL, &UnityAnalyticsHandler_t3011359618_0_0_0 } /* UnityEngine.Analytics.UnityAnalyticsHandler */,
{ NULL, RemoteConfigSettings_t1247263429_marshal_pinvoke, RemoteConfigSettings_t1247263429_marshal_pinvoke_back, RemoteConfigSettings_t1247263429_marshal_pinvoke_cleanup, NULL, NULL, &RemoteConfigSettings_t1247263429_0_0_0 } /* UnityEngine.RemoteConfigSettings */,
{ DelegatePInvokeWrapper_UpdatedEventHandler_t1027848393, NULL, NULL, NULL, NULL, NULL, &UpdatedEventHandler_t1027848393_0_0_0 } /* UnityEngine.RemoteSettings/UpdatedEventHandler */,
{ NULL, CertificateHandler_t2739891000_marshal_pinvoke, CertificateHandler_t2739891000_marshal_pinvoke_back, CertificateHandler_t2739891000_marshal_pinvoke_cleanup, NULL, NULL, &CertificateHandler_t2739891000_0_0_0 } /* UnityEngine.Networking.CertificateHandler */,
{ NULL, RaycastResult_t3360306849_marshal_pinvoke, RaycastResult_t3360306849_marshal_pinvoke_back, RaycastResult_t3360306849_marshal_pinvoke_cleanup, NULL, NULL, &RaycastResult_t3360306849_0_0_0 } /* UnityEngine.EventSystems.RaycastResult */,
{ NULL, ColorTween_t809614380_marshal_pinvoke, ColorTween_t809614380_marshal_pinvoke_back, ColorTween_t809614380_marshal_pinvoke_cleanup, NULL, NULL, &ColorTween_t809614380_0_0_0 } /* UnityEngine.UI.CoroutineTween.ColorTween */,
{ NULL, FloatTween_t1274330004_marshal_pinvoke, FloatTween_t1274330004_marshal_pinvoke_back, FloatTween_t1274330004_marshal_pinvoke_cleanup, NULL, NULL, &FloatTween_t1274330004_0_0_0 } /* UnityEngine.UI.CoroutineTween.FloatTween */,
{ DelegatePInvokeWrapper_OnValidateInput_t2355412304, NULL, NULL, NULL, NULL, NULL, &OnValidateInput_t2355412304_0_0_0 } /* UnityEngine.UI.InputField/OnValidateInput */,
{ NULL, Navigation_t3049316579_marshal_pinvoke, Navigation_t3049316579_marshal_pinvoke_back, Navigation_t3049316579_marshal_pinvoke_cleanup, NULL, NULL, &Navigation_t3049316579_0_0_0 } /* UnityEngine.UI.Navigation */,
{ DelegatePInvokeWrapper_GetRayIntersectionAllCallback_t3913627115, NULL, NULL, NULL, NULL, NULL, &GetRayIntersectionAllCallback_t3913627115_0_0_0 } /* UnityEngine.UI.ReflectionMethodsCache/GetRayIntersectionAllCallback */,
{ DelegatePInvokeWrapper_GetRayIntersectionAllNonAllocCallback_t2311174851, NULL, NULL, NULL, NULL, NULL, &GetRayIntersectionAllNonAllocCallback_t2311174851_0_0_0 } /* UnityEngine.UI.ReflectionMethodsCache/GetRayIntersectionAllNonAllocCallback */,
{ DelegatePInvokeWrapper_GetRaycastNonAllocCallback_t3841783507, NULL, NULL, NULL, NULL, NULL, &GetRaycastNonAllocCallback_t3841783507_0_0_0 } /* UnityEngine.UI.ReflectionMethodsCache/GetRaycastNonAllocCallback */,
{ DelegatePInvokeWrapper_Raycast2DCallback_t768590915, NULL, NULL, NULL, NULL, NULL, &Raycast2DCallback_t768590915_0_0_0 } /* UnityEngine.UI.ReflectionMethodsCache/Raycast2DCallback */,
{ DelegatePInvokeWrapper_Raycast3DCallback_t701940803, NULL, NULL, NULL, NULL, NULL, &Raycast3DCallback_t701940803_0_0_0 } /* UnityEngine.UI.ReflectionMethodsCache/Raycast3DCallback */,
{ DelegatePInvokeWrapper_RaycastAllCallback_t1884415901, NULL, NULL, NULL, NULL, NULL, &RaycastAllCallback_t1884415901_0_0_0 } /* UnityEngine.UI.ReflectionMethodsCache/RaycastAllCallback */,
{ NULL, SpriteState_t1362986479_marshal_pinvoke, SpriteState_t1362986479_marshal_pinvoke_back, SpriteState_t1362986479_marshal_pinvoke_cleanup, NULL, NULL, &SpriteState_t1362986479_0_0_0 } /* UnityEngine.UI.SpriteState */,
{ DelegatePInvokeWrapper_unityAdsDidError_t1993223595, NULL, NULL, NULL, NULL, NULL, &unityAdsDidError_t1993223595_0_0_0 } /* UnityEngine.Advertisements.iOS.Platform/unityAdsDidError */,
{ DelegatePInvokeWrapper_unityAdsDidFinish_t3747416149, NULL, NULL, NULL, NULL, NULL, &unityAdsDidFinish_t3747416149_0_0_0 } /* UnityEngine.Advertisements.iOS.Platform/unityAdsDidFinish */,
{ DelegatePInvokeWrapper_unityAdsDidStart_t1058412932, NULL, NULL, NULL, NULL, NULL, &unityAdsDidStart_t1058412932_0_0_0 } /* UnityEngine.Advertisements.iOS.Platform/unityAdsDidStart */,
{ DelegatePInvokeWrapper_unityAdsReady_t96934738, NULL, NULL, NULL, NULL, NULL, &unityAdsReady_t96934738_0_0_0 } /* UnityEngine.Advertisements.iOS.Platform/unityAdsReady */,
{ DelegatePInvokeWrapper_OnTrigger_t4184125570, NULL, NULL, NULL, NULL, NULL, &OnTrigger_t4184125570_0_0_0 } /* UnityEngine.Analytics.EventTrigger/OnTrigger */,
{ NULL, LeanScreenDepth_t1010637882_marshal_pinvoke, LeanScreenDepth_t1010637882_marshal_pinvoke_back, LeanScreenDepth_t1010637882_marshal_pinvoke_cleanup, NULL, NULL, &LeanScreenDepth_t1010637882_0_0_0 } /* Lean.Touch.LeanScreenDepth */,
{ NULL, ARAnchor_t362826948_marshal_pinvoke, ARAnchor_t362826948_marshal_pinvoke_back, ARAnchor_t362826948_marshal_pinvoke_cleanup, NULL, NULL, &ARAnchor_t362826948_0_0_0 } /* UnityEngine.XR.iOS.ARAnchor */,
{ DelegatePInvokeWrapper_DictionaryVisitorHandler_t414487210, NULL, NULL, NULL, NULL, NULL, &DictionaryVisitorHandler_t414487210_0_0_0 } /* UnityEngine.XR.iOS.ARFaceAnchor/DictionaryVisitorHandler */,
{ NULL, ARHitTestResult_t1279023930_marshal_pinvoke, ARHitTestResult_t1279023930_marshal_pinvoke_back, ARHitTestResult_t1279023930_marshal_pinvoke_cleanup, NULL, NULL, &ARHitTestResult_t1279023930_0_0_0 } /* UnityEngine.XR.iOS.ARHitTestResult */,
{ NULL, ARKitFaceTrackingConfiguration_t386387352_marshal_pinvoke, ARKitFaceTrackingConfiguration_t386387352_marshal_pinvoke_back, ARKitFaceTrackingConfiguration_t386387352_marshal_pinvoke_cleanup, NULL, NULL, &ARKitFaceTrackingConfiguration_t386387352_0_0_0 } /* UnityEngine.XR.iOS.ARKitFaceTrackingConfiguration */,
{ NULL, ARKitObjectScanningSessionConfiguration_t573542873_marshal_pinvoke, ARKitObjectScanningSessionConfiguration_t573542873_marshal_pinvoke_back, ARKitObjectScanningSessionConfiguration_t573542873_marshal_pinvoke_cleanup, NULL, NULL, &ARKitObjectScanningSessionConfiguration_t573542873_0_0_0 } /* UnityEngine.XR.iOS.ARKitObjectScanningSessionConfiguration */,
{ NULL, ARKitSessionConfiguration_t629136898_marshal_pinvoke, ARKitSessionConfiguration_t629136898_marshal_pinvoke_back, ARKitSessionConfiguration_t629136898_marshal_pinvoke_cleanup, NULL, NULL, &ARKitSessionConfiguration_t629136898_0_0_0 } /* UnityEngine.XR.iOS.ARKitSessionConfiguration */,
{ NULL, ARKitWorldTrackingSessionConfiguration_t273386347_marshal_pinvoke, ARKitWorldTrackingSessionConfiguration_t273386347_marshal_pinvoke_back, ARKitWorldTrackingSessionConfiguration_t273386347_marshal_pinvoke_cleanup, NULL, NULL, &ARKitWorldTrackingSessionConfiguration_t273386347_0_0_0 } /* UnityEngine.XR.iOS.ARKitWorldTrackingSessionConfiguration */,
{ NULL, ARUserAnchor_t1406831531_marshal_pinvoke, ARUserAnchor_t1406831531_marshal_pinvoke_back, ARUserAnchor_t1406831531_marshal_pinvoke_cleanup, NULL, NULL, &ARUserAnchor_t1406831531_0_0_0 } /* UnityEngine.XR.iOS.ARUserAnchor */,
{ NULL, UnityARCamera_t2069150450_marshal_pinvoke, UnityARCamera_t2069150450_marshal_pinvoke_back, UnityARCamera_t2069150450_marshal_pinvoke_cleanup, NULL, NULL, &UnityARCamera_t2069150450_0_0_0 } /* UnityEngine.XR.iOS.UnityARCamera */,
{ NULL, UnityARFaceAnchorData_t2028622935_marshal_pinvoke, UnityARFaceAnchorData_t2028622935_marshal_pinvoke_back, UnityARFaceAnchorData_t2028622935_marshal_pinvoke_cleanup, NULL, NULL, &UnityARFaceAnchorData_t2028622935_0_0_0 } /* UnityEngine.XR.iOS.UnityARFaceAnchorData */,
{ NULL, UnityARHitTestResult_t4176230866_marshal_pinvoke, UnityARHitTestResult_t4176230866_marshal_pinvoke_back, UnityARHitTestResult_t4176230866_marshal_pinvoke_cleanup, NULL, NULL, &UnityARHitTestResult_t4176230866_0_0_0 } /* UnityEngine.XR.iOS.UnityARHitTestResult */,
{ NULL, UnityARLightData_t2160616730_marshal_pinvoke, UnityARLightData_t2160616730_marshal_pinvoke_back, UnityARLightData_t2160616730_marshal_pinvoke_cleanup, NULL, NULL, &UnityARLightData_t2160616730_0_0_0 } /* UnityEngine.XR.iOS.UnityARLightData */,
{ DelegatePInvokeWrapper_ARSessionCallback_t3772093212, NULL, NULL, NULL, NULL, NULL, &ARSessionCallback_t3772093212_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARSessionCallback */,
{ DelegatePInvokeWrapper_ARSessionFailed_t2125002991, NULL, NULL, NULL, NULL, NULL, &ARSessionFailed_t2125002991_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARSessionFailed */,
{ DelegatePInvokeWrapper_ARSessionLocalizeCallback_t3284060032, NULL, NULL, NULL, NULL, NULL, &ARSessionLocalizeCallback_t3284060032_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARSessionLocalizeCallback */,
{ DelegatePInvokeWrapper_ARUserAnchorAdded_t1851120876, NULL, NULL, NULL, NULL, NULL, &ARUserAnchorAdded_t1851120876_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARUserAnchorAdded */,
{ DelegatePInvokeWrapper_ARUserAnchorRemoved_t23344545, NULL, NULL, NULL, NULL, NULL, &ARUserAnchorRemoved_t23344545_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARUserAnchorRemoved */,
{ DelegatePInvokeWrapper_ARUserAnchorUpdated_t4007601678, NULL, NULL, NULL, NULL, NULL, &ARUserAnchorUpdated_t4007601678_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/ARUserAnchorUpdated */,
{ DelegatePInvokeWrapper_internal_ARAnchorAdded_t1565083332, NULL, NULL, NULL, NULL, NULL, &internal_ARAnchorAdded_t1565083332_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARAnchorAdded */,
{ DelegatePInvokeWrapper_internal_ARAnchorRemoved_t3371657877, NULL, NULL, NULL, NULL, NULL, &internal_ARAnchorRemoved_t3371657877_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARAnchorRemoved */,
{ DelegatePInvokeWrapper_internal_ARAnchorUpdated_t2645242205, NULL, NULL, NULL, NULL, NULL, &internal_ARAnchorUpdated_t2645242205_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARAnchorUpdated */,
{ DelegatePInvokeWrapper_internal_AREnvironmentProbeAnchorAdded_t1786467930, NULL, NULL, NULL, NULL, NULL, &internal_AREnvironmentProbeAnchorAdded_t1786467930_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_AREnvironmentProbeAnchorAdded */,
{ DelegatePInvokeWrapper_internal_AREnvironmentProbeAnchorRemoved_t3912910743, NULL, NULL, NULL, NULL, NULL, &internal_AREnvironmentProbeAnchorRemoved_t3912910743_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_AREnvironmentProbeAnchorRemoved */,
{ DelegatePInvokeWrapper_internal_AREnvironmentProbeAnchorUpdated_t3576551915, NULL, NULL, NULL, NULL, NULL, &internal_AREnvironmentProbeAnchorUpdated_t3576551915_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_AREnvironmentProbeAnchorUpdated */,
{ DelegatePInvokeWrapper_internal_ARFaceAnchorAdded_t1021040265, NULL, NULL, NULL, NULL, NULL, &internal_ARFaceAnchorAdded_t1021040265_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARFaceAnchorAdded */,
{ DelegatePInvokeWrapper_internal_ARFaceAnchorRemoved_t2563439402, NULL, NULL, NULL, NULL, NULL, &internal_ARFaceAnchorRemoved_t2563439402_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARFaceAnchorRemoved */,
{ DelegatePInvokeWrapper_internal_ARFaceAnchorUpdated_t3423900432, NULL, NULL, NULL, NULL, NULL, &internal_ARFaceAnchorUpdated_t3423900432_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARFaceAnchorUpdated */,
{ DelegatePInvokeWrapper_internal_ARFrameUpdate_t3254989823, NULL, NULL, NULL, NULL, NULL, &internal_ARFrameUpdate_t3254989823_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARFrameUpdate */,
{ DelegatePInvokeWrapper_internal_ARImageAnchorAdded_t958088978, NULL, NULL, NULL, NULL, NULL, &internal_ARImageAnchorAdded_t958088978_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARImageAnchorAdded */,
{ DelegatePInvokeWrapper_internal_ARImageAnchorRemoved_t1751104571, NULL, NULL, NULL, NULL, NULL, &internal_ARImageAnchorRemoved_t1751104571_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARImageAnchorRemoved */,
{ DelegatePInvokeWrapper_internal_ARImageAnchorUpdated_t294417830, NULL, NULL, NULL, NULL, NULL, &internal_ARImageAnchorUpdated_t294417830_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARImageAnchorUpdated */,
{ DelegatePInvokeWrapper_internal_ARObjectAnchorAdded_t1222097505, NULL, NULL, NULL, NULL, NULL, &internal_ARObjectAnchorAdded_t1222097505_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARObjectAnchorAdded */,
{ DelegatePInvokeWrapper_internal_ARObjectAnchorRemoved_t1225376916, NULL, NULL, NULL, NULL, NULL, &internal_ARObjectAnchorRemoved_t1225376916_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARObjectAnchorRemoved */,
{ DelegatePInvokeWrapper_internal_ARObjectAnchorUpdated_t3492445690, NULL, NULL, NULL, NULL, NULL, &internal_ARObjectAnchorUpdated_t3492445690_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARObjectAnchorUpdated */,
{ DelegatePInvokeWrapper_internal_ARSessionTrackingChanged_t1988849735, NULL, NULL, NULL, NULL, NULL, &internal_ARSessionTrackingChanged_t1988849735_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARSessionTrackingChanged */,
{ DelegatePInvokeWrapper_internal_ARUserAnchorAdded_t3285282493, NULL, NULL, NULL, NULL, NULL, &internal_ARUserAnchorAdded_t3285282493_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARUserAnchorAdded */,
{ DelegatePInvokeWrapper_internal_ARUserAnchorRemoved_t386858594, NULL, NULL, NULL, NULL, NULL, &internal_ARUserAnchorRemoved_t386858594_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARUserAnchorRemoved */,
{ DelegatePInvokeWrapper_internal_ARUserAnchorUpdated_t3964727538, NULL, NULL, NULL, NULL, NULL, &internal_ARUserAnchorUpdated_t3964727538_0_0_0 } /* UnityEngine.XR.iOS.UnityARSessionNativeInterface/internal_ARUserAnchorUpdated */,
{ DelegatePInvokeWrapper_VideoFormatEnumerator_t3131638505, NULL, NULL, NULL, NULL, NULL, &VideoFormatEnumerator_t3131638505_0_0_0 } /* UnityEngine.XR.iOS.VideoFormatEnumerator */,
{ DelegatePInvokeWrapper_VideoFormatButtonPressed_t1187798507, NULL, NULL, NULL, NULL, NULL, &VideoFormatButtonPressed_t1187798507_0_0_0 } /* VideoFormatButton/VideoFormatButtonPressed */,
NULL,
};
| [
"[email protected]"
] | |
3633cf7f5e7eb3b002e01d2a5a20714193a5a8d7 | 148fc4d981139013c00d0797dd05cee1f1e0bbee | /3rdparty/dear-imgui/imgui.cpp | 7088908c3c473319434ebd0934a7e7c5ff904b2a | [
"MIT",
"LicenseRef-scancode-free-unknown",
"BSD-2-Clause"
] | permissive | BlockoS/bgfx | e826cd15e89946d53935822c47780899f6766542 | 0db0f1e0af088bd481b59714e87115455048e6b5 | refs/heads/master | 2021-08-02T13:32:20.500258 | 2021-07-21T09:35:05 | 2021-07-21T09:36:13 | 173,769,487 | 0 | 0 | BSD-2-Clause | 2019-03-04T15:20:56 | 2019-03-04T15:20:55 | null | UTF-8 | C++ | false | false | 577,189 | cpp | // dear imgui, v1.84 WIP
// (main code and documentation)
// Help:
// - Read FAQ at http://dearimgui.org/faq
// - Newcomers, read 'Programmer guide' below for notes on how to setup Dear ImGui in your codebase.
// - Call and read ImGui::ShowDemoWindow() in imgui_demo.cpp. All applications in examples/ are doing that.
// Read imgui.cpp for details, links and comments.
// Resources:
// - FAQ http://dearimgui.org/faq
// - Homepage & latest https://github.com/ocornut/imgui
// - Releases & changelog https://github.com/ocornut/imgui/releases
// - Gallery https://github.com/ocornut/imgui/issues/3793 (please post your screenshots/video there!)
// - Wiki https://github.com/ocornut/imgui/wiki (lots of good stuff there)
// - Glossary https://github.com/ocornut/imgui/wiki/Glossary
// - Issues & support https://github.com/ocornut/imgui/issues
// - Discussions https://github.com/ocornut/imgui/discussions
// Developed by Omar Cornut and every direct or indirect contributors to the GitHub.
// See LICENSE.txt for copyright and licensing details (standard MIT License).
// This library is free but needs your support to sustain development and maintenance.
// Businesses: you can support continued development via invoiced technical support, maintenance and sponsoring contracts. Please reach out to "contact AT dearimgui.com".
// Individuals: you can support continued development via donations. See docs/README or web page.
// It is recommended that you don't modify imgui.cpp! It will become difficult for you to update the library.
// Note that 'ImGui::' being a namespace, you can add functions into the namespace from your own source files, without
// modifying imgui.h or imgui.cpp. You may include imgui_internal.h to access internal data structures, but it doesn't
// come with any guarantee of forward compatibility. Discussing your changes on the GitHub Issue Tracker may lead you
// to a better solution or official support for them.
/*
Index of this file:
DOCUMENTATION
- MISSION STATEMENT
- END-USER GUIDE
- PROGRAMMER GUIDE
- READ FIRST
- HOW TO UPDATE TO A NEWER VERSION OF DEAR IMGUI
- GETTING STARTED WITH INTEGRATING DEAR IMGUI IN YOUR CODE/ENGINE
- HOW A SIMPLE APPLICATION MAY LOOK LIKE
- HOW A SIMPLE RENDERING FUNCTION MAY LOOK LIKE
- USING GAMEPAD/KEYBOARD NAVIGATION CONTROLS
- API BREAKING CHANGES (read me when you update!)
- FREQUENTLY ASKED QUESTIONS (FAQ)
- Read all answers online: https://www.dearimgui.org/faq, or in docs/FAQ.md (with a Markdown viewer)
CODE
(search for "[SECTION]" in the code to find them)
// [SECTION] INCLUDES
// [SECTION] FORWARD DECLARATIONS
// [SECTION] CONTEXT AND MEMORY ALLOCATORS
// [SECTION] USER FACING STRUCTURES (ImGuiStyle, ImGuiIO)
// [SECTION] MISC HELPERS/UTILITIES (Geometry functions)
// [SECTION] MISC HELPERS/UTILITIES (String, Format, Hash functions)
// [SECTION] MISC HELPERS/UTILITIES (File functions)
// [SECTION] MISC HELPERS/UTILITIES (ImText* functions)
// [SECTION] MISC HELPERS/UTILITIES (Color functions)
// [SECTION] ImGuiStorage
// [SECTION] ImGuiTextFilter
// [SECTION] ImGuiTextBuffer
// [SECTION] ImGuiListClipper
// [SECTION] STYLING
// [SECTION] RENDER HELPERS
// [SECTION] MAIN CODE (most of the code! lots of stuff, needs tidying up!)
// [SECTION] ERROR CHECKING
// [SECTION] LAYOUT
// [SECTION] SCROLLING
// [SECTION] TOOLTIPS
// [SECTION] POPUPS
// [SECTION] KEYBOARD/GAMEPAD NAVIGATION
// [SECTION] DRAG AND DROP
// [SECTION] LOGGING/CAPTURING
// [SECTION] SETTINGS
// [SECTION] VIEWPORTS
// [SECTION] PLATFORM DEPENDENT HELPERS
// [SECTION] METRICS/DEBUGGER WINDOW
*/
//-----------------------------------------------------------------------------
// DOCUMENTATION
//-----------------------------------------------------------------------------
/*
MISSION STATEMENT
=================
- Easy to use to create code-driven and data-driven tools.
- Easy to use to create ad hoc short-lived tools and long-lived, more elaborate tools.
- Easy to hack and improve.
- Minimize setup and maintenance.
- Minimize state storage on user side.
- Portable, minimize dependencies, run on target (consoles, phones, etc.).
- Efficient runtime and memory consumption.
Designed for developers and content-creators, not the typical end-user! Some of the current weaknesses includes:
- Doesn't look fancy, doesn't animate.
- Limited layout features, intricate layouts are typically crafted in code.
END-USER GUIDE
==============
- Double-click on title bar to collapse window.
- Click upper right corner to close a window, available when 'bool* p_open' is passed to ImGui::Begin().
- Click and drag on lower right corner to resize window (double-click to auto fit window to its contents).
- Click and drag on any empty space to move window.
- TAB/SHIFT+TAB to cycle through keyboard editable fields.
- CTRL+Click on a slider or drag box to input value as text.
- Use mouse wheel to scroll.
- Text editor:
- Hold SHIFT or use mouse to select text.
- CTRL+Left/Right to word jump.
- CTRL+Shift+Left/Right to select words.
- CTRL+A our Double-Click to select all.
- CTRL+X,CTRL+C,CTRL+V to use OS clipboard/
- CTRL+Z,CTRL+Y to undo/redo.
- ESCAPE to revert text to its original value.
- You can apply arithmetic operators +,*,/ on numerical values. Use +- to subtract (because - would set a negative value!)
- Controls are automatically adjusted for OSX to match standard OSX text editing operations.
- General Keyboard controls: enable with ImGuiConfigFlags_NavEnableKeyboard.
- General Gamepad controls: enable with ImGuiConfigFlags_NavEnableGamepad. See suggested mappings in imgui.h ImGuiNavInput_ + download PNG/PSD at http://dearimgui.org/controls_sheets
PROGRAMMER GUIDE
================
READ FIRST
----------
- Remember to check the wonderful Wiki (https://github.com/ocornut/imgui/wiki)
- Your code creates the UI, if your code doesn't run the UI is gone! The UI can be highly dynamic, there are no construction or
destruction steps, less superfluous data retention on your side, less state duplication, less state synchronization, fewer bugs.
- Call and read ImGui::ShowDemoWindow() for demo code demonstrating most features.
- The library is designed to be built from sources. Avoid pre-compiled binaries and packaged versions. See imconfig.h to configure your build.
- Dear ImGui is an implementation of the IMGUI paradigm (immediate-mode graphical user interface, a term coined by Casey Muratori).
You can learn about IMGUI principles at http://www.johno.se/book/imgui.html, http://mollyrocket.com/861 & more links in Wiki.
- Dear ImGui is a "single pass" rasterizing implementation of the IMGUI paradigm, aimed at ease of use and high-performances.
For every application frame, your UI code will be called only once. This is in contrast to e.g. Unity's implementation of an IMGUI,
where the UI code is called multiple times ("multiple passes") from a single entry point. There are pros and cons to both approaches.
- Our origin is on the top-left. In axis aligned bounding boxes, Min = top-left, Max = bottom-right.
- This codebase is also optimized to yield decent performances with typical "Debug" builds settings.
- Please make sure you have asserts enabled (IM_ASSERT redirects to assert() by default, but can be redirected).
If you get an assert, read the messages and comments around the assert.
- C++: this is a very C-ish codebase: we don't rely on C++11, we don't include any C++ headers, and ImGui:: is a namespace.
- C++: ImVec2/ImVec4 do not expose math operators by default, because it is expected that you use your own math types.
See FAQ "How can I use my own math types instead of ImVec2/ImVec4?" for details about setting up imconfig.h for that.
However, imgui_internal.h can optionally export math operators for ImVec2/ImVec4, which we use in this codebase.
- C++: pay attention that ImVector<> manipulates plain-old-data and does not honor construction/destruction (avoid using it in your code!).
HOW TO UPDATE TO A NEWER VERSION OF DEAR IMGUI
----------------------------------------------
- Overwrite all the sources files except for imconfig.h (if you have modified your copy of imconfig.h)
- Or maintain your own branch where you have imconfig.h modified as a top-most commit which you can regularly rebase over "master".
- You can also use '#define IMGUI_USER_CONFIG "my_config_file.h" to redirect configuration to your own file.
- Read the "API BREAKING CHANGES" section (below). This is where we list occasional API breaking changes.
If a function/type has been renamed / or marked obsolete, try to fix the name in your code before it is permanently removed
from the public API. If you have a problem with a missing function/symbols, search for its name in the code, there will
likely be a comment about it. Please report any issue to the GitHub page!
- To find out usage of old API, you can add '#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS' in your configuration file.
- Try to keep your copy of Dear ImGui reasonably up to date.
GETTING STARTED WITH INTEGRATING DEAR IMGUI IN YOUR CODE/ENGINE
---------------------------------------------------------------
- Run and study the examples and demo in imgui_demo.cpp to get acquainted with the library.
- In the majority of cases you should be able to use unmodified backends files available in the backends/ folder.
- Add the Dear ImGui source files + selected backend source files to your projects or using your preferred build system.
It is recommended you build and statically link the .cpp files as part of your project and NOT as a shared library (DLL).
- You can later customize the imconfig.h file to tweak some compile-time behavior, such as integrating Dear ImGui types with your own maths types.
- When using Dear ImGui, your programming IDE is your friend: follow the declaration of variables, functions and types to find comments about them.
- Dear ImGui never touches or knows about your GPU state. The only function that knows about GPU is the draw function that you provide.
Effectively it means you can create widgets at any time in your code, regardless of considerations of being in "update" vs "render"
phases of your own application. All rendering information is stored into command-lists that you will retrieve after calling ImGui::Render().
- Refer to the backends and demo applications in the examples/ folder for instruction on how to setup your code.
- If you are running over a standard OS with a common graphics API, you should be able to use unmodified imgui_impl_*** files from the examples/ folder.
HOW A SIMPLE APPLICATION MAY LOOK LIKE
--------------------------------------
EXHIBIT 1: USING THE EXAMPLE BACKENDS (= imgui_impl_XXX.cpp files from the backends/ folder).
The sub-folders in examples/ contain examples applications following this structure.
// Application init: create a dear imgui context, setup some options, load fonts
ImGui::CreateContext();
ImGuiIO& io = ImGui::GetIO();
// TODO: Set optional io.ConfigFlags values, e.g. 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard' to enable keyboard controls.
// TODO: Fill optional fields of the io structure later.
// TODO: Load TTF/OTF fonts if you don't want to use the default font.
// Initialize helper Platform and Renderer backends (here we are using imgui_impl_win32.cpp and imgui_impl_dx11.cpp)
ImGui_ImplWin32_Init(hwnd);
ImGui_ImplDX11_Init(g_pd3dDevice, g_pd3dDeviceContext);
// Application main loop
while (true)
{
// Feed inputs to dear imgui, start new frame
ImGui_ImplDX11_NewFrame();
ImGui_ImplWin32_NewFrame();
ImGui::NewFrame();
// Any application code here
ImGui::Text("Hello, world!");
// Render dear imgui into screen
ImGui::Render();
ImGui_ImplDX11_RenderDrawData(ImGui::GetDrawData());
g_pSwapChain->Present(1, 0);
}
// Shutdown
ImGui_ImplDX11_Shutdown();
ImGui_ImplWin32_Shutdown();
ImGui::DestroyContext();
EXHIBIT 2: IMPLEMENTING CUSTOM BACKEND / CUSTOM ENGINE
// Application init: create a dear imgui context, setup some options, load fonts
ImGui::CreateContext();
ImGuiIO& io = ImGui::GetIO();
// TODO: Set optional io.ConfigFlags values, e.g. 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard' to enable keyboard controls.
// TODO: Fill optional fields of the io structure later.
// TODO: Load TTF/OTF fonts if you don't want to use the default font.
// Build and load the texture atlas into a texture
// (In the examples/ app this is usually done within the ImGui_ImplXXX_Init() function from one of the demo Renderer)
int width, height;
unsigned char* pixels = NULL;
io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height);
// At this point you've got the texture data and you need to upload that to your graphic system:
// After we have created the texture, store its pointer/identifier (_in whichever format your engine uses_) in 'io.Fonts->TexID'.
// This will be passed back to your via the renderer. Basically ImTextureID == void*. Read FAQ for details about ImTextureID.
MyTexture* texture = MyEngine::CreateTextureFromMemoryPixels(pixels, width, height, TEXTURE_TYPE_RGBA32)
io.Fonts->SetTexID((void*)texture);
// Application main loop
while (true)
{
// Setup low-level inputs, e.g. on Win32: calling GetKeyboardState(), or write to those fields from your Windows message handlers, etc.
// (In the examples/ app this is usually done within the ImGui_ImplXXX_NewFrame() function from one of the demo Platform Backends)
io.DeltaTime = 1.0f/60.0f; // set the time elapsed since the previous frame (in seconds)
io.DisplaySize.x = 1920.0f; // set the current display width
io.DisplaySize.y = 1280.0f; // set the current display height here
io.MousePos = my_mouse_pos; // set the mouse position
io.MouseDown[0] = my_mouse_buttons[0]; // set the mouse button states
io.MouseDown[1] = my_mouse_buttons[1];
// Call NewFrame(), after this point you can use ImGui::* functions anytime
// (So you want to try calling NewFrame() as early as you can in your main loop to be able to use Dear ImGui everywhere)
ImGui::NewFrame();
// Most of your application code here
ImGui::Text("Hello, world!");
MyGameUpdate(); // may use any Dear ImGui functions, e.g. ImGui::Begin("My window"); ImGui::Text("Hello, world!"); ImGui::End();
MyGameRender(); // may use any Dear ImGui functions as well!
// Render dear imgui, swap buffers
// (You want to try calling EndFrame/Render as late as you can, to be able to use Dear ImGui in your own game rendering code)
ImGui::EndFrame();
ImGui::Render();
ImDrawData* draw_data = ImGui::GetDrawData();
MyImGuiRenderFunction(draw_data);
SwapBuffers();
}
// Shutdown
ImGui::DestroyContext();
To decide whether to dispatch mouse/keyboard inputs to Dear ImGui to the rest of your application,
you should read the 'io.WantCaptureMouse', 'io.WantCaptureKeyboard' and 'io.WantTextInput' flags!
Please read the FAQ and example applications for details about this!
HOW A SIMPLE RENDERING FUNCTION MAY LOOK LIKE
---------------------------------------------
The backends in impl_impl_XXX.cpp files contain many working implementations of a rendering function.
void void MyImGuiRenderFunction(ImDrawData* draw_data)
{
// TODO: Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled
// TODO: Setup viewport covering draw_data->DisplayPos to draw_data->DisplayPos + draw_data->DisplaySize
// TODO: Setup orthographic projection matrix cover draw_data->DisplayPos to draw_data->DisplayPos + draw_data->DisplaySize
// TODO: Setup shader: vertex { float2 pos, float2 uv, u32 color }, fragment shader sample color from 1 texture, multiply by vertex color.
for (int n = 0; n < draw_data->CmdListsCount; n++)
{
const ImDrawList* cmd_list = draw_data->CmdLists[n];
const ImDrawVert* vtx_buffer = cmd_list->VtxBuffer.Data; // vertex buffer generated by Dear ImGui
const ImDrawIdx* idx_buffer = cmd_list->IdxBuffer.Data; // index buffer generated by Dear ImGui
for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++)
{
const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i];
if (pcmd->UserCallback)
{
pcmd->UserCallback(cmd_list, pcmd);
}
else
{
// The texture for the draw call is specified by pcmd->GetTexID().
// The vast majority of draw calls will use the Dear ImGui texture atlas, which value you have set yourself during initialization.
MyEngineBindTexture((MyTexture*)pcmd->GetTexID());
// We are using scissoring to clip some objects. All low-level graphics API should support it.
// - If your engine doesn't support scissoring yet, you may ignore this at first. You will get some small glitches
// (some elements visible outside their bounds) but you can fix that once everything else works!
// - Clipping coordinates are provided in imgui coordinates space:
// - For a given viewport, draw_data->DisplayPos == viewport->Pos and draw_data->DisplaySize == viewport->Size
// - In a single viewport application, draw_data->DisplayPos == (0,0) and draw_data->DisplaySize == io.DisplaySize, but always use GetMainViewport()->Pos/Size instead of hardcoding those values.
// - In the interest of supporting multi-viewport applications (see 'docking' branch on github),
// always subtract draw_data->DisplayPos from clipping bounds to convert them to your viewport space.
// - Note that pcmd->ClipRect contains Min+Max bounds. Some graphics API may use Min+Max, other may use Min+Size (size being Max-Min)
ImVec2 pos = draw_data->DisplayPos;
MyEngineScissor((int)(pcmd->ClipRect.x - pos.x), (int)(pcmd->ClipRect.y - pos.y), (int)(pcmd->ClipRect.z - pos.x), (int)(pcmd->ClipRect.w - pos.y));
// Render 'pcmd->ElemCount/3' indexed triangles.
// By default the indices ImDrawIdx are 16-bit, you can change them to 32-bit in imconfig.h if your engine doesn't support 16-bit indices.
MyEngineDrawIndexedTriangles(pcmd->ElemCount, sizeof(ImDrawIdx) == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT, idx_buffer, vtx_buffer);
}
idx_buffer += pcmd->ElemCount;
}
}
}
USING GAMEPAD/KEYBOARD NAVIGATION CONTROLS
------------------------------------------
- The gamepad/keyboard navigation is fairly functional and keeps being improved.
- Gamepad support is particularly useful to use Dear ImGui on a console system (e.g. PS4, Switch, XB1) without a mouse!
- You can ask questions and report issues at https://github.com/ocornut/imgui/issues/787
- The initial focus was to support game controllers, but keyboard is becoming increasingly and decently usable.
- Keyboard:
- Set io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard to enable.
NewFrame() will automatically fill io.NavInputs[] based on your io.KeysDown[] + io.KeyMap[] arrays.
- When keyboard navigation is active (io.NavActive + ImGuiConfigFlags_NavEnableKeyboard), the io.WantCaptureKeyboard flag
will be set. For more advanced uses, you may want to read from:
- io.NavActive: true when a window is focused and it doesn't have the ImGuiWindowFlags_NoNavInputs flag set.
- io.NavVisible: true when the navigation cursor is visible (and usually goes false when mouse is used).
- or query focus information with e.g. IsWindowFocused(ImGuiFocusedFlags_AnyWindow), IsItemFocused() etc. functions.
Please reach out if you think the game vs navigation input sharing could be improved.
- Gamepad:
- Set io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad to enable.
- Backend: Set io.BackendFlags |= ImGuiBackendFlags_HasGamepad + fill the io.NavInputs[] fields before calling NewFrame().
Note that io.NavInputs[] is cleared by EndFrame().
- See 'enum ImGuiNavInput_' in imgui.h for a description of inputs. For each entry of io.NavInputs[], set the following values:
0.0f= not held. 1.0f= fully held. Pass intermediate 0.0f..1.0f values for analog triggers/sticks.
- We use a simple >0.0f test for activation testing, and won't attempt to test for a dead-zone.
Your code will probably need to transform your raw inputs (such as e.g. remapping your 0.2..0.9 raw input range to 0.0..1.0 imgui range, etc.).
- You can download PNG/PSD files depicting the gamepad controls for common controllers at: http://dearimgui.org/controls_sheets
- If you need to share inputs between your game and the imgui parts, the easiest approach is to go all-or-nothing, with a buttons combo
to toggle the target. Please reach out if you think the game vs navigation input sharing could be improved.
- Mouse:
- PS4 users: Consider emulating a mouse cursor with DualShock4 touch pad or a spare analog stick as a mouse-emulation fallback.
- Consoles/Tablet/Phone users: Consider using a Synergy 1.x server (on your PC) + uSynergy.c (on your console/tablet/phone app) to share your PC mouse/keyboard.
- On a TV/console system where readability may be lower or mouse inputs may be awkward, you may want to set the ImGuiConfigFlags_NavEnableSetMousePos flag.
Enabling ImGuiConfigFlags_NavEnableSetMousePos + ImGuiBackendFlags_HasSetMousePos instructs dear imgui to move your mouse cursor along with navigation movements.
When enabled, the NewFrame() function may alter 'io.MousePos' and set 'io.WantSetMousePos' to notify you that it wants the mouse cursor to be moved.
When that happens your backend NEEDS to move the OS or underlying mouse cursor on the next frame. Some of the backends in examples/ do that.
(If you set the NavEnableSetMousePos flag but don't honor 'io.WantSetMousePos' properly, imgui will misbehave as it will see your mouse moving back and forth!)
(In a setup when you may not have easy control over the mouse cursor, e.g. uSynergy.c doesn't expose moving remote mouse cursor, you may want
to set a boolean to ignore your other external mouse positions until the external source is moved again.)
API BREAKING CHANGES
====================
Occasionally introducing changes that are breaking the API. We try to make the breakage minor and easy to fix.
Below is a change-log of API breaking changes only. If you are using one of the functions listed, expect to have to fix some code.
When you are not sure about an old symbol or function name, try using the Search/Find function of your IDE to look for comments or references in all imgui files.
You can read releases logs https://github.com/ocornut/imgui/releases for more details.
- 2021/05/19 (1.83) - backends: obsoleted direct access to ImDrawCmd::TextureId in favor of calling ImDrawCmd::GetTexID().
- if you are using official backends from the source tree: you have nothing to do.
- if you have copied old backend code or using your own: change access to draw_cmd->TextureId to draw_cmd->GetTexID().
- 2021/03/12 (1.82) - upgraded ImDrawList::AddRect(), AddRectFilled(), PathRect() to use ImDrawFlags instead of ImDrawCornersFlags.
- ImDrawCornerFlags_TopLeft -> use ImDrawFlags_RoundCornersTopLeft
- ImDrawCornerFlags_BotRight -> use ImDrawFlags_RoundCornersBottomRight
- ImDrawCornerFlags_None -> use ImDrawFlags_RoundCornersNone etc.
flags now sanely defaults to 0 instead of 0x0F, consistent with all other flags in the API.
breaking: the default with rounding > 0.0f is now "round all corners" vs old implicit "round no corners":
- rounding == 0.0f + flags == 0 --> meant no rounding --> unchanged (common use)
- rounding > 0.0f + flags != 0 --> meant rounding --> unchanged (common use)
- rounding == 0.0f + flags != 0 --> meant no rounding --> unchanged (unlikely use)
- rounding > 0.0f + flags == 0 --> meant no rounding --> BREAKING (unlikely use): will now round all corners --> use ImDrawFlags_RoundCornersNone or rounding == 0.0f.
this ONLY matters for hard coded use of 0 + rounding > 0.0f. Use of named ImDrawFlags_RoundCornersNone (new) or ImDrawCornerFlags_None (old) are ok.
the old ImDrawCornersFlags used awkward default values of ~0 or 0xF (4 lower bits set) to signify "round all corners" and we sometimes encouraged using them as shortcuts.
legacy path still support use of hard coded ~0 or any value from 0x1 or 0xF. They will behave the same with legacy paths enabled (will assert otherwise).
- 2021/03/11 (1.82) - removed redirecting functions/enums names that were marked obsolete in 1.66 (September 2018):
- ImGui::SetScrollHere() -> use ImGui::SetScrollHereY()
- 2021/03/11 (1.82) - clarified that ImDrawList::PathArcTo(), ImDrawList::PathArcToFast() won't render with radius < 0.0f. Previously it sorts of accidentally worked but would generally lead to counter-clockwise paths and have an effect on anti-aliasing.
- 2021/03/10 (1.82) - upgraded ImDrawList::AddPolyline() and PathStroke() "bool closed" parameter to "ImDrawFlags flags". The matching ImDrawFlags_Closed value is guaranteed to always stay == 1 in the future.
- 2021/02/22 (1.82) - win32+mingw: Re-enabled IME functions by default even under MinGW. In July 2016, issue #738 had me incorrectly disable those default functions for MinGW. MinGW users should: either link with -limm32, either set their imconfig file with '#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS'.
- 2021/02/17 (1.82) - renamed rarely used style.CircleSegmentMaxError (old default = 1.60f) to style.CircleTessellationMaxError (new default = 0.30f) as the meaning of the value changed.
- 2021/02/03 (1.81) - renamed ListBoxHeader(const char* label, ImVec2 size) to BeginListBox(). Kept inline redirection function (will obsolete).
- removed ListBoxHeader(const char* label, int items_count, int height_in_items = -1) in favor of specifying size. Kept inline redirection function (will obsolete).
- renamed ListBoxFooter() to EndListBox(). Kept inline redirection function (will obsolete).
- 2021/01/26 (1.81) - removed ImGuiFreeType::BuildFontAtlas(). Kept inline redirection function. Prefer using '#define IMGUI_ENABLE_FREETYPE', but there's a runtime selection path available too. The shared extra flags parameters (very rarely used) are now stored in ImFontAtlas::FontBuilderFlags.
- renamed ImFontConfig::RasterizerFlags (used by FreeType) to ImFontConfig::FontBuilderFlags.
- renamed ImGuiFreeType::XXX flags to ImGuiFreeTypeBuilderFlags_XXX for consistency with other API.
- 2020/10/12 (1.80) - removed redirecting functions/enums that were marked obsolete in 1.63 (August 2018):
- ImGui::IsItemDeactivatedAfterChange() -> use ImGui::IsItemDeactivatedAfterEdit().
- ImGuiCol_ModalWindowDarkening -> use ImGuiCol_ModalWindowDimBg
- ImGuiInputTextCallback -> use ImGuiTextEditCallback
- ImGuiInputTextCallbackData -> use ImGuiTextEditCallbackData
- 2020/12/21 (1.80) - renamed ImDrawList::AddBezierCurve() to AddBezierCubic(), and PathBezierCurveTo() to PathBezierCubicCurveTo(). Kept inline redirection function (will obsolete).
- 2020/12/04 (1.80) - added imgui_tables.cpp file! Manually constructed project files will need the new file added!
- 2020/11/18 (1.80) - renamed undocumented/internals ImGuiColumnsFlags_* to ImGuiOldColumnFlags_* in prevision of incoming Tables API.
- 2020/11/03 (1.80) - renamed io.ConfigWindowsMemoryCompactTimer to io.ConfigMemoryCompactTimer as the feature will apply to other data structures
- 2020/10/14 (1.80) - backends: moved all backends files (imgui_impl_XXXX.cpp, imgui_impl_XXXX.h) from examples/ to backends/.
- 2020/10/12 (1.80) - removed redirecting functions/enums that were marked obsolete in 1.60 (April 2018):
- io.RenderDrawListsFn pointer -> use ImGui::GetDrawData() value and call the render function of your backend
- ImGui::IsAnyWindowFocused() -> use ImGui::IsWindowFocused(ImGuiFocusedFlags_AnyWindow)
- ImGui::IsAnyWindowHovered() -> use ImGui::IsWindowHovered(ImGuiHoveredFlags_AnyWindow)
- ImGuiStyleVar_Count_ -> use ImGuiStyleVar_COUNT
- ImGuiMouseCursor_Count_ -> use ImGuiMouseCursor_COUNT
- removed redirecting functions names that were marked obsolete in 1.61 (May 2018):
- InputFloat (... int decimal_precision ...) -> use InputFloat (... const char* format ...) with format = "%.Xf" where X is your value for decimal_precision.
- same for InputFloat2()/InputFloat3()/InputFloat4() variants taking a `int decimal_precision` parameter.
- 2020/10/05 (1.79) - removed ImGuiListClipper: Renamed constructor parameters which created an ambiguous alternative to using the ImGuiListClipper::Begin() function, with misleading edge cases (note: imgui_memory_editor <0.40 from imgui_club/ used this old clipper API. Update your copy if needed).
- 2020/09/25 (1.79) - renamed ImGuiSliderFlags_ClampOnInput to ImGuiSliderFlags_AlwaysClamp. Kept redirection enum (will obsolete sooner because previous name was added recently).
- 2020/09/25 (1.79) - renamed style.TabMinWidthForUnselectedCloseButton to style.TabMinWidthForCloseButton.
- 2020/09/21 (1.79) - renamed OpenPopupContextItem() back to OpenPopupOnItemClick(), reverting the change from 1.77. For varieties of reason this is more self-explanatory.
- 2020/09/21 (1.79) - removed return value from OpenPopupOnItemClick() - returned true on mouse release on an item - because it is inconsistent with other popup APIs and makes others misleading. It's also and unnecessary: you can use IsWindowAppearing() after BeginPopup() for a similar result.
- 2020/09/17 (1.79) - removed ImFont::DisplayOffset in favor of ImFontConfig::GlyphOffset. DisplayOffset was applied after scaling and not very meaningful/useful outside of being needed by the default ProggyClean font. If you scaled this value after calling AddFontDefault(), this is now done automatically. It was also getting in the way of better font scaling, so let's get rid of it now!
- 2020/08/17 (1.78) - obsoleted use of the trailing 'float power=1.0f' parameter for DragFloat(), DragFloat2(), DragFloat3(), DragFloat4(), DragFloatRange2(), DragScalar(), DragScalarN(), SliderFloat(), SliderFloat2(), SliderFloat3(), SliderFloat4(), SliderScalar(), SliderScalarN(), VSliderFloat() and VSliderScalar().
replaced the 'float power=1.0f' argument with integer-based flags defaulting to 0 (as with all our flags).
worked out a backward-compatibility scheme so hopefully most C++ codebase should not be affected. in short, when calling those functions:
- if you omitted the 'power' parameter (likely!), you are not affected.
- if you set the 'power' parameter to 1.0f (same as previous default value): 1/ your compiler may warn on float>int conversion, 2/ everything else will work. 3/ you can replace the 1.0f value with 0 to fix the warning, and be technically correct.
- if you set the 'power' parameter to >1.0f (to enable non-linear editing): 1/ your compiler may warn on float>int conversion, 2/ code will assert at runtime, 3/ in case asserts are disabled, the code will not crash and enable the _Logarithmic flag. 4/ you can replace the >1.0f value with ImGuiSliderFlags_Logarithmic to fix the warning/assert and get a _similar_ effect as previous uses of power >1.0f.
see https://github.com/ocornut/imgui/issues/3361 for all details.
kept inline redirection functions (will obsolete) apart for: DragFloatRange2(), VSliderFloat(), VSliderScalar(). For those three the 'float power=1.0f' version was removed directly as they were most unlikely ever used.
for shared code, you can version check at compile-time with `#if IMGUI_VERSION_NUM >= 17704`.
- obsoleted use of v_min > v_max in DragInt, DragFloat, DragScalar to lock edits (introduced in 1.73, was not demoed nor documented very), will be replaced by a more generic ReadOnly feature. You may use the ImGuiSliderFlags_ReadOnly internal flag in the meantime.
- 2020/06/23 (1.77) - removed BeginPopupContextWindow(const char*, int mouse_button, bool also_over_items) in favor of BeginPopupContextWindow(const char*, ImGuiPopupFlags flags) with ImGuiPopupFlags_NoOverItems.
- 2020/06/15 (1.77) - renamed OpenPopupOnItemClick() to OpenPopupContextItem(). Kept inline redirection function (will obsolete). [NOTE: THIS WAS REVERTED IN 1.79]
- 2020/06/15 (1.77) - removed CalcItemRectClosestPoint() entry point which was made obsolete and asserting in December 2017.
- 2020/04/23 (1.77) - removed unnecessary ID (first arg) of ImFontAtlas::AddCustomRectRegular().
- 2020/01/22 (1.75) - ImDrawList::AddCircle()/AddCircleFilled() functions don't accept negative radius any more.
- 2019/12/17 (1.75) - [undid this change in 1.76] made Columns() limited to 64 columns by asserting above that limit. While the current code technically supports it, future code may not so we're putting the restriction ahead.
- 2019/12/13 (1.75) - [imgui_internal.h] changed ImRect() default constructor initializes all fields to 0.0f instead of (FLT_MAX,FLT_MAX,-FLT_MAX,-FLT_MAX). If you used ImRect::Add() to create bounding boxes by adding multiple points into it, you may need to fix your initial value.
- 2019/12/08 (1.75) - removed redirecting functions/enums that were marked obsolete in 1.53 (December 2017):
- ShowTestWindow() -> use ShowDemoWindow()
- IsRootWindowFocused() -> use IsWindowFocused(ImGuiFocusedFlags_RootWindow)
- IsRootWindowOrAnyChildFocused() -> use IsWindowFocused(ImGuiFocusedFlags_RootAndChildWindows)
- SetNextWindowContentWidth(w) -> use SetNextWindowContentSize(ImVec2(w, 0.0f)
- GetItemsLineHeightWithSpacing() -> use GetFrameHeightWithSpacing()
- ImGuiCol_ChildWindowBg -> use ImGuiCol_ChildBg
- ImGuiStyleVar_ChildWindowRounding -> use ImGuiStyleVar_ChildRounding
- ImGuiTreeNodeFlags_AllowOverlapMode -> use ImGuiTreeNodeFlags_AllowItemOverlap
- IMGUI_DISABLE_TEST_WINDOWS -> use IMGUI_DISABLE_DEMO_WINDOWS
- 2019/12/08 (1.75) - obsoleted calling ImDrawList::PrimReserve() with a negative count (which was vaguely documented and rarely if ever used). Instead, we added an explicit PrimUnreserve() API.
- 2019/12/06 (1.75) - removed implicit default parameter to IsMouseDragging(int button = 0) to be consistent with other mouse functions (none of the other functions have it).
- 2019/11/21 (1.74) - ImFontAtlas::AddCustomRectRegular() now requires an ID larger than 0x110000 (instead of 0x10000) to conform with supporting Unicode planes 1-16 in a future update. ID below 0x110000 will now assert.
- 2019/11/19 (1.74) - renamed IMGUI_DISABLE_FORMAT_STRING_FUNCTIONS to IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS for consistency.
- 2019/11/19 (1.74) - renamed IMGUI_DISABLE_MATH_FUNCTIONS to IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS for consistency.
- 2019/10/22 (1.74) - removed redirecting functions/enums that were marked obsolete in 1.52 (October 2017):
- Begin() [old 5 args version] -> use Begin() [3 args], use SetNextWindowSize() SetNextWindowBgAlpha() if needed
- IsRootWindowOrAnyChildHovered() -> use IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows)
- AlignFirstTextHeightToWidgets() -> use AlignTextToFramePadding()
- SetNextWindowPosCenter() -> use SetNextWindowPos() with a pivot of (0.5f, 0.5f)
- ImFont::Glyph -> use ImFontGlyph
- 2019/10/14 (1.74) - inputs: Fixed a miscalculation in the keyboard/mouse "typematic" repeat delay/rate calculation, used by keys and e.g. repeating mouse buttons as well as the GetKeyPressedAmount() function.
if you were using a non-default value for io.KeyRepeatRate (previous default was 0.250), you can add +io.KeyRepeatDelay to it to compensate for the fix.
The function was triggering on: 0.0 and (delay+rate*N) where (N>=1). Fixed formula responds to (N>=0). Effectively it made io.KeyRepeatRate behave like it was set to (io.KeyRepeatRate + io.KeyRepeatDelay).
If you never altered io.KeyRepeatRate nor used GetKeyPressedAmount() this won't affect you.
- 2019/07/15 (1.72) - removed TreeAdvanceToLabelPos() which is rarely used and only does SetCursorPosX(GetCursorPosX() + GetTreeNodeToLabelSpacing()). Kept redirection function (will obsolete).
- 2019/07/12 (1.72) - renamed ImFontAtlas::CustomRect to ImFontAtlasCustomRect. Kept redirection typedef (will obsolete).
- 2019/06/14 (1.72) - removed redirecting functions/enums names that were marked obsolete in 1.51 (June 2017): ImGuiCol_Column*, ImGuiSetCond_*, IsItemHoveredRect(), IsPosHoveringAnyWindow(), IsMouseHoveringAnyWindow(), IsMouseHoveringWindow(), IMGUI_ONCE_UPON_A_FRAME. Grep this log for details and new names, or see how they were implemented until 1.71.
- 2019/06/07 (1.71) - rendering of child window outer decorations (bg color, border, scrollbars) is now performed as part of the parent window. If you have
overlapping child windows in a same parent, and relied on their relative z-order to be mapped to their submission order, this will affect your rendering.
This optimization is disabled if the parent window has no visual output, because it appears to be the most common situation leading to the creation of overlapping child windows.
Please reach out if you are affected.
- 2019/05/13 (1.71) - renamed SetNextTreeNodeOpen() to SetNextItemOpen(). Kept inline redirection function (will obsolete).
- 2019/05/11 (1.71) - changed io.AddInputCharacter(unsigned short c) signature to io.AddInputCharacter(unsigned int c).
- 2019/04/29 (1.70) - improved ImDrawList thick strokes (>1.0f) preserving correct thickness up to 90 degrees angles (e.g. rectangles). If you have custom rendering using thick lines, they will appear thicker now.
- 2019/04/29 (1.70) - removed GetContentRegionAvailWidth(), use GetContentRegionAvail().x instead. Kept inline redirection function (will obsolete).
- 2019/03/04 (1.69) - renamed GetOverlayDrawList() to GetForegroundDrawList(). Kept redirection function (will obsolete).
- 2019/02/26 (1.69) - renamed ImGuiColorEditFlags_RGB/ImGuiColorEditFlags_HSV/ImGuiColorEditFlags_HEX to ImGuiColorEditFlags_DisplayRGB/ImGuiColorEditFlags_DisplayHSV/ImGuiColorEditFlags_DisplayHex. Kept redirection enums (will obsolete).
- 2019/02/14 (1.68) - made it illegal/assert when io.DisplayTime == 0.0f (with an exception for the first frame). If for some reason your time step calculation gives you a zero value, replace it with an arbitrarily small value!
- 2019/02/01 (1.68) - removed io.DisplayVisibleMin/DisplayVisibleMax (which were marked obsolete and removed from viewport/docking branch already).
- 2019/01/06 (1.67) - renamed io.InputCharacters[], marked internal as was always intended. Please don't access directly, and use AddInputCharacter() instead!
- 2019/01/06 (1.67) - renamed ImFontAtlas::GlyphRangesBuilder to ImFontGlyphRangesBuilder. Kept redirection typedef (will obsolete).
- 2018/12/20 (1.67) - made it illegal to call Begin("") with an empty string. This somehow half-worked before but had various undesirable side-effects.
- 2018/12/10 (1.67) - renamed io.ConfigResizeWindowsFromEdges to io.ConfigWindowsResizeFromEdges as we are doing a large pass on configuration flags.
- 2018/10/12 (1.66) - renamed misc/stl/imgui_stl.* to misc/cpp/imgui_stdlib.* in prevision for other C++ helper files.
- 2018/09/28 (1.66) - renamed SetScrollHere() to SetScrollHereY(). Kept redirection function (will obsolete).
- 2018/09/06 (1.65) - renamed stb_truetype.h to imstb_truetype.h, stb_textedit.h to imstb_textedit.h, and stb_rect_pack.h to imstb_rectpack.h.
If you were conveniently using the imgui copy of those STB headers in your project you will have to update your include paths.
- 2018/09/05 (1.65) - renamed io.OptCursorBlink/io.ConfigCursorBlink to io.ConfigInputTextCursorBlink. (#1427)
- 2018/08/31 (1.64) - added imgui_widgets.cpp file, extracted and moved widgets code out of imgui.cpp into imgui_widgets.cpp. Re-ordered some of the code remaining in imgui.cpp.
NONE OF THE FUNCTIONS HAVE CHANGED. THE CODE IS SEMANTICALLY 100% IDENTICAL, BUT _EVERY_ FUNCTION HAS BEEN MOVED.
Because of this, any local modifications to imgui.cpp will likely conflict when you update. Read docs/CHANGELOG.txt for suggestions.
- 2018/08/22 (1.63) - renamed IsItemDeactivatedAfterChange() to IsItemDeactivatedAfterEdit() for consistency with new IsItemEdited() API. Kept redirection function (will obsolete soonish as IsItemDeactivatedAfterChange() is very recent).
- 2018/08/21 (1.63) - renamed ImGuiTextEditCallback to ImGuiInputTextCallback, ImGuiTextEditCallbackData to ImGuiInputTextCallbackData for consistency. Kept redirection types (will obsolete).
- 2018/08/21 (1.63) - removed ImGuiInputTextCallbackData::ReadOnly since it is a duplication of (ImGuiInputTextCallbackData::Flags & ImGuiInputTextFlags_ReadOnly).
- 2018/08/01 (1.63) - removed per-window ImGuiWindowFlags_ResizeFromAnySide beta flag in favor of a global io.ConfigResizeWindowsFromEdges [update 1.67 renamed to ConfigWindowsResizeFromEdges] to enable the feature.
- 2018/08/01 (1.63) - renamed io.OptCursorBlink to io.ConfigCursorBlink [-> io.ConfigInputTextCursorBlink in 1.65], io.OptMacOSXBehaviors to ConfigMacOSXBehaviors for consistency.
- 2018/07/22 (1.63) - changed ImGui::GetTime() return value from float to double to avoid accumulating floating point imprecisions over time.
- 2018/07/08 (1.63) - style: renamed ImGuiCol_ModalWindowDarkening to ImGuiCol_ModalWindowDimBg for consistency with other features. Kept redirection enum (will obsolete).
- 2018/06/08 (1.62) - examples: the imgui_impl_XXX files have been split to separate platform (Win32, GLFW, SDL2, etc.) from renderer (DX11, OpenGL, Vulkan, etc.).
old backends will still work as is, however prefer using the separated backends as they will be updated to support multi-viewports.
when adopting new backends follow the main.cpp code of your preferred examples/ folder to know which functions to call.
in particular, note that old backends called ImGui::NewFrame() at the end of their ImGui_ImplXXXX_NewFrame() function.
- 2018/06/06 (1.62) - renamed GetGlyphRangesChinese() to GetGlyphRangesChineseFull() to distinguish other variants and discourage using the full set.
- 2018/06/06 (1.62) - TreeNodeEx()/TreeNodeBehavior(): the ImGuiTreeNodeFlags_CollapsingHeader helper now include the ImGuiTreeNodeFlags_NoTreePushOnOpen flag. See Changelog for details.
- 2018/05/03 (1.61) - DragInt(): the default compile-time format string has been changed from "%.0f" to "%d", as we are not using integers internally any more.
If you used DragInt() with custom format strings, make sure you change them to use %d or an integer-compatible format.
To honor backward-compatibility, the DragInt() code will currently parse and modify format strings to replace %*f with %d, giving time to users to upgrade their code.
If you have IMGUI_DISABLE_OBSOLETE_FUNCTIONS enabled, the code will instead assert! You may run a reg-exp search on your codebase for e.g. "DragInt.*%f" to help you find them.
- 2018/04/28 (1.61) - obsoleted InputFloat() functions taking an optional "int decimal_precision" in favor of an equivalent and more flexible "const char* format",
consistent with other functions. Kept redirection functions (will obsolete).
- 2018/04/09 (1.61) - IM_DELETE() helper function added in 1.60 doesn't clear the input _pointer_ reference, more consistent with expectation and allows passing r-value.
- 2018/03/20 (1.60) - renamed io.WantMoveMouse to io.WantSetMousePos for consistency and ease of understanding (was added in 1.52, _not_ used by core and only honored by some backend ahead of merging the Nav branch).
- 2018/03/12 (1.60) - removed ImGuiCol_CloseButton, ImGuiCol_CloseButtonActive, ImGuiCol_CloseButtonHovered as the closing cross uses regular button colors now.
- 2018/03/08 (1.60) - changed ImFont::DisplayOffset.y to default to 0 instead of +1. Fixed rounding of Ascent/Descent to match TrueType renderer. If you were adding or subtracting to ImFont::DisplayOffset check if your fonts are correctly aligned vertically.
- 2018/03/03 (1.60) - renamed ImGuiStyleVar_Count_ to ImGuiStyleVar_COUNT and ImGuiMouseCursor_Count_ to ImGuiMouseCursor_COUNT for consistency with other public enums.
- 2018/02/18 (1.60) - BeginDragDropSource(): temporarily removed the optional mouse_button=0 parameter because it is not really usable in many situations at the moment.
- 2018/02/16 (1.60) - obsoleted the io.RenderDrawListsFn callback, you can call your graphics engine render function after ImGui::Render(). Use ImGui::GetDrawData() to retrieve the ImDrawData* to display.
- 2018/02/07 (1.60) - reorganized context handling to be more explicit,
- YOU NOW NEED TO CALL ImGui::CreateContext() AT THE BEGINNING OF YOUR APP, AND CALL ImGui::DestroyContext() AT THE END.
- removed Shutdown() function, as DestroyContext() serve this purpose.
- you may pass a ImFontAtlas* pointer to CreateContext() to share a font atlas between contexts. Otherwise CreateContext() will create its own font atlas instance.
- removed allocator parameters from CreateContext(), they are now setup with SetAllocatorFunctions(), and shared by all contexts.
- removed the default global context and font atlas instance, which were confusing for users of DLL reloading and users of multiple contexts.
- 2018/01/31 (1.60) - moved sample TTF files from extra_fonts/ to misc/fonts/. If you loaded files directly from the imgui repo you may need to update your paths.
- 2018/01/11 (1.60) - obsoleted IsAnyWindowHovered() in favor of IsWindowHovered(ImGuiHoveredFlags_AnyWindow). Kept redirection function (will obsolete).
- 2018/01/11 (1.60) - obsoleted IsAnyWindowFocused() in favor of IsWindowFocused(ImGuiFocusedFlags_AnyWindow). Kept redirection function (will obsolete).
- 2018/01/03 (1.60) - renamed ImGuiSizeConstraintCallback to ImGuiSizeCallback, ImGuiSizeConstraintCallbackData to ImGuiSizeCallbackData.
- 2017/12/29 (1.60) - removed CalcItemRectClosestPoint() which was weird and not really used by anyone except demo code. If you need it it's easy to replicate on your side.
- 2017/12/24 (1.53) - renamed the emblematic ShowTestWindow() function to ShowDemoWindow(). Kept redirection function (will obsolete).
- 2017/12/21 (1.53) - ImDrawList: renamed style.AntiAliasedShapes to style.AntiAliasedFill for consistency and as a way to explicitly break code that manipulate those flag at runtime. You can now manipulate ImDrawList::Flags
- 2017/12/21 (1.53) - ImDrawList: removed 'bool anti_aliased = true' final parameter of ImDrawList::AddPolyline() and ImDrawList::AddConvexPolyFilled(). Prefer manipulating ImDrawList::Flags if you need to toggle them during the frame.
- 2017/12/14 (1.53) - using the ImGuiWindowFlags_NoScrollWithMouse flag on a child window forwards the mouse wheel event to the parent window, unless either ImGuiWindowFlags_NoInputs or ImGuiWindowFlags_NoScrollbar are also set.
- 2017/12/13 (1.53) - renamed GetItemsLineHeightWithSpacing() to GetFrameHeightWithSpacing(). Kept redirection function (will obsolete).
- 2017/12/13 (1.53) - obsoleted IsRootWindowFocused() in favor of using IsWindowFocused(ImGuiFocusedFlags_RootWindow). Kept redirection function (will obsolete).
- obsoleted IsRootWindowOrAnyChildFocused() in favor of using IsWindowFocused(ImGuiFocusedFlags_RootAndChildWindows). Kept redirection function (will obsolete).
- 2017/12/12 (1.53) - renamed ImGuiTreeNodeFlags_AllowOverlapMode to ImGuiTreeNodeFlags_AllowItemOverlap. Kept redirection enum (will obsolete).
- 2017/12/10 (1.53) - removed SetNextWindowContentWidth(), prefer using SetNextWindowContentSize(). Kept redirection function (will obsolete).
- 2017/11/27 (1.53) - renamed ImGuiTextBuffer::append() helper to appendf(), appendv() to appendfv(). If you copied the 'Log' demo in your code, it uses appendv() so that needs to be renamed.
- 2017/11/18 (1.53) - Style, Begin: removed ImGuiWindowFlags_ShowBorders window flag. Borders are now fully set up in the ImGuiStyle structure (see e.g. style.FrameBorderSize, style.WindowBorderSize). Use ImGui::ShowStyleEditor() to look them up.
Please note that the style system will keep evolving (hopefully stabilizing in Q1 2018), and so custom styles will probably subtly break over time. It is recommended you use the StyleColorsClassic(), StyleColorsDark(), StyleColorsLight() functions.
- 2017/11/18 (1.53) - Style: removed ImGuiCol_ComboBg in favor of combo boxes using ImGuiCol_PopupBg for consistency.
- 2017/11/18 (1.53) - Style: renamed ImGuiCol_ChildWindowBg to ImGuiCol_ChildBg.
- 2017/11/18 (1.53) - Style: renamed style.ChildWindowRounding to style.ChildRounding, ImGuiStyleVar_ChildWindowRounding to ImGuiStyleVar_ChildRounding.
- 2017/11/02 (1.53) - obsoleted IsRootWindowOrAnyChildHovered() in favor of using IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows);
- 2017/10/24 (1.52) - renamed IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCS/IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCS to IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS/IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS for consistency.
- 2017/10/20 (1.52) - changed IsWindowHovered() default parameters behavior to return false if an item is active in another window (e.g. click-dragging item from another window to this window). You can use the newly introduced IsWindowHovered() flags to requests this specific behavior if you need it.
- 2017/10/20 (1.52) - marked IsItemHoveredRect()/IsMouseHoveringWindow() as obsolete, in favor of using the newly introduced flags for IsItemHovered() and IsWindowHovered(). See https://github.com/ocornut/imgui/issues/1382 for details.
removed the IsItemRectHovered()/IsWindowRectHovered() names introduced in 1.51 since they were merely more consistent names for the two functions we are now obsoleting.
IsItemHoveredRect() --> IsItemHovered(ImGuiHoveredFlags_RectOnly)
IsMouseHoveringAnyWindow() --> IsWindowHovered(ImGuiHoveredFlags_AnyWindow)
IsMouseHoveringWindow() --> IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem) [weird, old behavior]
- 2017/10/17 (1.52) - marked the old 5-parameters version of Begin() as obsolete (still available). Use SetNextWindowSize()+Begin() instead!
- 2017/10/11 (1.52) - renamed AlignFirstTextHeightToWidgets() to AlignTextToFramePadding(). Kept inline redirection function (will obsolete).
- 2017/09/26 (1.52) - renamed ImFont::Glyph to ImFontGlyph. Kept redirection typedef (will obsolete).
- 2017/09/25 (1.52) - removed SetNextWindowPosCenter() because SetNextWindowPos() now has the optional pivot information to do the same and more. Kept redirection function (will obsolete).
- 2017/08/25 (1.52) - io.MousePos needs to be set to ImVec2(-FLT_MAX,-FLT_MAX) when mouse is unavailable/missing. Previously ImVec2(-1,-1) was enough but we now accept negative mouse coordinates. In your backend if you need to support unavailable mouse, make sure to replace "io.MousePos = ImVec2(-1,-1)" with "io.MousePos = ImVec2(-FLT_MAX,-FLT_MAX)".
- 2017/08/22 (1.51) - renamed IsItemHoveredRect() to IsItemRectHovered(). Kept inline redirection function (will obsolete). -> (1.52) use IsItemHovered(ImGuiHoveredFlags_RectOnly)!
- renamed IsMouseHoveringAnyWindow() to IsAnyWindowHovered() for consistency. Kept inline redirection function (will obsolete).
- renamed IsMouseHoveringWindow() to IsWindowRectHovered() for consistency. Kept inline redirection function (will obsolete).
- 2017/08/20 (1.51) - renamed GetStyleColName() to GetStyleColorName() for consistency.
- 2017/08/20 (1.51) - added PushStyleColor(ImGuiCol idx, ImU32 col) overload, which _might_ cause an "ambiguous call" compilation error if you are using ImColor() with implicit cast. Cast to ImU32 or ImVec4 explicily to fix.
- 2017/08/15 (1.51) - marked the weird IMGUI_ONCE_UPON_A_FRAME helper macro as obsolete. prefer using the more explicit ImGuiOnceUponAFrame type.
- 2017/08/15 (1.51) - changed parameter order for BeginPopupContextWindow() from (const char*,int buttons,bool also_over_items) to (const char*,int buttons,bool also_over_items). Note that most calls relied on default parameters completely.
- 2017/08/13 (1.51) - renamed ImGuiCol_Column to ImGuiCol_Separator, ImGuiCol_ColumnHovered to ImGuiCol_SeparatorHovered, ImGuiCol_ColumnActive to ImGuiCol_SeparatorActive. Kept redirection enums (will obsolete).
- 2017/08/11 (1.51) - renamed ImGuiSetCond_Always to ImGuiCond_Always, ImGuiSetCond_Once to ImGuiCond_Once, ImGuiSetCond_FirstUseEver to ImGuiCond_FirstUseEver, ImGuiSetCond_Appearing to ImGuiCond_Appearing. Kept redirection enums (will obsolete).
- 2017/08/09 (1.51) - removed ValueColor() helpers, they are equivalent to calling Text(label) + SameLine() + ColorButton().
- 2017/08/08 (1.51) - removed ColorEditMode() and ImGuiColorEditMode in favor of ImGuiColorEditFlags and parameters to the various Color*() functions. The SetColorEditOptions() allows to initialize default but the user can still change them with right-click context menu.
- changed prototype of 'ColorEdit4(const char* label, float col[4], bool show_alpha = true)' to 'ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0)', where passing flags = 0x01 is a safe no-op (hello dodgy backward compatibility!). - check and run the demo window, under "Color/Picker Widgets", to understand the various new options.
- changed prototype of rarely used 'ColorButton(ImVec4 col, bool small_height = false, bool outline_border = true)' to 'ColorButton(const char* desc_id, ImVec4 col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0, 0))'
- 2017/07/20 (1.51) - removed IsPosHoveringAnyWindow(ImVec2), which was partly broken and misleading. ASSERT + redirect user to io.WantCaptureMouse
- 2017/05/26 (1.50) - removed ImFontConfig::MergeGlyphCenterV in favor of a more multipurpose ImFontConfig::GlyphOffset.
- 2017/05/01 (1.50) - renamed ImDrawList::PathFill() (rarely used directly) to ImDrawList::PathFillConvex() for clarity.
- 2016/11/06 (1.50) - BeginChild(const char*) now applies the stack id to the provided label, consistently with other functions as it should always have been. It shouldn't affect you unless (extremely unlikely) you were appending multiple times to a same child from different locations of the stack id. If that's the case, generate an id with GetID() and use it instead of passing string to BeginChild().
- 2016/10/15 (1.50) - avoid 'void* user_data' parameter to io.SetClipboardTextFn/io.GetClipboardTextFn pointers. We pass io.ClipboardUserData to it.
- 2016/09/25 (1.50) - style.WindowTitleAlign is now a ImVec2 (ImGuiAlign enum was removed). set to (0.5f,0.5f) for horizontal+vertical centering, (0.0f,0.0f) for upper-left, etc.
- 2016/07/30 (1.50) - SameLine(x) with x>0.0f is now relative to left of column/group if any, and not always to left of window. This was sort of always the intent and hopefully, breakage should be minimal.
- 2016/05/12 (1.49) - title bar (using ImGuiCol_TitleBg/ImGuiCol_TitleBgActive colors) isn't rendered over a window background (ImGuiCol_WindowBg color) anymore.
If your TitleBg/TitleBgActive alpha was 1.0f or you are using the default theme it will not affect you, otherwise if <1.0f you need to tweak your custom theme to readjust for the fact that we don't draw a WindowBg background behind the title bar.
This helper function will convert an old TitleBg/TitleBgActive color into a new one with the same visual output, given the OLD color and the OLD WindowBg color:
ImVec4 ConvertTitleBgCol(const ImVec4& win_bg_col, const ImVec4& title_bg_col) { float new_a = 1.0f - ((1.0f - win_bg_col.w) * (1.0f - title_bg_col.w)), k = title_bg_col.w / new_a; return ImVec4((win_bg_col.x * win_bg_col.w + title_bg_col.x) * k, (win_bg_col.y * win_bg_col.w + title_bg_col.y) * k, (win_bg_col.z * win_bg_col.w + title_bg_col.z) * k, new_a); }
If this is confusing, pick the RGB value from title bar from an old screenshot and apply this as TitleBg/TitleBgActive. Or you may just create TitleBgActive from a tweaked TitleBg color.
- 2016/05/07 (1.49) - removed confusing set of GetInternalState(), GetInternalStateSize(), SetInternalState() functions. Now using CreateContext(), DestroyContext(), GetCurrentContext(), SetCurrentContext().
- 2016/05/02 (1.49) - renamed SetNextTreeNodeOpened() to SetNextTreeNodeOpen(), no redirection.
- 2016/05/01 (1.49) - obsoleted old signature of CollapsingHeader(const char* label, const char* str_id = NULL, bool display_frame = true, bool default_open = false) as extra parameters were badly designed and rarely used. You can replace the "default_open = true" flag in new API with CollapsingHeader(label, ImGuiTreeNodeFlags_DefaultOpen).
- 2016/04/26 (1.49) - changed ImDrawList::PushClipRect(ImVec4 rect) to ImDrawList::PushClipRect(Imvec2 min,ImVec2 max,bool intersect_with_current_clip_rect=false). Note that higher-level ImGui::PushClipRect() is preferable because it will clip at logic/widget level, whereas ImDrawList::PushClipRect() only affect your renderer.
- 2016/04/03 (1.48) - removed style.WindowFillAlphaDefault setting which was redundant. Bake default BG alpha inside style.Colors[ImGuiCol_WindowBg] and all other Bg color values. (ref GitHub issue #337).
- 2016/04/03 (1.48) - renamed ImGuiCol_TooltipBg to ImGuiCol_PopupBg, used by popups/menus and tooltips. popups/menus were previously using ImGuiCol_WindowBg. (ref github issue #337)
- 2016/03/21 (1.48) - renamed GetWindowFont() to GetFont(), GetWindowFontSize() to GetFontSize(). Kept inline redirection function (will obsolete).
- 2016/03/02 (1.48) - InputText() completion/history/always callbacks: if you modify the text buffer manually (without using DeleteChars()/InsertChars() helper) you need to maintain the BufTextLen field. added an assert.
- 2016/01/23 (1.48) - fixed not honoring exact width passed to PushItemWidth(), previously it would add extra FramePadding.x*2 over that width. if you had manual pixel-perfect alignment in place it might affect you.
- 2015/12/27 (1.48) - fixed ImDrawList::AddRect() which used to render a rectangle 1 px too large on each axis.
- 2015/12/04 (1.47) - renamed Color() helpers to ValueColor() - dangerously named, rarely used and probably to be made obsolete.
- 2015/08/29 (1.45) - with the addition of horizontal scrollbar we made various fixes to inconsistencies with dealing with cursor position.
GetCursorPos()/SetCursorPos() functions now include the scrolled amount. It shouldn't affect the majority of users, but take note that SetCursorPosX(100.0f) puts you at +100 from the starting x position which may include scrolling, not at +100 from the window left side.
GetContentRegionMax()/GetWindowContentRegionMin()/GetWindowContentRegionMax() functions allow include the scrolled amount. Typically those were used in cases where no scrolling would happen so it may not be a problem, but watch out!
- 2015/08/29 (1.45) - renamed style.ScrollbarWidth to style.ScrollbarSize
- 2015/08/05 (1.44) - split imgui.cpp into extra files: imgui_demo.cpp imgui_draw.cpp imgui_internal.h that you need to add to your project.
- 2015/07/18 (1.44) - fixed angles in ImDrawList::PathArcTo(), PathArcToFast() (introduced in 1.43) being off by an extra PI for no justifiable reason
- 2015/07/14 (1.43) - add new ImFontAtlas::AddFont() API. For the old AddFont***, moved the 'font_no' parameter of ImFontAtlas::AddFont** functions to the ImFontConfig structure.
you need to render your textured triangles with bilinear filtering to benefit from sub-pixel positioning of text.
- 2015/07/08 (1.43) - switched rendering data to use indexed rendering. this is saving a fair amount of CPU/GPU and enables us to get anti-aliasing for a marginal cost.
this necessary change will break your rendering function! the fix should be very easy. sorry for that :(
- if you are using a vanilla copy of one of the imgui_impl_XXX.cpp provided in the example, you just need to update your copy and you can ignore the rest.
- the signature of the io.RenderDrawListsFn handler has changed!
old: ImGui_XXXX_RenderDrawLists(ImDrawList** const cmd_lists, int cmd_lists_count)
new: ImGui_XXXX_RenderDrawLists(ImDrawData* draw_data).
parameters: 'cmd_lists' becomes 'draw_data->CmdLists', 'cmd_lists_count' becomes 'draw_data->CmdListsCount'
ImDrawList: 'commands' becomes 'CmdBuffer', 'vtx_buffer' becomes 'VtxBuffer', 'IdxBuffer' is new.
ImDrawCmd: 'vtx_count' becomes 'ElemCount', 'clip_rect' becomes 'ClipRect', 'user_callback' becomes 'UserCallback', 'texture_id' becomes 'TextureId'.
- each ImDrawList now contains both a vertex buffer and an index buffer. For each command, render ElemCount/3 triangles using indices from the index buffer.
- if you REALLY cannot render indexed primitives, you can call the draw_data->DeIndexAllBuffers() method to de-index the buffers. This is slow and a waste of CPU/GPU. Prefer using indexed rendering!
- refer to code in the examples/ folder or ask on the GitHub if you are unsure of how to upgrade. please upgrade!
- 2015/07/10 (1.43) - changed SameLine() parameters from int to float.
- 2015/07/02 (1.42) - renamed SetScrollPosHere() to SetScrollFromCursorPos(). Kept inline redirection function (will obsolete).
- 2015/07/02 (1.42) - renamed GetScrollPosY() to GetScrollY(). Necessary to reduce confusion along with other scrolling functions, because positions (e.g. cursor position) are not equivalent to scrolling amount.
- 2015/06/14 (1.41) - changed ImageButton() default bg_col parameter from (0,0,0,1) (black) to (0,0,0,0) (transparent) - makes a difference when texture have transparence
- 2015/06/14 (1.41) - changed Selectable() API from (label, selected, size) to (label, selected, flags, size). Size override should have been rarely used. Sorry!
- 2015/05/31 (1.40) - renamed GetWindowCollapsed() to IsWindowCollapsed() for consistency. Kept inline redirection function (will obsolete).
- 2015/05/31 (1.40) - renamed IsRectClipped() to IsRectVisible() for consistency. Note that return value is opposite! Kept inline redirection function (will obsolete).
- 2015/05/27 (1.40) - removed the third 'repeat_if_held' parameter from Button() - sorry! it was rarely used and inconsistent. Use PushButtonRepeat(true) / PopButtonRepeat() to enable repeat on desired buttons.
- 2015/05/11 (1.40) - changed BeginPopup() API, takes a string identifier instead of a bool. ImGui needs to manage the open/closed state of popups. Call OpenPopup() to actually set the "open" state of a popup. BeginPopup() returns true if the popup is opened.
- 2015/05/03 (1.40) - removed style.AutoFitPadding, using style.WindowPadding makes more sense (the default values were already the same).
- 2015/04/13 (1.38) - renamed IsClipped() to IsRectClipped(). Kept inline redirection function until 1.50.
- 2015/04/09 (1.38) - renamed ImDrawList::AddArc() to ImDrawList::AddArcFast() for compatibility with future API
- 2015/04/03 (1.38) - removed ImGuiCol_CheckHovered, ImGuiCol_CheckActive, replaced with the more general ImGuiCol_FrameBgHovered, ImGuiCol_FrameBgActive.
- 2014/04/03 (1.38) - removed support for passing -FLT_MAX..+FLT_MAX as the range for a SliderFloat(). Use DragFloat() or Inputfloat() instead.
- 2015/03/17 (1.36) - renamed GetItemBoxMin()/GetItemBoxMax()/IsMouseHoveringBox() to GetItemRectMin()/GetItemRectMax()/IsMouseHoveringRect(). Kept inline redirection function until 1.50.
- 2015/03/15 (1.36) - renamed style.TreeNodeSpacing to style.IndentSpacing, ImGuiStyleVar_TreeNodeSpacing to ImGuiStyleVar_IndentSpacing
- 2015/03/13 (1.36) - renamed GetWindowIsFocused() to IsWindowFocused(). Kept inline redirection function until 1.50.
- 2015/03/08 (1.35) - renamed style.ScrollBarWidth to style.ScrollbarWidth (casing)
- 2015/02/27 (1.34) - renamed OpenNextNode(bool) to SetNextTreeNodeOpened(bool, ImGuiSetCond). Kept inline redirection function until 1.50.
- 2015/02/27 (1.34) - renamed ImGuiSetCondition_*** to ImGuiSetCond_***, and _FirstUseThisSession becomes _Once.
- 2015/02/11 (1.32) - changed text input callback ImGuiTextEditCallback return type from void-->int. reserved for future use, return 0 for now.
- 2015/02/10 (1.32) - renamed GetItemWidth() to CalcItemWidth() to clarify its evolving behavior
- 2015/02/08 (1.31) - renamed GetTextLineSpacing() to GetTextLineHeightWithSpacing()
- 2015/02/01 (1.31) - removed IO.MemReallocFn (unused)
- 2015/01/19 (1.30) - renamed ImGuiStorage::GetIntPtr()/GetFloatPtr() to GetIntRef()/GetIntRef() because Ptr was conflicting with actual pointer storage functions.
- 2015/01/11 (1.30) - big font/image API change! now loads TTF file. allow for multiple fonts. no need for a PNG loader.
- 2015/01/11 (1.30) - removed GetDefaultFontData(). uses io.Fonts->GetTextureData*() API to retrieve uncompressed pixels.
- old: const void* png_data; unsigned int png_size; ImGui::GetDefaultFontData(NULL, NULL, &png_data, &png_size); [..Upload texture to GPU..];
- new: unsigned char* pixels; int width, height; io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height); [..Upload texture to GPU..]; io.Fonts->SetTexID(YourTexIdentifier);
you now have more flexibility to load multiple TTF fonts and manage the texture buffer for internal needs. It is now recommended that you sample the font texture with bilinear interpolation.
- 2015/01/11 (1.30) - added texture identifier in ImDrawCmd passed to your render function (we can now render images). make sure to call io.Fonts->SetTexID()
- 2015/01/11 (1.30) - removed IO.PixelCenterOffset (unnecessary, can be handled in user projection matrix)
- 2015/01/11 (1.30) - removed ImGui::IsItemFocused() in favor of ImGui::IsItemActive() which handles all widgets
- 2014/12/10 (1.18) - removed SetNewWindowDefaultPos() in favor of new generic API SetNextWindowPos(pos, ImGuiSetCondition_FirstUseEver)
- 2014/11/28 (1.17) - moved IO.Font*** options to inside the IO.Font-> structure (FontYOffset, FontTexUvForWhite, FontBaseScale, FontFallbackGlyph)
- 2014/11/26 (1.17) - reworked syntax of IMGUI_ONCE_UPON_A_FRAME helper macro to increase compiler compatibility
- 2014/11/07 (1.15) - renamed IsHovered() to IsItemHovered()
- 2014/10/02 (1.14) - renamed IMGUI_INCLUDE_IMGUI_USER_CPP to IMGUI_INCLUDE_IMGUI_USER_INL and imgui_user.cpp to imgui_user.inl (more IDE friendly)
- 2014/09/25 (1.13) - removed 'text_end' parameter from IO.SetClipboardTextFn (the string is now always zero-terminated for simplicity)
- 2014/09/24 (1.12) - renamed SetFontScale() to SetWindowFontScale()
- 2014/09/24 (1.12) - moved IM_MALLOC/IM_REALLOC/IM_FREE preprocessor defines to IO.MemAllocFn/IO.MemReallocFn/IO.MemFreeFn
- 2014/08/30 (1.09) - removed IO.FontHeight (now computed automatically)
- 2014/08/30 (1.09) - moved IMGUI_FONT_TEX_UV_FOR_WHITE preprocessor define to IO.FontTexUvForWhite
- 2014/08/28 (1.09) - changed the behavior of IO.PixelCenterOffset following various rendering fixes
FREQUENTLY ASKED QUESTIONS (FAQ)
================================
Read all answers online:
https://www.dearimgui.org/faq or https://github.com/ocornut/imgui/blob/master/docs/FAQ.md (same url)
Read all answers locally (with a text editor or ideally a Markdown viewer):
docs/FAQ.md
Some answers are copied down here to facilitate searching in code.
Q&A: Basics
===========
Q: Where is the documentation?
A: This library is poorly documented at the moment and expects the user to be acquainted with C/C++.
- Run the examples/ and explore them.
- See demo code in imgui_demo.cpp and particularly the ImGui::ShowDemoWindow() function.
- The demo covers most features of Dear ImGui, so you can read the code and see its output.
- See documentation and comments at the top of imgui.cpp + effectively imgui.h.
- Dozens of standalone example applications using e.g. OpenGL/DirectX are provided in the
examples/ folder to explain how to integrate Dear ImGui with your own engine/application.
- The Wiki (https://github.com/ocornut/imgui/wiki) has many resources and links.
- The Glossary (https://github.com/ocornut/imgui/wiki/Glossary) page also may be useful.
- Your programming IDE is your friend, find the type or function declaration to find comments
associated with it.
Q: What is this library called?
Q: Which version should I get?
>> This library is called "Dear ImGui", please don't call it "ImGui" :)
>> See https://www.dearimgui.org/faq for details.
Q&A: Integration
================
Q: How to get started?
A: Read 'PROGRAMMER GUIDE' above. Read examples/README.txt.
Q: How can I tell whether to dispatch mouse/keyboard to Dear ImGui or my application?
A: You should read the 'io.WantCaptureMouse', 'io.WantCaptureKeyboard' and 'io.WantTextInput' flags!
>> See https://www.dearimgui.org/faq for a fully detailed answer. You really want to read this.
Q. How can I enable keyboard controls?
Q: How can I use this without a mouse, without a keyboard or without a screen? (gamepad, input share, remote display)
Q: I integrated Dear ImGui in my engine and little squares are showing instead of text...
Q: I integrated Dear ImGui in my engine and some elements are clipping or disappearing when I move windows around...
Q: I integrated Dear ImGui in my engine and some elements are displaying outside their expected windows boundaries...
>> See https://www.dearimgui.org/faq
Q&A: Usage
----------
Q: Why is my widget not reacting when I click on it?
Q: How can I have widgets with an empty label?
Q: How can I have multiple widgets with the same label?
Q: How can I display an image? What is ImTextureID, how does it works?
Q: How can I use my own math types instead of ImVec2/ImVec4?
Q: How can I interact with standard C++ types (such as std::string and std::vector)?
Q: How can I display custom shapes? (using low-level ImDrawList API)
>> See https://www.dearimgui.org/faq
Q&A: Fonts, Text
================
Q: How should I handle DPI in my application?
Q: How can I load a different font than the default?
Q: How can I easily use icons in my application?
Q: How can I load multiple fonts?
Q: How can I display and input non-Latin characters such as Chinese, Japanese, Korean, Cyrillic?
>> See https://www.dearimgui.org/faq and https://github.com/ocornut/imgui/edit/master/docs/FONTS.md
Q&A: Concerns
=============
Q: Who uses Dear ImGui?
Q: Can you create elaborate/serious tools with Dear ImGui?
Q: Can you reskin the look of Dear ImGui?
Q: Why using C++ (as opposed to C)?
>> See https://www.dearimgui.org/faq
Q&A: Community
==============
Q: How can I help?
A: - Businesses: please reach out to "contact AT dearimgui.com" if you work in a place using Dear ImGui!
We can discuss ways for your company to fund development via invoiced technical support, maintenance or sponsoring contacts.
This is among the most useful thing you can do for Dear ImGui. With increased funding, we can hire more people working on this project.
- Individuals: you can support continued development via PayPal donations. See README.
- If you are experienced with Dear ImGui and C++, look at the GitHub issues, look at the Wiki, read docs/TODO.txt
and see how you want to help and can help!
- Disclose your usage of Dear ImGui via a dev blog post, a tweet, a screenshot, a mention somewhere etc.
You may post screenshot or links in the gallery threads. Visuals are ideal as they inspire other programmers.
But even without visuals, disclosing your use of dear imgui helps the library grow credibility, and help other teams and programmers with taking decisions.
- If you have issues or if you need to hack into the library, even if you don't expect any support it is useful that you share your issues (on GitHub or privately).
*/
//-------------------------------------------------------------------------
// [SECTION] INCLUDES
//-------------------------------------------------------------------------
#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS)
#define _CRT_SECURE_NO_WARNINGS
#endif
#include "imgui.h"
#ifndef IMGUI_DISABLE
#ifndef IMGUI_DEFINE_MATH_OPERATORS
#define IMGUI_DEFINE_MATH_OPERATORS
#endif
#include "imgui_internal.h"
// System includes
#include <ctype.h> // toupper
#include <stdio.h> // vsnprintf, sscanf, printf
#if defined(_MSC_VER) && _MSC_VER <= 1500 // MSVC 2008 or earlier
#include <stddef.h> // intptr_t
#else
#include <stdint.h> // intptr_t
#endif
// [Windows] OS specific includes (optional)
#if defined(_WIN32) && defined(IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS) && defined(IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS) && defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS)
#define IMGUI_DISABLE_WIN32_FUNCTIONS
#endif
#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS)
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#ifndef NOMINMAX
#define NOMINMAX
#endif
#ifndef __MINGW32__
#include <Windows.h> // _wfopen, OpenClipboard
#else
#include <windows.h>
#endif
#if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_APP) // UWP doesn't have all Win32 functions
#define IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS
#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS
#endif
#endif
// [Apple] OS specific includes
#if defined(__APPLE__)
#include <TargetConditionals.h>
#endif
// Visual Studio warnings
#ifdef _MSC_VER
#pragma warning (disable: 4127) // condition expression is constant
#pragma warning (disable: 4201) // nonstandard extension used: nameless struct/union
#pragma warning (disable: 4505) // unreferenced local function has been removed (stb stuff)
#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen
#if defined(_MSC_VER) && _MSC_VER >= 1922 // MSVC 2019 16.2 or later
#pragma warning (disable: 5054) // operator '|': deprecated between enumerations of different types
#endif
#pragma warning (disable: 26451) // [Static Analyzer] Arithmetic overflow : Using operator 'xxx' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator 'xxx' to avoid overflow(io.2).
#pragma warning (disable: 26495) // [Static Analyzer] Variable 'XXX' is uninitialized. Always initialize a member variable (type.6).
#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3).
#endif
// Clang/GCC warnings with -Weverything
#if defined(__clang__)
#if __has_warning("-Wunknown-warning-option")
#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' // not all warnings are known by all Clang versions and they tend to be rename-happy.. so ignoring warnings triggers new warnings on some configuration. Great!
#endif
#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx'
#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast // yes, they are more terse.
#pragma clang diagnostic ignored "-Wfloat-equal" // warning: comparing floating point with == or != is unsafe // storing and comparing against same constants (typically 0.0f) is ok.
#pragma clang diagnostic ignored "-Wformat-nonliteral" // warning: format string is not a string literal // passing non-literal to vsnformat(). yes, user passing incorrect format strings can crash the code.
#pragma clang diagnostic ignored "-Wexit-time-destructors" // warning: declaration requires an exit-time destructor // exit-time destruction order is undefined. if MemFree() leads to users code that has been disabled before exit it might cause problems. ImGui coding style welcomes static/globals.
#pragma clang diagnostic ignored "-Wglobal-constructors" // warning: declaration requires a global destructor // similar to above, not sure what the exact difference is.
#pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness
#pragma clang diagnostic ignored "-Wformat-pedantic" // warning: format specifies type 'void *' but the argument has type 'xxxx *' // unreasonable, would lead to casting every %p arg to void*. probably enabled by -pedantic.
#pragma clang diagnostic ignored "-Wint-to-void-pointer-cast" // warning: cast to 'void *' from smaller integer type 'int'
#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning: zero as null pointer constant // some standard header variations use #define NULL 0
#pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double.
#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion" // warning: implicit conversion from 'xxx' to 'float' may lose precision
#elif defined(__GNUC__)
// We disable -Wpragmas because GCC doesn't provide an has_warning equivalent and some forks/patches may not following the warning/version association.
#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind
#pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used
#pragma GCC diagnostic ignored "-Wint-to-pointer-cast" // warning: cast to pointer from integer of different size
#pragma GCC diagnostic ignored "-Wformat" // warning: format '%p' expects argument of type 'void*', but argument 6 has type 'ImGuiWindow*'
#pragma GCC diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function
#pragma GCC diagnostic ignored "-Wconversion" // warning: conversion to 'xxxx' from 'xxxx' may alter its value
#pragma GCC diagnostic ignored "-Wformat-nonliteral" // warning: format not a string literal, format string not checked
#pragma GCC diagnostic ignored "-Wstrict-overflow" // warning: assuming signed overflow does not occur when assuming that (X - c) > X is always false
#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead
#endif
// Debug options
#define IMGUI_DEBUG_NAV_SCORING 0 // Display navigation scoring preview when hovering items. Display last moving direction matches when holding CTRL
#define IMGUI_DEBUG_NAV_RECTS 0 // Display the reference navigation rectangle for each window
#define IMGUI_DEBUG_INI_SETTINGS 0 // Save additional comments in .ini file (particularly helps for Docking, but makes saving slower)
// When using CTRL+TAB (or Gamepad Square+L/R) we delay the visual a little in order to reduce visual noise doing a fast switch.
static const float NAV_WINDOWING_HIGHLIGHT_DELAY = 0.20f; // Time before the highlight and screen dimming starts fading in
static const float NAV_WINDOWING_LIST_APPEAR_DELAY = 0.15f; // Time before the window list starts to appear
// Window resizing from edges (when io.ConfigWindowsResizeFromEdges = true and ImGuiBackendFlags_HasMouseCursors is set in io.BackendFlags by backend)
static const float WINDOWS_HOVER_PADDING = 4.0f; // Extend outside window for hovering/resizing (maxxed with TouchPadding) and inside windows for borders. Affect FindHoveredWindow().
static const float WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER = 0.04f; // Reduce visual noise by only highlighting the border after a certain time.
static const float WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER = 2.00f; // Lock scrolled window (so it doesn't pick child windows that are scrolling through) for a certain time, unless mouse moved.
//-------------------------------------------------------------------------
// [SECTION] FORWARD DECLARATIONS
//-------------------------------------------------------------------------
static void SetCurrentWindow(ImGuiWindow* window);
static void FindHoveredWindow();
static ImGuiWindow* CreateNewWindow(const char* name, ImGuiWindowFlags flags);
static ImVec2 CalcNextScrollFromScrollTargetAndClamp(ImGuiWindow* window);
static void AddDrawListToDrawData(ImVector<ImDrawList*>* out_list, ImDrawList* draw_list);
static void AddWindowToSortBuffer(ImVector<ImGuiWindow*>* out_sorted_windows, ImGuiWindow* window);
// Settings
static void WindowSettingsHandler_ClearAll(ImGuiContext*, ImGuiSettingsHandler*);
static void* WindowSettingsHandler_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* name);
static void WindowSettingsHandler_ReadLine(ImGuiContext*, ImGuiSettingsHandler*, void* entry, const char* line);
static void WindowSettingsHandler_ApplyAll(ImGuiContext*, ImGuiSettingsHandler*);
static void WindowSettingsHandler_WriteAll(ImGuiContext*, ImGuiSettingsHandler*, ImGuiTextBuffer* buf);
// Platform Dependents default implementation for IO functions
static const char* GetClipboardTextFn_DefaultImpl(void* user_data);
static void SetClipboardTextFn_DefaultImpl(void* user_data, const char* text);
static void ImeSetInputScreenPosFn_DefaultImpl(int x, int y);
namespace ImGui
{
// Navigation
static void NavUpdate();
static void NavUpdateWindowing();
static void NavUpdateWindowingOverlay();
static void NavUpdateMoveResult();
static void NavUpdateInitResult();
static float NavUpdatePageUpPageDown();
static inline void NavUpdateAnyRequestFlag();
static void NavEndFrame();
static bool NavScoreItem(ImGuiNavItemData* result, ImRect cand);
static void NavApplyItemToResult(ImGuiNavItemData* result, ImGuiWindow* window, ImGuiID id, const ImRect& nav_bb_rel);
static void NavProcessItem(ImGuiWindow* window, const ImRect& nav_bb, ImGuiID id);
static ImVec2 NavCalcPreferredRefPos();
static void NavSaveLastChildNavWindowIntoParent(ImGuiWindow* nav_window);
static ImGuiWindow* NavRestoreLastChildNavWindow(ImGuiWindow* window);
static void NavRestoreLayer(ImGuiNavLayer layer);
static int FindWindowFocusIndex(ImGuiWindow* window);
// Error Checking
static void ErrorCheckNewFrameSanityChecks();
static void ErrorCheckEndFrameSanityChecks();
// Misc
static void UpdateSettings();
static void UpdateMouseInputs();
static void UpdateMouseWheel();
static void UpdateTabFocus();
static void UpdateDebugToolItemPicker();
static bool UpdateWindowManualResize(ImGuiWindow* window, const ImVec2& size_auto_fit, int* border_held, int resize_grip_count, ImU32 resize_grip_col[4], const ImRect& visibility_rect);
static void RenderWindowOuterBorders(ImGuiWindow* window);
static void RenderWindowDecorations(ImGuiWindow* window, const ImRect& title_bar_rect, bool title_bar_is_highlight, int resize_grip_count, const ImU32 resize_grip_col[4], float resize_grip_draw_size);
static void RenderWindowTitleBarContents(ImGuiWindow* window, const ImRect& title_bar_rect, const char* name, bool* p_open);
// Viewports
static void UpdateViewportsNewFrame();
}
//-----------------------------------------------------------------------------
// [SECTION] CONTEXT AND MEMORY ALLOCATORS
//-----------------------------------------------------------------------------
// DLL users:
// - Heaps and globals are not shared across DLL boundaries!
// - You will need to call SetCurrentContext() + SetAllocatorFunctions() for each static/DLL boundary you are calling from.
// - Same applies for hot-reloading mechanisms that are reliant on reloading DLL (note that many hot-reloading mechanisms work without DLL).
// - Using Dear ImGui via a shared library is not recommended, because of function call overhead and because we don't guarantee backward nor forward ABI compatibility.
// - Confused? In a debugger: add GImGui to your watch window and notice how its value changes depending on your current location (which DLL boundary you are in).
// Current context pointer. Implicitly used by all Dear ImGui functions. Always assumed to be != NULL.
// - ImGui::CreateContext() will automatically set this pointer if it is NULL.
// Change to a different context by calling ImGui::SetCurrentContext().
// - Important: Dear ImGui functions are not thread-safe because of this pointer.
// If you want thread-safety to allow N threads to access N different contexts:
// - Change this variable to use thread local storage so each thread can refer to a different context, in your imconfig.h:
// struct ImGuiContext;
// extern thread_local ImGuiContext* MyImGuiTLS;
// #define GImGui MyImGuiTLS
// And then define MyImGuiTLS in one of your cpp files. Note that thread_local is a C++11 keyword, earlier C++ uses compiler-specific keyword.
// - Future development aims to make this context pointer explicit to all calls. Also read https://github.com/ocornut/imgui/issues/586
// - If you need a finite number of contexts, you may compile and use multiple instances of the ImGui code from a different namespace.
// - DLL users: read comments above.
#ifndef GImGui
ImGuiContext* GImGui = NULL;
#endif
// Memory Allocator functions. Use SetAllocatorFunctions() to change them.
// - You probably don't want to modify that mid-program, and if you use global/static e.g. ImVector<> instances you may need to keep them accessible during program destruction.
// - DLL users: read comments above.
#ifndef IMGUI_DISABLE_DEFAULT_ALLOCATORS
static void* MallocWrapper(size_t size, void* user_data) { IM_UNUSED(user_data); return malloc(size); }
static void FreeWrapper(void* ptr, void* user_data) { IM_UNUSED(user_data); free(ptr); }
#else
static void* MallocWrapper(size_t size, void* user_data) { IM_UNUSED(user_data); IM_UNUSED(size); IM_ASSERT(0); return NULL; }
static void FreeWrapper(void* ptr, void* user_data) { IM_UNUSED(user_data); IM_UNUSED(ptr); IM_ASSERT(0); }
#endif
static ImGuiMemAllocFunc GImAllocatorAllocFunc = MallocWrapper;
static ImGuiMemFreeFunc GImAllocatorFreeFunc = FreeWrapper;
static void* GImAllocatorUserData = NULL;
//-----------------------------------------------------------------------------
// [SECTION] USER FACING STRUCTURES (ImGuiStyle, ImGuiIO)
//-----------------------------------------------------------------------------
ImGuiStyle::ImGuiStyle()
{
Alpha = 1.0f; // Global alpha applies to everything in ImGui
WindowPadding = ImVec2(8,8); // Padding within a window
WindowRounding = 0.0f; // Radius of window corners rounding. Set to 0.0f to have rectangular windows. Large values tend to lead to variety of artifacts and are not recommended.
WindowBorderSize = 1.0f; // Thickness of border around windows. Generally set to 0.0f or 1.0f. Other values not well tested.
WindowMinSize = ImVec2(32,32); // Minimum window size
WindowTitleAlign = ImVec2(0.0f,0.5f);// Alignment for title bar text
WindowMenuButtonPosition= ImGuiDir_Left; // Position of the collapsing/docking button in the title bar (left/right). Defaults to ImGuiDir_Left.
ChildRounding = 0.0f; // Radius of child window corners rounding. Set to 0.0f to have rectangular child windows
ChildBorderSize = 1.0f; // Thickness of border around child windows. Generally set to 0.0f or 1.0f. Other values not well tested.
PopupRounding = 0.0f; // Radius of popup window corners rounding. Set to 0.0f to have rectangular child windows
PopupBorderSize = 1.0f; // Thickness of border around popup or tooltip windows. Generally set to 0.0f or 1.0f. Other values not well tested.
FramePadding = ImVec2(4,3); // Padding within a framed rectangle (used by most widgets)
FrameRounding = 0.0f; // Radius of frame corners rounding. Set to 0.0f to have rectangular frames (used by most widgets).
FrameBorderSize = 0.0f; // Thickness of border around frames. Generally set to 0.0f or 1.0f. Other values not well tested.
ItemSpacing = ImVec2(8,4); // Horizontal and vertical spacing between widgets/lines
ItemInnerSpacing = ImVec2(4,4); // Horizontal and vertical spacing between within elements of a composed widget (e.g. a slider and its label)
CellPadding = ImVec2(4,2); // Padding within a table cell
TouchExtraPadding = ImVec2(0,0); // Expand reactive bounding box for touch-based system where touch position is not accurate enough. Unfortunately we don't sort widgets so priority on overlap will always be given to the first widget. So don't grow this too much!
IndentSpacing = 21.0f; // Horizontal spacing when e.g. entering a tree node. Generally == (FontSize + FramePadding.x*2).
ColumnsMinSpacing = 6.0f; // Minimum horizontal spacing between two columns. Preferably > (FramePadding.x + 1).
ScrollbarSize = 14.0f; // Width of the vertical scrollbar, Height of the horizontal scrollbar
ScrollbarRounding = 9.0f; // Radius of grab corners rounding for scrollbar
GrabMinSize = 10.0f; // Minimum width/height of a grab box for slider/scrollbar
GrabRounding = 0.0f; // Radius of grabs corners rounding. Set to 0.0f to have rectangular slider grabs.
LogSliderDeadzone = 4.0f; // The size in pixels of the dead-zone around zero on logarithmic sliders that cross zero.
TabRounding = 4.0f; // Radius of upper corners of a tab. Set to 0.0f to have rectangular tabs.
TabBorderSize = 0.0f; // Thickness of border around tabs.
TabMinWidthForCloseButton = 0.0f; // Minimum width for close button to appears on an unselected tab when hovered. Set to 0.0f to always show when hovering, set to FLT_MAX to never show close button unless selected.
ColorButtonPosition = ImGuiDir_Right; // Side of the color button in the ColorEdit4 widget (left/right). Defaults to ImGuiDir_Right.
ButtonTextAlign = ImVec2(0.5f,0.5f);// Alignment of button text when button is larger than text.
SelectableTextAlign = ImVec2(0.0f,0.0f);// Alignment of selectable text. Defaults to (0.0f, 0.0f) (top-left aligned). It's generally important to keep this left-aligned if you want to lay multiple items on a same line.
DisplayWindowPadding = ImVec2(19,19); // Window position are clamped to be visible within the display area or monitors by at least this amount. Only applies to regular windows.
DisplaySafeAreaPadding = ImVec2(3,3); // If you cannot see the edge of your screen (e.g. on a TV) increase the safe area padding. Covers popups/tooltips as well regular windows.
MouseCursorScale = 1.0f; // Scale software rendered mouse cursor (when io.MouseDrawCursor is enabled). May be removed later.
AntiAliasedLines = true; // Enable anti-aliased lines/borders. Disable if you are really tight on CPU/GPU.
AntiAliasedLinesUseTex = true; // Enable anti-aliased lines/borders using textures where possible. Require backend to render with bilinear filtering.
AntiAliasedFill = true; // Enable anti-aliased filled shapes (rounded rectangles, circles, etc.).
CurveTessellationTol = 1.25f; // Tessellation tolerance when using PathBezierCurveTo() without a specific number of segments. Decrease for highly tessellated curves (higher quality, more polygons), increase to reduce quality.
CircleTessellationMaxError = 0.30f; // Maximum error (in pixels) allowed when using AddCircle()/AddCircleFilled() or drawing rounded corner rectangles with no explicit segment count specified. Decrease for higher quality but more geometry.
// Default theme
ImGui::StyleColorsDark(this);
}
// To scale your entire UI (e.g. if you want your app to use High DPI or generally be DPI aware) you may use this helper function. Scaling the fonts is done separately and is up to you.
// Important: This operation is lossy because we round all sizes to integer. If you need to change your scale multiples, call this over a freshly initialized ImGuiStyle structure rather than scaling multiple times.
void ImGuiStyle::ScaleAllSizes(float scale_factor)
{
WindowPadding = ImFloor(WindowPadding * scale_factor);
WindowRounding = ImFloor(WindowRounding * scale_factor);
WindowMinSize = ImFloor(WindowMinSize * scale_factor);
ChildRounding = ImFloor(ChildRounding * scale_factor);
PopupRounding = ImFloor(PopupRounding * scale_factor);
FramePadding = ImFloor(FramePadding * scale_factor);
FrameRounding = ImFloor(FrameRounding * scale_factor);
ItemSpacing = ImFloor(ItemSpacing * scale_factor);
ItemInnerSpacing = ImFloor(ItemInnerSpacing * scale_factor);
CellPadding = ImFloor(CellPadding * scale_factor);
TouchExtraPadding = ImFloor(TouchExtraPadding * scale_factor);
IndentSpacing = ImFloor(IndentSpacing * scale_factor);
ColumnsMinSpacing = ImFloor(ColumnsMinSpacing * scale_factor);
ScrollbarSize = ImFloor(ScrollbarSize * scale_factor);
ScrollbarRounding = ImFloor(ScrollbarRounding * scale_factor);
GrabMinSize = ImFloor(GrabMinSize * scale_factor);
GrabRounding = ImFloor(GrabRounding * scale_factor);
LogSliderDeadzone = ImFloor(LogSliderDeadzone * scale_factor);
TabRounding = ImFloor(TabRounding * scale_factor);
TabMinWidthForCloseButton = (TabMinWidthForCloseButton != FLT_MAX) ? ImFloor(TabMinWidthForCloseButton * scale_factor) : FLT_MAX;
DisplayWindowPadding = ImFloor(DisplayWindowPadding * scale_factor);
DisplaySafeAreaPadding = ImFloor(DisplaySafeAreaPadding * scale_factor);
MouseCursorScale = ImFloor(MouseCursorScale * scale_factor);
}
ImGuiIO::ImGuiIO()
{
// Most fields are initialized with zero
memset(this, 0, sizeof(*this));
IM_ASSERT(IM_ARRAYSIZE(ImGuiIO::MouseDown) == ImGuiMouseButton_COUNT && IM_ARRAYSIZE(ImGuiIO::MouseClicked) == ImGuiMouseButton_COUNT); // Our pre-C++11 IM_STATIC_ASSERT() macros triggers warning on modern compilers so we don't use it here.
// Settings
ConfigFlags = ImGuiConfigFlags_None;
BackendFlags = ImGuiBackendFlags_None;
DisplaySize = ImVec2(-1.0f, -1.0f);
DeltaTime = 1.0f / 60.0f;
IniSavingRate = 5.0f;
IniFilename = "imgui.ini";
LogFilename = "imgui_log.txt";
MouseDoubleClickTime = 0.30f;
MouseDoubleClickMaxDist = 6.0f;
for (int i = 0; i < ImGuiKey_COUNT; i++)
KeyMap[i] = -1;
KeyRepeatDelay = 0.275f;
KeyRepeatRate = 0.050f;
UserData = NULL;
Fonts = NULL;
FontGlobalScale = 1.0f;
FontDefault = NULL;
FontAllowUserScaling = false;
DisplayFramebufferScale = ImVec2(1.0f, 1.0f);
// Miscellaneous options
MouseDrawCursor = false;
#ifdef __APPLE__
ConfigMacOSXBehaviors = true; // Set Mac OS X style defaults based on __APPLE__ compile time flag
#else
ConfigMacOSXBehaviors = false;
#endif
ConfigInputTextCursorBlink = true;
ConfigWindowsResizeFromEdges = true;
ConfigWindowsMoveFromTitleBarOnly = false;
ConfigMemoryCompactTimer = 60.0f;
// Platform Functions
BackendPlatformName = BackendRendererName = NULL;
BackendPlatformUserData = BackendRendererUserData = BackendLanguageUserData = NULL;
GetClipboardTextFn = GetClipboardTextFn_DefaultImpl; // Platform dependent default implementations
SetClipboardTextFn = SetClipboardTextFn_DefaultImpl;
ClipboardUserData = NULL;
ImeSetInputScreenPosFn = ImeSetInputScreenPosFn_DefaultImpl;
ImeWindowHandle = NULL;
// Input (NB: we already have memset zero the entire structure!)
MousePos = ImVec2(-FLT_MAX, -FLT_MAX);
MousePosPrev = ImVec2(-FLT_MAX, -FLT_MAX);
MouseDragThreshold = 6.0f;
for (int i = 0; i < IM_ARRAYSIZE(MouseDownDuration); i++) MouseDownDuration[i] = MouseDownDurationPrev[i] = -1.0f;
for (int i = 0; i < IM_ARRAYSIZE(KeysDownDuration); i++) KeysDownDuration[i] = KeysDownDurationPrev[i] = -1.0f;
for (int i = 0; i < IM_ARRAYSIZE(NavInputsDownDuration); i++) NavInputsDownDuration[i] = -1.0f;
}
// Pass in translated ASCII characters for text input.
// - with glfw you can get those from the callback set in glfwSetCharCallback()
// - on Windows you can get those using ToAscii+keyboard state, or via the WM_CHAR message
void ImGuiIO::AddInputCharacter(unsigned int c)
{
if (c != 0)
InputQueueCharacters.push_back(c <= IM_UNICODE_CODEPOINT_MAX ? (ImWchar)c : IM_UNICODE_CODEPOINT_INVALID);
}
// UTF16 strings use surrogate pairs to encode codepoints >= 0x10000, so
// we should save the high surrogate.
void ImGuiIO::AddInputCharacterUTF16(ImWchar16 c)
{
if (c == 0 && InputQueueSurrogate == 0)
return;
if ((c & 0xFC00) == 0xD800) // High surrogate, must save
{
if (InputQueueSurrogate != 0)
InputQueueCharacters.push_back(IM_UNICODE_CODEPOINT_INVALID);
InputQueueSurrogate = c;
return;
}
ImWchar cp = c;
if (InputQueueSurrogate != 0)
{
if ((c & 0xFC00) != 0xDC00) // Invalid low surrogate
{
InputQueueCharacters.push_back(IM_UNICODE_CODEPOINT_INVALID);
}
else
{
#if IM_UNICODE_CODEPOINT_MAX == 0xFFFF
cp = IM_UNICODE_CODEPOINT_INVALID; // Codepoint will not fit in ImWchar
#else
cp = (ImWchar)(((InputQueueSurrogate - 0xD800) << 10) + (c - 0xDC00) + 0x10000);
#endif
}
InputQueueSurrogate = 0;
}
InputQueueCharacters.push_back(cp);
}
void ImGuiIO::AddInputCharactersUTF8(const char* utf8_chars)
{
while (*utf8_chars != 0)
{
unsigned int c = 0;
utf8_chars += ImTextCharFromUtf8(&c, utf8_chars, NULL);
if (c != 0)
InputQueueCharacters.push_back((ImWchar)c);
}
}
void ImGuiIO::ClearInputCharacters()
{
InputQueueCharacters.resize(0);
}
//-----------------------------------------------------------------------------
// [SECTION] MISC HELPERS/UTILITIES (Geometry functions)
//-----------------------------------------------------------------------------
ImVec2 ImBezierCubicClosestPoint(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& p, int num_segments)
{
IM_ASSERT(num_segments > 0); // Use ImBezierCubicClosestPointCasteljau()
ImVec2 p_last = p1;
ImVec2 p_closest;
float p_closest_dist2 = FLT_MAX;
float t_step = 1.0f / (float)num_segments;
for (int i_step = 1; i_step <= num_segments; i_step++)
{
ImVec2 p_current = ImBezierCubicCalc(p1, p2, p3, p4, t_step * i_step);
ImVec2 p_line = ImLineClosestPoint(p_last, p_current, p);
float dist2 = ImLengthSqr(p - p_line);
if (dist2 < p_closest_dist2)
{
p_closest = p_line;
p_closest_dist2 = dist2;
}
p_last = p_current;
}
return p_closest;
}
// Closely mimics PathBezierToCasteljau() in imgui_draw.cpp
static void ImBezierCubicClosestPointCasteljauStep(const ImVec2& p, ImVec2& p_closest, ImVec2& p_last, float& p_closest_dist2, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4, float tess_tol, int level)
{
float dx = x4 - x1;
float dy = y4 - y1;
float d2 = ((x2 - x4) * dy - (y2 - y4) * dx);
float d3 = ((x3 - x4) * dy - (y3 - y4) * dx);
d2 = (d2 >= 0) ? d2 : -d2;
d3 = (d3 >= 0) ? d3 : -d3;
if ((d2 + d3) * (d2 + d3) < tess_tol * (dx * dx + dy * dy))
{
ImVec2 p_current(x4, y4);
ImVec2 p_line = ImLineClosestPoint(p_last, p_current, p);
float dist2 = ImLengthSqr(p - p_line);
if (dist2 < p_closest_dist2)
{
p_closest = p_line;
p_closest_dist2 = dist2;
}
p_last = p_current;
}
else if (level < 10)
{
float x12 = (x1 + x2)*0.5f, y12 = (y1 + y2)*0.5f;
float x23 = (x2 + x3)*0.5f, y23 = (y2 + y3)*0.5f;
float x34 = (x3 + x4)*0.5f, y34 = (y3 + y4)*0.5f;
float x123 = (x12 + x23)*0.5f, y123 = (y12 + y23)*0.5f;
float x234 = (x23 + x34)*0.5f, y234 = (y23 + y34)*0.5f;
float x1234 = (x123 + x234)*0.5f, y1234 = (y123 + y234)*0.5f;
ImBezierCubicClosestPointCasteljauStep(p, p_closest, p_last, p_closest_dist2, x1, y1, x12, y12, x123, y123, x1234, y1234, tess_tol, level + 1);
ImBezierCubicClosestPointCasteljauStep(p, p_closest, p_last, p_closest_dist2, x1234, y1234, x234, y234, x34, y34, x4, y4, tess_tol, level + 1);
}
}
// tess_tol is generally the same value you would find in ImGui::GetStyle().CurveTessellationTol
// Because those ImXXX functions are lower-level than ImGui:: we cannot access this value automatically.
ImVec2 ImBezierCubicClosestPointCasteljau(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& p, float tess_tol)
{
IM_ASSERT(tess_tol > 0.0f);
ImVec2 p_last = p1;
ImVec2 p_closest;
float p_closest_dist2 = FLT_MAX;
ImBezierCubicClosestPointCasteljauStep(p, p_closest, p_last, p_closest_dist2, p1.x, p1.y, p2.x, p2.y, p3.x, p3.y, p4.x, p4.y, tess_tol, 0);
return p_closest;
}
ImVec2 ImLineClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& p)
{
ImVec2 ap = p - a;
ImVec2 ab_dir = b - a;
float dot = ap.x * ab_dir.x + ap.y * ab_dir.y;
if (dot < 0.0f)
return a;
float ab_len_sqr = ab_dir.x * ab_dir.x + ab_dir.y * ab_dir.y;
if (dot > ab_len_sqr)
return b;
return a + ab_dir * dot / ab_len_sqr;
}
bool ImTriangleContainsPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p)
{
bool b1 = ((p.x - b.x) * (a.y - b.y) - (p.y - b.y) * (a.x - b.x)) < 0.0f;
bool b2 = ((p.x - c.x) * (b.y - c.y) - (p.y - c.y) * (b.x - c.x)) < 0.0f;
bool b3 = ((p.x - a.x) * (c.y - a.y) - (p.y - a.y) * (c.x - a.x)) < 0.0f;
return ((b1 == b2) && (b2 == b3));
}
void ImTriangleBarycentricCoords(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p, float& out_u, float& out_v, float& out_w)
{
ImVec2 v0 = b - a;
ImVec2 v1 = c - a;
ImVec2 v2 = p - a;
const float denom = v0.x * v1.y - v1.x * v0.y;
out_v = (v2.x * v1.y - v1.x * v2.y) / denom;
out_w = (v0.x * v2.y - v2.x * v0.y) / denom;
out_u = 1.0f - out_v - out_w;
}
ImVec2 ImTriangleClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p)
{
ImVec2 proj_ab = ImLineClosestPoint(a, b, p);
ImVec2 proj_bc = ImLineClosestPoint(b, c, p);
ImVec2 proj_ca = ImLineClosestPoint(c, a, p);
float dist2_ab = ImLengthSqr(p - proj_ab);
float dist2_bc = ImLengthSqr(p - proj_bc);
float dist2_ca = ImLengthSqr(p - proj_ca);
float m = ImMin(dist2_ab, ImMin(dist2_bc, dist2_ca));
if (m == dist2_ab)
return proj_ab;
if (m == dist2_bc)
return proj_bc;
return proj_ca;
}
//-----------------------------------------------------------------------------
// [SECTION] MISC HELPERS/UTILITIES (String, Format, Hash functions)
//-----------------------------------------------------------------------------
// Consider using _stricmp/_strnicmp under Windows or strcasecmp/strncasecmp. We don't actually use either ImStricmp/ImStrnicmp in the codebase any more.
int ImStricmp(const char* str1, const char* str2)
{
int d;
while ((d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; }
return d;
}
int ImStrnicmp(const char* str1, const char* str2, size_t count)
{
int d = 0;
while (count > 0 && (d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; count--; }
return d;
}
void ImStrncpy(char* dst, const char* src, size_t count)
{
if (count < 1)
return;
if (count > 1)
strncpy(dst, src, count - 1);
dst[count - 1] = 0;
}
char* ImStrdup(const char* str)
{
size_t len = strlen(str);
void* buf = IM_ALLOC(len + 1);
return (char*)memcpy(buf, (const void*)str, len + 1);
}
char* ImStrdupcpy(char* dst, size_t* p_dst_size, const char* src)
{
size_t dst_buf_size = p_dst_size ? *p_dst_size : strlen(dst) + 1;
size_t src_size = strlen(src) + 1;
if (dst_buf_size < src_size)
{
IM_FREE(dst);
dst = (char*)IM_ALLOC(src_size);
if (p_dst_size)
*p_dst_size = src_size;
}
return (char*)memcpy(dst, (const void*)src, src_size);
}
const char* ImStrchrRange(const char* str, const char* str_end, char c)
{
const char* p = (const char*)memchr(str, (int)c, str_end - str);
return p;
}
int ImStrlenW(const ImWchar* str)
{
//return (int)wcslen((const wchar_t*)str); // FIXME-OPT: Could use this when wchar_t are 16-bit
int n = 0;
while (*str++) n++;
return n;
}
// Find end-of-line. Return pointer will point to either first \n, either str_end.
const char* ImStreolRange(const char* str, const char* str_end)
{
const char* p = (const char*)memchr(str, '\n', str_end - str);
return p ? p : str_end;
}
const ImWchar* ImStrbolW(const ImWchar* buf_mid_line, const ImWchar* buf_begin) // find beginning-of-line
{
while (buf_mid_line > buf_begin && buf_mid_line[-1] != '\n')
buf_mid_line--;
return buf_mid_line;
}
const char* ImStristr(const char* haystack, const char* haystack_end, const char* needle, const char* needle_end)
{
if (!needle_end)
needle_end = needle + strlen(needle);
const char un0 = (char)toupper(*needle);
while ((!haystack_end && *haystack) || (haystack_end && haystack < haystack_end))
{
if (toupper(*haystack) == un0)
{
const char* b = needle + 1;
for (const char* a = haystack + 1; b < needle_end; a++, b++)
if (toupper(*a) != toupper(*b))
break;
if (b == needle_end)
return haystack;
}
haystack++;
}
return NULL;
}
// Trim str by offsetting contents when there's leading data + writing a \0 at the trailing position. We use this in situation where the cost is negligible.
void ImStrTrimBlanks(char* buf)
{
char* p = buf;
while (p[0] == ' ' || p[0] == '\t') // Leading blanks
p++;
char* p_start = p;
while (*p != 0) // Find end of string
p++;
while (p > p_start && (p[-1] == ' ' || p[-1] == '\t')) // Trailing blanks
p--;
if (p_start != buf) // Copy memory if we had leading blanks
memmove(buf, p_start, p - p_start);
buf[p - p_start] = 0; // Zero terminate
}
const char* ImStrSkipBlank(const char* str)
{
while (str[0] == ' ' || str[0] == '\t')
str++;
return str;
}
// A) MSVC version appears to return -1 on overflow, whereas glibc appears to return total count (which may be >= buf_size).
// Ideally we would test for only one of those limits at runtime depending on the behavior the vsnprintf(), but trying to deduct it at compile time sounds like a pandora can of worm.
// B) When buf==NULL vsnprintf() will return the output size.
#ifndef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS
// We support stb_sprintf which is much faster (see: https://github.com/nothings/stb/blob/master/stb_sprintf.h)
// You may set IMGUI_USE_STB_SPRINTF to use our default wrapper, or set IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS
// and setup the wrapper yourself. (FIXME-OPT: Some of our high-level operations such as ImGuiTextBuffer::appendfv() are
// designed using two-passes worst case, which probably could be improved using the stbsp_vsprintfcb() function.)
#ifdef IMGUI_USE_STB_SPRINTF
#define STB_SPRINTF_IMPLEMENTATION
#include "stb_sprintf.h"
#endif
#if defined(_MSC_VER) && !defined(vsnprintf)
#define vsnprintf _vsnprintf
#endif
int ImFormatString(char* buf, size_t buf_size, const char* fmt, ...)
{
va_list args;
va_start(args, fmt);
#ifdef IMGUI_USE_STB_SPRINTF
int w = stbsp_vsnprintf(buf, (int)buf_size, fmt, args);
#else
int w = vsnprintf(buf, buf_size, fmt, args);
#endif
va_end(args);
if (buf == NULL)
return w;
if (w == -1 || w >= (int)buf_size)
w = (int)buf_size - 1;
buf[w] = 0;
return w;
}
int ImFormatStringV(char* buf, size_t buf_size, const char* fmt, va_list args)
{
#ifdef IMGUI_USE_STB_SPRINTF
int w = stbsp_vsnprintf(buf, (int)buf_size, fmt, args);
#else
int w = vsnprintf(buf, buf_size, fmt, args);
#endif
if (buf == NULL)
return w;
if (w == -1 || w >= (int)buf_size)
w = (int)buf_size - 1;
buf[w] = 0;
return w;
}
#endif // #ifdef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS
// CRC32 needs a 1KB lookup table (not cache friendly)
// Although the code to generate the table is simple and shorter than the table itself, using a const table allows us to easily:
// - avoid an unnecessary branch/memory tap, - keep the ImHashXXX functions usable by static constructors, - make it thread-safe.
static const ImU32 GCrc32LookupTable[256] =
{
0x00000000,0x77073096,0xEE0E612C,0x990951BA,0x076DC419,0x706AF48F,0xE963A535,0x9E6495A3,0x0EDB8832,0x79DCB8A4,0xE0D5E91E,0x97D2D988,0x09B64C2B,0x7EB17CBD,0xE7B82D07,0x90BF1D91,
0x1DB71064,0x6AB020F2,0xF3B97148,0x84BE41DE,0x1ADAD47D,0x6DDDE4EB,0xF4D4B551,0x83D385C7,0x136C9856,0x646BA8C0,0xFD62F97A,0x8A65C9EC,0x14015C4F,0x63066CD9,0xFA0F3D63,0x8D080DF5,
0x3B6E20C8,0x4C69105E,0xD56041E4,0xA2677172,0x3C03E4D1,0x4B04D447,0xD20D85FD,0xA50AB56B,0x35B5A8FA,0x42B2986C,0xDBBBC9D6,0xACBCF940,0x32D86CE3,0x45DF5C75,0xDCD60DCF,0xABD13D59,
0x26D930AC,0x51DE003A,0xC8D75180,0xBFD06116,0x21B4F4B5,0x56B3C423,0xCFBA9599,0xB8BDA50F,0x2802B89E,0x5F058808,0xC60CD9B2,0xB10BE924,0x2F6F7C87,0x58684C11,0xC1611DAB,0xB6662D3D,
0x76DC4190,0x01DB7106,0x98D220BC,0xEFD5102A,0x71B18589,0x06B6B51F,0x9FBFE4A5,0xE8B8D433,0x7807C9A2,0x0F00F934,0x9609A88E,0xE10E9818,0x7F6A0DBB,0x086D3D2D,0x91646C97,0xE6635C01,
0x6B6B51F4,0x1C6C6162,0x856530D8,0xF262004E,0x6C0695ED,0x1B01A57B,0x8208F4C1,0xF50FC457,0x65B0D9C6,0x12B7E950,0x8BBEB8EA,0xFCB9887C,0x62DD1DDF,0x15DA2D49,0x8CD37CF3,0xFBD44C65,
0x4DB26158,0x3AB551CE,0xA3BC0074,0xD4BB30E2,0x4ADFA541,0x3DD895D7,0xA4D1C46D,0xD3D6F4FB,0x4369E96A,0x346ED9FC,0xAD678846,0xDA60B8D0,0x44042D73,0x33031DE5,0xAA0A4C5F,0xDD0D7CC9,
0x5005713C,0x270241AA,0xBE0B1010,0xC90C2086,0x5768B525,0x206F85B3,0xB966D409,0xCE61E49F,0x5EDEF90E,0x29D9C998,0xB0D09822,0xC7D7A8B4,0x59B33D17,0x2EB40D81,0xB7BD5C3B,0xC0BA6CAD,
0xEDB88320,0x9ABFB3B6,0x03B6E20C,0x74B1D29A,0xEAD54739,0x9DD277AF,0x04DB2615,0x73DC1683,0xE3630B12,0x94643B84,0x0D6D6A3E,0x7A6A5AA8,0xE40ECF0B,0x9309FF9D,0x0A00AE27,0x7D079EB1,
0xF00F9344,0x8708A3D2,0x1E01F268,0x6906C2FE,0xF762575D,0x806567CB,0x196C3671,0x6E6B06E7,0xFED41B76,0x89D32BE0,0x10DA7A5A,0x67DD4ACC,0xF9B9DF6F,0x8EBEEFF9,0x17B7BE43,0x60B08ED5,
0xD6D6A3E8,0xA1D1937E,0x38D8C2C4,0x4FDFF252,0xD1BB67F1,0xA6BC5767,0x3FB506DD,0x48B2364B,0xD80D2BDA,0xAF0A1B4C,0x36034AF6,0x41047A60,0xDF60EFC3,0xA867DF55,0x316E8EEF,0x4669BE79,
0xCB61B38C,0xBC66831A,0x256FD2A0,0x5268E236,0xCC0C7795,0xBB0B4703,0x220216B9,0x5505262F,0xC5BA3BBE,0xB2BD0B28,0x2BB45A92,0x5CB36A04,0xC2D7FFA7,0xB5D0CF31,0x2CD99E8B,0x5BDEAE1D,
0x9B64C2B0,0xEC63F226,0x756AA39C,0x026D930A,0x9C0906A9,0xEB0E363F,0x72076785,0x05005713,0x95BF4A82,0xE2B87A14,0x7BB12BAE,0x0CB61B38,0x92D28E9B,0xE5D5BE0D,0x7CDCEFB7,0x0BDBDF21,
0x86D3D2D4,0xF1D4E242,0x68DDB3F8,0x1FDA836E,0x81BE16CD,0xF6B9265B,0x6FB077E1,0x18B74777,0x88085AE6,0xFF0F6A70,0x66063BCA,0x11010B5C,0x8F659EFF,0xF862AE69,0x616BFFD3,0x166CCF45,
0xA00AE278,0xD70DD2EE,0x4E048354,0x3903B3C2,0xA7672661,0xD06016F7,0x4969474D,0x3E6E77DB,0xAED16A4A,0xD9D65ADC,0x40DF0B66,0x37D83BF0,0xA9BCAE53,0xDEBB9EC5,0x47B2CF7F,0x30B5FFE9,
0xBDBDF21C,0xCABAC28A,0x53B39330,0x24B4A3A6,0xBAD03605,0xCDD70693,0x54DE5729,0x23D967BF,0xB3667A2E,0xC4614AB8,0x5D681B02,0x2A6F2B94,0xB40BBE37,0xC30C8EA1,0x5A05DF1B,0x2D02EF8D,
};
// Known size hash
// It is ok to call ImHashData on a string with known length but the ### operator won't be supported.
// FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements.
ImGuiID ImHashData(const void* data_p, size_t data_size, ImU32 seed)
{
ImU32 crc = ~seed;
const unsigned char* data = (const unsigned char*)data_p;
const ImU32* crc32_lut = GCrc32LookupTable;
while (data_size-- != 0)
crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ *data++];
return ~crc;
}
// Zero-terminated string hash, with support for ### to reset back to seed value
// We support a syntax of "label###id" where only "###id" is included in the hash, and only "label" gets displayed.
// Because this syntax is rarely used we are optimizing for the common case.
// - If we reach ### in the string we discard the hash so far and reset to the seed.
// - We don't do 'current += 2; continue;' after handling ### to keep the code smaller/faster (measured ~10% diff in Debug build)
// FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements.
ImGuiID ImHashStr(const char* data_p, size_t data_size, ImU32 seed)
{
seed = ~seed;
ImU32 crc = seed;
const unsigned char* data = (const unsigned char*)data_p;
const ImU32* crc32_lut = GCrc32LookupTable;
if (data_size != 0)
{
while (data_size-- != 0)
{
unsigned char c = *data++;
if (c == '#' && data_size >= 2 && data[0] == '#' && data[1] == '#')
crc = seed;
crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c];
}
}
else
{
while (unsigned char c = *data++)
{
if (c == '#' && data[0] == '#' && data[1] == '#')
crc = seed;
crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c];
}
}
return ~crc;
}
//-----------------------------------------------------------------------------
// [SECTION] MISC HELPERS/UTILITIES (File functions)
//-----------------------------------------------------------------------------
// Default file functions
#ifndef IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS
ImFileHandle ImFileOpen(const char* filename, const char* mode)
{
#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(__CYGWIN__) && !defined(__GNUC__)
// We need a fopen() wrapper because MSVC/Windows fopen doesn't handle UTF-8 filenames.
// Previously we used ImTextCountCharsFromUtf8/ImTextStrFromUtf8 here but we now need to support ImWchar16 and ImWchar32!
const int filename_wsize = ::MultiByteToWideChar(CP_UTF8, 0, filename, -1, NULL, 0);
const int mode_wsize = ::MultiByteToWideChar(CP_UTF8, 0, mode, -1, NULL, 0);
ImVector<ImWchar> buf;
buf.resize(filename_wsize + mode_wsize);
::MultiByteToWideChar(CP_UTF8, 0, filename, -1, (wchar_t*)&buf[0], filename_wsize);
::MultiByteToWideChar(CP_UTF8, 0, mode, -1, (wchar_t*)&buf[filename_wsize], mode_wsize);
return ::_wfopen((const wchar_t*)&buf[0], (const wchar_t*)&buf[filename_wsize]);
#else
return fopen(filename, mode);
#endif
}
// We should in theory be using fseeko()/ftello() with off_t and _fseeki64()/_ftelli64() with __int64, waiting for the PR that does that in a very portable pre-C++11 zero-warnings way.
bool ImFileClose(ImFileHandle f) { return fclose(f) == 0; }
ImU64 ImFileGetSize(ImFileHandle f) { long off = 0, sz = 0; return ((off = ftell(f)) != -1 && !fseek(f, 0, SEEK_END) && (sz = ftell(f)) != -1 && !fseek(f, off, SEEK_SET)) ? (ImU64)sz : (ImU64)-1; }
ImU64 ImFileRead(void* data, ImU64 sz, ImU64 count, ImFileHandle f) { return fread(data, (size_t)sz, (size_t)count, f); }
ImU64 ImFileWrite(const void* data, ImU64 sz, ImU64 count, ImFileHandle f) { return fwrite(data, (size_t)sz, (size_t)count, f); }
#endif // #ifndef IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS
// Helper: Load file content into memory
// Memory allocated with IM_ALLOC(), must be freed by user using IM_FREE() == ImGui::MemFree()
// This can't really be used with "rt" because fseek size won't match read size.
void* ImFileLoadToMemory(const char* filename, const char* mode, size_t* out_file_size, int padding_bytes)
{
IM_ASSERT(filename && mode);
if (out_file_size)
*out_file_size = 0;
ImFileHandle f;
if ((f = ImFileOpen(filename, mode)) == NULL)
return NULL;
size_t file_size = (size_t)ImFileGetSize(f);
if (file_size == (size_t)-1)
{
ImFileClose(f);
return NULL;
}
void* file_data = IM_ALLOC(file_size + padding_bytes);
if (file_data == NULL)
{
ImFileClose(f);
return NULL;
}
if (ImFileRead(file_data, 1, file_size, f) != file_size)
{
ImFileClose(f);
IM_FREE(file_data);
return NULL;
}
if (padding_bytes > 0)
memset((void*)(((char*)file_data) + file_size), 0, (size_t)padding_bytes);
ImFileClose(f);
if (out_file_size)
*out_file_size = file_size;
return file_data;
}
//-----------------------------------------------------------------------------
// [SECTION] MISC HELPERS/UTILITIES (ImText* functions)
//-----------------------------------------------------------------------------
// Convert UTF-8 to 32-bit character, process single character input.
// A nearly-branchless UTF-8 decoder, based on work of Christopher Wellons (https://github.com/skeeto/branchless-utf8).
// We handle UTF-8 decoding error by skipping forward.
int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end)
{
static const char lengths[32] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 3, 3, 4, 0 };
static const int masks[] = { 0x00, 0x7f, 0x1f, 0x0f, 0x07 };
static const uint32_t mins[] = { 0x400000, 0, 0x80, 0x800, 0x10000 };
static const int shiftc[] = { 0, 18, 12, 6, 0 };
static const int shifte[] = { 0, 6, 4, 2, 0 };
int len = lengths[*(const unsigned char*)in_text >> 3];
int wanted = len + !len;
if (in_text_end == NULL)
in_text_end = in_text + wanted; // Max length, nulls will be taken into account.
// Copy at most 'len' bytes, stop copying at 0 or past in_text_end. Branch predictor does a good job here,
// so it is fast even with excessive branching.
unsigned char s[4];
s[0] = in_text + 0 < in_text_end ? in_text[0] : 0;
s[1] = in_text + 1 < in_text_end ? in_text[1] : 0;
s[2] = in_text + 2 < in_text_end ? in_text[2] : 0;
s[3] = in_text + 3 < in_text_end ? in_text[3] : 0;
// Assume a four-byte character and load four bytes. Unused bits are shifted out.
*out_char = (uint32_t)(s[0] & masks[len]) << 18;
*out_char |= (uint32_t)(s[1] & 0x3f) << 12;
*out_char |= (uint32_t)(s[2] & 0x3f) << 6;
*out_char |= (uint32_t)(s[3] & 0x3f) << 0;
*out_char >>= shiftc[len];
// Accumulate the various error conditions.
int e = 0;
e = (*out_char < mins[len]) << 6; // non-canonical encoding
e |= ((*out_char >> 11) == 0x1b) << 7; // surrogate half?
e |= (*out_char > IM_UNICODE_CODEPOINT_MAX) << 8; // out of range?
e |= (s[1] & 0xc0) >> 2;
e |= (s[2] & 0xc0) >> 4;
e |= (s[3] ) >> 6;
e ^= 0x2a; // top two bits of each tail byte correct?
e >>= shifte[len];
if (e)
{
// No bytes are consumed when *in_text == 0 || in_text == in_text_end.
// One byte is consumed in case of invalid first byte of in_text.
// All available bytes (at most `len` bytes) are consumed on incomplete/invalid second to last bytes.
// Invalid or incomplete input may consume less bytes than wanted, therefore every byte has to be inspected in s.
wanted = ImMin(wanted, !!s[0] + !!s[1] + !!s[2] + !!s[3]);
*out_char = IM_UNICODE_CODEPOINT_INVALID;
}
return wanted;
}
int ImTextStrFromUtf8(ImWchar* buf, int buf_size, const char* in_text, const char* in_text_end, const char** in_text_remaining)
{
ImWchar* buf_out = buf;
ImWchar* buf_end = buf + buf_size;
while (buf_out < buf_end - 1 && (!in_text_end || in_text < in_text_end) && *in_text)
{
unsigned int c;
in_text += ImTextCharFromUtf8(&c, in_text, in_text_end);
if (c == 0)
break;
*buf_out++ = (ImWchar)c;
}
*buf_out = 0;
if (in_text_remaining)
*in_text_remaining = in_text;
return (int)(buf_out - buf);
}
int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end)
{
int char_count = 0;
while ((!in_text_end || in_text < in_text_end) && *in_text)
{
unsigned int c;
in_text += ImTextCharFromUtf8(&c, in_text, in_text_end);
if (c == 0)
break;
char_count++;
}
return char_count;
}
// Based on stb_to_utf8() from github.com/nothings/stb/
static inline int ImTextCharToUtf8_inline(char* buf, int buf_size, unsigned int c)
{
if (c < 0x80)
{
buf[0] = (char)c;
return 1;
}
if (c < 0x800)
{
if (buf_size < 2) return 0;
buf[0] = (char)(0xc0 + (c >> 6));
buf[1] = (char)(0x80 + (c & 0x3f));
return 2;
}
if (c < 0x10000)
{
if (buf_size < 3) return 0;
buf[0] = (char)(0xe0 + (c >> 12));
buf[1] = (char)(0x80 + ((c >> 6) & 0x3f));
buf[2] = (char)(0x80 + ((c ) & 0x3f));
return 3;
}
if (c <= 0x10FFFF)
{
if (buf_size < 4) return 0;
buf[0] = (char)(0xf0 + (c >> 18));
buf[1] = (char)(0x80 + ((c >> 12) & 0x3f));
buf[2] = (char)(0x80 + ((c >> 6) & 0x3f));
buf[3] = (char)(0x80 + ((c ) & 0x3f));
return 4;
}
// Invalid code point, the max unicode is 0x10FFFF
return 0;
}
const char* ImTextCharToUtf8(char out_buf[5], unsigned int c)
{
int count = ImTextCharToUtf8_inline(out_buf, 5, c);
out_buf[count] = 0;
return out_buf;
}
// Not optimal but we very rarely use this function.
int ImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end)
{
unsigned int unused = 0;
return ImTextCharFromUtf8(&unused, in_text, in_text_end);
}
static inline int ImTextCountUtf8BytesFromChar(unsigned int c)
{
if (c < 0x80) return 1;
if (c < 0x800) return 2;
if (c < 0x10000) return 3;
if (c <= 0x10FFFF) return 4;
return 3;
}
int ImTextStrToUtf8(char* out_buf, int out_buf_size, const ImWchar* in_text, const ImWchar* in_text_end)
{
char* buf_p = out_buf;
const char* buf_end = out_buf + out_buf_size;
while (buf_p < buf_end - 1 && (!in_text_end || in_text < in_text_end) && *in_text)
{
unsigned int c = (unsigned int)(*in_text++);
if (c < 0x80)
*buf_p++ = (char)c;
else
buf_p += ImTextCharToUtf8_inline(buf_p, (int)(buf_end - buf_p - 1), c);
}
*buf_p = 0;
return (int)(buf_p - out_buf);
}
int ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end)
{
int bytes_count = 0;
while ((!in_text_end || in_text < in_text_end) && *in_text)
{
unsigned int c = (unsigned int)(*in_text++);
if (c < 0x80)
bytes_count++;
else
bytes_count += ImTextCountUtf8BytesFromChar(c);
}
return bytes_count;
}
//-----------------------------------------------------------------------------
// [SECTION] MISC HELPERS/UTILITIES (Color functions)
// Note: The Convert functions are early design which are not consistent with other API.
//-----------------------------------------------------------------------------
IMGUI_API ImU32 ImAlphaBlendColors(ImU32 col_a, ImU32 col_b)
{
float t = ((col_b >> IM_COL32_A_SHIFT) & 0xFF) / 255.f;
int r = ImLerp((int)(col_a >> IM_COL32_R_SHIFT) & 0xFF, (int)(col_b >> IM_COL32_R_SHIFT) & 0xFF, t);
int g = ImLerp((int)(col_a >> IM_COL32_G_SHIFT) & 0xFF, (int)(col_b >> IM_COL32_G_SHIFT) & 0xFF, t);
int b = ImLerp((int)(col_a >> IM_COL32_B_SHIFT) & 0xFF, (int)(col_b >> IM_COL32_B_SHIFT) & 0xFF, t);
return IM_COL32(r, g, b, 0xFF);
}
ImVec4 ImGui::ColorConvertU32ToFloat4(ImU32 in)
{
float s = 1.0f / 255.0f;
return ImVec4(
((in >> IM_COL32_R_SHIFT) & 0xFF) * s,
((in >> IM_COL32_G_SHIFT) & 0xFF) * s,
((in >> IM_COL32_B_SHIFT) & 0xFF) * s,
((in >> IM_COL32_A_SHIFT) & 0xFF) * s);
}
ImU32 ImGui::ColorConvertFloat4ToU32(const ImVec4& in)
{
ImU32 out;
out = ((ImU32)IM_F32_TO_INT8_SAT(in.x)) << IM_COL32_R_SHIFT;
out |= ((ImU32)IM_F32_TO_INT8_SAT(in.y)) << IM_COL32_G_SHIFT;
out |= ((ImU32)IM_F32_TO_INT8_SAT(in.z)) << IM_COL32_B_SHIFT;
out |= ((ImU32)IM_F32_TO_INT8_SAT(in.w)) << IM_COL32_A_SHIFT;
return out;
}
// Convert rgb floats ([0-1],[0-1],[0-1]) to hsv floats ([0-1],[0-1],[0-1]), from Foley & van Dam p592
// Optimized http://lolengine.net/blog/2013/01/13/fast-rgb-to-hsv
void ImGui::ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v)
{
float K = 0.f;
if (g < b)
{
ImSwap(g, b);
K = -1.f;
}
if (r < g)
{
ImSwap(r, g);
K = -2.f / 6.f - K;
}
const float chroma = r - (g < b ? g : b);
out_h = ImFabs(K + (g - b) / (6.f * chroma + 1e-20f));
out_s = chroma / (r + 1e-20f);
out_v = r;
}
// Convert hsv floats ([0-1],[0-1],[0-1]) to rgb floats ([0-1],[0-1],[0-1]), from Foley & van Dam p593
// also http://en.wikipedia.org/wiki/HSL_and_HSV
void ImGui::ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b)
{
if (s == 0.0f)
{
// gray
out_r = out_g = out_b = v;
return;
}
h = ImFmod(h, 1.0f) / (60.0f / 360.0f);
int i = (int)h;
float f = h - (float)i;
float p = v * (1.0f - s);
float q = v * (1.0f - s * f);
float t = v * (1.0f - s * (1.0f - f));
switch (i)
{
case 0: out_r = v; out_g = t; out_b = p; break;
case 1: out_r = q; out_g = v; out_b = p; break;
case 2: out_r = p; out_g = v; out_b = t; break;
case 3: out_r = p; out_g = q; out_b = v; break;
case 4: out_r = t; out_g = p; out_b = v; break;
case 5: default: out_r = v; out_g = p; out_b = q; break;
}
}
//-----------------------------------------------------------------------------
// [SECTION] ImGuiStorage
// Helper: Key->value storage
//-----------------------------------------------------------------------------
// std::lower_bound but without the bullshit
static ImGuiStorage::ImGuiStoragePair* LowerBound(ImVector<ImGuiStorage::ImGuiStoragePair>& data, ImGuiID key)
{
ImGuiStorage::ImGuiStoragePair* first = data.Data;
ImGuiStorage::ImGuiStoragePair* last = data.Data + data.Size;
size_t count = (size_t)(last - first);
while (count > 0)
{
size_t count2 = count >> 1;
ImGuiStorage::ImGuiStoragePair* mid = first + count2;
if (mid->key < key)
{
first = ++mid;
count -= count2 + 1;
}
else
{
count = count2;
}
}
return first;
}
// For quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once.
void ImGuiStorage::BuildSortByKey()
{
struct StaticFunc
{
static int IMGUI_CDECL PairCompareByID(const void* lhs, const void* rhs)
{
// We can't just do a subtraction because qsort uses signed integers and subtracting our ID doesn't play well with that.
if (((const ImGuiStoragePair*)lhs)->key > ((const ImGuiStoragePair*)rhs)->key) return +1;
if (((const ImGuiStoragePair*)lhs)->key < ((const ImGuiStoragePair*)rhs)->key) return -1;
return 0;
}
};
if (Data.Size > 1)
ImQsort(Data.Data, (size_t)Data.Size, sizeof(ImGuiStoragePair), StaticFunc::PairCompareByID);
}
int ImGuiStorage::GetInt(ImGuiID key, int default_val) const
{
ImGuiStoragePair* it = LowerBound(const_cast<ImVector<ImGuiStoragePair>&>(Data), key);
if (it == Data.end() || it->key != key)
return default_val;
return it->val_i;
}
bool ImGuiStorage::GetBool(ImGuiID key, bool default_val) const
{
return GetInt(key, default_val ? 1 : 0) != 0;
}
float ImGuiStorage::GetFloat(ImGuiID key, float default_val) const
{
ImGuiStoragePair* it = LowerBound(const_cast<ImVector<ImGuiStoragePair>&>(Data), key);
if (it == Data.end() || it->key != key)
return default_val;
return it->val_f;
}
void* ImGuiStorage::GetVoidPtr(ImGuiID key) const
{
ImGuiStoragePair* it = LowerBound(const_cast<ImVector<ImGuiStoragePair>&>(Data), key);
if (it == Data.end() || it->key != key)
return NULL;
return it->val_p;
}
// References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer.
int* ImGuiStorage::GetIntRef(ImGuiID key, int default_val)
{
ImGuiStoragePair* it = LowerBound(Data, key);
if (it == Data.end() || it->key != key)
it = Data.insert(it, ImGuiStoragePair(key, default_val));
return &it->val_i;
}
bool* ImGuiStorage::GetBoolRef(ImGuiID key, bool default_val)
{
return (bool*)GetIntRef(key, default_val ? 1 : 0);
}
float* ImGuiStorage::GetFloatRef(ImGuiID key, float default_val)
{
ImGuiStoragePair* it = LowerBound(Data, key);
if (it == Data.end() || it->key != key)
it = Data.insert(it, ImGuiStoragePair(key, default_val));
return &it->val_f;
}
void** ImGuiStorage::GetVoidPtrRef(ImGuiID key, void* default_val)
{
ImGuiStoragePair* it = LowerBound(Data, key);
if (it == Data.end() || it->key != key)
it = Data.insert(it, ImGuiStoragePair(key, default_val));
return &it->val_p;
}
// FIXME-OPT: Need a way to reuse the result of lower_bound when doing GetInt()/SetInt() - not too bad because it only happens on explicit interaction (maximum one a frame)
void ImGuiStorage::SetInt(ImGuiID key, int val)
{
ImGuiStoragePair* it = LowerBound(Data, key);
if (it == Data.end() || it->key != key)
{
Data.insert(it, ImGuiStoragePair(key, val));
return;
}
it->val_i = val;
}
void ImGuiStorage::SetBool(ImGuiID key, bool val)
{
SetInt(key, val ? 1 : 0);
}
void ImGuiStorage::SetFloat(ImGuiID key, float val)
{
ImGuiStoragePair* it = LowerBound(Data, key);
if (it == Data.end() || it->key != key)
{
Data.insert(it, ImGuiStoragePair(key, val));
return;
}
it->val_f = val;
}
void ImGuiStorage::SetVoidPtr(ImGuiID key, void* val)
{
ImGuiStoragePair* it = LowerBound(Data, key);
if (it == Data.end() || it->key != key)
{
Data.insert(it, ImGuiStoragePair(key, val));
return;
}
it->val_p = val;
}
void ImGuiStorage::SetAllInt(int v)
{
for (int i = 0; i < Data.Size; i++)
Data[i].val_i = v;
}
//-----------------------------------------------------------------------------
// [SECTION] ImGuiTextFilter
//-----------------------------------------------------------------------------
// Helper: Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]"
ImGuiTextFilter::ImGuiTextFilter(const char* default_filter)
{
if (default_filter)
{
ImStrncpy(InputBuf, default_filter, IM_ARRAYSIZE(InputBuf));
Build();
}
else
{
InputBuf[0] = 0;
CountGrep = 0;
}
}
bool ImGuiTextFilter::Draw(const char* label, float width)
{
if (width != 0.0f)
ImGui::SetNextItemWidth(width);
bool value_changed = ImGui::InputText(label, InputBuf, IM_ARRAYSIZE(InputBuf));
if (value_changed)
Build();
return value_changed;
}
void ImGuiTextFilter::ImGuiTextRange::split(char separator, ImVector<ImGuiTextRange>* out) const
{
out->resize(0);
const char* wb = b;
const char* we = wb;
while (we < e)
{
if (*we == separator)
{
out->push_back(ImGuiTextRange(wb, we));
wb = we + 1;
}
we++;
}
if (wb != we)
out->push_back(ImGuiTextRange(wb, we));
}
void ImGuiTextFilter::Build()
{
Filters.resize(0);
ImGuiTextRange input_range(InputBuf, InputBuf + strlen(InputBuf));
input_range.split(',', &Filters);
CountGrep = 0;
for (int i = 0; i != Filters.Size; i++)
{
ImGuiTextRange& f = Filters[i];
while (f.b < f.e && ImCharIsBlankA(f.b[0]))
f.b++;
while (f.e > f.b && ImCharIsBlankA(f.e[-1]))
f.e--;
if (f.empty())
continue;
if (Filters[i].b[0] != '-')
CountGrep += 1;
}
}
bool ImGuiTextFilter::PassFilter(const char* text, const char* text_end) const
{
if (Filters.empty())
return true;
if (text == NULL)
text = "";
for (int i = 0; i != Filters.Size; i++)
{
const ImGuiTextRange& f = Filters[i];
if (f.empty())
continue;
if (f.b[0] == '-')
{
// Subtract
if (ImStristr(text, text_end, f.b + 1, f.e) != NULL)
return false;
}
else
{
// Grep
if (ImStristr(text, text_end, f.b, f.e) != NULL)
return true;
}
}
// Implicit * grep
if (CountGrep == 0)
return true;
return false;
}
//-----------------------------------------------------------------------------
// [SECTION] ImGuiTextBuffer
//-----------------------------------------------------------------------------
// On some platform vsnprintf() takes va_list by reference and modifies it.
// va_copy is the 'correct' way to copy a va_list but Visual Studio prior to 2013 doesn't have it.
#ifndef va_copy
#if defined(__GNUC__) || defined(__clang__)
#define va_copy(dest, src) __builtin_va_copy(dest, src)
#else
#define va_copy(dest, src) (dest = src)
#endif
#endif
char ImGuiTextBuffer::EmptyString[1] = { 0 };
void ImGuiTextBuffer::append(const char* str, const char* str_end)
{
int len = str_end ? (int)(str_end - str) : (int)strlen(str);
// Add zero-terminator the first time
const int write_off = (Buf.Size != 0) ? Buf.Size : 1;
const int needed_sz = write_off + len;
if (write_off + len >= Buf.Capacity)
{
int new_capacity = Buf.Capacity * 2;
Buf.reserve(needed_sz > new_capacity ? needed_sz : new_capacity);
}
Buf.resize(needed_sz);
memcpy(&Buf[write_off - 1], str, (size_t)len);
Buf[write_off - 1 + len] = 0;
}
void ImGuiTextBuffer::appendf(const char* fmt, ...)
{
va_list args;
va_start(args, fmt);
appendfv(fmt, args);
va_end(args);
}
// Helper: Text buffer for logging/accumulating text
void ImGuiTextBuffer::appendfv(const char* fmt, va_list args)
{
va_list args_copy;
va_copy(args_copy, args);
int len = ImFormatStringV(NULL, 0, fmt, args); // FIXME-OPT: could do a first pass write attempt, likely successful on first pass.
if (len <= 0)
{
va_end(args_copy);
return;
}
// Add zero-terminator the first time
const int write_off = (Buf.Size != 0) ? Buf.Size : 1;
const int needed_sz = write_off + len;
if (write_off + len >= Buf.Capacity)
{
int new_capacity = Buf.Capacity * 2;
Buf.reserve(needed_sz > new_capacity ? needed_sz : new_capacity);
}
Buf.resize(needed_sz);
ImFormatStringV(&Buf[write_off - 1], (size_t)len + 1, fmt, args_copy);
va_end(args_copy);
}
//-----------------------------------------------------------------------------
// [SECTION] ImGuiListClipper
// This is currently not as flexible/powerful as it should be and really confusing/spaghetti, mostly because we changed
// the API mid-way through development and support two ways to using the clipper, needs some rework (see TODO)
//-----------------------------------------------------------------------------
// FIXME-TABLE: This prevents us from using ImGuiListClipper _inside_ a table cell.
// The problem we have is that without a Begin/End scheme for rows using the clipper is ambiguous.
static bool GetSkipItemForListClipping()
{
ImGuiContext& g = *GImGui;
return (g.CurrentTable ? g.CurrentTable->HostSkipItems : g.CurrentWindow->SkipItems);
}
// Helper to calculate coarse clipping of large list of evenly sized items.
// NB: Prefer using the ImGuiListClipper higher-level helper if you can! Read comments and instructions there on how those use this sort of pattern.
// NB: 'items_count' is only used to clamp the result, if you don't know your count you can use INT_MAX
void ImGui::CalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
if (g.LogEnabled)
{
// If logging is active, do not perform any clipping
*out_items_display_start = 0;
*out_items_display_end = items_count;
return;
}
if (GetSkipItemForListClipping())
{
*out_items_display_start = *out_items_display_end = 0;
return;
}
// We create the union of the ClipRect and the NavScoringRect which at worst should be 1 page away from ClipRect
ImRect unclipped_rect = window->ClipRect;
if (g.NavMoveRequest)
unclipped_rect.Add(g.NavScoringRect);
if (g.NavJustMovedToId && window->NavLastIds[0] == g.NavJustMovedToId)
unclipped_rect.Add(ImRect(window->Pos + window->NavRectRel[0].Min, window->Pos + window->NavRectRel[0].Max));
const ImVec2 pos = window->DC.CursorPos;
int start = (int)((unclipped_rect.Min.y - pos.y) / items_height);
int end = (int)((unclipped_rect.Max.y - pos.y) / items_height);
// When performing a navigation request, ensure we have one item extra in the direction we are moving to
if (g.NavMoveRequest && g.NavMoveClipDir == ImGuiDir_Up)
start--;
if (g.NavMoveRequest && g.NavMoveClipDir == ImGuiDir_Down)
end++;
start = ImClamp(start, 0, items_count);
end = ImClamp(end + 1, start, items_count);
*out_items_display_start = start;
*out_items_display_end = end;
}
static void SetCursorPosYAndSetupForPrevLine(float pos_y, float line_height)
{
// Set cursor position and a few other things so that SetScrollHereY() and Columns() can work when seeking cursor.
// FIXME: It is problematic that we have to do that here, because custom/equivalent end-user code would stumble on the same issue.
// The clipper should probably have a 4th step to display the last item in a regular manner.
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
float off_y = pos_y - window->DC.CursorPos.y;
window->DC.CursorPos.y = pos_y;
window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, pos_y);
window->DC.CursorPosPrevLine.y = window->DC.CursorPos.y - line_height; // Setting those fields so that SetScrollHereY() can properly function after the end of our clipper usage.
window->DC.PrevLineSize.y = (line_height - g.Style.ItemSpacing.y); // If we end up needing more accurate data (to e.g. use SameLine) we may as well make the clipper have a fourth step to let user process and display the last item in their list.
if (ImGuiOldColumns* columns = window->DC.CurrentColumns)
columns->LineMinY = window->DC.CursorPos.y; // Setting this so that cell Y position are set properly
if (ImGuiTable* table = g.CurrentTable)
{
if (table->IsInsideRow)
ImGui::TableEndRow(table);
table->RowPosY2 = window->DC.CursorPos.y;
const int row_increase = (int)((off_y / line_height) + 0.5f);
//table->CurrentRow += row_increase; // Can't do without fixing TableEndRow()
table->RowBgColorCounter += row_increase;
}
}
ImGuiListClipper::ImGuiListClipper()
{
memset(this, 0, sizeof(*this));
ItemsCount = -1;
}
ImGuiListClipper::~ImGuiListClipper()
{
IM_ASSERT(ItemsCount == -1 && "Forgot to call End(), or to Step() until false?");
}
// Use case A: Begin() called from constructor with items_height<0, then called again from Step() in StepNo 1
// Use case B: Begin() called from constructor with items_height>0
// FIXME-LEGACY: Ideally we should remove the Begin/End functions but they are part of the legacy API we still support. This is why some of the code in Step() calling Begin() and reassign some fields, spaghetti style.
void ImGuiListClipper::Begin(int items_count, float items_height)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
if (ImGuiTable* table = g.CurrentTable)
if (table->IsInsideRow)
ImGui::TableEndRow(table);
StartPosY = window->DC.CursorPos.y;
ItemsHeight = items_height;
ItemsCount = items_count;
ItemsFrozen = 0;
StepNo = 0;
DisplayStart = -1;
DisplayEnd = 0;
}
void ImGuiListClipper::End()
{
if (ItemsCount < 0) // Already ended
return;
// In theory here we should assert that ImGui::GetCursorPosY() == StartPosY + DisplayEnd * ItemsHeight, but it feels saner to just seek at the end and not assert/crash the user.
if (ItemsCount < INT_MAX && DisplayStart >= 0)
SetCursorPosYAndSetupForPrevLine(StartPosY + (ItemsCount - ItemsFrozen) * ItemsHeight, ItemsHeight);
ItemsCount = -1;
StepNo = 3;
}
bool ImGuiListClipper::Step()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
ImGuiTable* table = g.CurrentTable;
if (table && table->IsInsideRow)
ImGui::TableEndRow(table);
// No items
if (ItemsCount == 0 || GetSkipItemForListClipping())
{
End();
return false;
}
// Step 0: Let you process the first element (regardless of it being visible or not, so we can measure the element height)
if (StepNo == 0)
{
// While we are in frozen row state, keep displaying items one by one, unclipped
// FIXME: Could be stored as a table-agnostic state.
if (table != NULL && !table->IsUnfrozenRows)
{
DisplayStart = ItemsFrozen;
DisplayEnd = ItemsFrozen + 1;
ItemsFrozen++;
return true;
}
StartPosY = window->DC.CursorPos.y;
if (ItemsHeight <= 0.0f)
{
// Submit the first item so we can measure its height (generally it is 0..1)
DisplayStart = ItemsFrozen;
DisplayEnd = ItemsFrozen + 1;
StepNo = 1;
return true;
}
// Already has item height (given by user in Begin): skip to calculating step
DisplayStart = DisplayEnd;
StepNo = 2;
}
// Step 1: the clipper infer height from first element
if (StepNo == 1)
{
IM_ASSERT(ItemsHeight <= 0.0f);
if (table)
{
const float pos_y1 = table->RowPosY1; // Using this instead of StartPosY to handle clipper straddling the frozen row
const float pos_y2 = table->RowPosY2; // Using this instead of CursorPos.y to take account of tallest cell.
ItemsHeight = pos_y2 - pos_y1;
window->DC.CursorPos.y = pos_y2;
}
else
{
ItemsHeight = window->DC.CursorPos.y - StartPosY;
}
IM_ASSERT(ItemsHeight > 0.0f && "Unable to calculate item height! First item hasn't moved the cursor vertically!");
StepNo = 2;
}
// Reached end of list
if (DisplayEnd >= ItemsCount)
{
End();
return false;
}
// Step 2: calculate the actual range of elements to display, and position the cursor before the first element
if (StepNo == 2)
{
IM_ASSERT(ItemsHeight > 0.0f);
int already_submitted = DisplayEnd;
ImGui::CalcListClipping(ItemsCount - already_submitted, ItemsHeight, &DisplayStart, &DisplayEnd);
DisplayStart += already_submitted;
DisplayEnd += already_submitted;
// Seek cursor
if (DisplayStart > already_submitted)
SetCursorPosYAndSetupForPrevLine(StartPosY + (DisplayStart - ItemsFrozen) * ItemsHeight, ItemsHeight);
StepNo = 3;
return true;
}
// Step 3: the clipper validate that we have reached the expected Y position (corresponding to element DisplayEnd),
// Advance the cursor to the end of the list and then returns 'false' to end the loop.
if (StepNo == 3)
{
// Seek cursor
if (ItemsCount < INT_MAX)
SetCursorPosYAndSetupForPrevLine(StartPosY + (ItemsCount - ItemsFrozen) * ItemsHeight, ItemsHeight); // advance cursor
ItemsCount = -1;
return false;
}
IM_ASSERT(0);
return false;
}
//-----------------------------------------------------------------------------
// [SECTION] STYLING
//-----------------------------------------------------------------------------
ImGuiStyle& ImGui::GetStyle()
{
IM_ASSERT(GImGui != NULL && "No current context. Did you call ImGui::CreateContext() and ImGui::SetCurrentContext() ?");
return GImGui->Style;
}
ImU32 ImGui::GetColorU32(ImGuiCol idx, float alpha_mul)
{
ImGuiStyle& style = GImGui->Style;
ImVec4 c = style.Colors[idx];
c.w *= style.Alpha * alpha_mul;
return ColorConvertFloat4ToU32(c);
}
ImU32 ImGui::GetColorU32(const ImVec4& col)
{
ImGuiStyle& style = GImGui->Style;
ImVec4 c = col;
c.w *= style.Alpha;
return ColorConvertFloat4ToU32(c);
}
const ImVec4& ImGui::GetStyleColorVec4(ImGuiCol idx)
{
ImGuiStyle& style = GImGui->Style;
return style.Colors[idx];
}
ImU32 ImGui::GetColorU32(ImU32 col)
{
ImGuiStyle& style = GImGui->Style;
if (style.Alpha >= 1.0f)
return col;
ImU32 a = (col & IM_COL32_A_MASK) >> IM_COL32_A_SHIFT;
a = (ImU32)(a * style.Alpha); // We don't need to clamp 0..255 because Style.Alpha is in 0..1 range.
return (col & ~IM_COL32_A_MASK) | (a << IM_COL32_A_SHIFT);
}
// FIXME: This may incur a round-trip (if the end user got their data from a float4) but eventually we aim to store the in-flight colors as ImU32
void ImGui::PushStyleColor(ImGuiCol idx, ImU32 col)
{
ImGuiContext& g = *GImGui;
ImGuiColorMod backup;
backup.Col = idx;
backup.BackupValue = g.Style.Colors[idx];
g.ColorStack.push_back(backup);
g.Style.Colors[idx] = ColorConvertU32ToFloat4(col);
}
void ImGui::PushStyleColor(ImGuiCol idx, const ImVec4& col)
{
ImGuiContext& g = *GImGui;
ImGuiColorMod backup;
backup.Col = idx;
backup.BackupValue = g.Style.Colors[idx];
g.ColorStack.push_back(backup);
g.Style.Colors[idx] = col;
}
void ImGui::PopStyleColor(int count)
{
ImGuiContext& g = *GImGui;
while (count > 0)
{
ImGuiColorMod& backup = g.ColorStack.back();
g.Style.Colors[backup.Col] = backup.BackupValue;
g.ColorStack.pop_back();
count--;
}
}
struct ImGuiStyleVarInfo
{
ImGuiDataType Type;
ImU32 Count;
ImU32 Offset;
void* GetVarPtr(ImGuiStyle* style) const { return (void*)((unsigned char*)style + Offset); }
};
static const ImGuiStyleVarInfo GStyleVarInfo[] =
{
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, Alpha) }, // ImGuiStyleVar_Alpha
{ ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, WindowPadding) }, // ImGuiStyleVar_WindowPadding
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, WindowRounding) }, // ImGuiStyleVar_WindowRounding
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, WindowBorderSize) }, // ImGuiStyleVar_WindowBorderSize
{ ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, WindowMinSize) }, // ImGuiStyleVar_WindowMinSize
{ ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, WindowTitleAlign) }, // ImGuiStyleVar_WindowTitleAlign
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, ChildRounding) }, // ImGuiStyleVar_ChildRounding
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, ChildBorderSize) }, // ImGuiStyleVar_ChildBorderSize
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, PopupRounding) }, // ImGuiStyleVar_PopupRounding
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, PopupBorderSize) }, // ImGuiStyleVar_PopupBorderSize
{ ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, FramePadding) }, // ImGuiStyleVar_FramePadding
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, FrameRounding) }, // ImGuiStyleVar_FrameRounding
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, FrameBorderSize) }, // ImGuiStyleVar_FrameBorderSize
{ ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, ItemSpacing) }, // ImGuiStyleVar_ItemSpacing
{ ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, ItemInnerSpacing) }, // ImGuiStyleVar_ItemInnerSpacing
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, IndentSpacing) }, // ImGuiStyleVar_IndentSpacing
{ ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, CellPadding) }, // ImGuiStyleVar_CellPadding
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, ScrollbarSize) }, // ImGuiStyleVar_ScrollbarSize
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, ScrollbarRounding) }, // ImGuiStyleVar_ScrollbarRounding
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, GrabMinSize) }, // ImGuiStyleVar_GrabMinSize
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, GrabRounding) }, // ImGuiStyleVar_GrabRounding
{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, TabRounding) }, // ImGuiStyleVar_TabRounding
{ ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, ButtonTextAlign) }, // ImGuiStyleVar_ButtonTextAlign
{ ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, SelectableTextAlign) }, // ImGuiStyleVar_SelectableTextAlign
};
static const ImGuiStyleVarInfo* GetStyleVarInfo(ImGuiStyleVar idx)
{
IM_ASSERT(idx >= 0 && idx < ImGuiStyleVar_COUNT);
IM_ASSERT(IM_ARRAYSIZE(GStyleVarInfo) == ImGuiStyleVar_COUNT);
return &GStyleVarInfo[idx];
}
void ImGui::PushStyleVar(ImGuiStyleVar idx, float val)
{
const ImGuiStyleVarInfo* var_info = GetStyleVarInfo(idx);
if (var_info->Type == ImGuiDataType_Float && var_info->Count == 1)
{
ImGuiContext& g = *GImGui;
float* pvar = (float*)var_info->GetVarPtr(&g.Style);
g.StyleVarStack.push_back(ImGuiStyleMod(idx, *pvar));
*pvar = val;
return;
}
IM_ASSERT(0 && "Called PushStyleVar() float variant but variable is not a float!");
}
void ImGui::PushStyleVar(ImGuiStyleVar idx, const ImVec2& val)
{
const ImGuiStyleVarInfo* var_info = GetStyleVarInfo(idx);
if (var_info->Type == ImGuiDataType_Float && var_info->Count == 2)
{
ImGuiContext& g = *GImGui;
ImVec2* pvar = (ImVec2*)var_info->GetVarPtr(&g.Style);
g.StyleVarStack.push_back(ImGuiStyleMod(idx, *pvar));
*pvar = val;
return;
}
IM_ASSERT(0 && "Called PushStyleVar() ImVec2 variant but variable is not a ImVec2!");
}
void ImGui::PopStyleVar(int count)
{
ImGuiContext& g = *GImGui;
while (count > 0)
{
// We avoid a generic memcpy(data, &backup.Backup.., GDataTypeSize[info->Type] * info->Count), the overhead in Debug is not worth it.
ImGuiStyleMod& backup = g.StyleVarStack.back();
const ImGuiStyleVarInfo* info = GetStyleVarInfo(backup.VarIdx);
void* data = info->GetVarPtr(&g.Style);
if (info->Type == ImGuiDataType_Float && info->Count == 1) { ((float*)data)[0] = backup.BackupFloat[0]; }
else if (info->Type == ImGuiDataType_Float && info->Count == 2) { ((float*)data)[0] = backup.BackupFloat[0]; ((float*)data)[1] = backup.BackupFloat[1]; }
g.StyleVarStack.pop_back();
count--;
}
}
const char* ImGui::GetStyleColorName(ImGuiCol idx)
{
// Create switch-case from enum with regexp: ImGuiCol_{.*}, --> case ImGuiCol_\1: return "\1";
switch (idx)
{
case ImGuiCol_Text: return "Text";
case ImGuiCol_TextDisabled: return "TextDisabled";
case ImGuiCol_WindowBg: return "WindowBg";
case ImGuiCol_ChildBg: return "ChildBg";
case ImGuiCol_PopupBg: return "PopupBg";
case ImGuiCol_Border: return "Border";
case ImGuiCol_BorderShadow: return "BorderShadow";
case ImGuiCol_FrameBg: return "FrameBg";
case ImGuiCol_FrameBgHovered: return "FrameBgHovered";
case ImGuiCol_FrameBgActive: return "FrameBgActive";
case ImGuiCol_TitleBg: return "TitleBg";
case ImGuiCol_TitleBgActive: return "TitleBgActive";
case ImGuiCol_TitleBgCollapsed: return "TitleBgCollapsed";
case ImGuiCol_MenuBarBg: return "MenuBarBg";
case ImGuiCol_ScrollbarBg: return "ScrollbarBg";
case ImGuiCol_ScrollbarGrab: return "ScrollbarGrab";
case ImGuiCol_ScrollbarGrabHovered: return "ScrollbarGrabHovered";
case ImGuiCol_ScrollbarGrabActive: return "ScrollbarGrabActive";
case ImGuiCol_CheckMark: return "CheckMark";
case ImGuiCol_SliderGrab: return "SliderGrab";
case ImGuiCol_SliderGrabActive: return "SliderGrabActive";
case ImGuiCol_Button: return "Button";
case ImGuiCol_ButtonHovered: return "ButtonHovered";
case ImGuiCol_ButtonActive: return "ButtonActive";
case ImGuiCol_Header: return "Header";
case ImGuiCol_HeaderHovered: return "HeaderHovered";
case ImGuiCol_HeaderActive: return "HeaderActive";
case ImGuiCol_Separator: return "Separator";
case ImGuiCol_SeparatorHovered: return "SeparatorHovered";
case ImGuiCol_SeparatorActive: return "SeparatorActive";
case ImGuiCol_ResizeGrip: return "ResizeGrip";
case ImGuiCol_ResizeGripHovered: return "ResizeGripHovered";
case ImGuiCol_ResizeGripActive: return "ResizeGripActive";
case ImGuiCol_Tab: return "Tab";
case ImGuiCol_TabHovered: return "TabHovered";
case ImGuiCol_TabActive: return "TabActive";
case ImGuiCol_TabUnfocused: return "TabUnfocused";
case ImGuiCol_TabUnfocusedActive: return "TabUnfocusedActive";
case ImGuiCol_PlotLines: return "PlotLines";
case ImGuiCol_PlotLinesHovered: return "PlotLinesHovered";
case ImGuiCol_PlotHistogram: return "PlotHistogram";
case ImGuiCol_PlotHistogramHovered: return "PlotHistogramHovered";
case ImGuiCol_TableHeaderBg: return "TableHeaderBg";
case ImGuiCol_TableBorderStrong: return "TableBorderStrong";
case ImGuiCol_TableBorderLight: return "TableBorderLight";
case ImGuiCol_TableRowBg: return "TableRowBg";
case ImGuiCol_TableRowBgAlt: return "TableRowBgAlt";
case ImGuiCol_TextSelectedBg: return "TextSelectedBg";
case ImGuiCol_DragDropTarget: return "DragDropTarget";
case ImGuiCol_NavHighlight: return "NavHighlight";
case ImGuiCol_NavWindowingHighlight: return "NavWindowingHighlight";
case ImGuiCol_NavWindowingDimBg: return "NavWindowingDimBg";
case ImGuiCol_ModalWindowDimBg: return "ModalWindowDimBg";
}
IM_ASSERT(0);
return "Unknown";
}
//-----------------------------------------------------------------------------
// [SECTION] RENDER HELPERS
// Some of those (internal) functions are currently quite a legacy mess - their signature and behavior will change,
// we need a nicer separation between low-level functions and high-level functions relying on the ImGui context.
// Also see imgui_draw.cpp for some more which have been reworked to not rely on ImGui:: context.
//-----------------------------------------------------------------------------
const char* ImGui::FindRenderedTextEnd(const char* text, const char* text_end)
{
const char* text_display_end = text;
if (!text_end)
text_end = (const char*)-1;
while (text_display_end < text_end && *text_display_end != '\0' && (text_display_end[0] != '#' || text_display_end[1] != '#'))
text_display_end++;
return text_display_end;
}
// Internal ImGui functions to render text
// RenderText***() functions calls ImDrawList::AddText() calls ImBitmapFont::RenderText()
void ImGui::RenderText(ImVec2 pos, const char* text, const char* text_end, bool hide_text_after_hash)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
// Hide anything after a '##' string
const char* text_display_end;
if (hide_text_after_hash)
{
text_display_end = FindRenderedTextEnd(text, text_end);
}
else
{
if (!text_end)
text_end = text + strlen(text); // FIXME-OPT
text_display_end = text_end;
}
if (text != text_display_end)
{
window->DrawList->AddText(g.Font, g.FontSize, pos, GetColorU32(ImGuiCol_Text), text, text_display_end);
if (g.LogEnabled)
LogRenderedText(&pos, text, text_display_end);
}
}
void ImGui::RenderTextWrapped(ImVec2 pos, const char* text, const char* text_end, float wrap_width)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
if (!text_end)
text_end = text + strlen(text); // FIXME-OPT
if (text != text_end)
{
window->DrawList->AddText(g.Font, g.FontSize, pos, GetColorU32(ImGuiCol_Text), text, text_end, wrap_width);
if (g.LogEnabled)
LogRenderedText(&pos, text, text_end);
}
}
// Default clip_rect uses (pos_min,pos_max)
// Handle clipping on CPU immediately (vs typically let the GPU clip the triangles that are overlapping the clipping rectangle edges)
void ImGui::RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_display_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect)
{
// Perform CPU side clipping for single clipped element to avoid using scissor state
ImVec2 pos = pos_min;
const ImVec2 text_size = text_size_if_known ? *text_size_if_known : CalcTextSize(text, text_display_end, false, 0.0f);
const ImVec2* clip_min = clip_rect ? &clip_rect->Min : &pos_min;
const ImVec2* clip_max = clip_rect ? &clip_rect->Max : &pos_max;
bool need_clipping = (pos.x + text_size.x >= clip_max->x) || (pos.y + text_size.y >= clip_max->y);
if (clip_rect) // If we had no explicit clipping rectangle then pos==clip_min
need_clipping |= (pos.x < clip_min->x) || (pos.y < clip_min->y);
// Align whole block. We should defer that to the better rendering function when we'll have support for individual line alignment.
if (align.x > 0.0f) pos.x = ImMax(pos.x, pos.x + (pos_max.x - pos.x - text_size.x) * align.x);
if (align.y > 0.0f) pos.y = ImMax(pos.y, pos.y + (pos_max.y - pos.y - text_size.y) * align.y);
// Render
if (need_clipping)
{
ImVec4 fine_clip_rect(clip_min->x, clip_min->y, clip_max->x, clip_max->y);
draw_list->AddText(NULL, 0.0f, pos, GetColorU32(ImGuiCol_Text), text, text_display_end, 0.0f, &fine_clip_rect);
}
else
{
draw_list->AddText(NULL, 0.0f, pos, GetColorU32(ImGuiCol_Text), text, text_display_end, 0.0f, NULL);
}
}
void ImGui::RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect)
{
// Hide anything after a '##' string
const char* text_display_end = FindRenderedTextEnd(text, text_end);
const int text_len = (int)(text_display_end - text);
if (text_len == 0)
return;
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
RenderTextClippedEx(window->DrawList, pos_min, pos_max, text, text_display_end, text_size_if_known, align, clip_rect);
if (g.LogEnabled)
LogRenderedText(&pos_min, text, text_display_end);
}
// Another overly complex function until we reorganize everything into a nice all-in-one helper.
// This is made more complex because we have dissociated the layout rectangle (pos_min..pos_max) which define _where_ the ellipsis is, from actual clipping of text and limit of the ellipsis display.
// This is because in the context of tabs we selectively hide part of the text when the Close Button appears, but we don't want the ellipsis to move.
void ImGui::RenderTextEllipsis(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, float clip_max_x, float ellipsis_max_x, const char* text, const char* text_end_full, const ImVec2* text_size_if_known)
{
ImGuiContext& g = *GImGui;
if (text_end_full == NULL)
text_end_full = FindRenderedTextEnd(text);
const ImVec2 text_size = text_size_if_known ? *text_size_if_known : CalcTextSize(text, text_end_full, false, 0.0f);
//draw_list->AddLine(ImVec2(pos_max.x, pos_min.y - 4), ImVec2(pos_max.x, pos_max.y + 4), IM_COL32(0, 0, 255, 255));
//draw_list->AddLine(ImVec2(ellipsis_max_x, pos_min.y-2), ImVec2(ellipsis_max_x, pos_max.y+2), IM_COL32(0, 255, 0, 255));
//draw_list->AddLine(ImVec2(clip_max_x, pos_min.y), ImVec2(clip_max_x, pos_max.y), IM_COL32(255, 0, 0, 255));
// FIXME: We could technically remove (last_glyph->AdvanceX - last_glyph->X1) from text_size.x here and save a few pixels.
if (text_size.x > pos_max.x - pos_min.x)
{
// Hello wo...
// | | |
// min max ellipsis_max
// <-> this is generally some padding value
const ImFont* font = draw_list->_Data->Font;
const float font_size = draw_list->_Data->FontSize;
const char* text_end_ellipsis = NULL;
ImWchar ellipsis_char = font->EllipsisChar;
int ellipsis_char_count = 1;
if (ellipsis_char == (ImWchar)-1)
{
ellipsis_char = (ImWchar)'.';
ellipsis_char_count = 3;
}
const ImFontGlyph* glyph = font->FindGlyph(ellipsis_char);
float ellipsis_glyph_width = glyph->X1; // Width of the glyph with no padding on either side
float ellipsis_total_width = ellipsis_glyph_width; // Full width of entire ellipsis
if (ellipsis_char_count > 1)
{
// Full ellipsis size without free spacing after it.
const float spacing_between_dots = 1.0f * (draw_list->_Data->FontSize / font->FontSize);
ellipsis_glyph_width = glyph->X1 - glyph->X0 + spacing_between_dots;
ellipsis_total_width = ellipsis_glyph_width * (float)ellipsis_char_count - spacing_between_dots;
}
// We can now claim the space between pos_max.x and ellipsis_max.x
const float text_avail_width = ImMax((ImMax(pos_max.x, ellipsis_max_x) - ellipsis_total_width) - pos_min.x, 1.0f);
float text_size_clipped_x = font->CalcTextSizeA(font_size, text_avail_width, 0.0f, text, text_end_full, &text_end_ellipsis).x;
if (text == text_end_ellipsis && text_end_ellipsis < text_end_full)
{
// Always display at least 1 character if there's no room for character + ellipsis
text_end_ellipsis = text + ImTextCountUtf8BytesFromChar(text, text_end_full);
text_size_clipped_x = font->CalcTextSizeA(font_size, FLT_MAX, 0.0f, text, text_end_ellipsis).x;
}
while (text_end_ellipsis > text && ImCharIsBlankA(text_end_ellipsis[-1]))
{
// Trim trailing space before ellipsis (FIXME: Supporting non-ascii blanks would be nice, for this we need a function to backtrack in UTF-8 text)
text_end_ellipsis--;
text_size_clipped_x -= font->CalcTextSizeA(font_size, FLT_MAX, 0.0f, text_end_ellipsis, text_end_ellipsis + 1).x; // Ascii blanks are always 1 byte
}
// Render text, render ellipsis
RenderTextClippedEx(draw_list, pos_min, ImVec2(clip_max_x, pos_max.y), text, text_end_ellipsis, &text_size, ImVec2(0.0f, 0.0f));
float ellipsis_x = pos_min.x + text_size_clipped_x;
if (ellipsis_x + ellipsis_total_width <= ellipsis_max_x)
for (int i = 0; i < ellipsis_char_count; i++)
{
font->RenderChar(draw_list, font_size, ImVec2(ellipsis_x, pos_min.y), GetColorU32(ImGuiCol_Text), ellipsis_char);
ellipsis_x += ellipsis_glyph_width;
}
}
else
{
RenderTextClippedEx(draw_list, pos_min, ImVec2(clip_max_x, pos_max.y), text, text_end_full, &text_size, ImVec2(0.0f, 0.0f));
}
if (g.LogEnabled)
LogRenderedText(&pos_min, text, text_end_full);
}
// Render a rectangle shaped with optional rounding and borders
void ImGui::RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border, float rounding)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
window->DrawList->AddRectFilled(p_min, p_max, fill_col, rounding);
const float border_size = g.Style.FrameBorderSize;
if (border && border_size > 0.0f)
{
window->DrawList->AddRect(p_min + ImVec2(1, 1), p_max + ImVec2(1, 1), GetColorU32(ImGuiCol_BorderShadow), rounding, 0, border_size);
window->DrawList->AddRect(p_min, p_max, GetColorU32(ImGuiCol_Border), rounding, 0, border_size);
}
}
void ImGui::RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
const float border_size = g.Style.FrameBorderSize;
if (border_size > 0.0f)
{
window->DrawList->AddRect(p_min + ImVec2(1, 1), p_max + ImVec2(1, 1), GetColorU32(ImGuiCol_BorderShadow), rounding, 0, border_size);
window->DrawList->AddRect(p_min, p_max, GetColorU32(ImGuiCol_Border), rounding, 0, border_size);
}
}
void ImGui::RenderNavHighlight(const ImRect& bb, ImGuiID id, ImGuiNavHighlightFlags flags)
{
ImGuiContext& g = *GImGui;
if (id != g.NavId)
return;
if (g.NavDisableHighlight && !(flags & ImGuiNavHighlightFlags_AlwaysDraw))
return;
ImGuiWindow* window = g.CurrentWindow;
if (window->DC.NavHideHighlightOneFrame)
return;
float rounding = (flags & ImGuiNavHighlightFlags_NoRounding) ? 0.0f : g.Style.FrameRounding;
ImRect display_rect = bb;
display_rect.ClipWith(window->ClipRect);
if (flags & ImGuiNavHighlightFlags_TypeDefault)
{
const float THICKNESS = 2.0f;
const float DISTANCE = 3.0f + THICKNESS * 0.5f;
display_rect.Expand(ImVec2(DISTANCE, DISTANCE));
bool fully_visible = window->ClipRect.Contains(display_rect);
if (!fully_visible)
window->DrawList->PushClipRect(display_rect.Min, display_rect.Max);
window->DrawList->AddRect(display_rect.Min + ImVec2(THICKNESS * 0.5f, THICKNESS * 0.5f), display_rect.Max - ImVec2(THICKNESS * 0.5f, THICKNESS * 0.5f), GetColorU32(ImGuiCol_NavHighlight), rounding, 0, THICKNESS);
if (!fully_visible)
window->DrawList->PopClipRect();
}
if (flags & ImGuiNavHighlightFlags_TypeThin)
{
window->DrawList->AddRect(display_rect.Min, display_rect.Max, GetColorU32(ImGuiCol_NavHighlight), rounding, 0, 1.0f);
}
}
//-----------------------------------------------------------------------------
// [SECTION] MAIN CODE (most of the code! lots of stuff, needs tidying up!)
//-----------------------------------------------------------------------------
// ImGuiWindow is mostly a dumb struct. It merely has a constructor and a few helper methods
ImGuiWindow::ImGuiWindow(ImGuiContext* context, const char* name) : DrawListInst(NULL)
{
memset(this, 0, sizeof(*this));
Name = ImStrdup(name);
NameBufLen = (int)strlen(name) + 1;
ID = ImHashStr(name);
IDStack.push_back(ID);
MoveId = GetID("#MOVE");
ScrollTarget = ImVec2(FLT_MAX, FLT_MAX);
ScrollTargetCenterRatio = ImVec2(0.5f, 0.5f);
AutoFitFramesX = AutoFitFramesY = -1;
AutoPosLastDirection = ImGuiDir_None;
SetWindowPosAllowFlags = SetWindowSizeAllowFlags = SetWindowCollapsedAllowFlags = ImGuiCond_Always | ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing;
SetWindowPosVal = SetWindowPosPivot = ImVec2(FLT_MAX, FLT_MAX);
LastFrameActive = -1;
LastTimeActive = -1.0f;
FontWindowScale = 1.0f;
SettingsOffset = -1;
DrawList = &DrawListInst;
DrawList->_Data = &context->DrawListSharedData;
DrawList->_OwnerName = Name;
}
ImGuiWindow::~ImGuiWindow()
{
IM_ASSERT(DrawList == &DrawListInst);
IM_DELETE(Name);
for (int i = 0; i != ColumnsStorage.Size; i++)
ColumnsStorage[i].~ImGuiOldColumns();
}
ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end)
{
ImGuiID seed = IDStack.back();
ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed);
ImGui::KeepAliveID(id);
#ifdef IMGUI_ENABLE_TEST_ENGINE
ImGuiContext& g = *GImGui;
IMGUI_TEST_ENGINE_ID_INFO2(id, ImGuiDataType_String, str, str_end);
#endif
return id;
}
ImGuiID ImGuiWindow::GetID(const void* ptr)
{
ImGuiID seed = IDStack.back();
ImGuiID id = ImHashData(&ptr, sizeof(void*), seed);
ImGui::KeepAliveID(id);
#ifdef IMGUI_ENABLE_TEST_ENGINE
ImGuiContext& g = *GImGui;
IMGUI_TEST_ENGINE_ID_INFO(id, ImGuiDataType_Pointer, ptr);
#endif
return id;
}
ImGuiID ImGuiWindow::GetID(int n)
{
ImGuiID seed = IDStack.back();
ImGuiID id = ImHashData(&n, sizeof(n), seed);
ImGui::KeepAliveID(id);
#ifdef IMGUI_ENABLE_TEST_ENGINE
ImGuiContext& g = *GImGui;
IMGUI_TEST_ENGINE_ID_INFO(id, ImGuiDataType_S32, (intptr_t)n);
#endif
return id;
}
ImGuiID ImGuiWindow::GetIDNoKeepAlive(const char* str, const char* str_end)
{
ImGuiID seed = IDStack.back();
ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed);
#ifdef IMGUI_ENABLE_TEST_ENGINE
ImGuiContext& g = *GImGui;
IMGUI_TEST_ENGINE_ID_INFO2(id, ImGuiDataType_String, str, str_end);
#endif
return id;
}
ImGuiID ImGuiWindow::GetIDNoKeepAlive(const void* ptr)
{
ImGuiID seed = IDStack.back();
ImGuiID id = ImHashData(&ptr, sizeof(void*), seed);
#ifdef IMGUI_ENABLE_TEST_ENGINE
ImGuiContext& g = *GImGui;
IMGUI_TEST_ENGINE_ID_INFO(id, ImGuiDataType_Pointer, ptr);
#endif
return id;
}
ImGuiID ImGuiWindow::GetIDNoKeepAlive(int n)
{
ImGuiID seed = IDStack.back();
ImGuiID id = ImHashData(&n, sizeof(n), seed);
#ifdef IMGUI_ENABLE_TEST_ENGINE
ImGuiContext& g = *GImGui;
IMGUI_TEST_ENGINE_ID_INFO(id, ImGuiDataType_S32, (intptr_t)n);
#endif
return id;
}
// This is only used in rare/specific situations to manufacture an ID out of nowhere.
ImGuiID ImGuiWindow::GetIDFromRectangle(const ImRect& r_abs)
{
ImGuiID seed = IDStack.back();
const int r_rel[4] = { (int)(r_abs.Min.x - Pos.x), (int)(r_abs.Min.y - Pos.y), (int)(r_abs.Max.x - Pos.x), (int)(r_abs.Max.y - Pos.y) };
ImGuiID id = ImHashData(&r_rel, sizeof(r_rel), seed);
ImGui::KeepAliveID(id);
return id;
}
static void SetCurrentWindow(ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
g.CurrentWindow = window;
g.CurrentTable = window && window->DC.CurrentTableIdx != -1 ? g.Tables.GetByIndex(window->DC.CurrentTableIdx) : NULL;
if (window)
g.FontSize = g.DrawListSharedData.FontSize = window->CalcFontSize();
}
void ImGui::GcCompactTransientMiscBuffers()
{
ImGuiContext& g = *GImGui;
g.ItemFlagsStack.clear();
g.GroupStack.clear();
TableGcCompactSettings();
}
// Free up/compact internal window buffers, we can use this when a window becomes unused.
// Not freed:
// - ImGuiWindow, ImGuiWindowSettings, Name, StateStorage, ColumnsStorage (may hold useful data)
// This should have no noticeable visual effect. When the window reappear however, expect new allocation/buffer growth/copy cost.
void ImGui::GcCompactTransientWindowBuffers(ImGuiWindow* window)
{
window->MemoryCompacted = true;
window->MemoryDrawListIdxCapacity = window->DrawList->IdxBuffer.Capacity;
window->MemoryDrawListVtxCapacity = window->DrawList->VtxBuffer.Capacity;
window->IDStack.clear();
window->DrawList->_ClearFreeMemory();
window->DC.ChildWindows.clear();
window->DC.ItemWidthStack.clear();
window->DC.TextWrapPosStack.clear();
}
void ImGui::GcAwakeTransientWindowBuffers(ImGuiWindow* window)
{
// We stored capacity of the ImDrawList buffer to reduce growth-caused allocation/copy when awakening.
// The other buffers tends to amortize much faster.
window->MemoryCompacted = false;
window->DrawList->IdxBuffer.reserve(window->MemoryDrawListIdxCapacity);
window->DrawList->VtxBuffer.reserve(window->MemoryDrawListVtxCapacity);
window->MemoryDrawListIdxCapacity = window->MemoryDrawListVtxCapacity = 0;
}
void ImGui::SetActiveID(ImGuiID id, ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
g.ActiveIdIsJustActivated = (g.ActiveId != id);
if (g.ActiveIdIsJustActivated)
{
g.ActiveIdTimer = 0.0f;
g.ActiveIdHasBeenPressedBefore = false;
g.ActiveIdHasBeenEditedBefore = false;
g.ActiveIdMouseButton = -1;
if (id != 0)
{
g.LastActiveId = id;
g.LastActiveIdTimer = 0.0f;
}
}
g.ActiveId = id;
g.ActiveIdAllowOverlap = false;
g.ActiveIdNoClearOnFocusLoss = false;
g.ActiveIdWindow = window;
g.ActiveIdHasBeenEditedThisFrame = false;
if (id)
{
g.ActiveIdIsAlive = id;
g.ActiveIdSource = (g.NavActivateId == id || g.NavInputId == id || g.NavJustTabbedId == id || g.NavJustMovedToId == id) ? ImGuiInputSource_Nav : ImGuiInputSource_Mouse;
}
// Clear declaration of inputs claimed by the widget
// (Please note that this is WIP and not all keys/inputs are thoroughly declared by all widgets yet)
g.ActiveIdUsingMouseWheel = false;
g.ActiveIdUsingNavDirMask = 0x00;
g.ActiveIdUsingNavInputMask = 0x00;
g.ActiveIdUsingKeyInputMask = 0x00;
}
void ImGui::ClearActiveID()
{
SetActiveID(0, NULL); // g.ActiveId = 0;
}
void ImGui::SetHoveredID(ImGuiID id)
{
ImGuiContext& g = *GImGui;
g.HoveredId = id;
g.HoveredIdAllowOverlap = false;
g.HoveredIdUsingMouseWheel = false;
if (id != 0 && g.HoveredIdPreviousFrame != id)
g.HoveredIdTimer = g.HoveredIdNotActiveTimer = 0.0f;
}
ImGuiID ImGui::GetHoveredID()
{
ImGuiContext& g = *GImGui;
return g.HoveredId ? g.HoveredId : g.HoveredIdPreviousFrame;
}
void ImGui::KeepAliveID(ImGuiID id)
{
ImGuiContext& g = *GImGui;
if (g.ActiveId == id)
g.ActiveIdIsAlive = id;
if (g.ActiveIdPreviousFrame == id)
g.ActiveIdPreviousFrameIsAlive = true;
}
void ImGui::MarkItemEdited(ImGuiID id)
{
// This marking is solely to be able to provide info for IsItemDeactivatedAfterEdit().
// ActiveId might have been released by the time we call this (as in the typical press/release button behavior) but still need need to fill the data.
ImGuiContext& g = *GImGui;
IM_ASSERT(g.ActiveId == id || g.ActiveId == 0 || g.DragDropActive);
IM_UNUSED(id); // Avoid unused variable warnings when asserts are compiled out.
//IM_ASSERT(g.CurrentWindow->DC.LastItemId == id);
g.ActiveIdHasBeenEditedThisFrame = true;
g.ActiveIdHasBeenEditedBefore = true;
g.CurrentWindow->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_Edited;
}
static inline bool IsWindowContentHoverable(ImGuiWindow* window, ImGuiHoveredFlags flags)
{
// An active popup disable hovering on other windows (apart from its own children)
// FIXME-OPT: This could be cached/stored within the window.
ImGuiContext& g = *GImGui;
if (g.NavWindow)
if (ImGuiWindow* focused_root_window = g.NavWindow->RootWindow)
if (focused_root_window->WasActive && focused_root_window != window->RootWindow)
{
// For the purpose of those flags we differentiate "standard popup" from "modal popup"
// NB: The order of those two tests is important because Modal windows are also Popups.
if (focused_root_window->Flags & ImGuiWindowFlags_Modal)
return false;
if ((focused_root_window->Flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiHoveredFlags_AllowWhenBlockedByPopup))
return false;
}
return true;
}
// This is roughly matching the behavior of internal-facing ItemHoverable()
// - we allow hovering to be true when ActiveId==window->MoveID, so that clicking on non-interactive items such as a Text() item still returns true with IsItemHovered()
// - this should work even for non-interactive items that have no ID, so we cannot use LastItemId
bool ImGui::IsItemHovered(ImGuiHoveredFlags flags)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
if (g.NavDisableMouseHover && !g.NavDisableHighlight)
return IsItemFocused();
// Test for bounding box overlap, as updated as ItemAdd()
ImGuiItemStatusFlags status_flags = window->DC.LastItemStatusFlags;
if (!(status_flags & ImGuiItemStatusFlags_HoveredRect))
return false;
IM_ASSERT((flags & (ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows)) == 0); // Flags not supported by this function
// Test if we are hovering the right window (our window could be behind another window)
// [2021/03/02] Reworked / reverted the revert, finally. Note we want e.g. BeginGroup/ItemAdd/EndGroup to work as well. (#3851)
// [2017/10/16] Reverted commit 344d48be3 and testing RootWindow instead. I believe it is correct to NOT test for RootWindow but this leaves us unable
// to use IsItemHovered() after EndChild() itself. Until a solution is found I believe reverting to the test from 2017/09/27 is safe since this was
// the test that has been running for a long while.
if (g.HoveredWindow != window && (status_flags & ImGuiItemStatusFlags_HoveredWindow) == 0)
if ((flags & ImGuiHoveredFlags_AllowWhenOverlapped) == 0)
return false;
// Test if another item is active (e.g. being dragged)
if ((flags & ImGuiHoveredFlags_AllowWhenBlockedByActiveItem) == 0)
if (g.ActiveId != 0 && g.ActiveId != window->DC.LastItemId && !g.ActiveIdAllowOverlap && g.ActiveId != window->MoveId)
return false;
// Test if interactions on this window are blocked by an active popup or modal.
// The ImGuiHoveredFlags_AllowWhenBlockedByPopup flag will be tested here.
if (!IsWindowContentHoverable(window, flags))
return false;
// Test if the item is disabled
if ((g.CurrentItemFlags & ImGuiItemFlags_Disabled) && !(flags & ImGuiHoveredFlags_AllowWhenDisabled))
return false;
// Special handling for calling after Begin() which represent the title bar or tab.
// When the window is collapsed (SkipItems==true) that last item will never be overwritten so we need to detect the case.
if (window->DC.LastItemId == window->MoveId && window->WriteAccessed)
return false;
return true;
}
// Internal facing ItemHoverable() used when submitting widgets. Differs slightly from IsItemHovered().
bool ImGui::ItemHoverable(const ImRect& bb, ImGuiID id)
{
ImGuiContext& g = *GImGui;
if (g.HoveredId != 0 && g.HoveredId != id && !g.HoveredIdAllowOverlap)
return false;
ImGuiWindow* window = g.CurrentWindow;
if (g.HoveredWindow != window)
return false;
if (g.ActiveId != 0 && g.ActiveId != id && !g.ActiveIdAllowOverlap)
return false;
if (!IsMouseHoveringRect(bb.Min, bb.Max))
return false;
if (g.NavDisableMouseHover)
return false;
if (!IsWindowContentHoverable(window, ImGuiHoveredFlags_None) || (g.CurrentItemFlags & ImGuiItemFlags_Disabled))
{
g.HoveredIdDisabled = true;
return false;
}
// We exceptionally allow this function to be called with id==0 to allow using it for easy high-level
// hover test in widgets code. We could also decide to split this function is two.
if (id != 0)
{
SetHoveredID(id);
// [DEBUG] Item Picker tool!
// We perform the check here because SetHoveredID() is not frequently called (1~ time a frame), making
// the cost of this tool near-zero. We can get slightly better call-stack and support picking non-hovered
// items if we perform the test in ItemAdd(), but that would incur a small runtime cost.
// #define IMGUI_DEBUG_TOOL_ITEM_PICKER_EX in imconfig.h if you want this check to also be performed in ItemAdd().
if (g.DebugItemPickerActive && g.HoveredIdPreviousFrame == id)
GetForegroundDrawList()->AddRect(bb.Min, bb.Max, IM_COL32(255, 255, 0, 255));
if (g.DebugItemPickerBreakId == id)
IM_DEBUG_BREAK();
}
return true;
}
bool ImGui::IsClippedEx(const ImRect& bb, ImGuiID id, bool clip_even_when_logged)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
if (!bb.Overlaps(window->ClipRect))
if (id == 0 || (id != g.ActiveId && id != g.NavId))
if (clip_even_when_logged || !g.LogEnabled)
return true;
return false;
}
// This is also inlined in ItemAdd()
// Note: if ImGuiItemStatusFlags_HasDisplayRect is set, user needs to set window->DC.LastItemDisplayRect!
void ImGui::SetLastItemData(ImGuiWindow* window, ImGuiID item_id, ImGuiItemStatusFlags item_flags, const ImRect& item_rect)
{
window->DC.LastItemId = item_id;
window->DC.LastItemStatusFlags = item_flags;
window->DC.LastItemRect = item_rect;
}
// Process TAB/Shift+TAB. Be mindful that this function may _clear_ the ActiveID when tabbing out.
void ImGui::ItemFocusable(ImGuiWindow* window, ImGuiID id)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(id != 0 && id == window->DC.LastItemId);
// Increment counters
// FIXME: ImGuiItemFlags_Disabled should disable more.
const bool is_tab_stop = (g.CurrentItemFlags & (ImGuiItemFlags_NoTabStop | ImGuiItemFlags_Disabled)) == 0;
window->DC.FocusCounterRegular++;
if (is_tab_stop)
{
window->DC.FocusCounterTabStop++;
if (g.NavId == id)
g.NavIdTabCounter = window->DC.FocusCounterTabStop;
}
// Process TAB/Shift-TAB to tab *OUT* of the currently focused item.
// (Note that we can always TAB out of a widget that doesn't allow tabbing in)
if (g.ActiveId == id && g.TabFocusPressed && !IsActiveIdUsingKey(ImGuiKey_Tab) && g.TabFocusRequestNextWindow == NULL)
{
g.TabFocusRequestNextWindow = window;
g.TabFocusRequestNextCounterTabStop = window->DC.FocusCounterTabStop + (g.IO.KeyShift ? (is_tab_stop ? -1 : 0) : +1); // Modulo on index will be applied at the end of frame once we've got the total counter of items.
}
// Handle focus requests
if (g.TabFocusRequestCurrWindow == window)
{
if (window->DC.FocusCounterRegular == g.TabFocusRequestCurrCounterRegular)
{
window->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_FocusedByCode;
return;
}
if (is_tab_stop && window->DC.FocusCounterTabStop == g.TabFocusRequestCurrCounterTabStop)
{
g.NavJustTabbedId = id;
window->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_FocusedByTabbing;
return;
}
// If another item is about to be focused, we clear our own active id
if (g.ActiveId == id)
ClearActiveID();
}
}
float ImGui::CalcWrapWidthForPos(const ImVec2& pos, float wrap_pos_x)
{
if (wrap_pos_x < 0.0f)
return 0.0f;
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
if (wrap_pos_x == 0.0f)
{
// We could decide to setup a default wrapping max point for auto-resizing windows,
// or have auto-wrap (with unspecified wrapping pos) behave as a ContentSize extending function?
//if (window->Hidden && (window->Flags & ImGuiWindowFlags_AlwaysAutoResize))
// wrap_pos_x = ImMax(window->WorkRect.Min.x + g.FontSize * 10.0f, window->WorkRect.Max.x);
//else
wrap_pos_x = window->WorkRect.Max.x;
}
else if (wrap_pos_x > 0.0f)
{
wrap_pos_x += window->Pos.x - window->Scroll.x; // wrap_pos_x is provided is window local space
}
return ImMax(wrap_pos_x - pos.x, 1.0f);
}
// IM_ALLOC() == ImGui::MemAlloc()
void* ImGui::MemAlloc(size_t size)
{
if (ImGuiContext* ctx = GImGui)
ctx->IO.MetricsActiveAllocations++;
return (*GImAllocatorAllocFunc)(size, GImAllocatorUserData);
}
// IM_FREE() == ImGui::MemFree()
void ImGui::MemFree(void* ptr)
{
if (ptr)
if (ImGuiContext* ctx = GImGui)
ctx->IO.MetricsActiveAllocations--;
return (*GImAllocatorFreeFunc)(ptr, GImAllocatorUserData);
}
const char* ImGui::GetClipboardText()
{
ImGuiContext& g = *GImGui;
return g.IO.GetClipboardTextFn ? g.IO.GetClipboardTextFn(g.IO.ClipboardUserData) : "";
}
void ImGui::SetClipboardText(const char* text)
{
ImGuiContext& g = *GImGui;
if (g.IO.SetClipboardTextFn)
g.IO.SetClipboardTextFn(g.IO.ClipboardUserData, text);
}
const char* ImGui::GetVersion()
{
return IMGUI_VERSION;
}
// Internal state access - if you want to share Dear ImGui state between modules (e.g. DLL) or allocate it yourself
// Note that we still point to some static data and members (such as GFontAtlas), so the state instance you end up using will point to the static data within its module
ImGuiContext* ImGui::GetCurrentContext()
{
return GImGui;
}
void ImGui::SetCurrentContext(ImGuiContext* ctx)
{
#ifdef IMGUI_SET_CURRENT_CONTEXT_FUNC
IMGUI_SET_CURRENT_CONTEXT_FUNC(ctx); // For custom thread-based hackery you may want to have control over this.
#else
GImGui = ctx;
#endif
}
void ImGui::SetAllocatorFunctions(ImGuiMemAllocFunc alloc_func, ImGuiMemFreeFunc free_func, void* user_data)
{
GImAllocatorAllocFunc = alloc_func;
GImAllocatorFreeFunc = free_func;
GImAllocatorUserData = user_data;
}
// This is provided to facilitate copying allocators from one static/DLL boundary to another (e.g. retrieve default allocator of your executable address space)
void ImGui::GetAllocatorFunctions(ImGuiMemAllocFunc* p_alloc_func, ImGuiMemFreeFunc* p_free_func, void** p_user_data)
{
*p_alloc_func = GImAllocatorAllocFunc;
*p_free_func = GImAllocatorFreeFunc;
*p_user_data = GImAllocatorUserData;
}
ImGuiContext* ImGui::CreateContext(ImFontAtlas* shared_font_atlas)
{
ImGuiContext* ctx = IM_NEW(ImGuiContext)(shared_font_atlas);
if (GImGui == NULL)
SetCurrentContext(ctx);
Initialize(ctx);
return ctx;
}
void ImGui::DestroyContext(ImGuiContext* ctx)
{
if (ctx == NULL)
ctx = GImGui;
Shutdown(ctx);
if (GImGui == ctx)
SetCurrentContext(NULL);
IM_DELETE(ctx);
}
// No specific ordering/dependency support, will see as needed
ImGuiID ImGui::AddContextHook(ImGuiContext* ctx, const ImGuiContextHook* hook)
{
ImGuiContext& g = *ctx;
IM_ASSERT(hook->Callback != NULL && hook->HookId == 0 && hook->Type != ImGuiContextHookType_PendingRemoval_);
g.Hooks.push_back(*hook);
g.Hooks.back().HookId = ++g.HookIdNext;
return g.HookIdNext;
}
// Deferred removal, avoiding issue with changing vector while iterating it
void ImGui::RemoveContextHook(ImGuiContext* ctx, ImGuiID hook_id)
{
ImGuiContext& g = *ctx;
IM_ASSERT(hook_id != 0);
for (int n = 0; n < g.Hooks.Size; n++)
if (g.Hooks[n].HookId == hook_id)
g.Hooks[n].Type = ImGuiContextHookType_PendingRemoval_;
}
// Call context hooks (used by e.g. test engine)
// We assume a small number of hooks so all stored in same array
void ImGui::CallContextHooks(ImGuiContext* ctx, ImGuiContextHookType hook_type)
{
ImGuiContext& g = *ctx;
for (int n = 0; n < g.Hooks.Size; n++)
if (g.Hooks[n].Type == hook_type)
g.Hooks[n].Callback(&g, &g.Hooks[n]);
}
ImGuiIO& ImGui::GetIO()
{
IM_ASSERT(GImGui != NULL && "No current context. Did you call ImGui::CreateContext() and ImGui::SetCurrentContext() ?");
return GImGui->IO;
}
// Pass this to your backend rendering function! Valid after Render() and until the next call to NewFrame()
ImDrawData* ImGui::GetDrawData()
{
ImGuiContext& g = *GImGui;
ImGuiViewportP* viewport = g.Viewports[0];
return viewport->DrawDataP.Valid ? &viewport->DrawDataP : NULL;
}
double ImGui::GetTime()
{
return GImGui->Time;
}
int ImGui::GetFrameCount()
{
return GImGui->FrameCount;
}
static ImDrawList* GetViewportDrawList(ImGuiViewportP* viewport, size_t drawlist_no, const char* drawlist_name)
{
// Create the draw list on demand, because they are not frequently used for all viewports
ImGuiContext& g = *GImGui;
IM_ASSERT(drawlist_no < IM_ARRAYSIZE(viewport->DrawLists));
ImDrawList* draw_list = viewport->DrawLists[drawlist_no];
if (draw_list == NULL)
{
draw_list = IM_NEW(ImDrawList)(&g.DrawListSharedData);
draw_list->_OwnerName = drawlist_name;
viewport->DrawLists[drawlist_no] = draw_list;
}
// Our ImDrawList system requires that there is always a command
if (viewport->DrawListsLastFrame[drawlist_no] != g.FrameCount)
{
draw_list->_ResetForNewFrame();
draw_list->PushTextureID(g.IO.Fonts->TexID);
draw_list->PushClipRect(viewport->Pos, viewport->Pos + viewport->Size, false);
viewport->DrawListsLastFrame[drawlist_no] = g.FrameCount;
}
return draw_list;
}
ImDrawList* ImGui::GetBackgroundDrawList(ImGuiViewport* viewport)
{
return GetViewportDrawList((ImGuiViewportP*)viewport, 0, "##Background");
}
ImDrawList* ImGui::GetBackgroundDrawList()
{
ImGuiContext& g = *GImGui;
return GetBackgroundDrawList(g.Viewports[0]);
}
ImDrawList* ImGui::GetForegroundDrawList(ImGuiViewport* viewport)
{
return GetViewportDrawList((ImGuiViewportP*)viewport, 1, "##Foreground");
}
ImDrawList* ImGui::GetForegroundDrawList()
{
ImGuiContext& g = *GImGui;
return GetForegroundDrawList(g.Viewports[0]);
}
ImDrawListSharedData* ImGui::GetDrawListSharedData()
{
return &GImGui->DrawListSharedData;
}
void ImGui::StartMouseMovingWindow(ImGuiWindow* window)
{
// Set ActiveId even if the _NoMove flag is set. Without it, dragging away from a window with _NoMove would activate hover on other windows.
// We _also_ call this when clicking in a window empty space when io.ConfigWindowsMoveFromTitleBarOnly is set, but clear g.MovingWindow afterward.
// This is because we want ActiveId to be set even when the window is not permitted to move.
ImGuiContext& g = *GImGui;
FocusWindow(window);
SetActiveID(window->MoveId, window);
g.NavDisableHighlight = true;
g.ActiveIdNoClearOnFocusLoss = true;
g.ActiveIdClickOffset = g.IO.MousePos - window->RootWindow->Pos;
bool can_move_window = true;
if ((window->Flags & ImGuiWindowFlags_NoMove) || (window->RootWindow->Flags & ImGuiWindowFlags_NoMove))
can_move_window = false;
if (can_move_window)
g.MovingWindow = window;
}
// Handle mouse moving window
// Note: moving window with the navigation keys (Square + d-pad / CTRL+TAB + Arrows) are processed in NavUpdateWindowing()
// FIXME: We don't have strong guarantee that g.MovingWindow stay synched with g.ActiveId == g.MovingWindow->MoveId.
// This is currently enforced by the fact that BeginDragDropSource() is setting all g.ActiveIdUsingXXXX flags to inhibit navigation inputs,
// but if we should more thoroughly test cases where g.ActiveId or g.MovingWindow gets changed and not the other.
void ImGui::UpdateMouseMovingWindowNewFrame()
{
ImGuiContext& g = *GImGui;
if (g.MovingWindow != NULL)
{
// We actually want to move the root window. g.MovingWindow == window we clicked on (could be a child window).
// We track it to preserve Focus and so that generally ActiveIdWindow == MovingWindow and ActiveId == MovingWindow->MoveId for consistency.
KeepAliveID(g.ActiveId);
IM_ASSERT(g.MovingWindow && g.MovingWindow->RootWindow);
ImGuiWindow* moving_window = g.MovingWindow->RootWindow;
if (g.IO.MouseDown[0] && IsMousePosValid(&g.IO.MousePos))
{
ImVec2 pos = g.IO.MousePos - g.ActiveIdClickOffset;
if (moving_window->Pos.x != pos.x || moving_window->Pos.y != pos.y)
{
MarkIniSettingsDirty(moving_window);
SetWindowPos(moving_window, pos, ImGuiCond_Always);
}
FocusWindow(g.MovingWindow);
}
else
{
ClearActiveID();
g.MovingWindow = NULL;
}
}
else
{
// When clicking/dragging from a window that has the _NoMove flag, we still set the ActiveId in order to prevent hovering others.
if (g.ActiveIdWindow && g.ActiveIdWindow->MoveId == g.ActiveId)
{
KeepAliveID(g.ActiveId);
if (!g.IO.MouseDown[0])
ClearActiveID();
}
}
}
// Initiate moving window when clicking on empty space or title bar.
// Handle left-click and right-click focus.
void ImGui::UpdateMouseMovingWindowEndFrame()
{
ImGuiContext& g = *GImGui;
if (g.ActiveId != 0 || g.HoveredId != 0)
return;
// Unless we just made a window/popup appear
if (g.NavWindow && g.NavWindow->Appearing)
return;
// Click on empty space to focus window and start moving
// (after we're done with all our widgets)
if (g.IO.MouseClicked[0])
{
// Handle the edge case of a popup being closed while clicking in its empty space.
// If we try to focus it, FocusWindow() > ClosePopupsOverWindow() will accidentally close any parent popups because they are not linked together any more.
ImGuiWindow* root_window = g.HoveredWindow ? g.HoveredWindow->RootWindow : NULL;
const bool is_closed_popup = root_window && (root_window->Flags & ImGuiWindowFlags_Popup) && !IsPopupOpen(root_window->PopupId, ImGuiPopupFlags_AnyPopupLevel);
if (root_window != NULL && !is_closed_popup)
{
StartMouseMovingWindow(g.HoveredWindow); //-V595
// Cancel moving if clicked outside of title bar
if (g.IO.ConfigWindowsMoveFromTitleBarOnly && !(root_window->Flags & ImGuiWindowFlags_NoTitleBar))
if (!root_window->TitleBarRect().Contains(g.IO.MouseClickedPos[0]))
g.MovingWindow = NULL;
// Cancel moving if clicked over an item which was disabled or inhibited by popups (note that we know HoveredId == 0 already)
if (g.HoveredIdDisabled)
g.MovingWindow = NULL;
}
else if (root_window == NULL && g.NavWindow != NULL && GetTopMostPopupModal() == NULL)
{
// Clicking on void disable focus
FocusWindow(NULL);
}
}
// With right mouse button we close popups without changing focus based on where the mouse is aimed
// Instead, focus will be restored to the window under the bottom-most closed popup.
// (The left mouse button path calls FocusWindow on the hovered window, which will lead NewFrame->ClosePopupsOverWindow to trigger)
if (g.IO.MouseClicked[1])
{
// Find the top-most window between HoveredWindow and the top-most Modal Window.
// This is where we can trim the popup stack.
ImGuiWindow* modal = GetTopMostPopupModal();
bool hovered_window_above_modal = g.HoveredWindow && IsWindowAbove(g.HoveredWindow, modal);
ClosePopupsOverWindow(hovered_window_above_modal ? g.HoveredWindow : modal, true);
}
}
static bool IsWindowActiveAndVisible(ImGuiWindow* window)
{
return (window->Active) && (!window->Hidden);
}
static void ImGui::UpdateMouseInputs()
{
ImGuiContext& g = *GImGui;
// Round mouse position to avoid spreading non-rounded position (e.g. UpdateManualResize doesn't support them well)
if (IsMousePosValid(&g.IO.MousePos))
g.IO.MousePos = g.LastValidMousePos = ImFloor(g.IO.MousePos);
// If mouse just appeared or disappeared (usually denoted by -FLT_MAX components) we cancel out movement in MouseDelta
if (IsMousePosValid(&g.IO.MousePos) && IsMousePosValid(&g.IO.MousePosPrev))
g.IO.MouseDelta = g.IO.MousePos - g.IO.MousePosPrev;
else
g.IO.MouseDelta = ImVec2(0.0f, 0.0f);
if (g.IO.MouseDelta.x != 0.0f || g.IO.MouseDelta.y != 0.0f)
g.NavDisableMouseHover = false;
g.IO.MousePosPrev = g.IO.MousePos;
for (int i = 0; i < IM_ARRAYSIZE(g.IO.MouseDown); i++)
{
g.IO.MouseClicked[i] = g.IO.MouseDown[i] && g.IO.MouseDownDuration[i] < 0.0f;
g.IO.MouseReleased[i] = !g.IO.MouseDown[i] && g.IO.MouseDownDuration[i] >= 0.0f;
g.IO.MouseDownDurationPrev[i] = g.IO.MouseDownDuration[i];
g.IO.MouseDownDuration[i] = g.IO.MouseDown[i] ? (g.IO.MouseDownDuration[i] < 0.0f ? 0.0f : g.IO.MouseDownDuration[i] + g.IO.DeltaTime) : -1.0f;
g.IO.MouseDoubleClicked[i] = false;
if (g.IO.MouseClicked[i])
{
if ((float)(g.Time - g.IO.MouseClickedTime[i]) < g.IO.MouseDoubleClickTime)
{
ImVec2 delta_from_click_pos = IsMousePosValid(&g.IO.MousePos) ? (g.IO.MousePos - g.IO.MouseClickedPos[i]) : ImVec2(0.0f, 0.0f);
if (ImLengthSqr(delta_from_click_pos) < g.IO.MouseDoubleClickMaxDist * g.IO.MouseDoubleClickMaxDist)
g.IO.MouseDoubleClicked[i] = true;
g.IO.MouseClickedTime[i] = -g.IO.MouseDoubleClickTime * 2.0f; // Mark as "old enough" so the third click isn't turned into a double-click
}
else
{
g.IO.MouseClickedTime[i] = g.Time;
}
g.IO.MouseClickedPos[i] = g.IO.MousePos;
g.IO.MouseDownWasDoubleClick[i] = g.IO.MouseDoubleClicked[i];
g.IO.MouseDragMaxDistanceAbs[i] = ImVec2(0.0f, 0.0f);
g.IO.MouseDragMaxDistanceSqr[i] = 0.0f;
}
else if (g.IO.MouseDown[i])
{
// Maintain the maximum distance we reaching from the initial click position, which is used with dragging threshold
ImVec2 delta_from_click_pos = IsMousePosValid(&g.IO.MousePos) ? (g.IO.MousePos - g.IO.MouseClickedPos[i]) : ImVec2(0.0f, 0.0f);
g.IO.MouseDragMaxDistanceSqr[i] = ImMax(g.IO.MouseDragMaxDistanceSqr[i], ImLengthSqr(delta_from_click_pos));
g.IO.MouseDragMaxDistanceAbs[i].x = ImMax(g.IO.MouseDragMaxDistanceAbs[i].x, delta_from_click_pos.x < 0.0f ? -delta_from_click_pos.x : delta_from_click_pos.x);
g.IO.MouseDragMaxDistanceAbs[i].y = ImMax(g.IO.MouseDragMaxDistanceAbs[i].y, delta_from_click_pos.y < 0.0f ? -delta_from_click_pos.y : delta_from_click_pos.y);
}
if (!g.IO.MouseDown[i] && !g.IO.MouseReleased[i])
g.IO.MouseDownWasDoubleClick[i] = false;
if (g.IO.MouseClicked[i]) // Clicking any mouse button reactivate mouse hovering which may have been deactivated by gamepad/keyboard navigation
g.NavDisableMouseHover = false;
}
}
static void StartLockWheelingWindow(ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
if (g.WheelingWindow == window)
return;
g.WheelingWindow = window;
g.WheelingWindowRefMousePos = g.IO.MousePos;
g.WheelingWindowTimer = WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER;
}
void ImGui::UpdateMouseWheel()
{
ImGuiContext& g = *GImGui;
// Reset the locked window if we move the mouse or after the timer elapses
if (g.WheelingWindow != NULL)
{
g.WheelingWindowTimer -= g.IO.DeltaTime;
if (IsMousePosValid() && ImLengthSqr(g.IO.MousePos - g.WheelingWindowRefMousePos) > g.IO.MouseDragThreshold * g.IO.MouseDragThreshold)
g.WheelingWindowTimer = 0.0f;
if (g.WheelingWindowTimer <= 0.0f)
{
g.WheelingWindow = NULL;
g.WheelingWindowTimer = 0.0f;
}
}
if (g.IO.MouseWheel == 0.0f && g.IO.MouseWheelH == 0.0f)
return;
if ((g.ActiveId != 0 && g.ActiveIdUsingMouseWheel) || (g.HoveredIdPreviousFrame != 0 && g.HoveredIdPreviousFrameUsingMouseWheel))
return;
ImGuiWindow* window = g.WheelingWindow ? g.WheelingWindow : g.HoveredWindow;
if (!window || window->Collapsed)
return;
// Zoom / Scale window
// FIXME-OBSOLETE: This is an old feature, it still works but pretty much nobody is using it and may be best redesigned.
if (g.IO.MouseWheel != 0.0f && g.IO.KeyCtrl && g.IO.FontAllowUserScaling)
{
StartLockWheelingWindow(window);
const float new_font_scale = ImClamp(window->FontWindowScale + g.IO.MouseWheel * 0.10f, 0.50f, 2.50f);
const float scale = new_font_scale / window->FontWindowScale;
window->FontWindowScale = new_font_scale;
if (window == window->RootWindow)
{
const ImVec2 offset = window->Size * (1.0f - scale) * (g.IO.MousePos - window->Pos) / window->Size;
SetWindowPos(window, window->Pos + offset, 0);
window->Size = ImFloor(window->Size * scale);
window->SizeFull = ImFloor(window->SizeFull * scale);
}
return;
}
// Mouse wheel scrolling
// If a child window has the ImGuiWindowFlags_NoScrollWithMouse flag, we give a chance to scroll its parent
if (g.IO.KeyCtrl)
return;
// As a standard behavior holding SHIFT while using Vertical Mouse Wheel triggers Horizontal scroll instead
// (we avoid doing it on OSX as it the OS input layer handles this already)
const bool swap_axis = g.IO.KeyShift && !g.IO.ConfigMacOSXBehaviors;
const float wheel_y = swap_axis ? 0.0f : g.IO.MouseWheel;
const float wheel_x = swap_axis ? g.IO.MouseWheel : g.IO.MouseWheelH;
// Vertical Mouse Wheel scrolling
if (wheel_y != 0.0f)
{
StartLockWheelingWindow(window);
while ((window->Flags & ImGuiWindowFlags_ChildWindow) && ((window->ScrollMax.y == 0.0f) || ((window->Flags & ImGuiWindowFlags_NoScrollWithMouse) && !(window->Flags & ImGuiWindowFlags_NoMouseInputs))))
window = window->ParentWindow;
if (!(window->Flags & ImGuiWindowFlags_NoScrollWithMouse) && !(window->Flags & ImGuiWindowFlags_NoMouseInputs))
{
float max_step = window->InnerRect.GetHeight() * 0.67f;
float scroll_step = ImFloor(ImMin(5 * window->CalcFontSize(), max_step));
SetScrollY(window, window->Scroll.y - wheel_y * scroll_step);
}
}
// Horizontal Mouse Wheel scrolling, or Vertical Mouse Wheel w/ Shift held
if (wheel_x != 0.0f)
{
StartLockWheelingWindow(window);
while ((window->Flags & ImGuiWindowFlags_ChildWindow) && ((window->ScrollMax.x == 0.0f) || ((window->Flags & ImGuiWindowFlags_NoScrollWithMouse) && !(window->Flags & ImGuiWindowFlags_NoMouseInputs))))
window = window->ParentWindow;
if (!(window->Flags & ImGuiWindowFlags_NoScrollWithMouse) && !(window->Flags & ImGuiWindowFlags_NoMouseInputs))
{
float max_step = window->InnerRect.GetWidth() * 0.67f;
float scroll_step = ImFloor(ImMin(2 * window->CalcFontSize(), max_step));
SetScrollX(window, window->Scroll.x - wheel_x * scroll_step);
}
}
}
void ImGui::UpdateTabFocus()
{
ImGuiContext& g = *GImGui;
// Pressing TAB activate widget focus
g.TabFocusPressed = (g.NavWindow && g.NavWindow->Active && !(g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs) && !g.IO.KeyCtrl && IsKeyPressedMap(ImGuiKey_Tab));
if (g.ActiveId == 0 && g.TabFocusPressed)
{
// - This path is only taken when no widget are active/tabbed-into yet.
// Subsequent tabbing will be processed by FocusableItemRegister()
// - Note that SetKeyboardFocusHere() sets the Next fields mid-frame. To be consistent we also
// manipulate the Next fields here even though they will be turned into Curr fields below.
g.TabFocusRequestNextWindow = g.NavWindow;
g.TabFocusRequestNextCounterRegular = INT_MAX;
if (g.NavId != 0 && g.NavIdTabCounter != INT_MAX)
g.TabFocusRequestNextCounterTabStop = g.NavIdTabCounter + (g.IO.KeyShift ? -1 : 0);
else
g.TabFocusRequestNextCounterTabStop = g.IO.KeyShift ? -1 : 0;
}
// Turn queued focus request into current one
g.TabFocusRequestCurrWindow = NULL;
g.TabFocusRequestCurrCounterRegular = g.TabFocusRequestCurrCounterTabStop = INT_MAX;
if (g.TabFocusRequestNextWindow != NULL)
{
ImGuiWindow* window = g.TabFocusRequestNextWindow;
g.TabFocusRequestCurrWindow = window;
if (g.TabFocusRequestNextCounterRegular != INT_MAX && window->DC.FocusCounterRegular != -1)
g.TabFocusRequestCurrCounterRegular = ImModPositive(g.TabFocusRequestNextCounterRegular, window->DC.FocusCounterRegular + 1);
if (g.TabFocusRequestNextCounterTabStop != INT_MAX && window->DC.FocusCounterTabStop != -1)
g.TabFocusRequestCurrCounterTabStop = ImModPositive(g.TabFocusRequestNextCounterTabStop, window->DC.FocusCounterTabStop + 1);
g.TabFocusRequestNextWindow = NULL;
g.TabFocusRequestNextCounterRegular = g.TabFocusRequestNextCounterTabStop = INT_MAX;
}
g.NavIdTabCounter = INT_MAX;
}
// The reason this is exposed in imgui_internal.h is: on touch-based system that don't have hovering, we want to dispatch inputs to the right target (imgui vs imgui+app)
void ImGui::UpdateHoveredWindowAndCaptureFlags()
{
ImGuiContext& g = *GImGui;
g.WindowsHoverPadding = ImMax(g.Style.TouchExtraPadding, ImVec2(WINDOWS_HOVER_PADDING, WINDOWS_HOVER_PADDING));
// Find the window hovered by mouse:
// - Child windows can extend beyond the limit of their parent so we need to derive HoveredRootWindow from HoveredWindow.
// - When moving a window we can skip the search, which also conveniently bypasses the fact that window->WindowRectClipped is lagging as this point of the frame.
// - We also support the moved window toggling the NoInputs flag after moving has started in order to be able to detect windows below it, which is useful for e.g. docking mechanisms.
bool clear_hovered_windows = false;
FindHoveredWindow();
// Modal windows prevents mouse from hovering behind them.
ImGuiWindow* modal_window = GetTopMostPopupModal();
if (modal_window && g.HoveredWindow && !IsWindowChildOf(g.HoveredWindow->RootWindow, modal_window))
clear_hovered_windows = true;
// Disabled mouse?
if (g.IO.ConfigFlags & ImGuiConfigFlags_NoMouse)
clear_hovered_windows = true;
// We track click ownership. When clicked outside of a window the click is owned by the application and won't report hovering nor request capture even while dragging over our windows afterward.
int mouse_earliest_button_down = -1;
bool mouse_any_down = false;
for (int i = 0; i < IM_ARRAYSIZE(g.IO.MouseDown); i++)
{
if (g.IO.MouseClicked[i])
g.IO.MouseDownOwned[i] = (g.HoveredWindow != NULL) || (g.OpenPopupStack.Size > 0);
mouse_any_down |= g.IO.MouseDown[i];
if (g.IO.MouseDown[i])
if (mouse_earliest_button_down == -1 || g.IO.MouseClickedTime[i] < g.IO.MouseClickedTime[mouse_earliest_button_down])
mouse_earliest_button_down = i;
}
const bool mouse_avail_to_imgui = (mouse_earliest_button_down == -1) || g.IO.MouseDownOwned[mouse_earliest_button_down];
// If mouse was first clicked outside of ImGui bounds we also cancel out hovering.
// FIXME: For patterns of drag and drop across OS windows, we may need to rework/remove this test (first committed 311c0ca9 on 2015/02)
const bool mouse_dragging_extern_payload = g.DragDropActive && (g.DragDropSourceFlags & ImGuiDragDropFlags_SourceExtern) != 0;
if (!mouse_avail_to_imgui && !mouse_dragging_extern_payload)
clear_hovered_windows = true;
if (clear_hovered_windows)
g.HoveredWindow = g.HoveredWindowUnderMovingWindow = NULL;
// Update io.WantCaptureMouse for the user application (true = dispatch mouse info to imgui, false = dispatch mouse info to Dear ImGui + app)
if (g.WantCaptureMouseNextFrame != -1)
g.IO.WantCaptureMouse = (g.WantCaptureMouseNextFrame != 0);
else
g.IO.WantCaptureMouse = (mouse_avail_to_imgui && (g.HoveredWindow != NULL || mouse_any_down)) || (g.OpenPopupStack.Size > 0);
// Update io.WantCaptureKeyboard for the user application (true = dispatch keyboard info to imgui, false = dispatch keyboard info to Dear ImGui + app)
if (g.WantCaptureKeyboardNextFrame != -1)
g.IO.WantCaptureKeyboard = (g.WantCaptureKeyboardNextFrame != 0);
else
g.IO.WantCaptureKeyboard = (g.ActiveId != 0) || (modal_window != NULL);
if (g.IO.NavActive && (g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) && !(g.IO.ConfigFlags & ImGuiConfigFlags_NavNoCaptureKeyboard))
g.IO.WantCaptureKeyboard = true;
// Update io.WantTextInput flag, this is to allow systems without a keyboard (e.g. mobile, hand-held) to show a software keyboard if possible
g.IO.WantTextInput = (g.WantTextInputNextFrame != -1) ? (g.WantTextInputNextFrame != 0) : false;
}
ImGuiKeyModFlags ImGui::GetMergedKeyModFlags()
{
ImGuiContext& g = *GImGui;
ImGuiKeyModFlags key_mod_flags = ImGuiKeyModFlags_None;
if (g.IO.KeyCtrl) { key_mod_flags |= ImGuiKeyModFlags_Ctrl; }
if (g.IO.KeyShift) { key_mod_flags |= ImGuiKeyModFlags_Shift; }
if (g.IO.KeyAlt) { key_mod_flags |= ImGuiKeyModFlags_Alt; }
if (g.IO.KeySuper) { key_mod_flags |= ImGuiKeyModFlags_Super; }
return key_mod_flags;
}
void ImGui::NewFrame()
{
IM_ASSERT(GImGui != NULL && "No current context. Did you call ImGui::CreateContext() and ImGui::SetCurrentContext() ?");
ImGuiContext& g = *GImGui;
// Remove pending delete hooks before frame start.
// This deferred removal avoid issues of removal while iterating the hook vector
for (int n = g.Hooks.Size - 1; n >= 0; n--)
if (g.Hooks[n].Type == ImGuiContextHookType_PendingRemoval_)
g.Hooks.erase(&g.Hooks[n]);
CallContextHooks(&g, ImGuiContextHookType_NewFramePre);
// Check and assert for various common IO and Configuration mistakes
ErrorCheckNewFrameSanityChecks();
// Load settings on first frame, save settings when modified (after a delay)
UpdateSettings();
g.Time += g.IO.DeltaTime;
g.WithinFrameScope = true;
g.FrameCount += 1;
g.TooltipOverrideCount = 0;
g.WindowsActiveCount = 0;
g.MenusIdSubmittedThisFrame.resize(0);
// Calculate frame-rate for the user, as a purely luxurious feature
g.FramerateSecPerFrameAccum += g.IO.DeltaTime - g.FramerateSecPerFrame[g.FramerateSecPerFrameIdx];
g.FramerateSecPerFrame[g.FramerateSecPerFrameIdx] = g.IO.DeltaTime;
g.FramerateSecPerFrameIdx = (g.FramerateSecPerFrameIdx + 1) % IM_ARRAYSIZE(g.FramerateSecPerFrame);
g.FramerateSecPerFrameCount = ImMin(g.FramerateSecPerFrameCount + 1, IM_ARRAYSIZE(g.FramerateSecPerFrame));
g.IO.Framerate = (g.FramerateSecPerFrameAccum > 0.0f) ? (1.0f / (g.FramerateSecPerFrameAccum / (float)g.FramerateSecPerFrameCount)) : FLT_MAX;
UpdateViewportsNewFrame();
// Setup current font and draw list shared data
g.IO.Fonts->Locked = true;
SetCurrentFont(GetDefaultFont());
IM_ASSERT(g.Font->IsLoaded());
ImRect virtual_space(FLT_MAX, FLT_MAX, -FLT_MAX, -FLT_MAX);
for (int n = 0; n < g.Viewports.Size; n++)
virtual_space.Add(g.Viewports[n]->GetMainRect());
g.DrawListSharedData.ClipRectFullscreen = virtual_space.ToVec4();
g.DrawListSharedData.CurveTessellationTol = g.Style.CurveTessellationTol;
g.DrawListSharedData.SetCircleTessellationMaxError(g.Style.CircleTessellationMaxError);
g.DrawListSharedData.InitialFlags = ImDrawListFlags_None;
if (g.Style.AntiAliasedLines)
g.DrawListSharedData.InitialFlags |= ImDrawListFlags_AntiAliasedLines;
if (g.Style.AntiAliasedLinesUseTex && !(g.Font->ContainerAtlas->Flags & ImFontAtlasFlags_NoBakedLines))
g.DrawListSharedData.InitialFlags |= ImDrawListFlags_AntiAliasedLinesUseTex;
if (g.Style.AntiAliasedFill)
g.DrawListSharedData.InitialFlags |= ImDrawListFlags_AntiAliasedFill;
if (g.IO.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset)
g.DrawListSharedData.InitialFlags |= ImDrawListFlags_AllowVtxOffset;
// Mark rendering data as invalid to prevent user who may have a handle on it to use it.
for (int n = 0; n < g.Viewports.Size; n++)
{
ImGuiViewportP* viewport = g.Viewports[n];
viewport->DrawDataP.Clear();
}
// Drag and drop keep the source ID alive so even if the source disappear our state is consistent
if (g.DragDropActive && g.DragDropPayload.SourceId == g.ActiveId)
KeepAliveID(g.DragDropPayload.SourceId);
// Update HoveredId data
if (!g.HoveredIdPreviousFrame)
g.HoveredIdTimer = 0.0f;
if (!g.HoveredIdPreviousFrame || (g.HoveredId && g.ActiveId == g.HoveredId))
g.HoveredIdNotActiveTimer = 0.0f;
if (g.HoveredId)
g.HoveredIdTimer += g.IO.DeltaTime;
if (g.HoveredId && g.ActiveId != g.HoveredId)
g.HoveredIdNotActiveTimer += g.IO.DeltaTime;
g.HoveredIdPreviousFrame = g.HoveredId;
g.HoveredIdPreviousFrameUsingMouseWheel = g.HoveredIdUsingMouseWheel;
g.HoveredId = 0;
g.HoveredIdAllowOverlap = false;
g.HoveredIdUsingMouseWheel = false;
g.HoveredIdDisabled = false;
// Update ActiveId data (clear reference to active widget if the widget isn't alive anymore)
if (g.ActiveIdIsAlive != g.ActiveId && g.ActiveIdPreviousFrame == g.ActiveId && g.ActiveId != 0)
ClearActiveID();
if (g.ActiveId)
g.ActiveIdTimer += g.IO.DeltaTime;
g.LastActiveIdTimer += g.IO.DeltaTime;
g.ActiveIdPreviousFrame = g.ActiveId;
g.ActiveIdPreviousFrameWindow = g.ActiveIdWindow;
g.ActiveIdPreviousFrameHasBeenEditedBefore = g.ActiveIdHasBeenEditedBefore;
g.ActiveIdIsAlive = 0;
g.ActiveIdHasBeenEditedThisFrame = false;
g.ActiveIdPreviousFrameIsAlive = false;
g.ActiveIdIsJustActivated = false;
if (g.TempInputId != 0 && g.ActiveId != g.TempInputId)
g.TempInputId = 0;
if (g.ActiveId == 0)
{
g.ActiveIdUsingNavDirMask = 0x00;
g.ActiveIdUsingNavInputMask = 0x00;
g.ActiveIdUsingKeyInputMask = 0x00;
}
// Drag and drop
g.DragDropAcceptIdPrev = g.DragDropAcceptIdCurr;
g.DragDropAcceptIdCurr = 0;
g.DragDropAcceptIdCurrRectSurface = FLT_MAX;
g.DragDropWithinSource = false;
g.DragDropWithinTarget = false;
g.DragDropHoldJustPressedId = 0;
// Update keyboard input state
// Synchronize io.KeyMods with individual modifiers io.KeyXXX bools
g.IO.KeyMods = GetMergedKeyModFlags();
memcpy(g.IO.KeysDownDurationPrev, g.IO.KeysDownDuration, sizeof(g.IO.KeysDownDuration));
for (int i = 0; i < IM_ARRAYSIZE(g.IO.KeysDown); i++)
g.IO.KeysDownDuration[i] = g.IO.KeysDown[i] ? (g.IO.KeysDownDuration[i] < 0.0f ? 0.0f : g.IO.KeysDownDuration[i] + g.IO.DeltaTime) : -1.0f;
// Update gamepad/keyboard navigation
NavUpdate();
// Update mouse input state
UpdateMouseInputs();
// Find hovered window
// (needs to be before UpdateMouseMovingWindowNewFrame so we fill g.HoveredWindowUnderMovingWindow on the mouse release frame)
UpdateHoveredWindowAndCaptureFlags();
// Handle user moving window with mouse (at the beginning of the frame to avoid input lag or sheering)
UpdateMouseMovingWindowNewFrame();
// Background darkening/whitening
if (GetTopMostPopupModal() != NULL || (g.NavWindowingTarget != NULL && g.NavWindowingHighlightAlpha > 0.0f))
g.DimBgRatio = ImMin(g.DimBgRatio + g.IO.DeltaTime * 6.0f, 1.0f);
else
g.DimBgRatio = ImMax(g.DimBgRatio - g.IO.DeltaTime * 10.0f, 0.0f);
g.MouseCursor = ImGuiMouseCursor_Arrow;
g.WantCaptureMouseNextFrame = g.WantCaptureKeyboardNextFrame = g.WantTextInputNextFrame = -1;
g.PlatformImePos = ImVec2(1.0f, 1.0f); // OS Input Method Editor showing on top-left of our window by default
// Mouse wheel scrolling, scale
UpdateMouseWheel();
// Update legacy TAB focus
UpdateTabFocus();
// Mark all windows as not visible and compact unused memory.
IM_ASSERT(g.WindowsFocusOrder.Size <= g.Windows.Size);
const float memory_compact_start_time = (g.GcCompactAll || g.IO.ConfigMemoryCompactTimer < 0.0f) ? FLT_MAX : (float)g.Time - g.IO.ConfigMemoryCompactTimer;
for (int i = 0; i != g.Windows.Size; i++)
{
ImGuiWindow* window = g.Windows[i];
window->WasActive = window->Active;
window->BeginCount = 0;
window->Active = false;
window->WriteAccessed = false;
// Garbage collect transient buffers of recently unused windows
if (!window->WasActive && !window->MemoryCompacted && window->LastTimeActive < memory_compact_start_time)
GcCompactTransientWindowBuffers(window);
}
// Garbage collect transient buffers of recently unused tables
for (int i = 0; i < g.TablesLastTimeActive.Size; i++)
if (g.TablesLastTimeActive[i] >= 0.0f && g.TablesLastTimeActive[i] < memory_compact_start_time)
TableGcCompactTransientBuffers(g.Tables.GetByIndex(i));
for (int i = 0; i < g.TablesTempDataStack.Size; i++)
if (g.TablesTempDataStack[i].LastTimeActive >= 0.0f && g.TablesTempDataStack[i].LastTimeActive < memory_compact_start_time)
TableGcCompactTransientBuffers(&g.TablesTempDataStack[i]);
if (g.GcCompactAll)
GcCompactTransientMiscBuffers();
g.GcCompactAll = false;
// Closing the focused window restore focus to the first active root window in descending z-order
if (g.NavWindow && !g.NavWindow->WasActive)
FocusTopMostWindowUnderOne(NULL, NULL);
// No window should be open at the beginning of the frame.
// But in order to allow the user to call NewFrame() multiple times without calling Render(), we are doing an explicit clear.
g.CurrentWindowStack.resize(0);
g.BeginPopupStack.resize(0);
g.ItemFlagsStack.resize(0);
g.ItemFlagsStack.push_back(ImGuiItemFlags_None);
g.GroupStack.resize(0);
ClosePopupsOverWindow(g.NavWindow, false);
// [DEBUG] Item picker tool - start with DebugStartItemPicker() - useful to visually select an item and break into its call-stack.
UpdateDebugToolItemPicker();
// Create implicit/fallback window - which we will only render it if the user has added something to it.
// We don't use "Debug" to avoid colliding with user trying to create a "Debug" window with custom flags.
// This fallback is particularly important as it avoid ImGui:: calls from crashing.
g.WithinFrameScopeWithImplicitWindow = true;
SetNextWindowSize(ImVec2(400, 400), ImGuiCond_FirstUseEver);
Begin("Debug##Default");
IM_ASSERT(g.CurrentWindow->IsFallbackWindow == true);
CallContextHooks(&g, ImGuiContextHookType_NewFramePost);
}
// [DEBUG] Item picker tool - start with DebugStartItemPicker() - useful to visually select an item and break into its call-stack.
void ImGui::UpdateDebugToolItemPicker()
{
ImGuiContext& g = *GImGui;
g.DebugItemPickerBreakId = 0;
if (g.DebugItemPickerActive)
{
const ImGuiID hovered_id = g.HoveredIdPreviousFrame;
SetMouseCursor(ImGuiMouseCursor_Hand);
if (IsKeyPressedMap(ImGuiKey_Escape))
g.DebugItemPickerActive = false;
if (IsMouseClicked(0) && hovered_id)
{
g.DebugItemPickerBreakId = hovered_id;
g.DebugItemPickerActive = false;
}
SetNextWindowBgAlpha(0.60f);
BeginTooltip();
Text("HoveredId: 0x%08X", hovered_id);
Text("Press ESC to abort picking.");
TextColored(GetStyleColorVec4(hovered_id ? ImGuiCol_Text : ImGuiCol_TextDisabled), "Click to break in debugger!");
EndTooltip();
}
}
void ImGui::Initialize(ImGuiContext* context)
{
ImGuiContext& g = *context;
IM_ASSERT(!g.Initialized && !g.SettingsLoaded);
// Add .ini handle for ImGuiWindow type
{
ImGuiSettingsHandler ini_handler;
ini_handler.TypeName = "Window";
ini_handler.TypeHash = ImHashStr("Window");
ini_handler.ClearAllFn = WindowSettingsHandler_ClearAll;
ini_handler.ReadOpenFn = WindowSettingsHandler_ReadOpen;
ini_handler.ReadLineFn = WindowSettingsHandler_ReadLine;
ini_handler.ApplyAllFn = WindowSettingsHandler_ApplyAll;
ini_handler.WriteAllFn = WindowSettingsHandler_WriteAll;
g.SettingsHandlers.push_back(ini_handler);
}
// Add .ini handle for ImGuiTable type
TableSettingsInstallHandler(context);
// Create default viewport
ImGuiViewportP* viewport = IM_NEW(ImGuiViewportP)();
g.Viewports.push_back(viewport);
#ifdef IMGUI_HAS_DOCK
#endif // #ifdef IMGUI_HAS_DOCK
g.Initialized = true;
}
// This function is merely here to free heap allocations.
void ImGui::Shutdown(ImGuiContext* context)
{
// The fonts atlas can be used prior to calling NewFrame(), so we clear it even if g.Initialized is FALSE (which would happen if we never called NewFrame)
ImGuiContext& g = *context;
if (g.IO.Fonts && g.FontAtlasOwnedByContext)
{
g.IO.Fonts->Locked = false;
IM_DELETE(g.IO.Fonts);
}
g.IO.Fonts = NULL;
// Cleanup of other data are conditional on actually having initialized Dear ImGui.
if (!g.Initialized)
return;
// Save settings (unless we haven't attempted to load them: CreateContext/DestroyContext without a call to NewFrame shouldn't save an empty file)
if (g.SettingsLoaded && g.IO.IniFilename != NULL)
{
ImGuiContext* backup_context = GImGui;
SetCurrentContext(&g);
SaveIniSettingsToDisk(g.IO.IniFilename);
SetCurrentContext(backup_context);
}
CallContextHooks(&g, ImGuiContextHookType_Shutdown);
// Clear everything else
for (int i = 0; i < g.Windows.Size; i++)
IM_DELETE(g.Windows[i]);
g.Windows.clear();
g.WindowsFocusOrder.clear();
g.WindowsTempSortBuffer.clear();
g.CurrentWindow = NULL;
g.CurrentWindowStack.clear();
g.WindowsById.Clear();
g.NavWindow = NULL;
g.HoveredWindow = g.HoveredWindowUnderMovingWindow = NULL;
g.ActiveIdWindow = g.ActiveIdPreviousFrameWindow = NULL;
g.MovingWindow = NULL;
g.ColorStack.clear();
g.StyleVarStack.clear();
g.FontStack.clear();
g.OpenPopupStack.clear();
g.BeginPopupStack.clear();
for (int i = 0; i < g.Viewports.Size; i++)
IM_DELETE(g.Viewports[i]);
g.Viewports.clear();
g.TabBars.Clear();
g.CurrentTabBarStack.clear();
g.ShrinkWidthBuffer.clear();
g.Tables.Clear();
for (int i = 0; i < g.TablesTempDataStack.Size; i++)
g.TablesTempDataStack[i].~ImGuiTableTempData();
g.TablesTempDataStack.clear();
g.DrawChannelsTempMergeBuffer.clear();
g.ClipboardHandlerData.clear();
g.MenusIdSubmittedThisFrame.clear();
g.InputTextState.ClearFreeMemory();
g.SettingsWindows.clear();
g.SettingsHandlers.clear();
if (g.LogFile)
{
#ifndef IMGUI_DISABLE_TTY_FUNCTIONS
if (g.LogFile != stdout)
#endif
ImFileClose(g.LogFile);
g.LogFile = NULL;
}
g.LogBuffer.clear();
g.Initialized = false;
}
// FIXME: Add a more explicit sort order in the window structure.
static int IMGUI_CDECL ChildWindowComparer(const void* lhs, const void* rhs)
{
const ImGuiWindow* const a = *(const ImGuiWindow* const *)lhs;
const ImGuiWindow* const b = *(const ImGuiWindow* const *)rhs;
if (int d = (a->Flags & ImGuiWindowFlags_Popup) - (b->Flags & ImGuiWindowFlags_Popup))
return d;
if (int d = (a->Flags & ImGuiWindowFlags_Tooltip) - (b->Flags & ImGuiWindowFlags_Tooltip))
return d;
return (a->BeginOrderWithinParent - b->BeginOrderWithinParent);
}
static void AddWindowToSortBuffer(ImVector<ImGuiWindow*>* out_sorted_windows, ImGuiWindow* window)
{
out_sorted_windows->push_back(window);
if (window->Active)
{
int count = window->DC.ChildWindows.Size;
if (count > 1)
ImQsort(window->DC.ChildWindows.Data, (size_t)count, sizeof(ImGuiWindow*), ChildWindowComparer);
for (int i = 0; i < count; i++)
{
ImGuiWindow* child = window->DC.ChildWindows[i];
if (child->Active)
AddWindowToSortBuffer(out_sorted_windows, child);
}
}
}
static void AddDrawListToDrawData(ImVector<ImDrawList*>* out_list, ImDrawList* draw_list)
{
// Remove trailing command if unused.
// Technically we could return directly instead of popping, but this make things looks neat in Metrics/Debugger window as well.
draw_list->_PopUnusedDrawCmd();
if (draw_list->CmdBuffer.Size == 0)
return;
// Draw list sanity check. Detect mismatch between PrimReserve() calls and incrementing _VtxCurrentIdx, _VtxWritePtr etc.
// May trigger for you if you are using PrimXXX functions incorrectly.
IM_ASSERT(draw_list->VtxBuffer.Size == 0 || draw_list->_VtxWritePtr == draw_list->VtxBuffer.Data + draw_list->VtxBuffer.Size);
IM_ASSERT(draw_list->IdxBuffer.Size == 0 || draw_list->_IdxWritePtr == draw_list->IdxBuffer.Data + draw_list->IdxBuffer.Size);
if (!(draw_list->Flags & ImDrawListFlags_AllowVtxOffset))
IM_ASSERT((int)draw_list->_VtxCurrentIdx == draw_list->VtxBuffer.Size);
// Check that draw_list doesn't use more vertices than indexable (default ImDrawIdx = unsigned short = 2 bytes = 64K vertices per ImDrawList = per window)
// If this assert triggers because you are drawing lots of stuff manually:
// - First, make sure you are coarse clipping yourself and not trying to draw many things outside visible bounds.
// Be mindful that the ImDrawList API doesn't filter vertices. Use the Metrics/Debugger window to inspect draw list contents.
// - If you want large meshes with more than 64K vertices, you can either:
// (A) Handle the ImDrawCmd::VtxOffset value in your renderer backend, and set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset'.
// Most example backends already support this from 1.71. Pre-1.71 backends won't.
// Some graphics API such as GL ES 1/2 don't have a way to offset the starting vertex so it is not supported for them.
// (B) Or handle 32-bit indices in your renderer backend, and uncomment '#define ImDrawIdx unsigned int' line in imconfig.h.
// Most example backends already support this. For example, the OpenGL example code detect index size at compile-time:
// glDrawElements(GL_TRIANGLES, (GLsizei)pcmd->ElemCount, sizeof(ImDrawIdx) == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT, idx_buffer_offset);
// Your own engine or render API may use different parameters or function calls to specify index sizes.
// 2 and 4 bytes indices are generally supported by most graphics API.
// - If for some reason neither of those solutions works for you, a workaround is to call BeginChild()/EndChild() before reaching
// the 64K limit to split your draw commands in multiple draw lists.
if (sizeof(ImDrawIdx) == 2)
IM_ASSERT(draw_list->_VtxCurrentIdx < (1 << 16) && "Too many vertices in ImDrawList using 16-bit indices. Read comment above");
out_list->push_back(draw_list);
}
static void AddWindowToDrawData(ImGuiWindow* window, int layer)
{
ImGuiContext& g = *GImGui;
ImGuiViewportP* viewport = g.Viewports[0];
g.IO.MetricsRenderWindows++;
AddDrawListToDrawData(&viewport->DrawDataBuilder.Layers[layer], window->DrawList);
for (int i = 0; i < window->DC.ChildWindows.Size; i++)
{
ImGuiWindow* child = window->DC.ChildWindows[i];
if (IsWindowActiveAndVisible(child)) // Clipped children may have been marked not active
AddWindowToDrawData(child, layer);
}
}
// Layer is locked for the root window, however child windows may use a different viewport (e.g. extruding menu)
static void AddRootWindowToDrawData(ImGuiWindow* window)
{
int layer = (window->Flags & ImGuiWindowFlags_Tooltip) ? 1 : 0;
AddWindowToDrawData(window, layer);
}
void ImDrawDataBuilder::FlattenIntoSingleLayer()
{
int n = Layers[0].Size;
int size = n;
for (int i = 1; i < IM_ARRAYSIZE(Layers); i++)
size += Layers[i].Size;
Layers[0].resize(size);
for (int layer_n = 1; layer_n < IM_ARRAYSIZE(Layers); layer_n++)
{
ImVector<ImDrawList*>& layer = Layers[layer_n];
if (layer.empty())
continue;
memcpy(&Layers[0][n], &layer[0], layer.Size * sizeof(ImDrawList*));
n += layer.Size;
layer.resize(0);
}
}
static void SetupViewportDrawData(ImGuiViewportP* viewport, ImVector<ImDrawList*>* draw_lists)
{
ImGuiIO& io = ImGui::GetIO();
ImDrawData* draw_data = &viewport->DrawDataP;
draw_data->Valid = true;
draw_data->CmdLists = (draw_lists->Size > 0) ? draw_lists->Data : NULL;
draw_data->CmdListsCount = draw_lists->Size;
draw_data->TotalVtxCount = draw_data->TotalIdxCount = 0;
draw_data->DisplayPos = viewport->Pos;
draw_data->DisplaySize = viewport->Size;
draw_data->FramebufferScale = io.DisplayFramebufferScale;
for (int n = 0; n < draw_lists->Size; n++)
{
draw_data->TotalVtxCount += draw_lists->Data[n]->VtxBuffer.Size;
draw_data->TotalIdxCount += draw_lists->Data[n]->IdxBuffer.Size;
}
}
// Push a clipping rectangle for both ImGui logic (hit-testing etc.) and low-level ImDrawList rendering.
// - When using this function it is sane to ensure that float are perfectly rounded to integer values,
// so that e.g. (int)(max.x-min.x) in user's render produce correct result.
// - If the code here changes, may need to update code of functions like NextColumn() and PushColumnClipRect():
// some frequently called functions which to modify both channels and clipping simultaneously tend to use the
// more specialized SetWindowClipRectBeforeSetChannel() to avoid extraneous updates of underlying ImDrawCmds.
void ImGui::PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect)
{
ImGuiWindow* window = GetCurrentWindow();
window->DrawList->PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect);
window->ClipRect = window->DrawList->_ClipRectStack.back();
}
void ImGui::PopClipRect()
{
ImGuiWindow* window = GetCurrentWindow();
window->DrawList->PopClipRect();
window->ClipRect = window->DrawList->_ClipRectStack.back();
}
// This is normally called by Render(). You may want to call it directly if you want to avoid calling Render() but the gain will be very minimal.
void ImGui::EndFrame()
{
ImGuiContext& g = *GImGui;
IM_ASSERT(g.Initialized);
// Don't process EndFrame() multiple times.
if (g.FrameCountEnded == g.FrameCount)
return;
IM_ASSERT(g.WithinFrameScope && "Forgot to call ImGui::NewFrame()?");
CallContextHooks(&g, ImGuiContextHookType_EndFramePre);
ErrorCheckEndFrameSanityChecks();
// Notify OS when our Input Method Editor cursor has moved (e.g. CJK inputs using Microsoft IME)
if (g.IO.ImeSetInputScreenPosFn && (g.PlatformImeLastPos.x == FLT_MAX || ImLengthSqr(g.PlatformImeLastPos - g.PlatformImePos) > 0.0001f))
{
g.IO.ImeSetInputScreenPosFn((int)g.PlatformImePos.x, (int)g.PlatformImePos.y);
g.PlatformImeLastPos = g.PlatformImePos;
}
// Hide implicit/fallback "Debug" window if it hasn't been used
g.WithinFrameScopeWithImplicitWindow = false;
if (g.CurrentWindow && !g.CurrentWindow->WriteAccessed)
g.CurrentWindow->Active = false;
End();
// Update navigation: CTRL+Tab, wrap-around requests
NavEndFrame();
// Drag and Drop: Elapse payload (if delivered, or if source stops being submitted)
if (g.DragDropActive)
{
bool is_delivered = g.DragDropPayload.Delivery;
bool is_elapsed = (g.DragDropPayload.DataFrameCount + 1 < g.FrameCount) && ((g.DragDropSourceFlags & ImGuiDragDropFlags_SourceAutoExpirePayload) || !IsMouseDown(g.DragDropMouseButton));
if (is_delivered || is_elapsed)
ClearDragDrop();
}
// Drag and Drop: Fallback for source tooltip. This is not ideal but better than nothing.
if (g.DragDropActive && g.DragDropSourceFrameCount < g.FrameCount && !(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoPreviewTooltip))
{
g.DragDropWithinSource = true;
SetTooltip("...");
g.DragDropWithinSource = false;
}
// End frame
g.WithinFrameScope = false;
g.FrameCountEnded = g.FrameCount;
// Initiate moving window + handle left-click and right-click focus
UpdateMouseMovingWindowEndFrame();
// Sort the window list so that all child windows are after their parent
// We cannot do that on FocusWindow() because children may not exist yet
g.WindowsTempSortBuffer.resize(0);
g.WindowsTempSortBuffer.reserve(g.Windows.Size);
for (int i = 0; i != g.Windows.Size; i++)
{
ImGuiWindow* window = g.Windows[i];
if (window->Active && (window->Flags & ImGuiWindowFlags_ChildWindow)) // if a child is active its parent will add it
continue;
AddWindowToSortBuffer(&g.WindowsTempSortBuffer, window);
}
// This usually assert if there is a mismatch between the ImGuiWindowFlags_ChildWindow / ParentWindow values and DC.ChildWindows[] in parents, aka we've done something wrong.
IM_ASSERT(g.Windows.Size == g.WindowsTempSortBuffer.Size);
g.Windows.swap(g.WindowsTempSortBuffer);
g.IO.MetricsActiveWindows = g.WindowsActiveCount;
// Unlock font atlas
g.IO.Fonts->Locked = false;
// Clear Input data for next frame
g.IO.MouseWheel = g.IO.MouseWheelH = 0.0f;
g.IO.InputQueueCharacters.resize(0);
memset(g.IO.NavInputs, 0, sizeof(g.IO.NavInputs));
CallContextHooks(&g, ImGuiContextHookType_EndFramePost);
}
void ImGui::Render()
{
ImGuiContext& g = *GImGui;
IM_ASSERT(g.Initialized);
if (g.FrameCountEnded != g.FrameCount)
EndFrame();
g.FrameCountRendered = g.FrameCount;
g.IO.MetricsRenderWindows = 0;
CallContextHooks(&g, ImGuiContextHookType_RenderPre);
// Add background ImDrawList (for each active viewport)
for (int n = 0; n != g.Viewports.Size; n++)
{
ImGuiViewportP* viewport = g.Viewports[n];
viewport->DrawDataBuilder.Clear();
if (viewport->DrawLists[0] != NULL)
AddDrawListToDrawData(&viewport->DrawDataBuilder.Layers[0], GetBackgroundDrawList(viewport));
}
// Add ImDrawList to render
ImGuiWindow* windows_to_render_top_most[2];
windows_to_render_top_most[0] = (g.NavWindowingTarget && !(g.NavWindowingTarget->Flags & ImGuiWindowFlags_NoBringToFrontOnFocus)) ? g.NavWindowingTarget->RootWindow : NULL;
windows_to_render_top_most[1] = (g.NavWindowingTarget ? g.NavWindowingListWindow : NULL);
for (int n = 0; n != g.Windows.Size; n++)
{
ImGuiWindow* window = g.Windows[n];
IM_MSVC_WARNING_SUPPRESS(6011); // Static Analysis false positive "warning C6011: Dereferencing NULL pointer 'window'"
if (IsWindowActiveAndVisible(window) && (window->Flags & ImGuiWindowFlags_ChildWindow) == 0 && window != windows_to_render_top_most[0] && window != windows_to_render_top_most[1])
AddRootWindowToDrawData(window);
}
for (int n = 0; n < IM_ARRAYSIZE(windows_to_render_top_most); n++)
if (windows_to_render_top_most[n] && IsWindowActiveAndVisible(windows_to_render_top_most[n])) // NavWindowingTarget is always temporarily displayed as the top-most window
AddRootWindowToDrawData(windows_to_render_top_most[n]);
// Setup ImDrawData structures for end-user
g.IO.MetricsRenderVertices = g.IO.MetricsRenderIndices = 0;
for (int n = 0; n < g.Viewports.Size; n++)
{
ImGuiViewportP* viewport = g.Viewports[n];
viewport->DrawDataBuilder.FlattenIntoSingleLayer();
// Draw software mouse cursor if requested by io.MouseDrawCursor flag
if (g.IO.MouseDrawCursor)
RenderMouseCursor(GetForegroundDrawList(viewport), g.IO.MousePos, g.Style.MouseCursorScale, g.MouseCursor, IM_COL32_WHITE, IM_COL32_BLACK, IM_COL32(0, 0, 0, 48));
// Add foreground ImDrawList (for each active viewport)
if (viewport->DrawLists[1] != NULL)
AddDrawListToDrawData(&viewport->DrawDataBuilder.Layers[0], GetForegroundDrawList(viewport));
SetupViewportDrawData(viewport, &viewport->DrawDataBuilder.Layers[0]);
ImDrawData* draw_data = &viewport->DrawDataP;
g.IO.MetricsRenderVertices += draw_data->TotalVtxCount;
g.IO.MetricsRenderIndices += draw_data->TotalIdxCount;
}
CallContextHooks(&g, ImGuiContextHookType_RenderPost);
}
// Calculate text size. Text can be multi-line. Optionally ignore text after a ## marker.
// CalcTextSize("") should return ImVec2(0.0f, g.FontSize)
ImVec2 ImGui::CalcTextSize(const char* text, const char* text_end, bool hide_text_after_double_hash, float wrap_width)
{
ImGuiContext& g = *GImGui;
const char* text_display_end;
if (hide_text_after_double_hash)
text_display_end = FindRenderedTextEnd(text, text_end); // Hide anything after a '##' string
else
text_display_end = text_end;
ImFont* font = g.Font;
const float font_size = g.FontSize;
if (text == text_display_end)
return ImVec2(0.0f, font_size);
ImVec2 text_size = font->CalcTextSizeA(font_size, FLT_MAX, wrap_width, text, text_display_end, NULL);
// Round
// FIXME: This has been here since Dec 2015 (7b0bf230) but down the line we want this out.
// FIXME: Investigate using ceilf or e.g.
// - https://git.musl-libc.org/cgit/musl/tree/src/math/ceilf.c
// - https://embarkstudios.github.io/rust-gpu/api/src/libm/math/ceilf.rs.html
text_size.x = IM_FLOOR(text_size.x + 0.99999f);
return text_size;
}
// Find window given position, search front-to-back
// FIXME: Note that we have an inconsequential lag here: OuterRectClipped is updated in Begin(), so windows moved programmatically
// with SetWindowPos() and not SetNextWindowPos() will have that rectangle lagging by a frame at the time FindHoveredWindow() is
// called, aka before the next Begin(). Moving window isn't affected.
static void FindHoveredWindow()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* hovered_window = NULL;
ImGuiWindow* hovered_window_ignoring_moving_window = NULL;
if (g.MovingWindow && !(g.MovingWindow->Flags & ImGuiWindowFlags_NoMouseInputs))
hovered_window = g.MovingWindow;
ImVec2 padding_regular = g.Style.TouchExtraPadding;
ImVec2 padding_for_resize = g.IO.ConfigWindowsResizeFromEdges ? g.WindowsHoverPadding : padding_regular;
for (int i = g.Windows.Size - 1; i >= 0; i--)
{
ImGuiWindow* window = g.Windows[i];
IM_MSVC_WARNING_SUPPRESS(28182); // [Static Analyzer] Dereferencing NULL pointer.
if (!window->Active || window->Hidden)
continue;
if (window->Flags & ImGuiWindowFlags_NoMouseInputs)
continue;
// Using the clipped AABB, a child window will typically be clipped by its parent (not always)
ImRect bb(window->OuterRectClipped);
if (window->Flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_AlwaysAutoResize))
bb.Expand(padding_regular);
else
bb.Expand(padding_for_resize);
if (!bb.Contains(g.IO.MousePos))
continue;
// Support for one rectangular hole in any given window
// FIXME: Consider generalizing hit-testing override (with more generic data, callback, etc.) (#1512)
if (window->HitTestHoleSize.x != 0)
{
ImVec2 hole_pos(window->Pos.x + (float)window->HitTestHoleOffset.x, window->Pos.y + (float)window->HitTestHoleOffset.y);
ImVec2 hole_size((float)window->HitTestHoleSize.x, (float)window->HitTestHoleSize.y);
if (ImRect(hole_pos, hole_pos + hole_size).Contains(g.IO.MousePos))
continue;
}
if (hovered_window == NULL)
hovered_window = window;
IM_MSVC_WARNING_SUPPRESS(28182); // [Static Analyzer] Dereferencing NULL pointer.
if (hovered_window_ignoring_moving_window == NULL && (!g.MovingWindow || window->RootWindow != g.MovingWindow->RootWindow))
hovered_window_ignoring_moving_window = window;
if (hovered_window && hovered_window_ignoring_moving_window)
break;
}
g.HoveredWindow = hovered_window;
g.HoveredWindowUnderMovingWindow = hovered_window_ignoring_moving_window;
}
// Test if mouse cursor is hovering given rectangle
// NB- Rectangle is clipped by our current clip setting
// NB- Expand the rectangle to be generous on imprecise inputs systems (g.Style.TouchExtraPadding)
bool ImGui::IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip)
{
ImGuiContext& g = *GImGui;
// Clip
ImRect rect_clipped(r_min, r_max);
if (clip)
rect_clipped.ClipWith(g.CurrentWindow->ClipRect);
// Expand for touch input
const ImRect rect_for_touch(rect_clipped.Min - g.Style.TouchExtraPadding, rect_clipped.Max + g.Style.TouchExtraPadding);
if (!rect_for_touch.Contains(g.IO.MousePos))
return false;
return true;
}
int ImGui::GetKeyIndex(ImGuiKey imgui_key)
{
IM_ASSERT(imgui_key >= 0 && imgui_key < ImGuiKey_COUNT);
ImGuiContext& g = *GImGui;
return g.IO.KeyMap[imgui_key];
}
// Note that dear imgui doesn't know the semantic of each entry of io.KeysDown[]!
// Use your own indices/enums according to how your backend/engine stored them into io.KeysDown[]!
bool ImGui::IsKeyDown(int user_key_index)
{
if (user_key_index < 0)
return false;
ImGuiContext& g = *GImGui;
IM_ASSERT(user_key_index >= 0 && user_key_index < IM_ARRAYSIZE(g.IO.KeysDown));
return g.IO.KeysDown[user_key_index];
}
// t0 = previous time (e.g.: g.Time - g.IO.DeltaTime)
// t1 = current time (e.g.: g.Time)
// An event is triggered at:
// t = 0.0f t = repeat_delay, t = repeat_delay + repeat_rate*N
int ImGui::CalcTypematicRepeatAmount(float t0, float t1, float repeat_delay, float repeat_rate)
{
if (t1 == 0.0f)
return 1;
if (t0 >= t1)
return 0;
if (repeat_rate <= 0.0f)
return (t0 < repeat_delay) && (t1 >= repeat_delay);
const int count_t0 = (t0 < repeat_delay) ? -1 : (int)((t0 - repeat_delay) / repeat_rate);
const int count_t1 = (t1 < repeat_delay) ? -1 : (int)((t1 - repeat_delay) / repeat_rate);
const int count = count_t1 - count_t0;
return count;
}
int ImGui::GetKeyPressedAmount(int key_index, float repeat_delay, float repeat_rate)
{
ImGuiContext& g = *GImGui;
if (key_index < 0)
return 0;
IM_ASSERT(key_index >= 0 && key_index < IM_ARRAYSIZE(g.IO.KeysDown));
const float t = g.IO.KeysDownDuration[key_index];
return CalcTypematicRepeatAmount(t - g.IO.DeltaTime, t, repeat_delay, repeat_rate);
}
bool ImGui::IsKeyPressed(int user_key_index, bool repeat)
{
ImGuiContext& g = *GImGui;
if (user_key_index < 0)
return false;
IM_ASSERT(user_key_index >= 0 && user_key_index < IM_ARRAYSIZE(g.IO.KeysDown));
const float t = g.IO.KeysDownDuration[user_key_index];
if (t == 0.0f)
return true;
if (repeat && t > g.IO.KeyRepeatDelay)
return GetKeyPressedAmount(user_key_index, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate) > 0;
return false;
}
bool ImGui::IsKeyReleased(int user_key_index)
{
ImGuiContext& g = *GImGui;
if (user_key_index < 0) return false;
IM_ASSERT(user_key_index >= 0 && user_key_index < IM_ARRAYSIZE(g.IO.KeysDown));
return g.IO.KeysDownDurationPrev[user_key_index] >= 0.0f && !g.IO.KeysDown[user_key_index];
}
bool ImGui::IsMouseDown(ImGuiMouseButton button)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown));
return g.IO.MouseDown[button];
}
bool ImGui::IsMouseClicked(ImGuiMouseButton button, bool repeat)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown));
const float t = g.IO.MouseDownDuration[button];
if (t == 0.0f)
return true;
if (repeat && t > g.IO.KeyRepeatDelay)
{
// FIXME: 2019/05/03: Our old repeat code was wrong here and led to doubling the repeat rate, which made it an ok rate for repeat on mouse hold.
int amount = CalcTypematicRepeatAmount(t - g.IO.DeltaTime, t, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate * 0.50f);
if (amount > 0)
return true;
}
return false;
}
bool ImGui::IsMouseReleased(ImGuiMouseButton button)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown));
return g.IO.MouseReleased[button];
}
bool ImGui::IsMouseDoubleClicked(ImGuiMouseButton button)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown));
return g.IO.MouseDoubleClicked[button];
}
// Return if a mouse click/drag went past the given threshold. Valid to call during the MouseReleased frame.
// [Internal] This doesn't test if the button is pressed
bool ImGui::IsMouseDragPastThreshold(ImGuiMouseButton button, float lock_threshold)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown));
if (lock_threshold < 0.0f)
lock_threshold = g.IO.MouseDragThreshold;
return g.IO.MouseDragMaxDistanceSqr[button] >= lock_threshold * lock_threshold;
}
bool ImGui::IsMouseDragging(ImGuiMouseButton button, float lock_threshold)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown));
if (!g.IO.MouseDown[button])
return false;
return IsMouseDragPastThreshold(button, lock_threshold);
}
ImVec2 ImGui::GetMousePos()
{
ImGuiContext& g = *GImGui;
return g.IO.MousePos;
}
// NB: prefer to call right after BeginPopup(). At the time Selectable/MenuItem is activated, the popup is already closed!
ImVec2 ImGui::GetMousePosOnOpeningCurrentPopup()
{
ImGuiContext& g = *GImGui;
if (g.BeginPopupStack.Size > 0)
return g.OpenPopupStack[g.BeginPopupStack.Size - 1].OpenMousePos;
return g.IO.MousePos;
}
// We typically use ImVec2(-FLT_MAX,-FLT_MAX) to denote an invalid mouse position.
bool ImGui::IsMousePosValid(const ImVec2* mouse_pos)
{
// The assert is only to silence a false-positive in XCode Static Analysis.
// Because GImGui is not dereferenced in every code path, the static analyzer assume that it may be NULL (which it doesn't for other functions).
IM_ASSERT(GImGui != NULL);
const float MOUSE_INVALID = -256000.0f;
ImVec2 p = mouse_pos ? *mouse_pos : GImGui->IO.MousePos;
return p.x >= MOUSE_INVALID && p.y >= MOUSE_INVALID;
}
bool ImGui::IsAnyMouseDown()
{
ImGuiContext& g = *GImGui;
for (int n = 0; n < IM_ARRAYSIZE(g.IO.MouseDown); n++)
if (g.IO.MouseDown[n])
return true;
return false;
}
// Return the delta from the initial clicking position while the mouse button is clicked or was just released.
// This is locked and return 0.0f until the mouse moves past a distance threshold at least once.
// NB: This is only valid if IsMousePosValid(). backends in theory should always keep mouse position valid when dragging even outside the client window.
ImVec2 ImGui::GetMouseDragDelta(ImGuiMouseButton button, float lock_threshold)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown));
if (lock_threshold < 0.0f)
lock_threshold = g.IO.MouseDragThreshold;
if (g.IO.MouseDown[button] || g.IO.MouseReleased[button])
if (g.IO.MouseDragMaxDistanceSqr[button] >= lock_threshold * lock_threshold)
if (IsMousePosValid(&g.IO.MousePos) && IsMousePosValid(&g.IO.MouseClickedPos[button]))
return g.IO.MousePos - g.IO.MouseClickedPos[button];
return ImVec2(0.0f, 0.0f);
}
void ImGui::ResetMouseDragDelta(ImGuiMouseButton button)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown));
// NB: We don't need to reset g.IO.MouseDragMaxDistanceSqr
g.IO.MouseClickedPos[button] = g.IO.MousePos;
}
ImGuiMouseCursor ImGui::GetMouseCursor()
{
return GImGui->MouseCursor;
}
void ImGui::SetMouseCursor(ImGuiMouseCursor cursor_type)
{
GImGui->MouseCursor = cursor_type;
}
void ImGui::CaptureKeyboardFromApp(bool capture)
{
GImGui->WantCaptureKeyboardNextFrame = capture ? 1 : 0;
}
void ImGui::CaptureMouseFromApp(bool capture)
{
GImGui->WantCaptureMouseNextFrame = capture ? 1 : 0;
}
bool ImGui::IsItemActive()
{
ImGuiContext& g = *GImGui;
if (g.ActiveId)
{
ImGuiWindow* window = g.CurrentWindow;
return g.ActiveId == window->DC.LastItemId;
}
return false;
}
bool ImGui::IsItemActivated()
{
ImGuiContext& g = *GImGui;
if (g.ActiveId)
{
ImGuiWindow* window = g.CurrentWindow;
if (g.ActiveId == window->DC.LastItemId && g.ActiveIdPreviousFrame != window->DC.LastItemId)
return true;
}
return false;
}
bool ImGui::IsItemDeactivated()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
if (window->DC.LastItemStatusFlags & ImGuiItemStatusFlags_HasDeactivated)
return (window->DC.LastItemStatusFlags & ImGuiItemStatusFlags_Deactivated) != 0;
return (g.ActiveIdPreviousFrame == window->DC.LastItemId && g.ActiveIdPreviousFrame != 0 && g.ActiveId != window->DC.LastItemId);
}
bool ImGui::IsItemDeactivatedAfterEdit()
{
ImGuiContext& g = *GImGui;
return IsItemDeactivated() && (g.ActiveIdPreviousFrameHasBeenEditedBefore || (g.ActiveId == 0 && g.ActiveIdHasBeenEditedBefore));
}
// == GetItemID() == GetFocusID()
bool ImGui::IsItemFocused()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
if (g.NavId != window->DC.LastItemId || g.NavId == 0)
return false;
return true;
}
// Important: this can be useful but it is NOT equivalent to the behavior of e.g.Button()!
// Most widgets have specific reactions based on mouse-up/down state, mouse position etc.
bool ImGui::IsItemClicked(ImGuiMouseButton mouse_button)
{
return IsMouseClicked(mouse_button) && IsItemHovered(ImGuiHoveredFlags_None);
}
bool ImGui::IsItemToggledOpen()
{
ImGuiContext& g = *GImGui;
return (g.CurrentWindow->DC.LastItemStatusFlags & ImGuiItemStatusFlags_ToggledOpen) ? true : false;
}
bool ImGui::IsItemToggledSelection()
{
ImGuiContext& g = *GImGui;
return (g.CurrentWindow->DC.LastItemStatusFlags & ImGuiItemStatusFlags_ToggledSelection) ? true : false;
}
bool ImGui::IsAnyItemHovered()
{
ImGuiContext& g = *GImGui;
return g.HoveredId != 0 || g.HoveredIdPreviousFrame != 0;
}
bool ImGui::IsAnyItemActive()
{
ImGuiContext& g = *GImGui;
return g.ActiveId != 0;
}
bool ImGui::IsAnyItemFocused()
{
ImGuiContext& g = *GImGui;
return g.NavId != 0 && !g.NavDisableHighlight;
}
bool ImGui::IsItemVisible()
{
ImGuiWindow* window = GetCurrentWindowRead();
return window->ClipRect.Overlaps(window->DC.LastItemRect);
}
bool ImGui::IsItemEdited()
{
ImGuiWindow* window = GetCurrentWindowRead();
return (window->DC.LastItemStatusFlags & ImGuiItemStatusFlags_Edited) != 0;
}
// Allow last item to be overlapped by a subsequent item. Both may be activated during the same frame before the later one takes priority.
// FIXME: Although this is exposed, its interaction and ideal idiom with using ImGuiButtonFlags_AllowItemOverlap flag are extremely confusing, need rework.
void ImGui::SetItemAllowOverlap()
{
ImGuiContext& g = *GImGui;
ImGuiID id = g.CurrentWindow->DC.LastItemId;
if (g.HoveredId == id)
g.HoveredIdAllowOverlap = true;
if (g.ActiveId == id)
g.ActiveIdAllowOverlap = true;
}
void ImGui::SetItemUsingMouseWheel()
{
ImGuiContext& g = *GImGui;
ImGuiID id = g.CurrentWindow->DC.LastItemId;
if (g.HoveredId == id)
g.HoveredIdUsingMouseWheel = true;
if (g.ActiveId == id)
g.ActiveIdUsingMouseWheel = true;
}
ImVec2 ImGui::GetItemRectMin()
{
ImGuiWindow* window = GetCurrentWindowRead();
return window->DC.LastItemRect.Min;
}
ImVec2 ImGui::GetItemRectMax()
{
ImGuiWindow* window = GetCurrentWindowRead();
return window->DC.LastItemRect.Max;
}
ImVec2 ImGui::GetItemRectSize()
{
ImGuiWindow* window = GetCurrentWindowRead();
return window->DC.LastItemRect.GetSize();
}
bool ImGui::BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, bool border, ImGuiWindowFlags flags)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* parent_window = g.CurrentWindow;
flags |= ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_ChildWindow;
flags |= (parent_window->Flags & ImGuiWindowFlags_NoMove); // Inherit the NoMove flag
// Size
const ImVec2 content_avail = GetContentRegionAvail();
ImVec2 size = ImFloor(size_arg);
const int auto_fit_axises = ((size.x == 0.0f) ? (1 << ImGuiAxis_X) : 0x00) | ((size.y == 0.0f) ? (1 << ImGuiAxis_Y) : 0x00);
if (size.x <= 0.0f)
size.x = ImMax(content_avail.x + size.x, 4.0f); // Arbitrary minimum child size (0.0f causing too much issues)
if (size.y <= 0.0f)
size.y = ImMax(content_avail.y + size.y, 4.0f);
SetNextWindowSize(size);
// Build up name. If you need to append to a same child from multiple location in the ID stack, use BeginChild(ImGuiID id) with a stable value.
if (name)
ImFormatString(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), "%s/%s_%08X", parent_window->Name, name, id);
else
ImFormatString(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), "%s/%08X", parent_window->Name, id);
const float backup_border_size = g.Style.ChildBorderSize;
if (!border)
g.Style.ChildBorderSize = 0.0f;
bool ret = Begin(g.TempBuffer, NULL, flags);
g.Style.ChildBorderSize = backup_border_size;
ImGuiWindow* child_window = g.CurrentWindow;
child_window->ChildId = id;
child_window->AutoFitChildAxises = (ImS8)auto_fit_axises;
// Set the cursor to handle case where the user called SetNextWindowPos()+BeginChild() manually.
// While this is not really documented/defined, it seems that the expected thing to do.
if (child_window->BeginCount == 1)
parent_window->DC.CursorPos = child_window->Pos;
// Process navigation-in immediately so NavInit can run on first frame
if (g.NavActivateId == id && !(flags & ImGuiWindowFlags_NavFlattened) && (child_window->DC.NavLayersActiveMask != 0 || child_window->DC.NavHasScroll))
{
FocusWindow(child_window);
NavInitWindow(child_window, false);
SetActiveID(id + 1, child_window); // Steal ActiveId with another arbitrary id so that key-press won't activate child item
g.ActiveIdSource = ImGuiInputSource_Nav;
}
return ret;
}
bool ImGui::BeginChild(const char* str_id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_flags)
{
ImGuiWindow* window = GetCurrentWindow();
return BeginChildEx(str_id, window->GetID(str_id), size_arg, border, extra_flags);
}
bool ImGui::BeginChild(ImGuiID id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_flags)
{
IM_ASSERT(id != 0);
return BeginChildEx(NULL, id, size_arg, border, extra_flags);
}
void ImGui::EndChild()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
IM_ASSERT(g.WithinEndChild == false);
IM_ASSERT(window->Flags & ImGuiWindowFlags_ChildWindow); // Mismatched BeginChild()/EndChild() calls
g.WithinEndChild = true;
if (window->BeginCount > 1)
{
End();
}
else
{
ImVec2 sz = window->Size;
if (window->AutoFitChildAxises & (1 << ImGuiAxis_X)) // Arbitrary minimum zero-ish child size of 4.0f causes less trouble than a 0.0f
sz.x = ImMax(4.0f, sz.x);
if (window->AutoFitChildAxises & (1 << ImGuiAxis_Y))
sz.y = ImMax(4.0f, sz.y);
End();
ImGuiWindow* parent_window = g.CurrentWindow;
ImRect bb(parent_window->DC.CursorPos, parent_window->DC.CursorPos + sz);
ItemSize(sz);
if ((window->DC.NavLayersActiveMask != 0 || window->DC.NavHasScroll) && !(window->Flags & ImGuiWindowFlags_NavFlattened))
{
ItemAdd(bb, window->ChildId);
RenderNavHighlight(bb, window->ChildId);
// When browsing a window that has no activable items (scroll only) we keep a highlight on the child
if (window->DC.NavLayersActiveMask == 0 && window == g.NavWindow)
RenderNavHighlight(ImRect(bb.Min - ImVec2(2, 2), bb.Max + ImVec2(2, 2)), g.NavId, ImGuiNavHighlightFlags_TypeThin);
}
else
{
// Not navigable into
ItemAdd(bb, 0);
}
if (g.HoveredWindow == window)
parent_window->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_HoveredWindow;
}
g.WithinEndChild = false;
g.LogLinePosY = -FLT_MAX; // To enforce a carriage return
}
// Helper to create a child window / scrolling region that looks like a normal widget frame.
bool ImGui::BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags)
{
ImGuiContext& g = *GImGui;
const ImGuiStyle& style = g.Style;
PushStyleColor(ImGuiCol_ChildBg, style.Colors[ImGuiCol_FrameBg]);
PushStyleVar(ImGuiStyleVar_ChildRounding, style.FrameRounding);
PushStyleVar(ImGuiStyleVar_ChildBorderSize, style.FrameBorderSize);
PushStyleVar(ImGuiStyleVar_WindowPadding, style.FramePadding);
bool ret = BeginChild(id, size, true, ImGuiWindowFlags_NoMove | ImGuiWindowFlags_AlwaysUseWindowPadding | extra_flags);
PopStyleVar(3);
PopStyleColor();
return ret;
}
void ImGui::EndChildFrame()
{
EndChild();
}
static void SetWindowConditionAllowFlags(ImGuiWindow* window, ImGuiCond flags, bool enabled)
{
window->SetWindowPosAllowFlags = enabled ? (window->SetWindowPosAllowFlags | flags) : (window->SetWindowPosAllowFlags & ~flags);
window->SetWindowSizeAllowFlags = enabled ? (window->SetWindowSizeAllowFlags | flags) : (window->SetWindowSizeAllowFlags & ~flags);
window->SetWindowCollapsedAllowFlags = enabled ? (window->SetWindowCollapsedAllowFlags | flags) : (window->SetWindowCollapsedAllowFlags & ~flags);
}
ImGuiWindow* ImGui::FindWindowByID(ImGuiID id)
{
ImGuiContext& g = *GImGui;
return (ImGuiWindow*)g.WindowsById.GetVoidPtr(id);
}
ImGuiWindow* ImGui::FindWindowByName(const char* name)
{
ImGuiID id = ImHashStr(name);
return FindWindowByID(id);
}
static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings)
{
window->Pos = ImFloor(ImVec2(settings->Pos.x, settings->Pos.y));
if (settings->Size.x > 0 && settings->Size.y > 0)
window->Size = window->SizeFull = ImFloor(ImVec2(settings->Size.x, settings->Size.y));
window->Collapsed = settings->Collapsed;
}
static ImGuiWindow* CreateNewWindow(const char* name, ImGuiWindowFlags flags)
{
ImGuiContext& g = *GImGui;
//IMGUI_DEBUG_LOG("CreateNewWindow '%s', flags = 0x%08X\n", name, flags);
// Create window the first time
ImGuiWindow* window = IM_NEW(ImGuiWindow)(&g, name);
window->Flags = flags;
g.WindowsById.SetVoidPtr(window->ID, window);
// Default/arbitrary window position. Use SetNextWindowPos() with the appropriate condition flag to change the initial position of a window.
const ImGuiViewport* main_viewport = ImGui::GetMainViewport();
window->Pos = main_viewport->Pos + ImVec2(60, 60);
// User can disable loading and saving of settings. Tooltip and child windows also don't store settings.
if (!(flags & ImGuiWindowFlags_NoSavedSettings))
if (ImGuiWindowSettings* settings = ImGui::FindWindowSettings(window->ID))
{
// Retrieve settings from .ini file
window->SettingsOffset = g.SettingsWindows.offset_from_ptr(settings);
SetWindowConditionAllowFlags(window, ImGuiCond_FirstUseEver, false);
ApplyWindowSettings(window, settings);
}
window->DC.CursorStartPos = window->DC.CursorMaxPos = window->Pos; // So first call to CalcContentSize() doesn't return crazy values
if ((flags & ImGuiWindowFlags_AlwaysAutoResize) != 0)
{
window->AutoFitFramesX = window->AutoFitFramesY = 2;
window->AutoFitOnlyGrows = false;
}
else
{
if (window->Size.x <= 0.0f)
window->AutoFitFramesX = 2;
if (window->Size.y <= 0.0f)
window->AutoFitFramesY = 2;
window->AutoFitOnlyGrows = (window->AutoFitFramesX > 0) || (window->AutoFitFramesY > 0);
}
if (!(flags & ImGuiWindowFlags_ChildWindow))
{
g.WindowsFocusOrder.push_back(window);
window->FocusOrder = (short)(g.WindowsFocusOrder.Size - 1);
}
if (flags & ImGuiWindowFlags_NoBringToFrontOnFocus)
g.Windows.push_front(window); // Quite slow but rare and only once
else
g.Windows.push_back(window);
return window;
}
static ImVec2 CalcWindowSizeAfterConstraint(ImGuiWindow* window, const ImVec2& size_desired)
{
ImGuiContext& g = *GImGui;
ImVec2 new_size = size_desired;
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSizeConstraint)
{
// Using -1,-1 on either X/Y axis to preserve the current size.
ImRect cr = g.NextWindowData.SizeConstraintRect;
new_size.x = (cr.Min.x >= 0 && cr.Max.x >= 0) ? ImClamp(new_size.x, cr.Min.x, cr.Max.x) : window->SizeFull.x;
new_size.y = (cr.Min.y >= 0 && cr.Max.y >= 0) ? ImClamp(new_size.y, cr.Min.y, cr.Max.y) : window->SizeFull.y;
if (g.NextWindowData.SizeCallback)
{
ImGuiSizeCallbackData data;
data.UserData = g.NextWindowData.SizeCallbackUserData;
data.Pos = window->Pos;
data.CurrentSize = window->SizeFull;
data.DesiredSize = new_size;
g.NextWindowData.SizeCallback(&data);
new_size = data.DesiredSize;
}
new_size.x = IM_FLOOR(new_size.x);
new_size.y = IM_FLOOR(new_size.y);
}
// Minimum size
if (!(window->Flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_AlwaysAutoResize)))
{
ImGuiWindow* window_for_height = window;
const float decoration_up_height = window_for_height->TitleBarHeight() + window_for_height->MenuBarHeight();
new_size = ImMax(new_size, g.Style.WindowMinSize);
new_size.y = ImMax(new_size.y, decoration_up_height + ImMax(0.0f, g.Style.WindowRounding - 1.0f)); // Reduce artifacts with very small windows
}
return new_size;
}
static void CalcWindowContentSizes(ImGuiWindow* window, ImVec2* content_size_current, ImVec2* content_size_ideal)
{
bool preserve_old_content_sizes = false;
if (window->Collapsed && window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0)
preserve_old_content_sizes = true;
else if (window->Hidden && window->HiddenFramesCannotSkipItems == 0 && window->HiddenFramesCanSkipItems > 0)
preserve_old_content_sizes = true;
if (preserve_old_content_sizes)
{
*content_size_current = window->ContentSize;
*content_size_ideal = window->ContentSizeIdeal;
return;
}
content_size_current->x = (window->ContentSizeExplicit.x != 0.0f) ? window->ContentSizeExplicit.x : IM_FLOOR(window->DC.CursorMaxPos.x - window->DC.CursorStartPos.x);
content_size_current->y = (window->ContentSizeExplicit.y != 0.0f) ? window->ContentSizeExplicit.y : IM_FLOOR(window->DC.CursorMaxPos.y - window->DC.CursorStartPos.y);
content_size_ideal->x = (window->ContentSizeExplicit.x != 0.0f) ? window->ContentSizeExplicit.x : IM_FLOOR(ImMax(window->DC.CursorMaxPos.x, window->DC.IdealMaxPos.x) - window->DC.CursorStartPos.x);
content_size_ideal->y = (window->ContentSizeExplicit.y != 0.0f) ? window->ContentSizeExplicit.y : IM_FLOOR(ImMax(window->DC.CursorMaxPos.y, window->DC.IdealMaxPos.y) - window->DC.CursorStartPos.y);
}
static ImVec2 CalcWindowAutoFitSize(ImGuiWindow* window, const ImVec2& size_contents)
{
ImGuiContext& g = *GImGui;
ImGuiStyle& style = g.Style;
const float decoration_up_height = window->TitleBarHeight() + window->MenuBarHeight();
ImVec2 size_pad = window->WindowPadding * 2.0f;
ImVec2 size_desired = size_contents + size_pad + ImVec2(0.0f, decoration_up_height);
if (window->Flags & ImGuiWindowFlags_Tooltip)
{
// Tooltip always resize
return size_desired;
}
else
{
// Maximum window size is determined by the viewport size or monitor size
const bool is_popup = (window->Flags & ImGuiWindowFlags_Popup) != 0;
const bool is_menu = (window->Flags & ImGuiWindowFlags_ChildMenu) != 0;
ImVec2 size_min = style.WindowMinSize;
if (is_popup || is_menu) // Popups and menus bypass style.WindowMinSize by default, but we give then a non-zero minimum size to facilitate understanding problematic cases (e.g. empty popups)
size_min = ImMin(size_min, ImVec2(4.0f, 4.0f));
// FIXME-VIEWPORT-WORKAREA: May want to use GetWorkSize() instead of Size depending on the type of windows?
ImVec2 avail_size = ImGui::GetMainViewport()->Size;
ImVec2 size_auto_fit = ImClamp(size_desired, size_min, ImMax(size_min, avail_size - style.DisplaySafeAreaPadding * 2.0f));
// When the window cannot fit all contents (either because of constraints, either because screen is too small),
// we are growing the size on the other axis to compensate for expected scrollbar. FIXME: Might turn bigger than ViewportSize-WindowPadding.
ImVec2 size_auto_fit_after_constraint = CalcWindowSizeAfterConstraint(window, size_auto_fit);
bool will_have_scrollbar_x = (size_auto_fit_after_constraint.x - size_pad.x - 0.0f < size_contents.x && !(window->Flags & ImGuiWindowFlags_NoScrollbar) && (window->Flags & ImGuiWindowFlags_HorizontalScrollbar)) || (window->Flags & ImGuiWindowFlags_AlwaysHorizontalScrollbar);
bool will_have_scrollbar_y = (size_auto_fit_after_constraint.y - size_pad.y - decoration_up_height < size_contents.y && !(window->Flags & ImGuiWindowFlags_NoScrollbar)) || (window->Flags & ImGuiWindowFlags_AlwaysVerticalScrollbar);
if (will_have_scrollbar_x)
size_auto_fit.y += style.ScrollbarSize;
if (will_have_scrollbar_y)
size_auto_fit.x += style.ScrollbarSize;
return size_auto_fit;
}
}
ImVec2 ImGui::CalcWindowNextAutoFitSize(ImGuiWindow* window)
{
ImVec2 size_contents_current;
ImVec2 size_contents_ideal;
CalcWindowContentSizes(window, &size_contents_current, &size_contents_ideal);
ImVec2 size_auto_fit = CalcWindowAutoFitSize(window, size_contents_ideal);
ImVec2 size_final = CalcWindowSizeAfterConstraint(window, size_auto_fit);
return size_final;
}
static ImGuiCol GetWindowBgColorIdxFromFlags(ImGuiWindowFlags flags)
{
if (flags & (ImGuiWindowFlags_Tooltip | ImGuiWindowFlags_Popup))
return ImGuiCol_PopupBg;
if (flags & ImGuiWindowFlags_ChildWindow)
return ImGuiCol_ChildBg;
return ImGuiCol_WindowBg;
}
static void CalcResizePosSizeFromAnyCorner(ImGuiWindow* window, const ImVec2& corner_target, const ImVec2& corner_norm, ImVec2* out_pos, ImVec2* out_size)
{
ImVec2 pos_min = ImLerp(corner_target, window->Pos, corner_norm); // Expected window upper-left
ImVec2 pos_max = ImLerp(window->Pos + window->Size, corner_target, corner_norm); // Expected window lower-right
ImVec2 size_expected = pos_max - pos_min;
ImVec2 size_constrained = CalcWindowSizeAfterConstraint(window, size_expected);
*out_pos = pos_min;
if (corner_norm.x == 0.0f)
out_pos->x -= (size_constrained.x - size_expected.x);
if (corner_norm.y == 0.0f)
out_pos->y -= (size_constrained.y - size_expected.y);
*out_size = size_constrained;
}
// Data for resizing from corner
struct ImGuiResizeGripDef
{
ImVec2 CornerPosN;
ImVec2 InnerDir;
int AngleMin12, AngleMax12;
};
static const ImGuiResizeGripDef resize_grip_def[4] =
{
{ ImVec2(1, 1), ImVec2(-1, -1), 0, 3 }, // Lower-right
{ ImVec2(0, 1), ImVec2(+1, -1), 3, 6 }, // Lower-left
{ ImVec2(0, 0), ImVec2(+1, +1), 6, 9 }, // Upper-left (Unused)
{ ImVec2(1, 0), ImVec2(-1, +1), 9, 12 } // Upper-right (Unused)
};
// Data for resizing from borders
struct ImGuiResizeBorderDef
{
ImVec2 InnerDir;
ImVec2 SegmentN1, SegmentN2;
float OuterAngle;
};
static const ImGuiResizeBorderDef resize_border_def[4] =
{
{ ImVec2(+1, 0), ImVec2(0, 1), ImVec2(0, 0), IM_PI * 1.00f }, // Left
{ ImVec2(-1, 0), ImVec2(1, 0), ImVec2(1, 1), IM_PI * 0.00f }, // Right
{ ImVec2(0, +1), ImVec2(0, 0), ImVec2(1, 0), IM_PI * 1.50f }, // Up
{ ImVec2(0, -1), ImVec2(1, 1), ImVec2(0, 1), IM_PI * 0.50f } // Down
};
static ImRect GetResizeBorderRect(ImGuiWindow* window, int border_n, float perp_padding, float thickness)
{
ImRect rect = window->Rect();
if (thickness == 0.0f)
rect.Max -= ImVec2(1, 1);
if (border_n == ImGuiDir_Left) { return ImRect(rect.Min.x - thickness, rect.Min.y + perp_padding, rect.Min.x + thickness, rect.Max.y - perp_padding); }
if (border_n == ImGuiDir_Right) { return ImRect(rect.Max.x - thickness, rect.Min.y + perp_padding, rect.Max.x + thickness, rect.Max.y - perp_padding); }
if (border_n == ImGuiDir_Up) { return ImRect(rect.Min.x + perp_padding, rect.Min.y - thickness, rect.Max.x - perp_padding, rect.Min.y + thickness); }
if (border_n == ImGuiDir_Down) { return ImRect(rect.Min.x + perp_padding, rect.Max.y - thickness, rect.Max.x - perp_padding, rect.Max.y + thickness); }
IM_ASSERT(0);
return ImRect();
}
// 0..3: corners (Lower-right, Lower-left, Unused, Unused)
ImGuiID ImGui::GetWindowResizeCornerID(ImGuiWindow* window, int n)
{
IM_ASSERT(n >= 0 && n < 4);
ImGuiID id = window->ID;
id = ImHashStr("#RESIZE", 0, id);
id = ImHashData(&n, sizeof(int), id);
return id;
}
// Borders (Left, Right, Up, Down)
ImGuiID ImGui::GetWindowResizeBorderID(ImGuiWindow* window, ImGuiDir dir)
{
IM_ASSERT(dir >= 0 && dir < 4);
int n = (int)dir + 4;
ImGuiID id = window->ID;
id = ImHashStr("#RESIZE", 0, id);
id = ImHashData(&n, sizeof(int), id);
return id;
}
// Handle resize for: Resize Grips, Borders, Gamepad
// Return true when using auto-fit (double click on resize grip)
static bool ImGui::UpdateWindowManualResize(ImGuiWindow* window, const ImVec2& size_auto_fit, int* border_held, int resize_grip_count, ImU32 resize_grip_col[4], const ImRect& visibility_rect)
{
ImGuiContext& g = *GImGui;
ImGuiWindowFlags flags = window->Flags;
if ((flags & ImGuiWindowFlags_NoResize) || (flags & ImGuiWindowFlags_AlwaysAutoResize) || window->AutoFitFramesX > 0 || window->AutoFitFramesY > 0)
return false;
if (window->WasActive == false) // Early out to avoid running this code for e.g. an hidden implicit/fallback Debug window.
return false;
bool ret_auto_fit = false;
const int resize_border_count = g.IO.ConfigWindowsResizeFromEdges ? 4 : 0;
const float grip_draw_size = IM_FLOOR(ImMax(g.FontSize * 1.35f, window->WindowRounding + 1.0f + g.FontSize * 0.2f));
const float grip_hover_inner_size = IM_FLOOR(grip_draw_size * 0.75f);
const float grip_hover_outer_size = g.IO.ConfigWindowsResizeFromEdges ? WINDOWS_HOVER_PADDING : 0.0f;
ImVec2 pos_target(FLT_MAX, FLT_MAX);
ImVec2 size_target(FLT_MAX, FLT_MAX);
// Resize grips and borders are on layer 1
window->DC.NavLayerCurrent = ImGuiNavLayer_Menu;
// Manual resize grips
PushID("#RESIZE");
for (int resize_grip_n = 0; resize_grip_n < resize_grip_count; resize_grip_n++)
{
const ImGuiResizeGripDef& def = resize_grip_def[resize_grip_n];
const ImVec2 corner = ImLerp(window->Pos, window->Pos + window->Size, def.CornerPosN);
// Using the FlattenChilds button flag we make the resize button accessible even if we are hovering over a child window
bool hovered, held;
ImRect resize_rect(corner - def.InnerDir * grip_hover_outer_size, corner + def.InnerDir * grip_hover_inner_size);
if (resize_rect.Min.x > resize_rect.Max.x) ImSwap(resize_rect.Min.x, resize_rect.Max.x);
if (resize_rect.Min.y > resize_rect.Max.y) ImSwap(resize_rect.Min.y, resize_rect.Max.y);
ImGuiID resize_grip_id = window->GetID(resize_grip_n); // == GetWindowResizeCornerID()
ButtonBehavior(resize_rect, resize_grip_id, &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_NoNavFocus);
//GetForegroundDrawList(window)->AddRect(resize_rect.Min, resize_rect.Max, IM_COL32(255, 255, 0, 255));
if (hovered || held)
g.MouseCursor = (resize_grip_n & 1) ? ImGuiMouseCursor_ResizeNESW : ImGuiMouseCursor_ResizeNWSE;
if (held && g.IO.MouseDoubleClicked[0] && resize_grip_n == 0)
{
// Manual auto-fit when double-clicking
size_target = CalcWindowSizeAfterConstraint(window, size_auto_fit);
ret_auto_fit = true;
ClearActiveID();
}
else if (held)
{
// Resize from any of the four corners
// We don't use an incremental MouseDelta but rather compute an absolute target size based on mouse position
ImVec2 clamp_min = ImVec2(def.CornerPosN.x == 1.0f ? visibility_rect.Min.x : -FLT_MAX, def.CornerPosN.y == 1.0f ? visibility_rect.Min.y : -FLT_MAX);
ImVec2 clamp_max = ImVec2(def.CornerPosN.x == 0.0f ? visibility_rect.Max.x : +FLT_MAX, def.CornerPosN.y == 0.0f ? visibility_rect.Max.y : +FLT_MAX);
ImVec2 corner_target = g.IO.MousePos - g.ActiveIdClickOffset + ImLerp(def.InnerDir * grip_hover_outer_size, def.InnerDir * -grip_hover_inner_size, def.CornerPosN); // Corner of the window corresponding to our corner grip
corner_target = ImClamp(corner_target, clamp_min, clamp_max);
CalcResizePosSizeFromAnyCorner(window, corner_target, def.CornerPosN, &pos_target, &size_target);
}
// Only lower-left grip is visible before hovering/activating
if (resize_grip_n == 0 || held || hovered)
resize_grip_col[resize_grip_n] = GetColorU32(held ? ImGuiCol_ResizeGripActive : hovered ? ImGuiCol_ResizeGripHovered : ImGuiCol_ResizeGrip);
}
for (int border_n = 0; border_n < resize_border_count; border_n++)
{
const ImGuiResizeBorderDef& def = resize_border_def[border_n];
const ImGuiAxis axis = (border_n == ImGuiDir_Left || border_n == ImGuiDir_Right) ? ImGuiAxis_X : ImGuiAxis_Y;
bool hovered, held;
ImRect border_rect = GetResizeBorderRect(window, border_n, grip_hover_inner_size, WINDOWS_HOVER_PADDING);
ImGuiID border_id = window->GetID(border_n + 4); // == GetWindowResizeBorderID()
ButtonBehavior(border_rect, border_id, &hovered, &held, ImGuiButtonFlags_FlattenChildren);
//GetForegroundDrawLists(window)->AddRect(border_rect.Min, border_rect.Max, IM_COL32(255, 255, 0, 255));
if ((hovered && g.HoveredIdTimer > WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER) || held)
{
g.MouseCursor = (axis == ImGuiAxis_X) ? ImGuiMouseCursor_ResizeEW : ImGuiMouseCursor_ResizeNS;
if (held)
*border_held = border_n;
}
if (held)
{
ImVec2 clamp_min(border_n == ImGuiDir_Right ? visibility_rect.Min.x : -FLT_MAX, border_n == ImGuiDir_Down ? visibility_rect.Min.y : -FLT_MAX);
ImVec2 clamp_max(border_n == ImGuiDir_Left ? visibility_rect.Max.x : +FLT_MAX, border_n == ImGuiDir_Up ? visibility_rect.Max.y : +FLT_MAX);
ImVec2 border_target = window->Pos;
border_target[axis] = g.IO.MousePos[axis] - g.ActiveIdClickOffset[axis] + WINDOWS_HOVER_PADDING;
border_target = ImClamp(border_target, clamp_min, clamp_max);
CalcResizePosSizeFromAnyCorner(window, border_target, ImMin(def.SegmentN1, def.SegmentN2), &pos_target, &size_target);
}
}
PopID();
// Restore nav layer
window->DC.NavLayerCurrent = ImGuiNavLayer_Main;
// Navigation resize (keyboard/gamepad)
if (g.NavWindowingTarget && g.NavWindowingTarget->RootWindow == window)
{
ImVec2 nav_resize_delta;
if (g.NavInputSource == ImGuiInputSource_Keyboard && g.IO.KeyShift)
nav_resize_delta = GetNavInputAmount2d(ImGuiNavDirSourceFlags_Keyboard, ImGuiInputReadMode_Down);
if (g.NavInputSource == ImGuiInputSource_Gamepad)
nav_resize_delta = GetNavInputAmount2d(ImGuiNavDirSourceFlags_PadDPad, ImGuiInputReadMode_Down);
if (nav_resize_delta.x != 0.0f || nav_resize_delta.y != 0.0f)
{
const float NAV_RESIZE_SPEED = 600.0f;
nav_resize_delta *= ImFloor(NAV_RESIZE_SPEED * g.IO.DeltaTime * ImMin(g.IO.DisplayFramebufferScale.x, g.IO.DisplayFramebufferScale.y));
nav_resize_delta = ImMax(nav_resize_delta, visibility_rect.Min - window->Pos - window->Size);
g.NavWindowingToggleLayer = false;
g.NavDisableMouseHover = true;
resize_grip_col[0] = GetColorU32(ImGuiCol_ResizeGripActive);
// FIXME-NAV: Should store and accumulate into a separate size buffer to handle sizing constraints properly, right now a constraint will make us stuck.
size_target = CalcWindowSizeAfterConstraint(window, window->SizeFull + nav_resize_delta);
}
}
// Apply back modified position/size to window
if (size_target.x != FLT_MAX)
{
window->SizeFull = size_target;
MarkIniSettingsDirty(window);
}
if (pos_target.x != FLT_MAX)
{
window->Pos = ImFloor(pos_target);
MarkIniSettingsDirty(window);
}
window->Size = window->SizeFull;
return ret_auto_fit;
}
static inline void ClampWindowRect(ImGuiWindow* window, const ImRect& visibility_rect)
{
ImGuiContext& g = *GImGui;
ImVec2 size_for_clamping = window->Size;
if (g.IO.ConfigWindowsMoveFromTitleBarOnly && !(window->Flags & ImGuiWindowFlags_NoTitleBar))
size_for_clamping.y = window->TitleBarHeight();
window->Pos = ImClamp(window->Pos, visibility_rect.Min - size_for_clamping, visibility_rect.Max);
}
static void ImGui::RenderWindowOuterBorders(ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
float rounding = window->WindowRounding;
float border_size = window->WindowBorderSize;
if (border_size > 0.0f && !(window->Flags & ImGuiWindowFlags_NoBackground))
window->DrawList->AddRect(window->Pos, window->Pos + window->Size, GetColorU32(ImGuiCol_Border), rounding, 0, border_size);
int border_held = window->ResizeBorderHeld;
if (border_held != -1)
{
const ImGuiResizeBorderDef& def = resize_border_def[border_held];
ImRect border_r = GetResizeBorderRect(window, border_held, rounding, 0.0f);
window->DrawList->PathArcTo(ImLerp(border_r.Min, border_r.Max, def.SegmentN1) + ImVec2(0.5f, 0.5f) + def.InnerDir * rounding, rounding, def.OuterAngle - IM_PI * 0.25f, def.OuterAngle);
window->DrawList->PathArcTo(ImLerp(border_r.Min, border_r.Max, def.SegmentN2) + ImVec2(0.5f, 0.5f) + def.InnerDir * rounding, rounding, def.OuterAngle, def.OuterAngle + IM_PI * 0.25f);
window->DrawList->PathStroke(GetColorU32(ImGuiCol_SeparatorActive), 0, ImMax(2.0f, border_size)); // Thicker than usual
}
if (g.Style.FrameBorderSize > 0 && !(window->Flags & ImGuiWindowFlags_NoTitleBar))
{
float y = window->Pos.y + window->TitleBarHeight() - 1;
window->DrawList->AddLine(ImVec2(window->Pos.x + border_size, y), ImVec2(window->Pos.x + window->Size.x - border_size, y), GetColorU32(ImGuiCol_Border), g.Style.FrameBorderSize);
}
}
// Draw background and borders
// Draw and handle scrollbars
void ImGui::RenderWindowDecorations(ImGuiWindow* window, const ImRect& title_bar_rect, bool title_bar_is_highlight, int resize_grip_count, const ImU32 resize_grip_col[4], float resize_grip_draw_size)
{
ImGuiContext& g = *GImGui;
ImGuiStyle& style = g.Style;
ImGuiWindowFlags flags = window->Flags;
// Ensure that ScrollBar doesn't read last frame's SkipItems
IM_ASSERT(window->BeginCount == 0);
window->SkipItems = false;
// Draw window + handle manual resize
// As we highlight the title bar when want_focus is set, multiple reappearing windows will have have their title bar highlighted on their reappearing frame.
const float window_rounding = window->WindowRounding;
const float window_border_size = window->WindowBorderSize;
if (window->Collapsed)
{
// Title bar only
float backup_border_size = style.FrameBorderSize;
g.Style.FrameBorderSize = window->WindowBorderSize;
ImU32 title_bar_col = GetColorU32((title_bar_is_highlight && !g.NavDisableHighlight) ? ImGuiCol_TitleBgActive : ImGuiCol_TitleBgCollapsed);
RenderFrame(title_bar_rect.Min, title_bar_rect.Max, title_bar_col, true, window_rounding);
g.Style.FrameBorderSize = backup_border_size;
}
else
{
// Window background
if (!(flags & ImGuiWindowFlags_NoBackground))
{
ImU32 bg_col = GetColorU32(GetWindowBgColorIdxFromFlags(flags));
bool override_alpha = false;
float alpha = 1.0f;
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasBgAlpha)
{
alpha = g.NextWindowData.BgAlphaVal;
override_alpha = true;
}
if (override_alpha)
bg_col = (bg_col & ~IM_COL32_A_MASK) | (IM_F32_TO_INT8_SAT(alpha) << IM_COL32_A_SHIFT);
window->DrawList->AddRectFilled(window->Pos + ImVec2(0, window->TitleBarHeight()), window->Pos + window->Size, bg_col, window_rounding, (flags & ImGuiWindowFlags_NoTitleBar) ? 0 : ImDrawFlags_RoundCornersBottom);
}
// Title bar
if (!(flags & ImGuiWindowFlags_NoTitleBar))
{
ImU32 title_bar_col = GetColorU32(title_bar_is_highlight ? ImGuiCol_TitleBgActive : ImGuiCol_TitleBg);
window->DrawList->AddRectFilled(title_bar_rect.Min, title_bar_rect.Max, title_bar_col, window_rounding, ImDrawFlags_RoundCornersTop);
}
// Menu bar
if (flags & ImGuiWindowFlags_MenuBar)
{
ImRect menu_bar_rect = window->MenuBarRect();
menu_bar_rect.ClipWith(window->Rect()); // Soft clipping, in particular child window don't have minimum size covering the menu bar so this is useful for them.
window->DrawList->AddRectFilled(menu_bar_rect.Min + ImVec2(window_border_size, 0), menu_bar_rect.Max - ImVec2(window_border_size, 0), GetColorU32(ImGuiCol_MenuBarBg), (flags & ImGuiWindowFlags_NoTitleBar) ? window_rounding : 0.0f, ImDrawFlags_RoundCornersTop);
if (style.FrameBorderSize > 0.0f && menu_bar_rect.Max.y < window->Pos.y + window->Size.y)
window->DrawList->AddLine(menu_bar_rect.GetBL(), menu_bar_rect.GetBR(), GetColorU32(ImGuiCol_Border), style.FrameBorderSize);
}
// Scrollbars
if (window->ScrollbarX)
Scrollbar(ImGuiAxis_X);
if (window->ScrollbarY)
Scrollbar(ImGuiAxis_Y);
// Render resize grips (after their input handling so we don't have a frame of latency)
if (!(flags & ImGuiWindowFlags_NoResize))
{
for (int resize_grip_n = 0; resize_grip_n < resize_grip_count; resize_grip_n++)
{
const ImGuiResizeGripDef& grip = resize_grip_def[resize_grip_n];
const ImVec2 corner = ImLerp(window->Pos, window->Pos + window->Size, grip.CornerPosN);
window->DrawList->PathLineTo(corner + grip.InnerDir * ((resize_grip_n & 1) ? ImVec2(window_border_size, resize_grip_draw_size) : ImVec2(resize_grip_draw_size, window_border_size)));
window->DrawList->PathLineTo(corner + grip.InnerDir * ((resize_grip_n & 1) ? ImVec2(resize_grip_draw_size, window_border_size) : ImVec2(window_border_size, resize_grip_draw_size)));
window->DrawList->PathArcToFast(ImVec2(corner.x + grip.InnerDir.x * (window_rounding + window_border_size), corner.y + grip.InnerDir.y * (window_rounding + window_border_size)), window_rounding, grip.AngleMin12, grip.AngleMax12);
window->DrawList->PathFillConvex(resize_grip_col[resize_grip_n]);
}
}
// Borders
RenderWindowOuterBorders(window);
}
}
// Render title text, collapse button, close button
void ImGui::RenderWindowTitleBarContents(ImGuiWindow* window, const ImRect& title_bar_rect, const char* name, bool* p_open)
{
ImGuiContext& g = *GImGui;
ImGuiStyle& style = g.Style;
ImGuiWindowFlags flags = window->Flags;
const bool has_close_button = (p_open != NULL);
const bool has_collapse_button = !(flags & ImGuiWindowFlags_NoCollapse) && (style.WindowMenuButtonPosition != ImGuiDir_None);
// Close & Collapse button are on the Menu NavLayer and don't default focus (unless there's nothing else on that layer)
const ImGuiItemFlags item_flags_backup = g.CurrentItemFlags;
g.CurrentItemFlags |= ImGuiItemFlags_NoNavDefaultFocus;
window->DC.NavLayerCurrent = ImGuiNavLayer_Menu;
// Layout buttons
// FIXME: Would be nice to generalize the subtleties expressed here into reusable code.
float pad_l = style.FramePadding.x;
float pad_r = style.FramePadding.x;
float button_sz = g.FontSize;
ImVec2 close_button_pos;
ImVec2 collapse_button_pos;
if (has_close_button)
{
pad_r += button_sz;
close_button_pos = ImVec2(title_bar_rect.Max.x - pad_r - style.FramePadding.x, title_bar_rect.Min.y);
}
if (has_collapse_button && style.WindowMenuButtonPosition == ImGuiDir_Right)
{
pad_r += button_sz;
collapse_button_pos = ImVec2(title_bar_rect.Max.x - pad_r - style.FramePadding.x, title_bar_rect.Min.y);
}
if (has_collapse_button && style.WindowMenuButtonPosition == ImGuiDir_Left)
{
collapse_button_pos = ImVec2(title_bar_rect.Min.x + pad_l - style.FramePadding.x, title_bar_rect.Min.y);
pad_l += button_sz;
}
// Collapse button (submitting first so it gets priority when choosing a navigation init fallback)
if (has_collapse_button)
if (CollapseButton(window->GetID("#COLLAPSE"), collapse_button_pos))
window->WantCollapseToggle = true; // Defer actual collapsing to next frame as we are too far in the Begin() function
// Close button
if (has_close_button)
if (CloseButton(window->GetID("#CLOSE"), close_button_pos))
*p_open = false;
window->DC.NavLayerCurrent = ImGuiNavLayer_Main;
g.CurrentItemFlags = item_flags_backup;
// Title bar text (with: horizontal alignment, avoiding collapse/close button, optional "unsaved document" marker)
// FIXME: Refactor text alignment facilities along with RenderText helpers, this is WAY too much messy code..
const char* UNSAVED_DOCUMENT_MARKER = "*";
const float marker_size_x = (flags & ImGuiWindowFlags_UnsavedDocument) ? CalcTextSize(UNSAVED_DOCUMENT_MARKER, NULL, false).x : 0.0f;
const ImVec2 text_size = CalcTextSize(name, NULL, true) + ImVec2(marker_size_x, 0.0f);
// As a nice touch we try to ensure that centered title text doesn't get affected by visibility of Close/Collapse button,
// while uncentered title text will still reach edges correctly.
if (pad_l > style.FramePadding.x)
pad_l += g.Style.ItemInnerSpacing.x;
if (pad_r > style.FramePadding.x)
pad_r += g.Style.ItemInnerSpacing.x;
if (style.WindowTitleAlign.x > 0.0f && style.WindowTitleAlign.x < 1.0f)
{
float centerness = ImSaturate(1.0f - ImFabs(style.WindowTitleAlign.x - 0.5f) * 2.0f); // 0.0f on either edges, 1.0f on center
float pad_extend = ImMin(ImMax(pad_l, pad_r), title_bar_rect.GetWidth() - pad_l - pad_r - text_size.x);
pad_l = ImMax(pad_l, pad_extend * centerness);
pad_r = ImMax(pad_r, pad_extend * centerness);
}
ImRect layout_r(title_bar_rect.Min.x + pad_l, title_bar_rect.Min.y, title_bar_rect.Max.x - pad_r, title_bar_rect.Max.y);
ImRect clip_r(layout_r.Min.x, layout_r.Min.y, ImMin(layout_r.Max.x + g.Style.ItemInnerSpacing.x, title_bar_rect.Max.x), layout_r.Max.y);
//if (g.IO.KeyShift) window->DrawList->AddRect(layout_r.Min, layout_r.Max, IM_COL32(255, 128, 0, 255)); // [DEBUG]
//if (g.IO.KeyCtrl) window->DrawList->AddRect(clip_r.Min, clip_r.Max, IM_COL32(255, 128, 0, 255)); // [DEBUG]
RenderTextClipped(layout_r.Min, layout_r.Max, name, NULL, &text_size, style.WindowTitleAlign, &clip_r);
if (flags & ImGuiWindowFlags_UnsavedDocument)
{
ImVec2 marker_pos = ImVec2(ImMax(layout_r.Min.x, layout_r.Min.x + (layout_r.GetWidth() - text_size.x) * style.WindowTitleAlign.x) + text_size.x, layout_r.Min.y) + ImVec2(2 - marker_size_x, 0.0f);
ImVec2 off = ImVec2(0.0f, IM_FLOOR(-g.FontSize * 0.25f));
RenderTextClipped(marker_pos + off, layout_r.Max + off, UNSAVED_DOCUMENT_MARKER, NULL, NULL, ImVec2(0, style.WindowTitleAlign.y), &clip_r);
}
}
void ImGui::UpdateWindowParentAndRootLinks(ImGuiWindow* window, ImGuiWindowFlags flags, ImGuiWindow* parent_window)
{
window->ParentWindow = parent_window;
window->RootWindow = window->RootWindowForTitleBarHighlight = window->RootWindowForNav = window;
if (parent_window && (flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Tooltip))
window->RootWindow = parent_window->RootWindow;
if (parent_window && !(flags & ImGuiWindowFlags_Modal) && (flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_Popup)))
window->RootWindowForTitleBarHighlight = parent_window->RootWindowForTitleBarHighlight;
while (window->RootWindowForNav->Flags & ImGuiWindowFlags_NavFlattened)
{
IM_ASSERT(window->RootWindowForNav->ParentWindow != NULL);
window->RootWindowForNav = window->RootWindowForNav->ParentWindow;
}
}
// Push a new Dear ImGui window to add widgets to.
// - A default window called "Debug" is automatically stacked at the beginning of every frame so you can use widgets without explicitly calling a Begin/End pair.
// - Begin/End can be called multiple times during the frame with the same window name to append content.
// - The window name is used as a unique identifier to preserve window information across frames (and save rudimentary information to the .ini file).
// You can use the "##" or "###" markers to use the same label with different id, or same id with different label. See documentation at the top of this file.
// - Return false when window is collapsed, so you can early out in your code. You always need to call ImGui::End() even if false is returned.
// - Passing 'bool* p_open' displays a Close button on the upper-right corner of the window, the pointed value will be set to false when the button is pressed.
bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags)
{
ImGuiContext& g = *GImGui;
const ImGuiStyle& style = g.Style;
IM_ASSERT(name != NULL && name[0] != '\0'); // Window name required
IM_ASSERT(g.WithinFrameScope); // Forgot to call ImGui::NewFrame()
IM_ASSERT(g.FrameCountEnded != g.FrameCount); // Called ImGui::Render() or ImGui::EndFrame() and haven't called ImGui::NewFrame() again yet
// Find or create
ImGuiWindow* window = FindWindowByName(name);
const bool window_just_created = (window == NULL);
if (window_just_created)
window = CreateNewWindow(name, flags);
// Automatically disable manual moving/resizing when NoInputs is set
if ((flags & ImGuiWindowFlags_NoInputs) == ImGuiWindowFlags_NoInputs)
flags |= ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize;
if (flags & ImGuiWindowFlags_NavFlattened)
IM_ASSERT(flags & ImGuiWindowFlags_ChildWindow);
const int current_frame = g.FrameCount;
const bool first_begin_of_the_frame = (window->LastFrameActive != current_frame);
window->IsFallbackWindow = (g.CurrentWindowStack.Size == 0 && g.WithinFrameScopeWithImplicitWindow);
// Update the Appearing flag
bool window_just_activated_by_user = (window->LastFrameActive < current_frame - 1); // Not using !WasActive because the implicit "Debug" window would always toggle off->on
if (flags & ImGuiWindowFlags_Popup)
{
ImGuiPopupData& popup_ref = g.OpenPopupStack[g.BeginPopupStack.Size];
window_just_activated_by_user |= (window->PopupId != popup_ref.PopupId); // We recycle popups so treat window as activated if popup id changed
window_just_activated_by_user |= (window != popup_ref.Window);
}
window->Appearing = window_just_activated_by_user;
if (window->Appearing)
SetWindowConditionAllowFlags(window, ImGuiCond_Appearing, true);
// Update Flags, LastFrameActive, BeginOrderXXX fields
if (first_begin_of_the_frame)
{
window->Flags = (ImGuiWindowFlags)flags;
window->LastFrameActive = current_frame;
window->LastTimeActive = (float)g.Time;
window->BeginOrderWithinParent = 0;
window->BeginOrderWithinContext = (short)(g.WindowsActiveCount++);
}
else
{
flags = window->Flags;
}
// Parent window is latched only on the first call to Begin() of the frame, so further append-calls can be done from a different window stack
ImGuiWindow* parent_window_in_stack = g.CurrentWindowStack.empty() ? NULL : g.CurrentWindowStack.back();
ImGuiWindow* parent_window = first_begin_of_the_frame ? ((flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_Popup)) ? parent_window_in_stack : NULL) : window->ParentWindow;
IM_ASSERT(parent_window != NULL || !(flags & ImGuiWindowFlags_ChildWindow));
// We allow window memory to be compacted so recreate the base stack when needed.
if (window->IDStack.Size == 0)
window->IDStack.push_back(window->ID);
// Add to stack
// We intentionally set g.CurrentWindow to NULL to prevent usage until when the viewport is set, then will call SetCurrentWindow()
g.CurrentWindowStack.push_back(window);
g.CurrentWindow = window;
window->DC.StackSizesOnBegin.SetToCurrentState();
g.CurrentWindow = NULL;
if (flags & ImGuiWindowFlags_Popup)
{
ImGuiPopupData& popup_ref = g.OpenPopupStack[g.BeginPopupStack.Size];
popup_ref.Window = window;
g.BeginPopupStack.push_back(popup_ref);
window->PopupId = popup_ref.PopupId;
}
// Update ->RootWindow and others pointers (before any possible call to FocusWindow)
if (first_begin_of_the_frame)
UpdateWindowParentAndRootLinks(window, flags, parent_window);
// Process SetNextWindow***() calls
// (FIXME: Consider splitting the HasXXX flags into X/Y components
bool window_pos_set_by_api = false;
bool window_size_x_set_by_api = false, window_size_y_set_by_api = false;
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasPos)
{
window_pos_set_by_api = (window->SetWindowPosAllowFlags & g.NextWindowData.PosCond) != 0;
if (window_pos_set_by_api && ImLengthSqr(g.NextWindowData.PosPivotVal) > 0.00001f)
{
// May be processed on the next frame if this is our first frame and we are measuring size
// FIXME: Look into removing the branch so everything can go through this same code path for consistency.
window->SetWindowPosVal = g.NextWindowData.PosVal;
window->SetWindowPosPivot = g.NextWindowData.PosPivotVal;
window->SetWindowPosAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing);
}
else
{
SetWindowPos(window, g.NextWindowData.PosVal, g.NextWindowData.PosCond);
}
}
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize)
{
window_size_x_set_by_api = (window->SetWindowSizeAllowFlags & g.NextWindowData.SizeCond) != 0 && (g.NextWindowData.SizeVal.x > 0.0f);
window_size_y_set_by_api = (window->SetWindowSizeAllowFlags & g.NextWindowData.SizeCond) != 0 && (g.NextWindowData.SizeVal.y > 0.0f);
SetWindowSize(window, g.NextWindowData.SizeVal, g.NextWindowData.SizeCond);
}
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasScroll)
{
if (g.NextWindowData.ScrollVal.x >= 0.0f)
{
window->ScrollTarget.x = g.NextWindowData.ScrollVal.x;
window->ScrollTargetCenterRatio.x = 0.0f;
}
if (g.NextWindowData.ScrollVal.y >= 0.0f)
{
window->ScrollTarget.y = g.NextWindowData.ScrollVal.y;
window->ScrollTargetCenterRatio.y = 0.0f;
}
}
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasContentSize)
window->ContentSizeExplicit = g.NextWindowData.ContentSizeVal;
else if (first_begin_of_the_frame)
window->ContentSizeExplicit = ImVec2(0.0f, 0.0f);
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasCollapsed)
SetWindowCollapsed(window, g.NextWindowData.CollapsedVal, g.NextWindowData.CollapsedCond);
if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasFocus)
FocusWindow(window);
if (window->Appearing)
SetWindowConditionAllowFlags(window, ImGuiCond_Appearing, false);
// When reusing window again multiple times a frame, just append content (don't need to setup again)
if (first_begin_of_the_frame)
{
// Initialize
const bool window_is_child_tooltip = (flags & ImGuiWindowFlags_ChildWindow) && (flags & ImGuiWindowFlags_Tooltip); // FIXME-WIP: Undocumented behavior of Child+Tooltip for pinned tooltip (#1345)
window->Active = true;
window->HasCloseButton = (p_open != NULL);
window->ClipRect = ImVec4(-FLT_MAX, -FLT_MAX, +FLT_MAX, +FLT_MAX);
window->IDStack.resize(1);
window->DrawList->_ResetForNewFrame();
window->DC.CurrentTableIdx = -1;
// Restore buffer capacity when woken from a compacted state, to avoid
if (window->MemoryCompacted)
GcAwakeTransientWindowBuffers(window);
// Update stored window name when it changes (which can _only_ happen with the "###" operator, so the ID would stay unchanged).
// The title bar always display the 'name' parameter, so we only update the string storage if it needs to be visible to the end-user elsewhere.
bool window_title_visible_elsewhere = false;
if (g.NavWindowingListWindow != NULL && (window->Flags & ImGuiWindowFlags_NoNavFocus) == 0) // Window titles visible when using CTRL+TAB
window_title_visible_elsewhere = true;
if (window_title_visible_elsewhere && !window_just_created && strcmp(name, window->Name) != 0)
{
size_t buf_len = (size_t)window->NameBufLen;
window->Name = ImStrdupcpy(window->Name, &buf_len, name);
window->NameBufLen = (int)buf_len;
}
// UPDATE CONTENTS SIZE, UPDATE HIDDEN STATUS
// Update contents size from last frame for auto-fitting (or use explicit size)
const bool window_just_appearing_after_hidden_for_resize = (window->HiddenFramesCannotSkipItems > 0);
CalcWindowContentSizes(window, &window->ContentSize, &window->ContentSizeIdeal);
if (window->HiddenFramesCanSkipItems > 0)
window->HiddenFramesCanSkipItems--;
if (window->HiddenFramesCannotSkipItems > 0)
window->HiddenFramesCannotSkipItems--;
if (window->HiddenFramesForRenderOnly > 0)
window->HiddenFramesForRenderOnly--;
// Hide new windows for one frame until they calculate their size
if (window_just_created && (!window_size_x_set_by_api || !window_size_y_set_by_api))
window->HiddenFramesCannotSkipItems = 1;
// Hide popup/tooltip window when re-opening while we measure size (because we recycle the windows)
// We reset Size/ContentSize for reappearing popups/tooltips early in this function, so further code won't be tempted to use the old size.
if (window_just_activated_by_user && (flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_Tooltip)) != 0)
{
window->HiddenFramesCannotSkipItems = 1;
if (flags & ImGuiWindowFlags_AlwaysAutoResize)
{
if (!window_size_x_set_by_api)
window->Size.x = window->SizeFull.x = 0.f;
if (!window_size_y_set_by_api)
window->Size.y = window->SizeFull.y = 0.f;
window->ContentSize = window->ContentSizeIdeal = ImVec2(0.f, 0.f);
}
}
// SELECT VIEWPORT
// FIXME-VIEWPORT: In the docking/viewport branch, this is the point where we select the current viewport (which may affect the style)
SetCurrentWindow(window);
// LOCK BORDER SIZE AND PADDING FOR THE FRAME (so that altering them doesn't cause inconsistencies)
if (flags & ImGuiWindowFlags_ChildWindow)
window->WindowBorderSize = style.ChildBorderSize;
else
window->WindowBorderSize = ((flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_Tooltip)) && !(flags & ImGuiWindowFlags_Modal)) ? style.PopupBorderSize : style.WindowBorderSize;
window->WindowPadding = style.WindowPadding;
if ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & (ImGuiWindowFlags_AlwaysUseWindowPadding | ImGuiWindowFlags_Popup)) && window->WindowBorderSize == 0.0f)
window->WindowPadding = ImVec2(0.0f, (flags & ImGuiWindowFlags_MenuBar) ? style.WindowPadding.y : 0.0f);
// Lock menu offset so size calculation can use it as menu-bar windows need a minimum size.
window->DC.MenuBarOffset.x = ImMax(ImMax(window->WindowPadding.x, style.ItemSpacing.x), g.NextWindowData.MenuBarOffsetMinVal.x);
window->DC.MenuBarOffset.y = g.NextWindowData.MenuBarOffsetMinVal.y;
// Collapse window by double-clicking on title bar
// At this point we don't have a clipping rectangle setup yet, so we can use the title bar area for hit detection and drawing
if (!(flags & ImGuiWindowFlags_NoTitleBar) && !(flags & ImGuiWindowFlags_NoCollapse))
{
// We don't use a regular button+id to test for double-click on title bar (mostly due to legacy reason, could be fixed), so verify that we don't have items over the title bar.
ImRect title_bar_rect = window->TitleBarRect();
if (g.HoveredWindow == window && g.HoveredId == 0 && g.HoveredIdPreviousFrame == 0 && IsMouseHoveringRect(title_bar_rect.Min, title_bar_rect.Max) && g.IO.MouseDoubleClicked[0])
window->WantCollapseToggle = true;
if (window->WantCollapseToggle)
{
window->Collapsed = !window->Collapsed;
MarkIniSettingsDirty(window);
}
}
else
{
window->Collapsed = false;
}
window->WantCollapseToggle = false;
// SIZE
// Calculate auto-fit size, handle automatic resize
const ImVec2 size_auto_fit = CalcWindowAutoFitSize(window, window->ContentSizeIdeal);
bool use_current_size_for_scrollbar_x = window_just_created;
bool use_current_size_for_scrollbar_y = window_just_created;
if ((flags & ImGuiWindowFlags_AlwaysAutoResize) && !window->Collapsed)
{
// Using SetNextWindowSize() overrides ImGuiWindowFlags_AlwaysAutoResize, so it can be used on tooltips/popups, etc.
if (!window_size_x_set_by_api)
{
window->SizeFull.x = size_auto_fit.x;
use_current_size_for_scrollbar_x = true;
}
if (!window_size_y_set_by_api)
{
window->SizeFull.y = size_auto_fit.y;
use_current_size_for_scrollbar_y = true;
}
}
else if (window->AutoFitFramesX > 0 || window->AutoFitFramesY > 0)
{
// Auto-fit may only grow window during the first few frames
// We still process initial auto-fit on collapsed windows to get a window width, but otherwise don't honor ImGuiWindowFlags_AlwaysAutoResize when collapsed.
if (!window_size_x_set_by_api && window->AutoFitFramesX > 0)
{
window->SizeFull.x = window->AutoFitOnlyGrows ? ImMax(window->SizeFull.x, size_auto_fit.x) : size_auto_fit.x;
use_current_size_for_scrollbar_x = true;
}
if (!window_size_y_set_by_api && window->AutoFitFramesY > 0)
{
window->SizeFull.y = window->AutoFitOnlyGrows ? ImMax(window->SizeFull.y, size_auto_fit.y) : size_auto_fit.y;
use_current_size_for_scrollbar_y = true;
}
if (!window->Collapsed)
MarkIniSettingsDirty(window);
}
// Apply minimum/maximum window size constraints and final size
window->SizeFull = CalcWindowSizeAfterConstraint(window, window->SizeFull);
window->Size = window->Collapsed && !(flags & ImGuiWindowFlags_ChildWindow) ? window->TitleBarRect().GetSize() : window->SizeFull;
// Decoration size
const float decoration_up_height = window->TitleBarHeight() + window->MenuBarHeight();
// POSITION
// Popup latch its initial position, will position itself when it appears next frame
if (window_just_activated_by_user)
{
window->AutoPosLastDirection = ImGuiDir_None;
if ((flags & ImGuiWindowFlags_Popup) != 0 && !(flags & ImGuiWindowFlags_Modal) && !window_pos_set_by_api) // FIXME: BeginPopup() could use SetNextWindowPos()
window->Pos = g.BeginPopupStack.back().OpenPopupPos;
}
// Position child window
if (flags & ImGuiWindowFlags_ChildWindow)
{
IM_ASSERT(parent_window && parent_window->Active);
window->BeginOrderWithinParent = (short)parent_window->DC.ChildWindows.Size;
parent_window->DC.ChildWindows.push_back(window);
if (!(flags & ImGuiWindowFlags_Popup) && !window_pos_set_by_api && !window_is_child_tooltip)
window->Pos = parent_window->DC.CursorPos;
}
const bool window_pos_with_pivot = (window->SetWindowPosVal.x != FLT_MAX && window->HiddenFramesCannotSkipItems == 0);
if (window_pos_with_pivot)
SetWindowPos(window, window->SetWindowPosVal - window->Size * window->SetWindowPosPivot, 0); // Position given a pivot (e.g. for centering)
else if ((flags & ImGuiWindowFlags_ChildMenu) != 0)
window->Pos = FindBestWindowPosForPopup(window);
else if ((flags & ImGuiWindowFlags_Popup) != 0 && !window_pos_set_by_api && window_just_appearing_after_hidden_for_resize)
window->Pos = FindBestWindowPosForPopup(window);
else if ((flags & ImGuiWindowFlags_Tooltip) != 0 && !window_pos_set_by_api && !window_is_child_tooltip)
window->Pos = FindBestWindowPosForPopup(window);
// Calculate the range of allowed position for that window (to be movable and visible past safe area padding)
// When clamping to stay visible, we will enforce that window->Pos stays inside of visibility_rect.
ImGuiViewportP* viewport = (ImGuiViewportP*)(void*)GetMainViewport();
ImRect viewport_rect(viewport->GetMainRect());
ImRect viewport_work_rect(viewport->GetWorkRect());
ImVec2 visibility_padding = ImMax(style.DisplayWindowPadding, style.DisplaySafeAreaPadding);
ImRect visibility_rect(viewport_work_rect.Min + visibility_padding, viewport_work_rect.Max - visibility_padding);
// Clamp position/size so window stays visible within its viewport or monitor
// Ignore zero-sized display explicitly to avoid losing positions if a window manager reports zero-sized window when initializing or minimizing.
if (!window_pos_set_by_api && !(flags & ImGuiWindowFlags_ChildWindow) && window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0)
if (viewport_rect.GetWidth() > 0.0f && viewport_rect.GetHeight() > 0.0f)
ClampWindowRect(window, visibility_rect);
window->Pos = ImFloor(window->Pos);
// Lock window rounding for the frame (so that altering them doesn't cause inconsistencies)
// Large values tend to lead to variety of artifacts and are not recommended.
window->WindowRounding = (flags & ImGuiWindowFlags_ChildWindow) ? style.ChildRounding : ((flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiWindowFlags_Modal)) ? style.PopupRounding : style.WindowRounding;
// For windows with title bar or menu bar, we clamp to FrameHeight(FontSize + FramePadding.y * 2.0f) to completely hide artifacts.
//if ((window->Flags & ImGuiWindowFlags_MenuBar) || !(window->Flags & ImGuiWindowFlags_NoTitleBar))
// window->WindowRounding = ImMin(window->WindowRounding, g.FontSize + style.FramePadding.y * 2.0f);
// Apply window focus (new and reactivated windows are moved to front)
bool want_focus = false;
if (window_just_activated_by_user && !(flags & ImGuiWindowFlags_NoFocusOnAppearing))
{
if (flags & ImGuiWindowFlags_Popup)
want_focus = true;
else if ((flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_Tooltip)) == 0)
want_focus = true;
}
// Handle manual resize: Resize Grips, Borders, Gamepad
int border_held = -1;
ImU32 resize_grip_col[4] = {};
const int resize_grip_count = g.IO.ConfigWindowsResizeFromEdges ? 2 : 1; // Allow resize from lower-left if we have the mouse cursor feedback for it.
const float resize_grip_draw_size = IM_FLOOR(ImMax(g.FontSize * 1.10f, window->WindowRounding + 1.0f + g.FontSize * 0.2f));
if (!window->Collapsed)
if (UpdateWindowManualResize(window, size_auto_fit, &border_held, resize_grip_count, &resize_grip_col[0], visibility_rect))
use_current_size_for_scrollbar_x = use_current_size_for_scrollbar_y = true;
window->ResizeBorderHeld = (signed char)border_held;
// SCROLLBAR VISIBILITY
// Update scrollbar visibility (based on the Size that was effective during last frame or the auto-resized Size).
if (!window->Collapsed)
{
// When reading the current size we need to read it after size constraints have been applied.
// When we use InnerRect here we are intentionally reading last frame size, same for ScrollbarSizes values before we set them again.
ImVec2 avail_size_from_current_frame = ImVec2(window->SizeFull.x, window->SizeFull.y - decoration_up_height);
ImVec2 avail_size_from_last_frame = window->InnerRect.GetSize() + window->ScrollbarSizes;
ImVec2 needed_size_from_last_frame = window_just_created ? ImVec2(0, 0) : window->ContentSize + window->WindowPadding * 2.0f;
float size_x_for_scrollbars = use_current_size_for_scrollbar_x ? avail_size_from_current_frame.x : avail_size_from_last_frame.x;
float size_y_for_scrollbars = use_current_size_for_scrollbar_y ? avail_size_from_current_frame.y : avail_size_from_last_frame.y;
//bool scrollbar_y_from_last_frame = window->ScrollbarY; // FIXME: May want to use that in the ScrollbarX expression? How many pros vs cons?
window->ScrollbarY = (flags & ImGuiWindowFlags_AlwaysVerticalScrollbar) || ((needed_size_from_last_frame.y > size_y_for_scrollbars) && !(flags & ImGuiWindowFlags_NoScrollbar));
window->ScrollbarX = (flags & ImGuiWindowFlags_AlwaysHorizontalScrollbar) || ((needed_size_from_last_frame.x > size_x_for_scrollbars - (window->ScrollbarY ? style.ScrollbarSize : 0.0f)) && !(flags & ImGuiWindowFlags_NoScrollbar) && (flags & ImGuiWindowFlags_HorizontalScrollbar));
if (window->ScrollbarX && !window->ScrollbarY)
window->ScrollbarY = (needed_size_from_last_frame.y > size_y_for_scrollbars) && !(flags & ImGuiWindowFlags_NoScrollbar);
window->ScrollbarSizes = ImVec2(window->ScrollbarY ? style.ScrollbarSize : 0.0f, window->ScrollbarX ? style.ScrollbarSize : 0.0f);
}
// UPDATE RECTANGLES (1- THOSE NOT AFFECTED BY SCROLLING)
// Update various regions. Variables they depends on should be set above in this function.
// We set this up after processing the resize grip so that our rectangles doesn't lag by a frame.
// Outer rectangle
// Not affected by window border size. Used by:
// - FindHoveredWindow() (w/ extra padding when border resize is enabled)
// - Begin() initial clipping rect for drawing window background and borders.
// - Begin() clipping whole child
const ImRect host_rect = ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Popup) && !window_is_child_tooltip) ? parent_window->ClipRect : viewport_rect;
const ImRect outer_rect = window->Rect();
const ImRect title_bar_rect = window->TitleBarRect();
window->OuterRectClipped = outer_rect;
window->OuterRectClipped.ClipWith(host_rect);
// Inner rectangle
// Not affected by window border size. Used by:
// - InnerClipRect
// - ScrollToBringRectIntoView()
// - NavUpdatePageUpPageDown()
// - Scrollbar()
window->InnerRect.Min.x = window->Pos.x;
window->InnerRect.Min.y = window->Pos.y + decoration_up_height;
window->InnerRect.Max.x = window->Pos.x + window->Size.x - window->ScrollbarSizes.x;
window->InnerRect.Max.y = window->Pos.y + window->Size.y - window->ScrollbarSizes.y;
// Inner clipping rectangle.
// Will extend a little bit outside the normal work region.
// This is to allow e.g. Selectable or CollapsingHeader or some separators to cover that space.
// Force round operator last to ensure that e.g. (int)(max.x-min.x) in user's render code produce correct result.
// Note that if our window is collapsed we will end up with an inverted (~null) clipping rectangle which is the correct behavior.
// Affected by window/frame border size. Used by:
// - Begin() initial clip rect
float top_border_size = (((flags & ImGuiWindowFlags_MenuBar) || !(flags & ImGuiWindowFlags_NoTitleBar)) ? style.FrameBorderSize : window->WindowBorderSize);
window->InnerClipRect.Min.x = ImFloor(0.5f + window->InnerRect.Min.x + ImMax(ImFloor(window->WindowPadding.x * 0.5f), window->WindowBorderSize));
window->InnerClipRect.Min.y = ImFloor(0.5f + window->InnerRect.Min.y + top_border_size);
window->InnerClipRect.Max.x = ImFloor(0.5f + window->InnerRect.Max.x - ImMax(ImFloor(window->WindowPadding.x * 0.5f), window->WindowBorderSize));
window->InnerClipRect.Max.y = ImFloor(0.5f + window->InnerRect.Max.y - window->WindowBorderSize);
window->InnerClipRect.ClipWithFull(host_rect);
// Default item width. Make it proportional to window size if window manually resizes
if (window->Size.x > 0.0f && !(flags & ImGuiWindowFlags_Tooltip) && !(flags & ImGuiWindowFlags_AlwaysAutoResize))
window->ItemWidthDefault = ImFloor(window->Size.x * 0.65f);
else
window->ItemWidthDefault = ImFloor(g.FontSize * 16.0f);
// SCROLLING
// Lock down maximum scrolling
// The value of ScrollMax are ahead from ScrollbarX/ScrollbarY which is intentionally using InnerRect from previous rect in order to accommodate
// for right/bottom aligned items without creating a scrollbar.
window->ScrollMax.x = ImMax(0.0f, window->ContentSize.x + window->WindowPadding.x * 2.0f - window->InnerRect.GetWidth());
window->ScrollMax.y = ImMax(0.0f, window->ContentSize.y + window->WindowPadding.y * 2.0f - window->InnerRect.GetHeight());
// Apply scrolling
window->Scroll = CalcNextScrollFromScrollTargetAndClamp(window);
window->ScrollTarget = ImVec2(FLT_MAX, FLT_MAX);
// DRAWING
// Setup draw list and outer clipping rectangle
IM_ASSERT(window->DrawList->CmdBuffer.Size == 1 && window->DrawList->CmdBuffer[0].ElemCount == 0);
window->DrawList->PushTextureID(g.Font->ContainerAtlas->TexID);
PushClipRect(host_rect.Min, host_rect.Max, false);
// Draw modal window background (darkens what is behind them, all viewports)
const bool dim_bg_for_modal = (flags & ImGuiWindowFlags_Modal) && window == GetTopMostPopupModal() && window->HiddenFramesCannotSkipItems <= 0;
const bool dim_bg_for_window_list = g.NavWindowingTargetAnim && (window == g.NavWindowingTargetAnim->RootWindow);
if (dim_bg_for_modal || dim_bg_for_window_list)
{
const ImU32 dim_bg_col = GetColorU32(dim_bg_for_modal ? ImGuiCol_ModalWindowDimBg : ImGuiCol_NavWindowingDimBg, g.DimBgRatio);
window->DrawList->AddRectFilled(viewport_rect.Min, viewport_rect.Max, dim_bg_col);
}
// Draw navigation selection/windowing rectangle background
if (dim_bg_for_window_list && window == g.NavWindowingTargetAnim)
{
ImRect bb = window->Rect();
bb.Expand(g.FontSize);
if (!bb.Contains(viewport_rect)) // Avoid drawing if the window covers all the viewport anyway
window->DrawList->AddRectFilled(bb.Min, bb.Max, GetColorU32(ImGuiCol_NavWindowingHighlight, g.NavWindowingHighlightAlpha * 0.25f), g.Style.WindowRounding);
}
// Since 1.71, child window can render their decoration (bg color, border, scrollbars, etc.) within their parent to save a draw call.
// When using overlapping child windows, this will break the assumption that child z-order is mapped to submission order.
// We disable this when the parent window has zero vertices, which is a common pattern leading to laying out multiple overlapping child.
// We also disabled this when we have dimming overlay behind this specific one child.
// FIXME: More code may rely on explicit sorting of overlapping child window and would need to disable this somehow. Please get in contact if you are affected.
{
bool render_decorations_in_parent = false;
if ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Popup) && !window_is_child_tooltip)
if (window->DrawList->CmdBuffer.back().ElemCount == 0 && parent_window->DrawList->VtxBuffer.Size > 0)
render_decorations_in_parent = true;
if (render_decorations_in_parent)
window->DrawList = parent_window->DrawList;
// Handle title bar, scrollbar, resize grips and resize borders
const ImGuiWindow* window_to_highlight = g.NavWindowingTarget ? g.NavWindowingTarget : g.NavWindow;
const bool title_bar_is_highlight = want_focus || (window_to_highlight && window->RootWindowForTitleBarHighlight == window_to_highlight->RootWindowForTitleBarHighlight);
RenderWindowDecorations(window, title_bar_rect, title_bar_is_highlight, resize_grip_count, resize_grip_col, resize_grip_draw_size);
if (render_decorations_in_parent)
window->DrawList = &window->DrawListInst;
}
// Draw navigation selection/windowing rectangle border
if (g.NavWindowingTargetAnim == window)
{
float rounding = ImMax(window->WindowRounding, g.Style.WindowRounding);
ImRect bb = window->Rect();
bb.Expand(g.FontSize);
if (bb.Contains(viewport_rect)) // If a window fits the entire viewport, adjust its highlight inward
{
bb.Expand(-g.FontSize - 1.0f);
rounding = window->WindowRounding;
}
window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_NavWindowingHighlight, g.NavWindowingHighlightAlpha), rounding, 0, 3.0f);
}
// UPDATE RECTANGLES (2- THOSE AFFECTED BY SCROLLING)
// Work rectangle.
// Affected by window padding and border size. Used by:
// - Columns() for right-most edge
// - TreeNode(), CollapsingHeader() for right-most edge
// - BeginTabBar() for right-most edge
const bool allow_scrollbar_x = !(flags & ImGuiWindowFlags_NoScrollbar) && (flags & ImGuiWindowFlags_HorizontalScrollbar);
const bool allow_scrollbar_y = !(flags & ImGuiWindowFlags_NoScrollbar);
const float work_rect_size_x = (window->ContentSizeExplicit.x != 0.0f ? window->ContentSizeExplicit.x : ImMax(allow_scrollbar_x ? window->ContentSize.x : 0.0f, window->Size.x - window->WindowPadding.x * 2.0f - window->ScrollbarSizes.x));
const float work_rect_size_y = (window->ContentSizeExplicit.y != 0.0f ? window->ContentSizeExplicit.y : ImMax(allow_scrollbar_y ? window->ContentSize.y : 0.0f, window->Size.y - window->WindowPadding.y * 2.0f - decoration_up_height - window->ScrollbarSizes.y));
window->WorkRect.Min.x = ImFloor(window->InnerRect.Min.x - window->Scroll.x + ImMax(window->WindowPadding.x, window->WindowBorderSize));
window->WorkRect.Min.y = ImFloor(window->InnerRect.Min.y - window->Scroll.y + ImMax(window->WindowPadding.y, window->WindowBorderSize));
window->WorkRect.Max.x = window->WorkRect.Min.x + work_rect_size_x;
window->WorkRect.Max.y = window->WorkRect.Min.y + work_rect_size_y;
window->ParentWorkRect = window->WorkRect;
// [LEGACY] Content Region
// FIXME-OBSOLETE: window->ContentRegionRect.Max is currently very misleading / partly faulty, but some BeginChild() patterns relies on it.
// Used by:
// - Mouse wheel scrolling + many other things
window->ContentRegionRect.Min.x = window->Pos.x - window->Scroll.x + window->WindowPadding.x;
window->ContentRegionRect.Min.y = window->Pos.y - window->Scroll.y + window->WindowPadding.y + decoration_up_height;
window->ContentRegionRect.Max.x = window->ContentRegionRect.Min.x + (window->ContentSizeExplicit.x != 0.0f ? window->ContentSizeExplicit.x : (window->Size.x - window->WindowPadding.x * 2.0f - window->ScrollbarSizes.x));
window->ContentRegionRect.Max.y = window->ContentRegionRect.Min.y + (window->ContentSizeExplicit.y != 0.0f ? window->ContentSizeExplicit.y : (window->Size.y - window->WindowPadding.y * 2.0f - decoration_up_height - window->ScrollbarSizes.y));
// Setup drawing context
// (NB: That term "drawing context / DC" lost its meaning a long time ago. Initially was meant to hold transient data only. Nowadays difference between window-> and window->DC-> is dubious.)
window->DC.Indent.x = 0.0f + window->WindowPadding.x - window->Scroll.x;
window->DC.GroupOffset.x = 0.0f;
window->DC.ColumnsOffset.x = 0.0f;
window->DC.CursorStartPos = window->Pos + ImVec2(window->DC.Indent.x + window->DC.ColumnsOffset.x, decoration_up_height + window->WindowPadding.y - window->Scroll.y);
window->DC.CursorPos = window->DC.CursorStartPos;
window->DC.CursorPosPrevLine = window->DC.CursorPos;
window->DC.CursorMaxPos = window->DC.CursorStartPos;
window->DC.IdealMaxPos = window->DC.CursorStartPos;
window->DC.CurrLineSize = window->DC.PrevLineSize = ImVec2(0.0f, 0.0f);
window->DC.CurrLineTextBaseOffset = window->DC.PrevLineTextBaseOffset = 0.0f;
window->DC.NavLayerCurrent = ImGuiNavLayer_Main;
window->DC.NavLayersActiveMask = window->DC.NavLayersActiveMaskNext;
window->DC.NavLayersActiveMaskNext = 0x00;
window->DC.NavHideHighlightOneFrame = false;
window->DC.NavHasScroll = (window->ScrollMax.y > 0.0f);
window->DC.MenuBarAppending = false;
window->DC.MenuColumns.Update(3, style.ItemSpacing.x, window_just_activated_by_user);
window->DC.TreeDepth = 0;
window->DC.TreeJumpToParentOnPopMask = 0x00;
window->DC.ChildWindows.resize(0);
window->DC.StateStorage = &window->StateStorage;
window->DC.CurrentColumns = NULL;
window->DC.LayoutType = ImGuiLayoutType_Vertical;
window->DC.ParentLayoutType = parent_window ? parent_window->DC.LayoutType : ImGuiLayoutType_Vertical;
window->DC.FocusCounterRegular = window->DC.FocusCounterTabStop = -1;
window->DC.ItemWidth = window->ItemWidthDefault;
window->DC.TextWrapPos = -1.0f; // disabled
window->DC.ItemWidthStack.resize(0);
window->DC.TextWrapPosStack.resize(0);
if (window->AutoFitFramesX > 0)
window->AutoFitFramesX--;
if (window->AutoFitFramesY > 0)
window->AutoFitFramesY--;
// Apply focus (we need to call FocusWindow() AFTER setting DC.CursorStartPos so our initial navigation reference rectangle can start around there)
if (want_focus)
{
FocusWindow(window);
NavInitWindow(window, false); // <-- this is in the way for us to be able to defer and sort reappearing FocusWindow() calls
}
// Title bar
if (!(flags & ImGuiWindowFlags_NoTitleBar))
RenderWindowTitleBarContents(window, ImRect(title_bar_rect.Min.x + window->WindowBorderSize, title_bar_rect.Min.y, title_bar_rect.Max.x - window->WindowBorderSize, title_bar_rect.Max.y), name, p_open);
// Clear hit test shape every frame
window->HitTestHoleSize.x = window->HitTestHoleSize.y = 0;
// Pressing CTRL+C while holding on a window copy its content to the clipboard
// This works but 1. doesn't handle multiple Begin/End pairs, 2. recursing into another Begin/End pair - so we need to work that out and add better logging scope.
// Maybe we can support CTRL+C on every element?
/*
//if (g.NavWindow == window && g.ActiveId == 0)
if (g.ActiveId == window->MoveId)
if (g.IO.KeyCtrl && IsKeyPressedMap(ImGuiKey_C))
LogToClipboard();
*/
// We fill last item data based on Title Bar/Tab, in order for IsItemHovered() and IsItemActive() to be usable after Begin().
// This is useful to allow creating context menus on title bar only, etc.
SetLastItemData(window, window->MoveId, IsMouseHoveringRect(title_bar_rect.Min, title_bar_rect.Max, false) ? ImGuiItemStatusFlags_HoveredRect : 0, title_bar_rect);
#ifdef IMGUI_ENABLE_TEST_ENGINE
if (!(window->Flags & ImGuiWindowFlags_NoTitleBar))
IMGUI_TEST_ENGINE_ITEM_ADD(window->DC.LastItemRect, window->DC.LastItemId);
#endif
}
else
{
// Append
SetCurrentWindow(window);
}
// Pull/inherit current state
g.CurrentItemFlags = g.ItemFlagsStack.back(); // Inherit from shared stack
window->DC.NavFocusScopeIdCurrent = (flags & ImGuiWindowFlags_ChildWindow) ? parent_window->DC.NavFocusScopeIdCurrent : 0; // Inherit from parent only // -V595
PushClipRect(window->InnerClipRect.Min, window->InnerClipRect.Max, true);
// Clear 'accessed' flag last thing (After PushClipRect which will set the flag. We want the flag to stay false when the default "Debug" window is unused)
window->WriteAccessed = false;
window->BeginCount++;
g.NextWindowData.ClearFlags();
// Update visibility
if (first_begin_of_the_frame)
{
if (flags & ImGuiWindowFlags_ChildWindow)
{
// Child window can be out of sight and have "negative" clip windows.
// Mark them as collapsed so commands are skipped earlier (we can't manually collapse them because they have no title bar).
IM_ASSERT((flags & ImGuiWindowFlags_NoTitleBar) != 0);
if (!(flags & ImGuiWindowFlags_AlwaysAutoResize) && window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0) // FIXME: Doesn't make sense for ChildWindow??
if (!g.LogEnabled)
if (window->OuterRectClipped.Min.x >= window->OuterRectClipped.Max.x || window->OuterRectClipped.Min.y >= window->OuterRectClipped.Max.y)
window->HiddenFramesCanSkipItems = 1;
// Hide along with parent or if parent is collapsed
if (parent_window && (parent_window->Collapsed || parent_window->HiddenFramesCanSkipItems > 0))
window->HiddenFramesCanSkipItems = 1;
if (parent_window && (parent_window->Collapsed || parent_window->HiddenFramesCannotSkipItems > 0))
window->HiddenFramesCannotSkipItems = 1;
}
// Don't render if style alpha is 0.0 at the time of Begin(). This is arbitrary and inconsistent but has been there for a long while (may remove at some point)
if (style.Alpha <= 0.0f)
window->HiddenFramesCanSkipItems = 1;
// Update the Hidden flag
window->Hidden = (window->HiddenFramesCanSkipItems > 0) || (window->HiddenFramesCannotSkipItems > 0) || (window->HiddenFramesForRenderOnly > 0);
// Disable inputs for requested number of frames
if (window->DisableInputsFrames > 0)
{
window->DisableInputsFrames--;
window->Flags |= ImGuiWindowFlags_NoInputs;
}
// Update the SkipItems flag, used to early out of all items functions (no layout required)
bool skip_items = false;
if (window->Collapsed || !window->Active || window->Hidden)
if (window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0 && window->HiddenFramesCannotSkipItems <= 0)
skip_items = true;
window->SkipItems = skip_items;
}
return !window->SkipItems;
}
void ImGui::End()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
// Error checking: verify that user hasn't called End() too many times!
if (g.CurrentWindowStack.Size <= 1 && g.WithinFrameScopeWithImplicitWindow)
{
IM_ASSERT_USER_ERROR(g.CurrentWindowStack.Size > 1, "Calling End() too many times!");
return;
}
IM_ASSERT(g.CurrentWindowStack.Size > 0);
// Error checking: verify that user doesn't directly call End() on a child window.
if (window->Flags & ImGuiWindowFlags_ChildWindow)
IM_ASSERT_USER_ERROR(g.WithinEndChild, "Must call EndChild() and not End()!");
// Close anything that is open
if (window->DC.CurrentColumns)
EndColumns();
PopClipRect(); // Inner window clip rectangle
// Stop logging
if (!(window->Flags & ImGuiWindowFlags_ChildWindow)) // FIXME: add more options for scope of logging
LogFinish();
// Pop from window stack
g.CurrentWindowStack.pop_back();
if (window->Flags & ImGuiWindowFlags_Popup)
g.BeginPopupStack.pop_back();
window->DC.StackSizesOnBegin.CompareWithCurrentState();
SetCurrentWindow(g.CurrentWindowStack.empty() ? NULL : g.CurrentWindowStack.back());
}
void ImGui::BringWindowToFocusFront(ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(window == window->RootWindow);
const int cur_order = window->FocusOrder;
IM_ASSERT(g.WindowsFocusOrder[cur_order] == window);
if (g.WindowsFocusOrder.back() == window)
return;
const int new_order = g.WindowsFocusOrder.Size - 1;
for (int n = cur_order; n < new_order; n++)
{
g.WindowsFocusOrder[n] = g.WindowsFocusOrder[n + 1];
g.WindowsFocusOrder[n]->FocusOrder--;
IM_ASSERT(g.WindowsFocusOrder[n]->FocusOrder == n);
}
g.WindowsFocusOrder[new_order] = window;
window->FocusOrder = (short)new_order;
}
void ImGui::BringWindowToDisplayFront(ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* current_front_window = g.Windows.back();
if (current_front_window == window || current_front_window->RootWindow == window) // Cheap early out (could be better)
return;
for (int i = g.Windows.Size - 2; i >= 0; i--) // We can ignore the top-most window
if (g.Windows[i] == window)
{
memmove(&g.Windows[i], &g.Windows[i + 1], (size_t)(g.Windows.Size - i - 1) * sizeof(ImGuiWindow*));
g.Windows[g.Windows.Size - 1] = window;
break;
}
}
void ImGui::BringWindowToDisplayBack(ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
if (g.Windows[0] == window)
return;
for (int i = 0; i < g.Windows.Size; i++)
if (g.Windows[i] == window)
{
memmove(&g.Windows[1], &g.Windows[0], (size_t)i * sizeof(ImGuiWindow*));
g.Windows[0] = window;
break;
}
}
// Moving window to front of display and set focus (which happens to be back of our sorted list)
void ImGui::FocusWindow(ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
if (g.NavWindow != window)
{
g.NavWindow = window;
if (window && g.NavDisableMouseHover)
g.NavMousePosDirty = true;
g.NavId = window ? window->NavLastIds[0] : 0; // Restore NavId
g.NavFocusScopeId = 0;
g.NavIdIsAlive = false;
g.NavLayer = ImGuiNavLayer_Main;
g.NavInitRequest = g.NavMoveRequest = false;
NavUpdateAnyRequestFlag();
//IMGUI_DEBUG_LOG("FocusWindow(\"%s\")\n", window ? window->Name : NULL);
}
// Close popups if any
ClosePopupsOverWindow(window, false);
// Move the root window to the top of the pile
IM_ASSERT(window == NULL || window->RootWindow != NULL);
ImGuiWindow* focus_front_window = window ? window->RootWindow : NULL; // NB: In docking branch this is window->RootWindowDockStop
ImGuiWindow* display_front_window = window ? window->RootWindow : NULL;
// Steal active widgets. Some of the cases it triggers includes:
// - Focus a window while an InputText in another window is active, if focus happens before the old InputText can run.
// - When using Nav to activate menu items (due to timing of activating on press->new window appears->losing ActiveId)
if (g.ActiveId != 0 && g.ActiveIdWindow && g.ActiveIdWindow->RootWindow != focus_front_window)
if (!g.ActiveIdNoClearOnFocusLoss)
ClearActiveID();
// Passing NULL allow to disable keyboard focus
if (!window)
return;
// Bring to front
BringWindowToFocusFront(focus_front_window);
if (((window->Flags | display_front_window->Flags) & ImGuiWindowFlags_NoBringToFrontOnFocus) == 0)
BringWindowToDisplayFront(display_front_window);
}
void ImGui::FocusTopMostWindowUnderOne(ImGuiWindow* under_this_window, ImGuiWindow* ignore_window)
{
ImGuiContext& g = *GImGui;
const int start_idx = ((under_this_window != NULL) ? FindWindowFocusIndex(under_this_window) : g.WindowsFocusOrder.Size) - 1;
for (int i = start_idx; i >= 0; i--)
{
// We may later decide to test for different NoXXXInputs based on the active navigation input (mouse vs nav) but that may feel more confusing to the user.
ImGuiWindow* window = g.WindowsFocusOrder[i];
IM_ASSERT(window == window->RootWindow);
if (window != ignore_window && window->WasActive)
if ((window->Flags & (ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs)) != (ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs))
{
ImGuiWindow* focus_window = NavRestoreLastChildNavWindow(window);
FocusWindow(focus_window);
return;
}
}
FocusWindow(NULL);
}
// Important: this alone doesn't alter current ImDrawList state. This is called by PushFont/PopFont only.
void ImGui::SetCurrentFont(ImFont* font)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(font && font->IsLoaded()); // Font Atlas not created. Did you call io.Fonts->GetTexDataAsRGBA32 / GetTexDataAsAlpha8 ?
IM_ASSERT(font->Scale > 0.0f);
g.Font = font;
g.FontBaseSize = ImMax(1.0f, g.IO.FontGlobalScale * g.Font->FontSize * g.Font->Scale);
g.FontSize = g.CurrentWindow ? g.CurrentWindow->CalcFontSize() : 0.0f;
ImFontAtlas* atlas = g.Font->ContainerAtlas;
g.DrawListSharedData.TexUvWhitePixel = atlas->TexUvWhitePixel;
g.DrawListSharedData.TexUvLines = atlas->TexUvLines;
g.DrawListSharedData.Font = g.Font;
g.DrawListSharedData.FontSize = g.FontSize;
}
void ImGui::PushFont(ImFont* font)
{
ImGuiContext& g = *GImGui;
if (!font)
font = GetDefaultFont();
SetCurrentFont(font);
g.FontStack.push_back(font);
g.CurrentWindow->DrawList->PushTextureID(font->ContainerAtlas->TexID);
}
void ImGui::PopFont()
{
ImGuiContext& g = *GImGui;
g.CurrentWindow->DrawList->PopTextureID();
g.FontStack.pop_back();
SetCurrentFont(g.FontStack.empty() ? GetDefaultFont() : g.FontStack.back());
}
void ImGui::PushItemFlag(ImGuiItemFlags option, bool enabled)
{
ImGuiContext& g = *GImGui;
ImGuiItemFlags item_flags = g.CurrentItemFlags;
IM_ASSERT(item_flags == g.ItemFlagsStack.back());
if (enabled)
item_flags |= option;
else
item_flags &= ~option;
g.CurrentItemFlags = item_flags;
g.ItemFlagsStack.push_back(item_flags);
}
void ImGui::PopItemFlag()
{
ImGuiContext& g = *GImGui;
IM_ASSERT(g.ItemFlagsStack.Size > 1); // Too many calls to PopItemFlag() - we always leave a 0 at the bottom of the stack.
g.ItemFlagsStack.pop_back();
g.CurrentItemFlags = g.ItemFlagsStack.back();
}
// FIXME: Look into renaming this once we have settled the new Focus/Activation/TabStop system.
void ImGui::PushAllowKeyboardFocus(bool allow_keyboard_focus)
{
PushItemFlag(ImGuiItemFlags_NoTabStop, !allow_keyboard_focus);
}
void ImGui::PopAllowKeyboardFocus()
{
PopItemFlag();
}
void ImGui::PushButtonRepeat(bool repeat)
{
PushItemFlag(ImGuiItemFlags_ButtonRepeat, repeat);
}
void ImGui::PopButtonRepeat()
{
PopItemFlag();
}
void ImGui::PushTextWrapPos(float wrap_pos_x)
{
ImGuiWindow* window = GetCurrentWindow();
window->DC.TextWrapPosStack.push_back(window->DC.TextWrapPos);
window->DC.TextWrapPos = wrap_pos_x;
}
void ImGui::PopTextWrapPos()
{
ImGuiWindow* window = GetCurrentWindow();
window->DC.TextWrapPos = window->DC.TextWrapPosStack.back();
window->DC.TextWrapPosStack.pop_back();
}
bool ImGui::IsWindowChildOf(ImGuiWindow* window, ImGuiWindow* potential_parent)
{
if (window->RootWindow == potential_parent)
return true;
while (window != NULL)
{
if (window == potential_parent)
return true;
window = window->ParentWindow;
}
return false;
}
bool ImGui::IsWindowAbove(ImGuiWindow* potential_above, ImGuiWindow* potential_below)
{
ImGuiContext& g = *GImGui;
for (int i = g.Windows.Size - 1; i >= 0; i--)
{
ImGuiWindow* candidate_window = g.Windows[i];
if (candidate_window == potential_above)
return true;
if (candidate_window == potential_below)
return false;
}
return false;
}
bool ImGui::IsWindowHovered(ImGuiHoveredFlags flags)
{
IM_ASSERT((flags & ImGuiHoveredFlags_AllowWhenOverlapped) == 0); // Flags not supported by this function
ImGuiContext& g = *GImGui;
if (g.HoveredWindow == NULL)
return false;
if ((flags & ImGuiHoveredFlags_AnyWindow) == 0)
{
ImGuiWindow* window = g.CurrentWindow;
switch (flags & (ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows))
{
case ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows:
if (g.HoveredWindow->RootWindow != window->RootWindow)
return false;
break;
case ImGuiHoveredFlags_RootWindow:
if (g.HoveredWindow != window->RootWindow)
return false;
break;
case ImGuiHoveredFlags_ChildWindows:
if (!IsWindowChildOf(g.HoveredWindow, window))
return false;
break;
default:
if (g.HoveredWindow != window)
return false;
break;
}
}
if (!IsWindowContentHoverable(g.HoveredWindow, flags))
return false;
if (!(flags & ImGuiHoveredFlags_AllowWhenBlockedByActiveItem))
if (g.ActiveId != 0 && !g.ActiveIdAllowOverlap && g.ActiveId != g.HoveredWindow->MoveId)
return false;
return true;
}
bool ImGui::IsWindowFocused(ImGuiFocusedFlags flags)
{
ImGuiContext& g = *GImGui;
if (flags & ImGuiFocusedFlags_AnyWindow)
return g.NavWindow != NULL;
IM_ASSERT(g.CurrentWindow); // Not inside a Begin()/End()
switch (flags & (ImGuiFocusedFlags_RootWindow | ImGuiFocusedFlags_ChildWindows))
{
case ImGuiFocusedFlags_RootWindow | ImGuiFocusedFlags_ChildWindows:
return g.NavWindow && g.NavWindow->RootWindow == g.CurrentWindow->RootWindow;
case ImGuiFocusedFlags_RootWindow:
return g.NavWindow == g.CurrentWindow->RootWindow;
case ImGuiFocusedFlags_ChildWindows:
return g.NavWindow && IsWindowChildOf(g.NavWindow, g.CurrentWindow);
default:
return g.NavWindow == g.CurrentWindow;
}
}
// Can we focus this window with CTRL+TAB (or PadMenu + PadFocusPrev/PadFocusNext)
// Note that NoNavFocus makes the window not reachable with CTRL+TAB but it can still be focused with mouse or programmatically.
// If you want a window to never be focused, you may use the e.g. NoInputs flag.
bool ImGui::IsWindowNavFocusable(ImGuiWindow* window)
{
return window->WasActive && window == window->RootWindow && !(window->Flags & ImGuiWindowFlags_NoNavFocus);
}
float ImGui::GetWindowWidth()
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->Size.x;
}
float ImGui::GetWindowHeight()
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->Size.y;
}
ImVec2 ImGui::GetWindowPos()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
return window->Pos;
}
void ImGui::SetWindowPos(ImGuiWindow* window, const ImVec2& pos, ImGuiCond cond)
{
// Test condition (NB: bit 0 is always true) and clear flags for next time
if (cond && (window->SetWindowPosAllowFlags & cond) == 0)
return;
IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags.
window->SetWindowPosAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing);
window->SetWindowPosVal = ImVec2(FLT_MAX, FLT_MAX);
// Set
const ImVec2 old_pos = window->Pos;
window->Pos = ImFloor(pos);
ImVec2 offset = window->Pos - old_pos;
window->DC.CursorPos += offset; // As we happen to move the window while it is being appended to (which is a bad idea - will smear) let's at least offset the cursor
window->DC.CursorMaxPos += offset; // And more importantly we need to offset CursorMaxPos/CursorStartPos this so ContentSize calculation doesn't get affected.
window->DC.IdealMaxPos += offset;
window->DC.CursorStartPos += offset;
}
void ImGui::SetWindowPos(const ImVec2& pos, ImGuiCond cond)
{
ImGuiWindow* window = GetCurrentWindowRead();
SetWindowPos(window, pos, cond);
}
void ImGui::SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond)
{
if (ImGuiWindow* window = FindWindowByName(name))
SetWindowPos(window, pos, cond);
}
ImVec2 ImGui::GetWindowSize()
{
ImGuiWindow* window = GetCurrentWindowRead();
return window->Size;
}
void ImGui::SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond)
{
// Test condition (NB: bit 0 is always true) and clear flags for next time
if (cond && (window->SetWindowSizeAllowFlags & cond) == 0)
return;
IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags.
window->SetWindowSizeAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing);
// Set
if (size.x > 0.0f)
{
window->AutoFitFramesX = 0;
window->SizeFull.x = IM_FLOOR(size.x);
}
else
{
window->AutoFitFramesX = 2;
window->AutoFitOnlyGrows = false;
}
if (size.y > 0.0f)
{
window->AutoFitFramesY = 0;
window->SizeFull.y = IM_FLOOR(size.y);
}
else
{
window->AutoFitFramesY = 2;
window->AutoFitOnlyGrows = false;
}
}
void ImGui::SetWindowSize(const ImVec2& size, ImGuiCond cond)
{
SetWindowSize(GImGui->CurrentWindow, size, cond);
}
void ImGui::SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond)
{
if (ImGuiWindow* window = FindWindowByName(name))
SetWindowSize(window, size, cond);
}
void ImGui::SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiCond cond)
{
// Test condition (NB: bit 0 is always true) and clear flags for next time
if (cond && (window->SetWindowCollapsedAllowFlags & cond) == 0)
return;
window->SetWindowCollapsedAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing);
// Set
window->Collapsed = collapsed;
}
void ImGui::SetWindowHitTestHole(ImGuiWindow* window, const ImVec2& pos, const ImVec2& size)
{
IM_ASSERT(window->HitTestHoleSize.x == 0); // We don't support multiple holes/hit test filters
window->HitTestHoleSize = ImVec2ih(size);
window->HitTestHoleOffset = ImVec2ih(pos - window->Pos);
}
void ImGui::SetWindowCollapsed(bool collapsed, ImGuiCond cond)
{
SetWindowCollapsed(GImGui->CurrentWindow, collapsed, cond);
}
bool ImGui::IsWindowCollapsed()
{
ImGuiWindow* window = GetCurrentWindowRead();
return window->Collapsed;
}
bool ImGui::IsWindowAppearing()
{
ImGuiWindow* window = GetCurrentWindowRead();
return window->Appearing;
}
void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond)
{
if (ImGuiWindow* window = FindWindowByName(name))
SetWindowCollapsed(window, collapsed, cond);
}
void ImGui::SetWindowFocus()
{
FocusWindow(GImGui->CurrentWindow);
}
void ImGui::SetWindowFocus(const char* name)
{
if (name)
{
if (ImGuiWindow* window = FindWindowByName(name))
FocusWindow(window);
}
else
{
FocusWindow(NULL);
}
}
void ImGui::SetNextWindowPos(const ImVec2& pos, ImGuiCond cond, const ImVec2& pivot)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags.
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasPos;
g.NextWindowData.PosVal = pos;
g.NextWindowData.PosPivotVal = pivot;
g.NextWindowData.PosCond = cond ? cond : ImGuiCond_Always;
}
void ImGui::SetNextWindowSize(const ImVec2& size, ImGuiCond cond)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags.
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasSize;
g.NextWindowData.SizeVal = size;
g.NextWindowData.SizeCond = cond ? cond : ImGuiCond_Always;
}
void ImGui::SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGuiSizeCallback custom_callback, void* custom_callback_user_data)
{
ImGuiContext& g = *GImGui;
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasSizeConstraint;
g.NextWindowData.SizeConstraintRect = ImRect(size_min, size_max);
g.NextWindowData.SizeCallback = custom_callback;
g.NextWindowData.SizeCallbackUserData = custom_callback_user_data;
}
// Content size = inner scrollable rectangle, padded with WindowPadding.
// SetNextWindowContentSize(ImVec2(100,100) + ImGuiWindowFlags_AlwaysAutoResize will always allow submitting a 100x100 item.
void ImGui::SetNextWindowContentSize(const ImVec2& size)
{
ImGuiContext& g = *GImGui;
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasContentSize;
g.NextWindowData.ContentSizeVal = ImFloor(size);
}
void ImGui::SetNextWindowScroll(const ImVec2& scroll)
{
ImGuiContext& g = *GImGui;
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasScroll;
g.NextWindowData.ScrollVal = scroll;
}
void ImGui::SetNextWindowCollapsed(bool collapsed, ImGuiCond cond)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags.
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasCollapsed;
g.NextWindowData.CollapsedVal = collapsed;
g.NextWindowData.CollapsedCond = cond ? cond : ImGuiCond_Always;
}
void ImGui::SetNextWindowFocus()
{
ImGuiContext& g = *GImGui;
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasFocus;
}
void ImGui::SetNextWindowBgAlpha(float alpha)
{
ImGuiContext& g = *GImGui;
g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasBgAlpha;
g.NextWindowData.BgAlphaVal = alpha;
}
ImDrawList* ImGui::GetWindowDrawList()
{
ImGuiWindow* window = GetCurrentWindow();
return window->DrawList;
}
ImFont* ImGui::GetFont()
{
return GImGui->Font;
}
float ImGui::GetFontSize()
{
return GImGui->FontSize;
}
ImVec2 ImGui::GetFontTexUvWhitePixel()
{
return GImGui->DrawListSharedData.TexUvWhitePixel;
}
void ImGui::SetWindowFontScale(float scale)
{
IM_ASSERT(scale > 0.0f);
ImGuiContext& g = *GImGui;
ImGuiWindow* window = GetCurrentWindow();
window->FontWindowScale = scale;
g.FontSize = g.DrawListSharedData.FontSize = window->CalcFontSize();
}
void ImGui::ActivateItem(ImGuiID id)
{
ImGuiContext& g = *GImGui;
g.NavNextActivateId = id;
}
void ImGui::PushFocusScope(ImGuiID id)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
g.FocusScopeStack.push_back(window->DC.NavFocusScopeIdCurrent);
window->DC.NavFocusScopeIdCurrent = id;
}
void ImGui::PopFocusScope()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
IM_ASSERT(g.FocusScopeStack.Size > 0); // Too many PopFocusScope() ?
window->DC.NavFocusScopeIdCurrent = g.FocusScopeStack.back();
g.FocusScopeStack.pop_back();
}
void ImGui::SetKeyboardFocusHere(int offset)
{
IM_ASSERT(offset >= -1); // -1 is allowed but not below
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
g.TabFocusRequestNextWindow = window;
g.TabFocusRequestNextCounterRegular = window->DC.FocusCounterRegular + 1 + offset;
g.TabFocusRequestNextCounterTabStop = INT_MAX;
}
void ImGui::SetItemDefaultFocus()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
if (!window->Appearing)
return;
if (g.NavWindow == window->RootWindowForNav && (g.NavInitRequest || g.NavInitResultId != 0) && g.NavLayer == window->DC.NavLayerCurrent)
{
g.NavInitRequest = false;
g.NavInitResultId = window->DC.LastItemId;
g.NavInitResultRectRel = ImRect(window->DC.LastItemRect.Min - window->Pos, window->DC.LastItemRect.Max - window->Pos);
NavUpdateAnyRequestFlag();
if (!IsItemVisible())
SetScrollHereY();
}
}
void ImGui::SetStateStorage(ImGuiStorage* tree)
{
ImGuiWindow* window = GImGui->CurrentWindow;
window->DC.StateStorage = tree ? tree : &window->StateStorage;
}
ImGuiStorage* ImGui::GetStateStorage()
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->DC.StateStorage;
}
void ImGui::PushID(const char* str_id)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
ImGuiID id = window->GetIDNoKeepAlive(str_id);
window->IDStack.push_back(id);
}
void ImGui::PushID(const char* str_id_begin, const char* str_id_end)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
ImGuiID id = window->GetIDNoKeepAlive(str_id_begin, str_id_end);
window->IDStack.push_back(id);
}
void ImGui::PushID(const void* ptr_id)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
ImGuiID id = window->GetIDNoKeepAlive(ptr_id);
window->IDStack.push_back(id);
}
void ImGui::PushID(int int_id)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
ImGuiID id = window->GetIDNoKeepAlive(int_id);
window->IDStack.push_back(id);
}
// Push a given id value ignoring the ID stack as a seed.
void ImGui::PushOverrideID(ImGuiID id)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
window->IDStack.push_back(id);
}
// Helper to avoid a common series of PushOverrideID -> GetID() -> PopID() call
// (note that when using this pattern, TestEngine's "Stack Tool" will tend to not display the intermediate stack level.
// for that to work we would need to do PushOverrideID() -> ItemAdd() -> PopID() which would alter widget code a little more)
ImGuiID ImGui::GetIDWithSeed(const char* str, const char* str_end, ImGuiID seed)
{
ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed);
ImGui::KeepAliveID(id);
#ifdef IMGUI_ENABLE_TEST_ENGINE
ImGuiContext& g = *GImGui;
IMGUI_TEST_ENGINE_ID_INFO2(id, ImGuiDataType_String, str, str_end);
#endif
return id;
}
void ImGui::PopID()
{
ImGuiWindow* window = GImGui->CurrentWindow;
IM_ASSERT(window->IDStack.Size > 1); // Too many PopID(), or could be popping in a wrong/different window?
window->IDStack.pop_back();
}
ImGuiID ImGui::GetID(const char* str_id)
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->GetID(str_id);
}
ImGuiID ImGui::GetID(const char* str_id_begin, const char* str_id_end)
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->GetID(str_id_begin, str_id_end);
}
ImGuiID ImGui::GetID(const void* ptr_id)
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->GetID(ptr_id);
}
bool ImGui::IsRectVisible(const ImVec2& size)
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->ClipRect.Overlaps(ImRect(window->DC.CursorPos, window->DC.CursorPos + size));
}
bool ImGui::IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max)
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->ClipRect.Overlaps(ImRect(rect_min, rect_max));
}
//-----------------------------------------------------------------------------
// [SECTION] ERROR CHECKING
//-----------------------------------------------------------------------------
// Helper function to verify ABI compatibility between caller code and compiled version of Dear ImGui.
// Verify that the type sizes are matching between the calling file's compilation unit and imgui.cpp's compilation unit
// If the user has inconsistent compilation settings, imgui configuration #define, packing pragma, etc. your user code
// may see different structures than what imgui.cpp sees, which is problematic.
// We usually require settings to be in imconfig.h to make sure that they are accessible to all compilation units involved with Dear ImGui.
bool ImGui::DebugCheckVersionAndDataLayout(const char* version, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_vert, size_t sz_idx)
{
bool error = false;
if (strcmp(version, IMGUI_VERSION) != 0) { error = true; IM_ASSERT(strcmp(version, IMGUI_VERSION) == 0 && "Mismatched version string!"); }
if (sz_io != sizeof(ImGuiIO)) { error = true; IM_ASSERT(sz_io == sizeof(ImGuiIO) && "Mismatched struct layout!"); }
if (sz_style != sizeof(ImGuiStyle)) { error = true; IM_ASSERT(sz_style == sizeof(ImGuiStyle) && "Mismatched struct layout!"); }
if (sz_vec2 != sizeof(ImVec2)) { error = true; IM_ASSERT(sz_vec2 == sizeof(ImVec2) && "Mismatched struct layout!"); }
if (sz_vec4 != sizeof(ImVec4)) { error = true; IM_ASSERT(sz_vec4 == sizeof(ImVec4) && "Mismatched struct layout!"); }
if (sz_vert != sizeof(ImDrawVert)) { error = true; IM_ASSERT(sz_vert == sizeof(ImDrawVert) && "Mismatched struct layout!"); }
if (sz_idx != sizeof(ImDrawIdx)) { error = true; IM_ASSERT(sz_idx == sizeof(ImDrawIdx) && "Mismatched struct layout!"); }
return !error;
}
static void ImGui::ErrorCheckNewFrameSanityChecks()
{
ImGuiContext& g = *GImGui;
// Check user IM_ASSERT macro
// (IF YOU GET A WARNING OR COMPILE ERROR HERE: it means your assert macro is incorrectly defined!
// If your macro uses multiple statements, it NEEDS to be surrounded by a 'do { ... } while (0)' block.
// This is a common C/C++ idiom to allow multiple statements macros to be used in control flow blocks.)
// #define IM_ASSERT(EXPR) if (SomeCode(EXPR)) SomeMoreCode(); // Wrong!
// #define IM_ASSERT(EXPR) do { if (SomeCode(EXPR)) SomeMoreCode(); } while (0) // Correct!
if (true) IM_ASSERT(1); else IM_ASSERT(0);
// Check user data
// (We pass an error message in the assert expression to make it visible to programmers who are not using a debugger, as most assert handlers display their argument)
IM_ASSERT(g.Initialized);
IM_ASSERT((g.IO.DeltaTime > 0.0f || g.FrameCount == 0) && "Need a positive DeltaTime!");
IM_ASSERT((g.FrameCount == 0 || g.FrameCountEnded == g.FrameCount) && "Forgot to call Render() or EndFrame() at the end of the previous frame?");
IM_ASSERT(g.IO.DisplaySize.x >= 0.0f && g.IO.DisplaySize.y >= 0.0f && "Invalid DisplaySize value!");
IM_ASSERT(g.IO.Fonts->Fonts.Size > 0 && "Font Atlas not built. Did you call io.Fonts->GetTexDataAsRGBA32() / GetTexDataAsAlpha8()?");
IM_ASSERT(g.IO.Fonts->Fonts[0]->IsLoaded() && "Font Atlas not built. Did you call io.Fonts->GetTexDataAsRGBA32() / GetTexDataAsAlpha8()?");
IM_ASSERT(g.Style.CurveTessellationTol > 0.0f && "Invalid style setting!");
IM_ASSERT(g.Style.CircleTessellationMaxError > 0.0f && "Invalid style setting!");
IM_ASSERT(g.Style.Alpha >= 0.0f && g.Style.Alpha <= 1.0f && "Invalid style setting!"); // Allows us to avoid a few clamps in color computations
IM_ASSERT(g.Style.WindowMinSize.x >= 1.0f && g.Style.WindowMinSize.y >= 1.0f && "Invalid style setting.");
IM_ASSERT(g.Style.WindowMenuButtonPosition == ImGuiDir_None || g.Style.WindowMenuButtonPosition == ImGuiDir_Left || g.Style.WindowMenuButtonPosition == ImGuiDir_Right);
for (int n = 0; n < ImGuiKey_COUNT; n++)
IM_ASSERT(g.IO.KeyMap[n] >= -1 && g.IO.KeyMap[n] < IM_ARRAYSIZE(g.IO.KeysDown) && "io.KeyMap[] contains an out of bound value (need to be 0..512, or -1 for unmapped key)");
// Check: required key mapping (we intentionally do NOT check all keys to not pressure user into setting up everything, but Space is required and was only added in 1.60 WIP)
if (g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard)
IM_ASSERT(g.IO.KeyMap[ImGuiKey_Space] != -1 && "ImGuiKey_Space is not mapped, required for keyboard navigation.");
// Check: the io.ConfigWindowsResizeFromEdges option requires backend to honor mouse cursor changes and set the ImGuiBackendFlags_HasMouseCursors flag accordingly.
if (g.IO.ConfigWindowsResizeFromEdges && !(g.IO.BackendFlags & ImGuiBackendFlags_HasMouseCursors))
g.IO.ConfigWindowsResizeFromEdges = false;
}
static void ImGui::ErrorCheckEndFrameSanityChecks()
{
ImGuiContext& g = *GImGui;
// Verify that io.KeyXXX fields haven't been tampered with. Key mods should not be modified between NewFrame() and EndFrame()
// One possible reason leading to this assert is that your backends update inputs _AFTER_ NewFrame().
// It is known that when some modal native windows called mid-frame takes focus away, some backends such as GLFW will
// send key release events mid-frame. This would normally trigger this assertion and lead to sheared inputs.
// We silently accommodate for this case by ignoring/ the case where all io.KeyXXX modifiers were released (aka key_mod_flags == 0),
// while still correctly asserting on mid-frame key press events.
const ImGuiKeyModFlags key_mod_flags = GetMergedKeyModFlags();
IM_ASSERT((key_mod_flags == 0 || g.IO.KeyMods == key_mod_flags) && "Mismatching io.KeyCtrl/io.KeyShift/io.KeyAlt/io.KeySuper vs io.KeyMods");
IM_UNUSED(key_mod_flags);
// Recover from errors
//ErrorCheckEndFrameRecover();
// Report when there is a mismatch of Begin/BeginChild vs End/EndChild calls. Important: Remember that the Begin/BeginChild API requires you
// to always call End/EndChild even if Begin/BeginChild returns false! (this is unfortunately inconsistent with most other Begin* API).
if (g.CurrentWindowStack.Size != 1)
{
if (g.CurrentWindowStack.Size > 1)
{
IM_ASSERT_USER_ERROR(g.CurrentWindowStack.Size == 1, "Mismatched Begin/BeginChild vs End/EndChild calls: did you forget to call End/EndChild?");
while (g.CurrentWindowStack.Size > 1)
End();
}
else
{
IM_ASSERT_USER_ERROR(g.CurrentWindowStack.Size == 1, "Mismatched Begin/BeginChild vs End/EndChild calls: did you call End/EndChild too much?");
}
}
IM_ASSERT_USER_ERROR(g.GroupStack.Size == 0, "Missing EndGroup call!");
}
// Experimental recovery from incorrect usage of BeginXXX/EndXXX/PushXXX/PopXXX calls.
// Must be called during or before EndFrame().
// This is generally flawed as we are not necessarily End/Popping things in the right order.
// FIXME: Can't recover from inside BeginTabItem/EndTabItem yet.
// FIXME: Can't recover from interleaved BeginTabBar/Begin
void ImGui::ErrorCheckEndFrameRecover(ImGuiErrorLogCallback log_callback, void* user_data)
{
// PVS-Studio V1044 is "Loop break conditions do not depend on the number of iterations"
ImGuiContext& g = *GImGui;
while (g.CurrentWindowStack.Size > 0)
{
while (g.CurrentTable && (g.CurrentTable->OuterWindow == g.CurrentWindow || g.CurrentTable->InnerWindow == g.CurrentWindow))
{
if (log_callback) log_callback(user_data, "Recovered from missing EndTable() in '%s'", g.CurrentTable->OuterWindow->Name);
EndTable();
}
ImGuiWindow* window = g.CurrentWindow;
IM_ASSERT(window != NULL);
while (g.CurrentTabBar != NULL) //-V1044
{
if (log_callback) log_callback(user_data, "Recovered from missing EndTabBar() in '%s'", window->Name);
EndTabBar();
}
while (window->DC.TreeDepth > 0)
{
if (log_callback) log_callback(user_data, "Recovered from missing TreePop() in '%s'", window->Name);
TreePop();
}
while (g.GroupStack.Size > window->DC.StackSizesOnBegin.SizeOfGroupStack)
{
if (log_callback) log_callback(user_data, "Recovered from missing EndGroup() in '%s'", window->Name);
EndGroup();
}
while (window->IDStack.Size > 1)
{
if (log_callback) log_callback(user_data, "Recovered from missing PopID() in '%s'", window->Name);
PopID();
}
while (g.ColorStack.Size > window->DC.StackSizesOnBegin.SizeOfColorStack)
{
if (log_callback) log_callback(user_data, "Recovered from missing PopStyleColor() in '%s' for ImGuiCol_%s", window->Name, GetStyleColorName(g.ColorStack.back().Col));
PopStyleColor();
}
while (g.StyleVarStack.Size > window->DC.StackSizesOnBegin.SizeOfStyleVarStack)
{
if (log_callback) log_callback(user_data, "Recovered from missing PopStyleVar() in '%s'", window->Name);
PopStyleVar();
}
while (g.FocusScopeStack.Size > window->DC.StackSizesOnBegin.SizeOfFocusScopeStack)
{
if (log_callback) log_callback(user_data, "Recovered from missing PopFocusScope() in '%s'", window->Name);
PopFocusScope();
}
if (g.CurrentWindowStack.Size == 1)
{
IM_ASSERT(g.CurrentWindow->IsFallbackWindow);
break;
}
IM_ASSERT(window == g.CurrentWindow);
if (window->Flags & ImGuiWindowFlags_ChildWindow)
{
if (log_callback) log_callback(user_data, "Recovered from missing EndChild() for '%s'", window->Name);
EndChild();
}
else
{
if (log_callback) log_callback(user_data, "Recovered from missing End() for '%s'", window->Name);
End();
}
}
}
// Save current stack sizes for later compare
void ImGuiStackSizes::SetToCurrentState()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
SizeOfIDStack = (short)window->IDStack.Size;
SizeOfColorStack = (short)g.ColorStack.Size;
SizeOfStyleVarStack = (short)g.StyleVarStack.Size;
SizeOfFontStack = (short)g.FontStack.Size;
SizeOfFocusScopeStack = (short)g.FocusScopeStack.Size;
SizeOfGroupStack = (short)g.GroupStack.Size;
SizeOfBeginPopupStack = (short)g.BeginPopupStack.Size;
}
// Compare to detect usage errors
void ImGuiStackSizes::CompareWithCurrentState()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
IM_UNUSED(window);
// Window stacks
// NOT checking: DC.ItemWidth, DC.TextWrapPos (per window) to allow user to conveniently push once and not pop (they are cleared on Begin)
IM_ASSERT(SizeOfIDStack == window->IDStack.Size && "PushID/PopID or TreeNode/TreePop Mismatch!");
// Global stacks
// For color, style and font stacks there is an incentive to use Push/Begin/Pop/.../End patterns, so we relax our checks a little to allow them.
IM_ASSERT(SizeOfGroupStack == g.GroupStack.Size && "BeginGroup/EndGroup Mismatch!");
IM_ASSERT(SizeOfBeginPopupStack == g.BeginPopupStack.Size && "BeginPopup/EndPopup or BeginMenu/EndMenu Mismatch!");
IM_ASSERT(SizeOfColorStack >= g.ColorStack.Size && "PushStyleColor/PopStyleColor Mismatch!");
IM_ASSERT(SizeOfStyleVarStack >= g.StyleVarStack.Size && "PushStyleVar/PopStyleVar Mismatch!");
IM_ASSERT(SizeOfFontStack >= g.FontStack.Size && "PushFont/PopFont Mismatch!");
IM_ASSERT(SizeOfFocusScopeStack == g.FocusScopeStack.Size && "PushFocusScope/PopFocusScope Mismatch!");
}
//-----------------------------------------------------------------------------
// [SECTION] LAYOUT
//-----------------------------------------------------------------------------
// - ItemSize()
// - ItemAdd()
// - SameLine()
// - GetCursorScreenPos()
// - SetCursorScreenPos()
// - GetCursorPos(), GetCursorPosX(), GetCursorPosY()
// - SetCursorPos(), SetCursorPosX(), SetCursorPosY()
// - GetCursorStartPos()
// - Indent()
// - Unindent()
// - SetNextItemWidth()
// - PushItemWidth()
// - PushMultiItemsWidths()
// - PopItemWidth()
// - CalcItemWidth()
// - CalcItemSize()
// - GetTextLineHeight()
// - GetTextLineHeightWithSpacing()
// - GetFrameHeight()
// - GetFrameHeightWithSpacing()
// - GetContentRegionMax()
// - GetContentRegionMaxAbs() [Internal]
// - GetContentRegionAvail(),
// - GetWindowContentRegionMin(), GetWindowContentRegionMax()
// - GetWindowContentRegionWidth()
// - BeginGroup()
// - EndGroup()
// Also see in imgui_widgets: tab bars, columns.
//-----------------------------------------------------------------------------
// Advance cursor given item size for layout.
// Register minimum needed size so it can extend the bounding box used for auto-fit calculation.
// See comments in ItemAdd() about how/why the size provided to ItemSize() vs ItemAdd() may often different.
void ImGui::ItemSize(const ImVec2& size, float text_baseline_y)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
if (window->SkipItems)
return;
// We increase the height in this function to accommodate for baseline offset.
// In theory we should be offsetting the starting position (window->DC.CursorPos), that will be the topic of a larger refactor,
// but since ItemSize() is not yet an API that moves the cursor (to handle e.g. wrapping) enlarging the height has the same effect.
const float offset_to_match_baseline_y = (text_baseline_y >= 0) ? ImMax(0.0f, window->DC.CurrLineTextBaseOffset - text_baseline_y) : 0.0f;
const float line_height = ImMax(window->DC.CurrLineSize.y, size.y + offset_to_match_baseline_y);
// Always align ourselves on pixel boundaries
//if (g.IO.KeyAlt) window->DrawList->AddRect(window->DC.CursorPos, window->DC.CursorPos + ImVec2(size.x, line_height), IM_COL32(255,0,0,200)); // [DEBUG]
window->DC.CursorPosPrevLine.x = window->DC.CursorPos.x + size.x;
window->DC.CursorPosPrevLine.y = window->DC.CursorPos.y;
window->DC.CursorPos.x = IM_FLOOR(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x); // Next line
window->DC.CursorPos.y = IM_FLOOR(window->DC.CursorPos.y + line_height + g.Style.ItemSpacing.y); // Next line
window->DC.CursorMaxPos.x = ImMax(window->DC.CursorMaxPos.x, window->DC.CursorPosPrevLine.x);
window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, window->DC.CursorPos.y - g.Style.ItemSpacing.y);
//if (g.IO.KeyAlt) window->DrawList->AddCircle(window->DC.CursorMaxPos, 3.0f, IM_COL32(255,0,0,255), 4); // [DEBUG]
window->DC.PrevLineSize.y = line_height;
window->DC.CurrLineSize.y = 0.0f;
window->DC.PrevLineTextBaseOffset = ImMax(window->DC.CurrLineTextBaseOffset, text_baseline_y);
window->DC.CurrLineTextBaseOffset = 0.0f;
// Horizontal layout mode
if (window->DC.LayoutType == ImGuiLayoutType_Horizontal)
SameLine();
}
void ImGui::ItemSize(const ImRect& bb, float text_baseline_y)
{
ItemSize(bb.GetSize(), text_baseline_y);
}
// Declare item bounding box for clipping and interaction.
// Note that the size can be different than the one provided to ItemSize(). Typically, widgets that spread over available surface
// declare their minimum size requirement to ItemSize() and provide a larger region to ItemAdd() which is used drawing/interaction.
bool ImGui::ItemAdd(const ImRect& bb, ImGuiID id, const ImRect* nav_bb_arg, ImGuiItemAddFlags flags)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
if (id != 0)
{
// Navigation processing runs prior to clipping early-out
// (a) So that NavInitRequest can be honored, for newly opened windows to select a default widget
// (b) So that we can scroll up/down past clipped items. This adds a small O(N) cost to regular navigation requests
// unfortunately, but it is still limited to one window. It may not scale very well for windows with ten of
// thousands of item, but at least NavMoveRequest is only set on user interaction, aka maximum once a frame.
// We could early out with "if (is_clipped && !g.NavInitRequest) return false;" but when we wouldn't be able
// to reach unclipped widgets. This would work if user had explicit scrolling control (e.g. mapped on a stick).
// We intentionally don't check if g.NavWindow != NULL because g.NavAnyRequest should only be set when it is non null.
// If we crash on a NULL g.NavWindow we need to fix the bug elsewhere.
window->DC.NavLayersActiveMaskNext |= (1 << window->DC.NavLayerCurrent);
if (g.NavId == id || g.NavAnyRequest)
if (g.NavWindow->RootWindowForNav == window->RootWindowForNav)
if (window == g.NavWindow || ((window->Flags | g.NavWindow->Flags) & ImGuiWindowFlags_NavFlattened))
NavProcessItem(window, nav_bb_arg ? *nav_bb_arg : bb, id);
// [DEBUG] Item Picker tool, when enabling the "extended" version we perform the check in ItemAdd()
#ifdef IMGUI_DEBUG_TOOL_ITEM_PICKER_EX
if (id == g.DebugItemPickerBreakId)
{
IM_DEBUG_BREAK();
g.DebugItemPickerBreakId = 0;
}
#endif
}
// Equivalent to calling SetLastItemData()
window->DC.LastItemId = id;
window->DC.LastItemRect = bb;
window->DC.LastItemStatusFlags = ImGuiItemStatusFlags_None;
g.NextItemData.Flags = ImGuiNextItemDataFlags_None;
#ifdef IMGUI_ENABLE_TEST_ENGINE
if (id != 0)
IMGUI_TEST_ENGINE_ITEM_ADD(nav_bb_arg ? *nav_bb_arg : bb, id);
#endif
// Clipping test
const bool is_clipped = IsClippedEx(bb, id, false);
if (is_clipped)
return false;
//if (g.IO.KeyAlt) window->DrawList->AddRect(bb.Min, bb.Max, IM_COL32(255,255,0,120)); // [DEBUG]
// Tab stop handling (previously was using internal ItemFocusable() api)
// FIXME-NAV: We would now want to move this above the clipping test, but this would require being able to scroll and currently this would mean an extra frame. (#4079, #343)
if (flags & ImGuiItemAddFlags_Focusable)
ItemFocusable(window, id);
// We need to calculate this now to take account of the current clipping rectangle (as items like Selectable may change them)
if (IsMouseHoveringRect(bb.Min, bb.Max))
window->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_HoveredRect;
return true;
}
// Gets back to previous line and continue with horizontal layout
// offset_from_start_x == 0 : follow right after previous item
// offset_from_start_x != 0 : align to specified x position (relative to window/group left)
// spacing_w < 0 : use default spacing if pos_x == 0, no spacing if pos_x != 0
// spacing_w >= 0 : enforce spacing amount
void ImGui::SameLine(float offset_from_start_x, float spacing_w)
{
ImGuiWindow* window = GetCurrentWindow();
if (window->SkipItems)
return;
ImGuiContext& g = *GImGui;
if (offset_from_start_x != 0.0f)
{
if (spacing_w < 0.0f) spacing_w = 0.0f;
window->DC.CursorPos.x = window->Pos.x - window->Scroll.x + offset_from_start_x + spacing_w + window->DC.GroupOffset.x + window->DC.ColumnsOffset.x;
window->DC.CursorPos.y = window->DC.CursorPosPrevLine.y;
}
else
{
if (spacing_w < 0.0f) spacing_w = g.Style.ItemSpacing.x;
window->DC.CursorPos.x = window->DC.CursorPosPrevLine.x + spacing_w;
window->DC.CursorPos.y = window->DC.CursorPosPrevLine.y;
}
window->DC.CurrLineSize = window->DC.PrevLineSize;
window->DC.CurrLineTextBaseOffset = window->DC.PrevLineTextBaseOffset;
}
ImVec2 ImGui::GetCursorScreenPos()
{
ImGuiWindow* window = GetCurrentWindowRead();
return window->DC.CursorPos;
}
void ImGui::SetCursorScreenPos(const ImVec2& pos)
{
ImGuiWindow* window = GetCurrentWindow();
window->DC.CursorPos = pos;
window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, window->DC.CursorPos);
}
// User generally sees positions in window coordinates. Internally we store CursorPos in absolute screen coordinates because it is more convenient.
// Conversion happens as we pass the value to user, but it makes our naming convention confusing because GetCursorPos() == (DC.CursorPos - window.Pos). May want to rename 'DC.CursorPos'.
ImVec2 ImGui::GetCursorPos()
{
ImGuiWindow* window = GetCurrentWindowRead();
return window->DC.CursorPos - window->Pos + window->Scroll;
}
float ImGui::GetCursorPosX()
{
ImGuiWindow* window = GetCurrentWindowRead();
return window->DC.CursorPos.x - window->Pos.x + window->Scroll.x;
}
float ImGui::GetCursorPosY()
{
ImGuiWindow* window = GetCurrentWindowRead();
return window->DC.CursorPos.y - window->Pos.y + window->Scroll.y;
}
void ImGui::SetCursorPos(const ImVec2& local_pos)
{
ImGuiWindow* window = GetCurrentWindow();
window->DC.CursorPos = window->Pos - window->Scroll + local_pos;
window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, window->DC.CursorPos);
}
void ImGui::SetCursorPosX(float x)
{
ImGuiWindow* window = GetCurrentWindow();
window->DC.CursorPos.x = window->Pos.x - window->Scroll.x + x;
window->DC.CursorMaxPos.x = ImMax(window->DC.CursorMaxPos.x, window->DC.CursorPos.x);
}
void ImGui::SetCursorPosY(float y)
{
ImGuiWindow* window = GetCurrentWindow();
window->DC.CursorPos.y = window->Pos.y - window->Scroll.y + y;
window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, window->DC.CursorPos.y);
}
ImVec2 ImGui::GetCursorStartPos()
{
ImGuiWindow* window = GetCurrentWindowRead();
return window->DC.CursorStartPos - window->Pos;
}
void ImGui::Indent(float indent_w)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = GetCurrentWindow();
window->DC.Indent.x += (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing;
window->DC.CursorPos.x = window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x;
}
void ImGui::Unindent(float indent_w)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = GetCurrentWindow();
window->DC.Indent.x -= (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing;
window->DC.CursorPos.x = window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x;
}
// Affect large frame+labels widgets only.
void ImGui::SetNextItemWidth(float item_width)
{
ImGuiContext& g = *GImGui;
g.NextItemData.Flags |= ImGuiNextItemDataFlags_HasWidth;
g.NextItemData.Width = item_width;
}
// FIXME: Remove the == 0.0f behavior?
void ImGui::PushItemWidth(float item_width)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
window->DC.ItemWidthStack.push_back(window->DC.ItemWidth); // Backup current width
window->DC.ItemWidth = (item_width == 0.0f ? window->ItemWidthDefault : item_width);
g.NextItemData.Flags &= ~ImGuiNextItemDataFlags_HasWidth;
}
void ImGui::PushMultiItemsWidths(int components, float w_full)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
const ImGuiStyle& style = g.Style;
const float w_item_one = ImMax(1.0f, IM_FLOOR((w_full - (style.ItemInnerSpacing.x) * (components - 1)) / (float)components));
const float w_item_last = ImMax(1.0f, IM_FLOOR(w_full - (w_item_one + style.ItemInnerSpacing.x) * (components - 1)));
window->DC.ItemWidthStack.push_back(window->DC.ItemWidth); // Backup current width
window->DC.ItemWidthStack.push_back(w_item_last);
for (int i = 0; i < components - 2; i++)
window->DC.ItemWidthStack.push_back(w_item_one);
window->DC.ItemWidth = (components == 1) ? w_item_last : w_item_one;
g.NextItemData.Flags &= ~ImGuiNextItemDataFlags_HasWidth;
}
void ImGui::PopItemWidth()
{
ImGuiWindow* window = GetCurrentWindow();
window->DC.ItemWidth = window->DC.ItemWidthStack.back();
window->DC.ItemWidthStack.pop_back();
}
// Calculate default item width given value passed to PushItemWidth() or SetNextItemWidth().
// The SetNextItemWidth() data is generally cleared/consumed by ItemAdd() or NextItemData.ClearFlags()
float ImGui::CalcItemWidth()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
float w;
if (g.NextItemData.Flags & ImGuiNextItemDataFlags_HasWidth)
w = g.NextItemData.Width;
else
w = window->DC.ItemWidth;
if (w < 0.0f)
{
float region_max_x = GetContentRegionMaxAbs().x;
w = ImMax(1.0f, region_max_x - window->DC.CursorPos.x + w);
}
w = IM_FLOOR(w);
return w;
}
// [Internal] Calculate full item size given user provided 'size' parameter and default width/height. Default width is often == CalcItemWidth().
// Those two functions CalcItemWidth vs CalcItemSize are awkwardly named because they are not fully symmetrical.
// Note that only CalcItemWidth() is publicly exposed.
// The 4.0f here may be changed to match CalcItemWidth() and/or BeginChild() (right now we have a mismatch which is harmless but undesirable)
ImVec2 ImGui::CalcItemSize(ImVec2 size, float default_w, float default_h)
{
ImGuiWindow* window = GImGui->CurrentWindow;
ImVec2 region_max;
if (size.x < 0.0f || size.y < 0.0f)
region_max = GetContentRegionMaxAbs();
if (size.x == 0.0f)
size.x = default_w;
else if (size.x < 0.0f)
size.x = ImMax(4.0f, region_max.x - window->DC.CursorPos.x + size.x);
if (size.y == 0.0f)
size.y = default_h;
else if (size.y < 0.0f)
size.y = ImMax(4.0f, region_max.y - window->DC.CursorPos.y + size.y);
return size;
}
float ImGui::GetTextLineHeight()
{
ImGuiContext& g = *GImGui;
return g.FontSize;
}
float ImGui::GetTextLineHeightWithSpacing()
{
ImGuiContext& g = *GImGui;
return g.FontSize + g.Style.ItemSpacing.y;
}
float ImGui::GetFrameHeight()
{
ImGuiContext& g = *GImGui;
return g.FontSize + g.Style.FramePadding.y * 2.0f;
}
float ImGui::GetFrameHeightWithSpacing()
{
ImGuiContext& g = *GImGui;
return g.FontSize + g.Style.FramePadding.y * 2.0f + g.Style.ItemSpacing.y;
}
// FIXME: All the Contents Region function are messy or misleading. WE WILL AIM TO OBSOLETE ALL OF THEM WITH A NEW "WORK RECT" API. Thanks for your patience!
// FIXME: This is in window space (not screen space!).
ImVec2 ImGui::GetContentRegionMax()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
ImVec2 mx = window->ContentRegionRect.Max - window->Pos;
if (window->DC.CurrentColumns || g.CurrentTable)
mx.x = window->WorkRect.Max.x - window->Pos.x;
return mx;
}
// [Internal] Absolute coordinate. Saner. This is not exposed until we finishing refactoring work rect features.
ImVec2 ImGui::GetContentRegionMaxAbs()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
ImVec2 mx = window->ContentRegionRect.Max;
if (window->DC.CurrentColumns || g.CurrentTable)
mx.x = window->WorkRect.Max.x;
return mx;
}
ImVec2 ImGui::GetContentRegionAvail()
{
ImGuiWindow* window = GImGui->CurrentWindow;
return GetContentRegionMaxAbs() - window->DC.CursorPos;
}
// In window space (not screen space!)
ImVec2 ImGui::GetWindowContentRegionMin()
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->ContentRegionRect.Min - window->Pos;
}
ImVec2 ImGui::GetWindowContentRegionMax()
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->ContentRegionRect.Max - window->Pos;
}
float ImGui::GetWindowContentRegionWidth()
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->ContentRegionRect.GetWidth();
}
// Lock horizontal starting position + capture group bounding box into one "item" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.)
// Groups are currently a mishmash of functionalities which should perhaps be clarified and separated.
void ImGui::BeginGroup()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
g.GroupStack.resize(g.GroupStack.Size + 1);
ImGuiGroupData& group_data = g.GroupStack.back();
group_data.WindowID = window->ID;
group_data.BackupCursorPos = window->DC.CursorPos;
group_data.BackupCursorMaxPos = window->DC.CursorMaxPos;
group_data.BackupIndent = window->DC.Indent;
group_data.BackupGroupOffset = window->DC.GroupOffset;
group_data.BackupCurrLineSize = window->DC.CurrLineSize;
group_data.BackupCurrLineTextBaseOffset = window->DC.CurrLineTextBaseOffset;
group_data.BackupActiveIdIsAlive = g.ActiveIdIsAlive;
group_data.BackupHoveredIdIsAlive = g.HoveredId != 0;
group_data.BackupActiveIdPreviousFrameIsAlive = g.ActiveIdPreviousFrameIsAlive;
group_data.EmitItem = true;
window->DC.GroupOffset.x = window->DC.CursorPos.x - window->Pos.x - window->DC.ColumnsOffset.x;
window->DC.Indent = window->DC.GroupOffset;
window->DC.CursorMaxPos = window->DC.CursorPos;
window->DC.CurrLineSize = ImVec2(0.0f, 0.0f);
if (g.LogEnabled)
g.LogLinePosY = -FLT_MAX; // To enforce a carriage return
}
void ImGui::EndGroup()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
IM_ASSERT(g.GroupStack.Size > 0); // Mismatched BeginGroup()/EndGroup() calls
ImGuiGroupData& group_data = g.GroupStack.back();
IM_ASSERT(group_data.WindowID == window->ID); // EndGroup() in wrong window?
ImRect group_bb(group_data.BackupCursorPos, ImMax(window->DC.CursorMaxPos, group_data.BackupCursorPos));
window->DC.CursorPos = group_data.BackupCursorPos;
window->DC.CursorMaxPos = ImMax(group_data.BackupCursorMaxPos, window->DC.CursorMaxPos);
window->DC.Indent = group_data.BackupIndent;
window->DC.GroupOffset = group_data.BackupGroupOffset;
window->DC.CurrLineSize = group_data.BackupCurrLineSize;
window->DC.CurrLineTextBaseOffset = group_data.BackupCurrLineTextBaseOffset;
if (g.LogEnabled)
g.LogLinePosY = -FLT_MAX; // To enforce a carriage return
if (!group_data.EmitItem)
{
g.GroupStack.pop_back();
return;
}
window->DC.CurrLineTextBaseOffset = ImMax(window->DC.PrevLineTextBaseOffset, group_data.BackupCurrLineTextBaseOffset); // FIXME: Incorrect, we should grab the base offset from the *first line* of the group but it is hard to obtain now.
ItemSize(group_bb.GetSize());
ItemAdd(group_bb, 0);
// If the current ActiveId was declared within the boundary of our group, we copy it to LastItemId so IsItemActive(), IsItemDeactivated() etc. will be functional on the entire group.
// It would be be neater if we replaced window.DC.LastItemId by e.g. 'bool LastItemIsActive', but would put a little more burden on individual widgets.
// Also if you grep for LastItemId you'll notice it is only used in that context.
// (The two tests not the same because ActiveIdIsAlive is an ID itself, in order to be able to handle ActiveId being overwritten during the frame.)
const bool group_contains_curr_active_id = (group_data.BackupActiveIdIsAlive != g.ActiveId) && (g.ActiveIdIsAlive == g.ActiveId) && g.ActiveId;
const bool group_contains_prev_active_id = (group_data.BackupActiveIdPreviousFrameIsAlive == false) && (g.ActiveIdPreviousFrameIsAlive == true);
if (group_contains_curr_active_id)
window->DC.LastItemId = g.ActiveId;
else if (group_contains_prev_active_id)
window->DC.LastItemId = g.ActiveIdPreviousFrame;
window->DC.LastItemRect = group_bb;
// Forward Hovered flag
const bool group_contains_curr_hovered_id = (group_data.BackupHoveredIdIsAlive == false) && g.HoveredId != 0;
if (group_contains_curr_hovered_id)
window->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_HoveredWindow;
// Forward Edited flag
if (group_contains_curr_active_id && g.ActiveIdHasBeenEditedThisFrame)
window->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_Edited;
// Forward Deactivated flag
window->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_HasDeactivated;
if (group_contains_prev_active_id && g.ActiveId != g.ActiveIdPreviousFrame)
window->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_Deactivated;
g.GroupStack.pop_back();
//window->DrawList->AddRect(group_bb.Min, group_bb.Max, IM_COL32(255,0,255,255)); // [Debug]
}
//-----------------------------------------------------------------------------
// [SECTION] SCROLLING
//-----------------------------------------------------------------------------
// Helper to snap on edges when aiming at an item very close to the edge,
// So the difference between WindowPadding and ItemSpacing will be in the visible area after scrolling.
// When we refactor the scrolling API this may be configurable with a flag?
// Note that the effect for this won't be visible on X axis with default Style settings as WindowPadding.x == ItemSpacing.x by default.
static float CalcScrollEdgeSnap(float target, float snap_min, float snap_max, float snap_threshold, float center_ratio)
{
if (target <= snap_min + snap_threshold)
return ImLerp(snap_min, target, center_ratio);
if (target >= snap_max - snap_threshold)
return ImLerp(target, snap_max, center_ratio);
return target;
}
static ImVec2 CalcNextScrollFromScrollTargetAndClamp(ImGuiWindow* window)
{
ImVec2 scroll = window->Scroll;
if (window->ScrollTarget.x < FLT_MAX)
{
float decoration_total_width = window->ScrollbarSizes.x;
float center_x_ratio = window->ScrollTargetCenterRatio.x;
float scroll_target_x = window->ScrollTarget.x;
if (window->ScrollTargetEdgeSnapDist.x > 0.0f)
{
float snap_x_min = 0.0f;
float snap_x_max = window->ScrollMax.x + window->SizeFull.x - decoration_total_width;
scroll_target_x = CalcScrollEdgeSnap(scroll_target_x, snap_x_min, snap_x_max, window->ScrollTargetEdgeSnapDist.x, center_x_ratio);
}
scroll.x = scroll_target_x - center_x_ratio * (window->SizeFull.x - decoration_total_width);
}
if (window->ScrollTarget.y < FLT_MAX)
{
float decoration_total_height = window->TitleBarHeight() + window->MenuBarHeight() + window->ScrollbarSizes.y;
float center_y_ratio = window->ScrollTargetCenterRatio.y;
float scroll_target_y = window->ScrollTarget.y;
if (window->ScrollTargetEdgeSnapDist.y > 0.0f)
{
float snap_y_min = 0.0f;
float snap_y_max = window->ScrollMax.y + window->SizeFull.y - decoration_total_height;
scroll_target_y = CalcScrollEdgeSnap(scroll_target_y, snap_y_min, snap_y_max, window->ScrollTargetEdgeSnapDist.y, center_y_ratio);
}
scroll.y = scroll_target_y - center_y_ratio * (window->SizeFull.y - decoration_total_height);
}
scroll.x = IM_FLOOR(ImMax(scroll.x, 0.0f));
scroll.y = IM_FLOOR(ImMax(scroll.y, 0.0f));
if (!window->Collapsed && !window->SkipItems)
{
scroll.x = ImMin(scroll.x, window->ScrollMax.x);
scroll.y = ImMin(scroll.y, window->ScrollMax.y);
}
return scroll;
}
// Scroll to keep newly navigated item fully into view
ImVec2 ImGui::ScrollToBringRectIntoView(ImGuiWindow* window, const ImRect& item_rect)
{
ImGuiContext& g = *GImGui;
ImRect window_rect(window->InnerRect.Min - ImVec2(1, 1), window->InnerRect.Max + ImVec2(1, 1));
//GetForegroundDrawList(window)->AddRect(window_rect.Min, window_rect.Max, IM_COL32_WHITE); // [DEBUG]
ImVec2 delta_scroll;
if (!window_rect.Contains(item_rect))
{
if (window->ScrollbarX && item_rect.Min.x < window_rect.Min.x)
SetScrollFromPosX(window, item_rect.Min.x - window->Pos.x - g.Style.ItemSpacing.x, 0.0f);
else if (window->ScrollbarX && item_rect.Max.x >= window_rect.Max.x)
SetScrollFromPosX(window, item_rect.Max.x - window->Pos.x + g.Style.ItemSpacing.x, 1.0f);
if (item_rect.Min.y < window_rect.Min.y)
SetScrollFromPosY(window, item_rect.Min.y - window->Pos.y - g.Style.ItemSpacing.y, 0.0f);
else if (item_rect.Max.y >= window_rect.Max.y)
SetScrollFromPosY(window, item_rect.Max.y - window->Pos.y + g.Style.ItemSpacing.y, 1.0f);
ImVec2 next_scroll = CalcNextScrollFromScrollTargetAndClamp(window);
delta_scroll = next_scroll - window->Scroll;
}
// Also scroll parent window to keep us into view if necessary
if (window->Flags & ImGuiWindowFlags_ChildWindow)
delta_scroll += ScrollToBringRectIntoView(window->ParentWindow, ImRect(item_rect.Min - delta_scroll, item_rect.Max - delta_scroll));
return delta_scroll;
}
float ImGui::GetScrollX()
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->Scroll.x;
}
float ImGui::GetScrollY()
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->Scroll.y;
}
float ImGui::GetScrollMaxX()
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->ScrollMax.x;
}
float ImGui::GetScrollMaxY()
{
ImGuiWindow* window = GImGui->CurrentWindow;
return window->ScrollMax.y;
}
void ImGui::SetScrollX(ImGuiWindow* window, float scroll_x)
{
window->ScrollTarget.x = scroll_x;
window->ScrollTargetCenterRatio.x = 0.0f;
window->ScrollTargetEdgeSnapDist.x = 0.0f;
}
void ImGui::SetScrollY(ImGuiWindow* window, float scroll_y)
{
window->ScrollTarget.y = scroll_y;
window->ScrollTargetCenterRatio.y = 0.0f;
window->ScrollTargetEdgeSnapDist.y = 0.0f;
}
void ImGui::SetScrollX(float scroll_x)
{
ImGuiContext& g = *GImGui;
SetScrollX(g.CurrentWindow, scroll_x);
}
void ImGui::SetScrollY(float scroll_y)
{
ImGuiContext& g = *GImGui;
SetScrollY(g.CurrentWindow, scroll_y);
}
// Note that a local position will vary depending on initial scroll value,
// This is a little bit confusing so bear with us:
// - local_pos = (absolution_pos - window->Pos)
// - So local_x/local_y are 0.0f for a position at the upper-left corner of a window,
// and generally local_x/local_y are >(padding+decoration) && <(size-padding-decoration) when in the visible area.
// - They mostly exists because of legacy API.
// Following the rules above, when trying to work with scrolling code, consider that:
// - SetScrollFromPosY(0.0f) == SetScrollY(0.0f + scroll.y) == has no effect!
// - SetScrollFromPosY(-scroll.y) == SetScrollY(-scroll.y + scroll.y) == SetScrollY(0.0f) == reset scroll. Of course writing SetScrollY(0.0f) directly then makes more sense
// We store a target position so centering and clamping can occur on the next frame when we are guaranteed to have a known window size
void ImGui::SetScrollFromPosX(ImGuiWindow* window, float local_x, float center_x_ratio)
{
IM_ASSERT(center_x_ratio >= 0.0f && center_x_ratio <= 1.0f);
window->ScrollTarget.x = IM_FLOOR(local_x + window->Scroll.x); // Convert local position to scroll offset
window->ScrollTargetCenterRatio.x = center_x_ratio;
window->ScrollTargetEdgeSnapDist.x = 0.0f;
}
void ImGui::SetScrollFromPosY(ImGuiWindow* window, float local_y, float center_y_ratio)
{
IM_ASSERT(center_y_ratio >= 0.0f && center_y_ratio <= 1.0f);
const float decoration_up_height = window->TitleBarHeight() + window->MenuBarHeight(); // FIXME: Would be nice to have a more standardized access to our scrollable/client rect;
local_y -= decoration_up_height;
window->ScrollTarget.y = IM_FLOOR(local_y + window->Scroll.y); // Convert local position to scroll offset
window->ScrollTargetCenterRatio.y = center_y_ratio;
window->ScrollTargetEdgeSnapDist.y = 0.0f;
}
void ImGui::SetScrollFromPosX(float local_x, float center_x_ratio)
{
ImGuiContext& g = *GImGui;
SetScrollFromPosX(g.CurrentWindow, local_x, center_x_ratio);
}
void ImGui::SetScrollFromPosY(float local_y, float center_y_ratio)
{
ImGuiContext& g = *GImGui;
SetScrollFromPosY(g.CurrentWindow, local_y, center_y_ratio);
}
// center_x_ratio: 0.0f left of last item, 0.5f horizontal center of last item, 1.0f right of last item.
void ImGui::SetScrollHereX(float center_x_ratio)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
float spacing_x = ImMax(window->WindowPadding.x, g.Style.ItemSpacing.x);
float target_pos_x = ImLerp(window->DC.LastItemRect.Min.x - spacing_x, window->DC.LastItemRect.Max.x + spacing_x, center_x_ratio);
SetScrollFromPosX(window, target_pos_x - window->Pos.x, center_x_ratio); // Convert from absolute to local pos
// Tweak: snap on edges when aiming at an item very close to the edge
window->ScrollTargetEdgeSnapDist.x = ImMax(0.0f, window->WindowPadding.x - spacing_x);
}
// center_y_ratio: 0.0f top of last item, 0.5f vertical center of last item, 1.0f bottom of last item.
void ImGui::SetScrollHereY(float center_y_ratio)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
float spacing_y = ImMax(window->WindowPadding.y, g.Style.ItemSpacing.y);
float target_pos_y = ImLerp(window->DC.CursorPosPrevLine.y - spacing_y, window->DC.CursorPosPrevLine.y + window->DC.PrevLineSize.y + spacing_y, center_y_ratio);
SetScrollFromPosY(window, target_pos_y - window->Pos.y, center_y_ratio); // Convert from absolute to local pos
// Tweak: snap on edges when aiming at an item very close to the edge
window->ScrollTargetEdgeSnapDist.y = ImMax(0.0f, window->WindowPadding.y - spacing_y);
}
//-----------------------------------------------------------------------------
// [SECTION] TOOLTIPS
//-----------------------------------------------------------------------------
void ImGui::BeginTooltip()
{
BeginTooltipEx(ImGuiWindowFlags_None, ImGuiTooltipFlags_None);
}
void ImGui::BeginTooltipEx(ImGuiWindowFlags extra_flags, ImGuiTooltipFlags tooltip_flags)
{
ImGuiContext& g = *GImGui;
if (g.DragDropWithinSource || g.DragDropWithinTarget)
{
// The default tooltip position is a little offset to give space to see the context menu (it's also clamped within the current viewport/monitor)
// In the context of a dragging tooltip we try to reduce that offset and we enforce following the cursor.
// Whatever we do we want to call SetNextWindowPos() to enforce a tooltip position and disable clipping the tooltip without our display area, like regular tooltip do.
//ImVec2 tooltip_pos = g.IO.MousePos - g.ActiveIdClickOffset - g.Style.WindowPadding;
ImVec2 tooltip_pos = g.IO.MousePos + ImVec2(16 * g.Style.MouseCursorScale, 8 * g.Style.MouseCursorScale);
SetNextWindowPos(tooltip_pos);
SetNextWindowBgAlpha(g.Style.Colors[ImGuiCol_PopupBg].w * 0.60f);
//PushStyleVar(ImGuiStyleVar_Alpha, g.Style.Alpha * 0.60f); // This would be nice but e.g ColorButton with checkboard has issue with transparent colors :(
tooltip_flags |= ImGuiTooltipFlags_OverridePreviousTooltip;
}
char window_name[16];
ImFormatString(window_name, IM_ARRAYSIZE(window_name), "##Tooltip_%02d", g.TooltipOverrideCount);
if (tooltip_flags & ImGuiTooltipFlags_OverridePreviousTooltip)
if (ImGuiWindow* window = FindWindowByName(window_name))
if (window->Active)
{
// Hide previous tooltip from being displayed. We can't easily "reset" the content of a window so we create a new one.
window->Hidden = true;
window->HiddenFramesCanSkipItems = 1; // FIXME: This may not be necessary?
ImFormatString(window_name, IM_ARRAYSIZE(window_name), "##Tooltip_%02d", ++g.TooltipOverrideCount);
}
ImGuiWindowFlags flags = ImGuiWindowFlags_Tooltip | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_AlwaysAutoResize;
Begin(window_name, NULL, flags | extra_flags);
}
void ImGui::EndTooltip()
{
IM_ASSERT(GetCurrentWindowRead()->Flags & ImGuiWindowFlags_Tooltip); // Mismatched BeginTooltip()/EndTooltip() calls
End();
}
void ImGui::SetTooltipV(const char* fmt, va_list args)
{
BeginTooltipEx(0, ImGuiTooltipFlags_OverridePreviousTooltip);
TextV(fmt, args);
EndTooltip();
}
void ImGui::SetTooltip(const char* fmt, ...)
{
va_list args;
va_start(args, fmt);
SetTooltipV(fmt, args);
va_end(args);
}
//-----------------------------------------------------------------------------
// [SECTION] POPUPS
//-----------------------------------------------------------------------------
// Supported flags: ImGuiPopupFlags_AnyPopupId, ImGuiPopupFlags_AnyPopupLevel
bool ImGui::IsPopupOpen(ImGuiID id, ImGuiPopupFlags popup_flags)
{
ImGuiContext& g = *GImGui;
if (popup_flags & ImGuiPopupFlags_AnyPopupId)
{
// Return true if any popup is open at the current BeginPopup() level of the popup stack
// This may be used to e.g. test for another popups already opened to handle popups priorities at the same level.
IM_ASSERT(id == 0);
if (popup_flags & ImGuiPopupFlags_AnyPopupLevel)
return g.OpenPopupStack.Size > 0;
else
return g.OpenPopupStack.Size > g.BeginPopupStack.Size;
}
else
{
if (popup_flags & ImGuiPopupFlags_AnyPopupLevel)
{
// Return true if the popup is open anywhere in the popup stack
for (int n = 0; n < g.OpenPopupStack.Size; n++)
if (g.OpenPopupStack[n].PopupId == id)
return true;
return false;
}
else
{
// Return true if the popup is open at the current BeginPopup() level of the popup stack (this is the most-common query)
return g.OpenPopupStack.Size > g.BeginPopupStack.Size && g.OpenPopupStack[g.BeginPopupStack.Size].PopupId == id;
}
}
}
bool ImGui::IsPopupOpen(const char* str_id, ImGuiPopupFlags popup_flags)
{
ImGuiContext& g = *GImGui;
ImGuiID id = (popup_flags & ImGuiPopupFlags_AnyPopupId) ? 0 : g.CurrentWindow->GetID(str_id);
if ((popup_flags & ImGuiPopupFlags_AnyPopupLevel) && id != 0)
IM_ASSERT(0 && "Cannot use IsPopupOpen() with a string id and ImGuiPopupFlags_AnyPopupLevel."); // But non-string version is legal and used internally
return IsPopupOpen(id, popup_flags);
}
ImGuiWindow* ImGui::GetTopMostPopupModal()
{
ImGuiContext& g = *GImGui;
for (int n = g.OpenPopupStack.Size - 1; n >= 0; n--)
if (ImGuiWindow* popup = g.OpenPopupStack.Data[n].Window)
if (popup->Flags & ImGuiWindowFlags_Modal)
return popup;
return NULL;
}
void ImGui::OpenPopup(const char* str_id, ImGuiPopupFlags popup_flags)
{
ImGuiContext& g = *GImGui;
OpenPopupEx(g.CurrentWindow->GetID(str_id), popup_flags);
}
void ImGui::OpenPopup(ImGuiID id, ImGuiPopupFlags popup_flags)
{
OpenPopupEx(id, popup_flags);
}
// Mark popup as open (toggle toward open state).
// Popups are closed when user click outside, or activate a pressable item, or CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block.
// Popup identifiers are relative to the current ID-stack (so OpenPopup and BeginPopup needs to be at the same level).
// One open popup per level of the popup hierarchy (NB: when assigning we reset the Window member of ImGuiPopupRef to NULL)
void ImGui::OpenPopupEx(ImGuiID id, ImGuiPopupFlags popup_flags)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* parent_window = g.CurrentWindow;
const int current_stack_size = g.BeginPopupStack.Size;
if (popup_flags & ImGuiPopupFlags_NoOpenOverExistingPopup)
if (IsPopupOpen(0u, ImGuiPopupFlags_AnyPopupId))
return;
ImGuiPopupData popup_ref; // Tagged as new ref as Window will be set back to NULL if we write this into OpenPopupStack.
popup_ref.PopupId = id;
popup_ref.Window = NULL;
popup_ref.SourceWindow = g.NavWindow;
popup_ref.OpenFrameCount = g.FrameCount;
popup_ref.OpenParentId = parent_window->IDStack.back();
popup_ref.OpenPopupPos = NavCalcPreferredRefPos();
popup_ref.OpenMousePos = IsMousePosValid(&g.IO.MousePos) ? g.IO.MousePos : popup_ref.OpenPopupPos;
IMGUI_DEBUG_LOG_POPUP("OpenPopupEx(0x%08X)\n", id);
if (g.OpenPopupStack.Size < current_stack_size + 1)
{
g.OpenPopupStack.push_back(popup_ref);
}
else
{
// Gently handle the user mistakenly calling OpenPopup() every frame. It is a programming mistake! However, if we were to run the regular code path, the ui
// would become completely unusable because the popup will always be in hidden-while-calculating-size state _while_ claiming focus. Which would be a very confusing
// situation for the programmer. Instead, we silently allow the popup to proceed, it will keep reappearing and the programming error will be more obvious to understand.
if (g.OpenPopupStack[current_stack_size].PopupId == id && g.OpenPopupStack[current_stack_size].OpenFrameCount == g.FrameCount - 1)
{
g.OpenPopupStack[current_stack_size].OpenFrameCount = popup_ref.OpenFrameCount;
}
else
{
// Close child popups if any, then flag popup for open/reopen
ClosePopupToLevel(current_stack_size, false);
g.OpenPopupStack.push_back(popup_ref);
}
// When reopening a popup we first refocus its parent, otherwise if its parent is itself a popup it would get closed by ClosePopupsOverWindow().
// This is equivalent to what ClosePopupToLevel() does.
//if (g.OpenPopupStack[current_stack_size].PopupId == id)
// FocusWindow(parent_window);
}
}
// When popups are stacked, clicking on a lower level popups puts focus back to it and close popups above it.
// This function closes any popups that are over 'ref_window'.
void ImGui::ClosePopupsOverWindow(ImGuiWindow* ref_window, bool restore_focus_to_window_under_popup)
{
ImGuiContext& g = *GImGui;
if (g.OpenPopupStack.Size == 0)
return;
// Don't close our own child popup windows.
int popup_count_to_keep = 0;
if (ref_window)
{
// Find the highest popup which is a descendant of the reference window (generally reference window = NavWindow)
for (; popup_count_to_keep < g.OpenPopupStack.Size; popup_count_to_keep++)
{
ImGuiPopupData& popup = g.OpenPopupStack[popup_count_to_keep];
if (!popup.Window)
continue;
IM_ASSERT((popup.Window->Flags & ImGuiWindowFlags_Popup) != 0);
if (popup.Window->Flags & ImGuiWindowFlags_ChildWindow)
continue;
// Trim the stack unless the popup is a direct parent of the reference window (the reference window is often the NavWindow)
// - With this stack of window, clicking/focusing Popup1 will close Popup2 and Popup3:
// Window -> Popup1 -> Popup2 -> Popup3
// - Each popups may contain child windows, which is why we compare ->RootWindow!
// Window -> Popup1 -> Popup1_Child -> Popup2 -> Popup2_Child
bool ref_window_is_descendent_of_popup = false;
for (int n = popup_count_to_keep; n < g.OpenPopupStack.Size; n++)
if (ImGuiWindow* popup_window = g.OpenPopupStack[n].Window)
if (popup_window->RootWindow == ref_window->RootWindow)
{
ref_window_is_descendent_of_popup = true;
break;
}
if (!ref_window_is_descendent_of_popup)
break;
}
}
if (popup_count_to_keep < g.OpenPopupStack.Size) // This test is not required but it allows to set a convenient breakpoint on the statement below
{
IMGUI_DEBUG_LOG_POPUP("ClosePopupsOverWindow(\"%s\") -> ClosePopupToLevel(%d)\n", ref_window->Name, popup_count_to_keep);
ClosePopupToLevel(popup_count_to_keep, restore_focus_to_window_under_popup);
}
}
void ImGui::ClosePopupToLevel(int remaining, bool restore_focus_to_window_under_popup)
{
ImGuiContext& g = *GImGui;
IMGUI_DEBUG_LOG_POPUP("ClosePopupToLevel(%d), restore_focus_to_window_under_popup=%d\n", remaining, restore_focus_to_window_under_popup);
IM_ASSERT(remaining >= 0 && remaining < g.OpenPopupStack.Size);
// Trim open popup stack
ImGuiWindow* focus_window = g.OpenPopupStack[remaining].SourceWindow;
ImGuiWindow* popup_window = g.OpenPopupStack[remaining].Window;
g.OpenPopupStack.resize(remaining);
if (restore_focus_to_window_under_popup)
{
if (focus_window && !focus_window->WasActive && popup_window)
{
// Fallback
FocusTopMostWindowUnderOne(popup_window, NULL);
}
else
{
if (g.NavLayer == ImGuiNavLayer_Main && focus_window)
focus_window = NavRestoreLastChildNavWindow(focus_window);
FocusWindow(focus_window);
}
}
}
// Close the popup we have begin-ed into.
void ImGui::CloseCurrentPopup()
{
ImGuiContext& g = *GImGui;
int popup_idx = g.BeginPopupStack.Size - 1;
if (popup_idx < 0 || popup_idx >= g.OpenPopupStack.Size || g.BeginPopupStack[popup_idx].PopupId != g.OpenPopupStack[popup_idx].PopupId)
return;
// Closing a menu closes its top-most parent popup (unless a modal)
while (popup_idx > 0)
{
ImGuiWindow* popup_window = g.OpenPopupStack[popup_idx].Window;
ImGuiWindow* parent_popup_window = g.OpenPopupStack[popup_idx - 1].Window;
bool close_parent = false;
if (popup_window && (popup_window->Flags & ImGuiWindowFlags_ChildMenu))
if (parent_popup_window == NULL || !(parent_popup_window->Flags & ImGuiWindowFlags_Modal))
close_parent = true;
if (!close_parent)
break;
popup_idx--;
}
IMGUI_DEBUG_LOG_POPUP("CloseCurrentPopup %d -> %d\n", g.BeginPopupStack.Size - 1, popup_idx);
ClosePopupToLevel(popup_idx, true);
// A common pattern is to close a popup when selecting a menu item/selectable that will open another window.
// To improve this usage pattern, we avoid nav highlight for a single frame in the parent window.
// Similarly, we could avoid mouse hover highlight in this window but it is less visually problematic.
if (ImGuiWindow* window = g.NavWindow)
window->DC.NavHideHighlightOneFrame = true;
}
// Attention! BeginPopup() adds default flags which BeginPopupEx()!
bool ImGui::BeginPopupEx(ImGuiID id, ImGuiWindowFlags flags)
{
ImGuiContext& g = *GImGui;
if (!IsPopupOpen(id, ImGuiPopupFlags_None))
{
g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values
return false;
}
char name[20];
if (flags & ImGuiWindowFlags_ChildMenu)
ImFormatString(name, IM_ARRAYSIZE(name), "##Menu_%02d", g.BeginPopupStack.Size); // Recycle windows based on depth
else
ImFormatString(name, IM_ARRAYSIZE(name), "##Popup_%08x", id); // Not recycling, so we can close/open during the same frame
flags |= ImGuiWindowFlags_Popup;
bool is_open = Begin(name, NULL, flags);
if (!is_open) // NB: Begin can return false when the popup is completely clipped (e.g. zero size display)
EndPopup();
return is_open;
}
bool ImGui::BeginPopup(const char* str_id, ImGuiWindowFlags flags)
{
ImGuiContext& g = *GImGui;
if (g.OpenPopupStack.Size <= g.BeginPopupStack.Size) // Early out for performance
{
g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values
return false;
}
flags |= ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings;
return BeginPopupEx(g.CurrentWindow->GetID(str_id), flags);
}
// If 'p_open' is specified for a modal popup window, the popup will have a regular close button which will close the popup.
// Note that popup visibility status is owned by Dear ImGui (and manipulated with e.g. OpenPopup) so the actual value of *p_open is meaningless here.
bool ImGui::BeginPopupModal(const char* name, bool* p_open, ImGuiWindowFlags flags)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
const ImGuiID id = window->GetID(name);
if (!IsPopupOpen(id, ImGuiPopupFlags_None))
{
g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values
return false;
}
// Center modal windows by default for increased visibility
// (this won't really last as settings will kick in, and is mostly for backward compatibility. user may do the same themselves)
// FIXME: Should test for (PosCond & window->SetWindowPosAllowFlags) with the upcoming window.
if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasPos) == 0)
{
const ImGuiViewport* viewport = GetMainViewport();
SetNextWindowPos(viewport->GetCenter(), ImGuiCond_FirstUseEver, ImVec2(0.5f, 0.5f));
}
flags |= ImGuiWindowFlags_Popup | ImGuiWindowFlags_Modal | ImGuiWindowFlags_NoCollapse;
const bool is_open = Begin(name, p_open, flags);
if (!is_open || (p_open && !*p_open)) // NB: is_open can be 'false' when the popup is completely clipped (e.g. zero size display)
{
EndPopup();
if (is_open)
ClosePopupToLevel(g.BeginPopupStack.Size, true);
return false;
}
return is_open;
}
void ImGui::EndPopup()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
IM_ASSERT(window->Flags & ImGuiWindowFlags_Popup); // Mismatched BeginPopup()/EndPopup() calls
IM_ASSERT(g.BeginPopupStack.Size > 0);
// Make all menus and popups wrap around for now, may need to expose that policy.
if (g.NavWindow == window)
NavMoveRequestTryWrapping(window, ImGuiNavMoveFlags_LoopY);
// Child-popups don't need to be laid out
IM_ASSERT(g.WithinEndChild == false);
if (window->Flags & ImGuiWindowFlags_ChildWindow)
g.WithinEndChild = true;
End();
g.WithinEndChild = false;
}
// Helper to open a popup if mouse button is released over the item
// - This is essentially the same as BeginPopupContextItem() but without the trailing BeginPopup()
void ImGui::OpenPopupOnItemClick(const char* str_id, ImGuiPopupFlags popup_flags)
{
ImGuiWindow* window = GImGui->CurrentWindow;
int mouse_button = (popup_flags & ImGuiPopupFlags_MouseButtonMask_);
if (IsMouseReleased(mouse_button) && IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup))
{
ImGuiID id = str_id ? window->GetID(str_id) : window->DC.LastItemId; // If user hasn't passed an ID, we can use the LastItemID. Using LastItemID as a Popup ID won't conflict!
IM_ASSERT(id != 0); // You cannot pass a NULL str_id if the last item has no identifier (e.g. a Text() item)
OpenPopupEx(id, popup_flags);
}
}
// This is a helper to handle the simplest case of associating one named popup to one given widget.
// - To create a popup associated to the last item, you generally want to pass a NULL value to str_id.
// - To create a popup with a specific identifier, pass it in str_id.
// - This is useful when using using BeginPopupContextItem() on an item which doesn't have an identifier, e.g. a Text() call.
// - This is useful when multiple code locations may want to manipulate/open the same popup, given an explicit id.
// - You may want to handle the whole on user side if you have specific needs (e.g. tweaking IsItemHovered() parameters).
// This is essentially the same as:
// id = str_id ? GetID(str_id) : GetItemID();
// OpenPopupOnItemClick(str_id);
// return BeginPopup(id);
// Which is essentially the same as:
// id = str_id ? GetID(str_id) : GetItemID();
// if (IsItemHovered() && IsMouseReleased(ImGuiMouseButton_Right))
// OpenPopup(id);
// return BeginPopup(id);
// The main difference being that this is tweaked to avoid computing the ID twice.
bool ImGui::BeginPopupContextItem(const char* str_id, ImGuiPopupFlags popup_flags)
{
ImGuiWindow* window = GImGui->CurrentWindow;
if (window->SkipItems)
return false;
ImGuiID id = str_id ? window->GetID(str_id) : window->DC.LastItemId; // If user hasn't passed an ID, we can use the LastItemID. Using LastItemID as a Popup ID won't conflict!
IM_ASSERT(id != 0); // You cannot pass a NULL str_id if the last item has no identifier (e.g. a Text() item)
int mouse_button = (popup_flags & ImGuiPopupFlags_MouseButtonMask_);
if (IsMouseReleased(mouse_button) && IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup))
OpenPopupEx(id, popup_flags);
return BeginPopupEx(id, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings);
}
bool ImGui::BeginPopupContextWindow(const char* str_id, ImGuiPopupFlags popup_flags)
{
ImGuiWindow* window = GImGui->CurrentWindow;
if (!str_id)
str_id = "window_context";
ImGuiID id = window->GetID(str_id);
int mouse_button = (popup_flags & ImGuiPopupFlags_MouseButtonMask_);
if (IsMouseReleased(mouse_button) && IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup))
if (!(popup_flags & ImGuiPopupFlags_NoOpenOverItems) || !IsAnyItemHovered())
OpenPopupEx(id, popup_flags);
return BeginPopupEx(id, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings);
}
bool ImGui::BeginPopupContextVoid(const char* str_id, ImGuiPopupFlags popup_flags)
{
ImGuiWindow* window = GImGui->CurrentWindow;
if (!str_id)
str_id = "void_context";
ImGuiID id = window->GetID(str_id);
int mouse_button = (popup_flags & ImGuiPopupFlags_MouseButtonMask_);
if (IsMouseReleased(mouse_button) && !IsWindowHovered(ImGuiHoveredFlags_AnyWindow))
if (GetTopMostPopupModal() == NULL)
OpenPopupEx(id, popup_flags);
return BeginPopupEx(id, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings);
}
// r_avoid = the rectangle to avoid (e.g. for tooltip it is a rectangle around the mouse cursor which we want to avoid. for popups it's a small point around the cursor.)
// r_outer = the visible area rectangle, minus safe area padding. If our popup size won't fit because of safe area padding we ignore it.
// (r_outer is usually equivalent to the viewport rectangle minus padding, but when multi-viewports are enabled and monitor
// information are available, it may represent the entire platform monitor from the frame of reference of the current viewport.
// this allows us to have tooltips/popups displayed out of the parent viewport.)
ImVec2 ImGui::FindBestWindowPosForPopupEx(const ImVec2& ref_pos, const ImVec2& size, ImGuiDir* last_dir, const ImRect& r_outer, const ImRect& r_avoid, ImGuiPopupPositionPolicy policy)
{
ImVec2 base_pos_clamped = ImClamp(ref_pos, r_outer.Min, r_outer.Max - size);
//GetForegroundDrawList()->AddRect(r_avoid.Min, r_avoid.Max, IM_COL32(255,0,0,255));
//GetForegroundDrawList()->AddRect(r_outer.Min, r_outer.Max, IM_COL32(0,255,0,255));
// Combo Box policy (we want a connecting edge)
if (policy == ImGuiPopupPositionPolicy_ComboBox)
{
const ImGuiDir dir_prefered_order[ImGuiDir_COUNT] = { ImGuiDir_Down, ImGuiDir_Right, ImGuiDir_Left, ImGuiDir_Up };
for (int n = (*last_dir != ImGuiDir_None) ? -1 : 0; n < ImGuiDir_COUNT; n++)
{
const ImGuiDir dir = (n == -1) ? *last_dir : dir_prefered_order[n];
if (n != -1 && dir == *last_dir) // Already tried this direction?
continue;
ImVec2 pos;
if (dir == ImGuiDir_Down) pos = ImVec2(r_avoid.Min.x, r_avoid.Max.y); // Below, Toward Right (default)
if (dir == ImGuiDir_Right) pos = ImVec2(r_avoid.Min.x, r_avoid.Min.y - size.y); // Above, Toward Right
if (dir == ImGuiDir_Left) pos = ImVec2(r_avoid.Max.x - size.x, r_avoid.Max.y); // Below, Toward Left
if (dir == ImGuiDir_Up) pos = ImVec2(r_avoid.Max.x - size.x, r_avoid.Min.y - size.y); // Above, Toward Left
if (!r_outer.Contains(ImRect(pos, pos + size)))
continue;
*last_dir = dir;
return pos;
}
}
// Tooltip and Default popup policy
// (Always first try the direction we used on the last frame, if any)
if (policy == ImGuiPopupPositionPolicy_Tooltip || policy == ImGuiPopupPositionPolicy_Default)
{
const ImGuiDir dir_prefered_order[ImGuiDir_COUNT] = { ImGuiDir_Right, ImGuiDir_Down, ImGuiDir_Up, ImGuiDir_Left };
for (int n = (*last_dir != ImGuiDir_None) ? -1 : 0; n < ImGuiDir_COUNT; n++)
{
const ImGuiDir dir = (n == -1) ? *last_dir : dir_prefered_order[n];
if (n != -1 && dir == *last_dir) // Already tried this direction?
continue;
const float avail_w = (dir == ImGuiDir_Left ? r_avoid.Min.x : r_outer.Max.x) - (dir == ImGuiDir_Right ? r_avoid.Max.x : r_outer.Min.x);
const float avail_h = (dir == ImGuiDir_Up ? r_avoid.Min.y : r_outer.Max.y) - (dir == ImGuiDir_Down ? r_avoid.Max.y : r_outer.Min.y);
// If there not enough room on one axis, there's no point in positioning on a side on this axis (e.g. when not enough width, use a top/bottom position to maximize available width)
if (avail_w < size.x && (dir == ImGuiDir_Left || dir == ImGuiDir_Right))
continue;
if (avail_h < size.y && (dir == ImGuiDir_Up || dir == ImGuiDir_Down))
continue;
ImVec2 pos;
pos.x = (dir == ImGuiDir_Left) ? r_avoid.Min.x - size.x : (dir == ImGuiDir_Right) ? r_avoid.Max.x : base_pos_clamped.x;
pos.y = (dir == ImGuiDir_Up) ? r_avoid.Min.y - size.y : (dir == ImGuiDir_Down) ? r_avoid.Max.y : base_pos_clamped.y;
// Clamp top-left corner of popup
pos.x = ImMax(pos.x, r_outer.Min.x);
pos.y = ImMax(pos.y, r_outer.Min.y);
*last_dir = dir;
return pos;
}
}
// Fallback when not enough room:
*last_dir = ImGuiDir_None;
// For tooltip we prefer avoiding the cursor at all cost even if it means that part of the tooltip won't be visible.
if (policy == ImGuiPopupPositionPolicy_Tooltip)
return ref_pos + ImVec2(2, 2);
// Otherwise try to keep within display
ImVec2 pos = ref_pos;
pos.x = ImMax(ImMin(pos.x + size.x, r_outer.Max.x) - size.x, r_outer.Min.x);
pos.y = ImMax(ImMin(pos.y + size.y, r_outer.Max.y) - size.y, r_outer.Min.y);
return pos;
}
// Note that this is used for popups, which can overlap the non work-area of individual viewports.
ImRect ImGui::GetPopupAllowedExtentRect(ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
IM_UNUSED(window);
ImRect r_screen = ((ImGuiViewportP*)(void*)GetMainViewport())->GetMainRect();
ImVec2 padding = g.Style.DisplaySafeAreaPadding;
r_screen.Expand(ImVec2((r_screen.GetWidth() > padding.x * 2) ? -padding.x : 0.0f, (r_screen.GetHeight() > padding.y * 2) ? -padding.y : 0.0f));
return r_screen;
}
ImVec2 ImGui::FindBestWindowPosForPopup(ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
ImRect r_outer = GetPopupAllowedExtentRect(window);
if (window->Flags & ImGuiWindowFlags_ChildMenu)
{
// Child menus typically request _any_ position within the parent menu item, and then we move the new menu outside the parent bounds.
// This is how we end up with child menus appearing (most-commonly) on the right of the parent menu.
IM_ASSERT(g.CurrentWindow == window);
ImGuiWindow* parent_window = g.CurrentWindowStack[g.CurrentWindowStack.Size - 2];
float horizontal_overlap = g.Style.ItemInnerSpacing.x; // We want some overlap to convey the relative depth of each menu (currently the amount of overlap is hard-coded to style.ItemSpacing.x).
ImRect r_avoid;
if (parent_window->DC.MenuBarAppending)
r_avoid = ImRect(-FLT_MAX, parent_window->ClipRect.Min.y, FLT_MAX, parent_window->ClipRect.Max.y); // Avoid parent menu-bar. If we wanted multi-line menu-bar, we may instead want to have the calling window setup e.g. a NextWindowData.PosConstraintAvoidRect field
else
r_avoid = ImRect(parent_window->Pos.x + horizontal_overlap, -FLT_MAX, parent_window->Pos.x + parent_window->Size.x - horizontal_overlap - parent_window->ScrollbarSizes.x, FLT_MAX);
return FindBestWindowPosForPopupEx(window->Pos, window->Size, &window->AutoPosLastDirection, r_outer, r_avoid, ImGuiPopupPositionPolicy_Default);
}
if (window->Flags & ImGuiWindowFlags_Popup)
{
ImRect r_avoid = ImRect(window->Pos.x - 1, window->Pos.y - 1, window->Pos.x + 1, window->Pos.y + 1);
return FindBestWindowPosForPopupEx(window->Pos, window->Size, &window->AutoPosLastDirection, r_outer, r_avoid, ImGuiPopupPositionPolicy_Default);
}
if (window->Flags & ImGuiWindowFlags_Tooltip)
{
// Position tooltip (always follows mouse)
float sc = g.Style.MouseCursorScale;
ImVec2 ref_pos = NavCalcPreferredRefPos();
ImRect r_avoid;
if (!g.NavDisableHighlight && g.NavDisableMouseHover && !(g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableSetMousePos))
r_avoid = ImRect(ref_pos.x - 16, ref_pos.y - 8, ref_pos.x + 16, ref_pos.y + 8);
else
r_avoid = ImRect(ref_pos.x - 16, ref_pos.y - 8, ref_pos.x + 24 * sc, ref_pos.y + 24 * sc); // FIXME: Hard-coded based on mouse cursor shape expectation. Exact dimension not very important.
return FindBestWindowPosForPopupEx(ref_pos, window->Size, &window->AutoPosLastDirection, r_outer, r_avoid, ImGuiPopupPositionPolicy_Tooltip);
}
IM_ASSERT(0);
return window->Pos;
}
//-----------------------------------------------------------------------------
// [SECTION] KEYBOARD/GAMEPAD NAVIGATION
//-----------------------------------------------------------------------------
// FIXME-NAV: The existence of SetNavID vs SetFocusID properly needs to be clarified/reworked.
void ImGui::SetNavID(ImGuiID id, ImGuiNavLayer nav_layer, ImGuiID focus_scope_id, const ImRect& rect_rel)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(g.NavWindow != NULL);
IM_ASSERT(nav_layer == ImGuiNavLayer_Main || nav_layer == ImGuiNavLayer_Menu);
g.NavId = id;
g.NavLayer = nav_layer;
g.NavFocusScopeId = focus_scope_id;
g.NavWindow->NavLastIds[nav_layer] = id;
g.NavWindow->NavRectRel[nav_layer] = rect_rel;
//g.NavDisableHighlight = false;
//g.NavDisableMouseHover = g.NavMousePosDirty = true;
}
void ImGui::SetFocusID(ImGuiID id, ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(id != 0);
// Assume that SetFocusID() is called in the context where its window->DC.NavLayerCurrent and window->DC.NavFocusScopeIdCurrent are valid.
// Note that window may be != g.CurrentWindow (e.g. SetFocusID call in InputTextEx for multi-line text)
const ImGuiNavLayer nav_layer = window->DC.NavLayerCurrent;
if (g.NavWindow != window)
g.NavInitRequest = false;
g.NavWindow = window;
g.NavId = id;
g.NavLayer = nav_layer;
g.NavFocusScopeId = window->DC.NavFocusScopeIdCurrent;
window->NavLastIds[nav_layer] = id;
if (window->DC.LastItemId == id)
window->NavRectRel[nav_layer] = ImRect(window->DC.LastItemRect.Min - window->Pos, window->DC.LastItemRect.Max - window->Pos);
if (g.ActiveIdSource == ImGuiInputSource_Nav)
g.NavDisableMouseHover = true;
else
g.NavDisableHighlight = true;
}
ImGuiDir ImGetDirQuadrantFromDelta(float dx, float dy)
{
if (ImFabs(dx) > ImFabs(dy))
return (dx > 0.0f) ? ImGuiDir_Right : ImGuiDir_Left;
return (dy > 0.0f) ? ImGuiDir_Down : ImGuiDir_Up;
}
static float inline NavScoreItemDistInterval(float a0, float a1, float b0, float b1)
{
if (a1 < b0)
return a1 - b0;
if (b1 < a0)
return a0 - b1;
return 0.0f;
}
static void inline NavClampRectToVisibleAreaForMoveDir(ImGuiDir move_dir, ImRect& r, const ImRect& clip_rect)
{
if (move_dir == ImGuiDir_Left || move_dir == ImGuiDir_Right)
{
r.Min.y = ImClamp(r.Min.y, clip_rect.Min.y, clip_rect.Max.y);
r.Max.y = ImClamp(r.Max.y, clip_rect.Min.y, clip_rect.Max.y);
}
else
{
r.Min.x = ImClamp(r.Min.x, clip_rect.Min.x, clip_rect.Max.x);
r.Max.x = ImClamp(r.Max.x, clip_rect.Min.x, clip_rect.Max.x);
}
}
// Scoring function for gamepad/keyboard directional navigation. Based on https://gist.github.com/rygorous/6981057
static bool ImGui::NavScoreItem(ImGuiNavItemData* result, ImRect cand)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
if (g.NavLayer != window->DC.NavLayerCurrent)
return false;
const ImRect& curr = g.NavScoringRect; // Current modified source rect (NB: we've applied Max.x = Min.x in NavUpdate() to inhibit the effect of having varied item width)
g.NavScoringCount++;
// When entering through a NavFlattened border, we consider child window items as fully clipped for scoring
if (window->ParentWindow == g.NavWindow)
{
IM_ASSERT((window->Flags | g.NavWindow->Flags) & ImGuiWindowFlags_NavFlattened);
if (!window->ClipRect.Overlaps(cand))
return false;
cand.ClipWithFull(window->ClipRect); // This allows the scored item to not overlap other candidates in the parent window
}
// We perform scoring on items bounding box clipped by the current clipping rectangle on the other axis (clipping on our movement axis would give us equal scores for all clipped items)
// For example, this ensure that items in one column are not reached when moving vertically from items in another column.
NavClampRectToVisibleAreaForMoveDir(g.NavMoveClipDir, cand, window->ClipRect);
// Compute distance between boxes
// FIXME-NAV: Introducing biases for vertical navigation, needs to be removed.
float dbx = NavScoreItemDistInterval(cand.Min.x, cand.Max.x, curr.Min.x, curr.Max.x);
float dby = NavScoreItemDistInterval(ImLerp(cand.Min.y, cand.Max.y, 0.2f), ImLerp(cand.Min.y, cand.Max.y, 0.8f), ImLerp(curr.Min.y, curr.Max.y, 0.2f), ImLerp(curr.Min.y, curr.Max.y, 0.8f)); // Scale down on Y to keep using box-distance for vertically touching items
if (dby != 0.0f && dbx != 0.0f)
dbx = (dbx / 1000.0f) + ((dbx > 0.0f) ? +1.0f : -1.0f);
float dist_box = ImFabs(dbx) + ImFabs(dby);
// Compute distance between centers (this is off by a factor of 2, but we only compare center distances with each other so it doesn't matter)
float dcx = (cand.Min.x + cand.Max.x) - (curr.Min.x + curr.Max.x);
float dcy = (cand.Min.y + cand.Max.y) - (curr.Min.y + curr.Max.y);
float dist_center = ImFabs(dcx) + ImFabs(dcy); // L1 metric (need this for our connectedness guarantee)
// Determine which quadrant of 'curr' our candidate item 'cand' lies in based on distance
ImGuiDir quadrant;
float dax = 0.0f, day = 0.0f, dist_axial = 0.0f;
if (dbx != 0.0f || dby != 0.0f)
{
// For non-overlapping boxes, use distance between boxes
dax = dbx;
day = dby;
dist_axial = dist_box;
quadrant = ImGetDirQuadrantFromDelta(dbx, dby);
}
else if (dcx != 0.0f || dcy != 0.0f)
{
// For overlapping boxes with different centers, use distance between centers
dax = dcx;
day = dcy;
dist_axial = dist_center;
quadrant = ImGetDirQuadrantFromDelta(dcx, dcy);
}
else
{
// Degenerate case: two overlapping buttons with same center, break ties arbitrarily (note that LastItemId here is really the _previous_ item order, but it doesn't matter)
quadrant = (window->DC.LastItemId < g.NavId) ? ImGuiDir_Left : ImGuiDir_Right;
}
#if IMGUI_DEBUG_NAV_SCORING
char buf[128];
if (IsMouseHoveringRect(cand.Min, cand.Max))
{
ImFormatString(buf, IM_ARRAYSIZE(buf), "dbox (%.2f,%.2f->%.4f)\ndcen (%.2f,%.2f->%.4f)\nd (%.2f,%.2f->%.4f)\nnav %c, quadrant %c", dbx, dby, dist_box, dcx, dcy, dist_center, dax, day, dist_axial, "WENS"[g.NavMoveDir], "WENS"[quadrant]);
ImDrawList* draw_list = GetForegroundDrawList(window);
draw_list->AddRect(curr.Min, curr.Max, IM_COL32(255,200,0,100));
draw_list->AddRect(cand.Min, cand.Max, IM_COL32(255,255,0,200));
draw_list->AddRectFilled(cand.Max - ImVec2(4, 4), cand.Max + CalcTextSize(buf) + ImVec2(4, 4), IM_COL32(40,0,0,150));
draw_list->AddText(g.IO.FontDefault, 13.0f, cand.Max, ~0U, buf);
}
else if (g.IO.KeyCtrl) // Hold to preview score in matching quadrant. Press C to rotate.
{
if (IsKeyPressedMap(ImGuiKey_C)) { g.NavMoveDirLast = (ImGuiDir)((g.NavMoveDirLast + 1) & 3); g.IO.KeysDownDuration[g.IO.KeyMap[ImGuiKey_C]] = 0.01f; }
if (quadrant == g.NavMoveDir)
{
ImFormatString(buf, IM_ARRAYSIZE(buf), "%.0f/%.0f", dist_box, dist_center);
ImDrawList* draw_list = GetForegroundDrawList(window);
draw_list->AddRectFilled(cand.Min, cand.Max, IM_COL32(255, 0, 0, 200));
draw_list->AddText(g.IO.FontDefault, 13.0f, cand.Min, IM_COL32(255, 255, 255, 255), buf);
}
}
#endif
// Is it in the quadrant we're interesting in moving to?
bool new_best = false;
if (quadrant == g.NavMoveDir)
{
// Does it beat the current best candidate?
if (dist_box < result->DistBox)
{
result->DistBox = dist_box;
result->DistCenter = dist_center;
return true;
}
if (dist_box == result->DistBox)
{
// Try using distance between center points to break ties
if (dist_center < result->DistCenter)
{
result->DistCenter = dist_center;
new_best = true;
}
else if (dist_center == result->DistCenter)
{
// Still tied! we need to be extra-careful to make sure everything gets linked properly. We consistently break ties by symbolically moving "later" items
// (with higher index) to the right/downwards by an infinitesimal amount since we the current "best" button already (so it must have a lower index),
// this is fairly easy. This rule ensures that all buttons with dx==dy==0 will end up being linked in order of appearance along the x axis.
if (((g.NavMoveDir == ImGuiDir_Up || g.NavMoveDir == ImGuiDir_Down) ? dby : dbx) < 0.0f) // moving bj to the right/down decreases distance
new_best = true;
}
}
}
// Axial check: if 'curr' has no link at all in some direction and 'cand' lies roughly in that direction, add a tentative link. This will only be kept if no "real" matches
// are found, so it only augments the graph produced by the above method using extra links. (important, since it doesn't guarantee strong connectedness)
// This is just to avoid buttons having no links in a particular direction when there's a suitable neighbor. you get good graphs without this too.
// 2017/09/29: FIXME: This now currently only enabled inside menu bars, ideally we'd disable it everywhere. Menus in particular need to catch failure. For general navigation it feels awkward.
// Disabling it may lead to disconnected graphs when nodes are very spaced out on different axis. Perhaps consider offering this as an option?
if (result->DistBox == FLT_MAX && dist_axial < result->DistAxial) // Check axial match
if (g.NavLayer == ImGuiNavLayer_Menu && !(g.NavWindow->Flags & ImGuiWindowFlags_ChildMenu))
if ((g.NavMoveDir == ImGuiDir_Left && dax < 0.0f) || (g.NavMoveDir == ImGuiDir_Right && dax > 0.0f) || (g.NavMoveDir == ImGuiDir_Up && day < 0.0f) || (g.NavMoveDir == ImGuiDir_Down && day > 0.0f))
{
result->DistAxial = dist_axial;
new_best = true;
}
return new_best;
}
static void ImGui::NavApplyItemToResult(ImGuiNavItemData* result, ImGuiWindow* window, ImGuiID id, const ImRect& nav_bb_rel)
{
result->Window = window;
result->ID = id;
result->FocusScopeId = window->DC.NavFocusScopeIdCurrent;
result->RectRel = nav_bb_rel;
}
// We get there when either NavId == id, or when g.NavAnyRequest is set (which is updated by NavUpdateAnyRequestFlag above)
static void ImGui::NavProcessItem(ImGuiWindow* window, const ImRect& nav_bb, const ImGuiID id)
{
ImGuiContext& g = *GImGui;
//if (!g.IO.NavActive) // [2017/10/06] Removed this possibly redundant test but I am not sure of all the side-effects yet. Some of the feature here will need to work regardless of using a _NoNavInputs flag.
// return;
const ImGuiItemFlags item_flags = g.CurrentItemFlags;
const ImRect nav_bb_rel(nav_bb.Min - window->Pos, nav_bb.Max - window->Pos);
// Process Init Request
if (g.NavInitRequest && g.NavLayer == window->DC.NavLayerCurrent)
{
// Even if 'ImGuiItemFlags_NoNavDefaultFocus' is on (typically collapse/close button) we record the first ResultId so they can be used as a fallback
if (!(item_flags & ImGuiItemFlags_NoNavDefaultFocus) || g.NavInitResultId == 0)
{
g.NavInitResultId = id;
g.NavInitResultRectRel = nav_bb_rel;
}
if (!(item_flags & ImGuiItemFlags_NoNavDefaultFocus))
{
g.NavInitRequest = false; // Found a match, clear request
NavUpdateAnyRequestFlag();
}
}
// Process Move Request (scoring for navigation)
// FIXME-NAV: Consider policy for double scoring (scoring from NavScoringRectScreen + scoring from a rect wrapped according to current wrapping policy)
if ((g.NavId != id || (g.NavMoveRequestFlags & ImGuiNavMoveFlags_AllowCurrentNavId)) && !(item_flags & (ImGuiItemFlags_Disabled | ImGuiItemFlags_NoNav)))
{
ImGuiNavItemData* result = (window == g.NavWindow) ? &g.NavMoveResultLocal : &g.NavMoveResultOther;
#if IMGUI_DEBUG_NAV_SCORING
// [DEBUG] Score all items in NavWindow at all times
if (!g.NavMoveRequest)
g.NavMoveDir = g.NavMoveDirLast;
bool new_best = NavScoreItem(result, nav_bb) && g.NavMoveRequest;
#else
bool new_best = g.NavMoveRequest && NavScoreItem(result, nav_bb);
#endif
if (new_best)
NavApplyItemToResult(result, window, id, nav_bb_rel);
// Features like PageUp/PageDown need to maintain a separate score for the visible set of items.
const float VISIBLE_RATIO = 0.70f;
if ((g.NavMoveRequestFlags & ImGuiNavMoveFlags_AlsoScoreVisibleSet) && window->ClipRect.Overlaps(nav_bb))
if (ImClamp(nav_bb.Max.y, window->ClipRect.Min.y, window->ClipRect.Max.y) - ImClamp(nav_bb.Min.y, window->ClipRect.Min.y, window->ClipRect.Max.y) >= (nav_bb.Max.y - nav_bb.Min.y) * VISIBLE_RATIO)
if (NavScoreItem(&g.NavMoveResultLocalVisibleSet, nav_bb))
NavApplyItemToResult(&g.NavMoveResultLocalVisibleSet, window, id, nav_bb_rel);
}
// Update window-relative bounding box of navigated item
if (g.NavId == id)
{
g.NavWindow = window; // Always refresh g.NavWindow, because some operations such as FocusItem() don't have a window.
g.NavLayer = window->DC.NavLayerCurrent;
g.NavFocusScopeId = window->DC.NavFocusScopeIdCurrent;
g.NavIdIsAlive = true;
window->NavRectRel[window->DC.NavLayerCurrent] = nav_bb_rel; // Store item bounding box (relative to window position)
}
}
bool ImGui::NavMoveRequestButNoResultYet()
{
ImGuiContext& g = *GImGui;
return g.NavMoveRequest && g.NavMoveResultLocal.ID == 0 && g.NavMoveResultOther.ID == 0;
}
void ImGui::NavMoveRequestCancel()
{
ImGuiContext& g = *GImGui;
g.NavMoveRequest = false;
NavUpdateAnyRequestFlag();
}
void ImGui::NavMoveRequestForward(ImGuiDir move_dir, ImGuiDir clip_dir, const ImRect& bb_rel, ImGuiNavMoveFlags move_flags)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(g.NavMoveRequestForward == ImGuiNavForward_None);
NavMoveRequestCancel();
g.NavMoveDir = move_dir;
g.NavMoveClipDir = clip_dir;
g.NavMoveRequestForward = ImGuiNavForward_ForwardQueued;
g.NavMoveRequestFlags = move_flags;
g.NavWindow->NavRectRel[g.NavLayer] = bb_rel;
}
void ImGui::NavMoveRequestTryWrapping(ImGuiWindow* window, ImGuiNavMoveFlags move_flags)
{
ImGuiContext& g = *GImGui;
// Navigation wrap-around logic is delayed to the end of the frame because this operation is only valid after entire
// popup is assembled and in case of appended popups it is not clear which EndPopup() call is final.
g.NavWrapRequestWindow = window;
g.NavWrapRequestFlags = move_flags;
}
// FIXME: This could be replaced by updating a frame number in each window when (window == NavWindow) and (NavLayer == 0).
// This way we could find the last focused window among our children. It would be much less confusing this way?
static void ImGui::NavSaveLastChildNavWindowIntoParent(ImGuiWindow* nav_window)
{
ImGuiWindow* parent = nav_window;
while (parent && parent->RootWindow != parent && (parent->Flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_ChildMenu)) == 0)
parent = parent->ParentWindow;
if (parent && parent != nav_window)
parent->NavLastChildNavWindow = nav_window;
}
// Restore the last focused child.
// Call when we are expected to land on the Main Layer (0) after FocusWindow()
static ImGuiWindow* ImGui::NavRestoreLastChildNavWindow(ImGuiWindow* window)
{
if (window->NavLastChildNavWindow && window->NavLastChildNavWindow->WasActive)
return window->NavLastChildNavWindow;
return window;
}
void ImGui::NavRestoreLayer(ImGuiNavLayer layer)
{
ImGuiContext& g = *GImGui;
if (layer == ImGuiNavLayer_Main)
g.NavWindow = NavRestoreLastChildNavWindow(g.NavWindow);
ImGuiWindow* window = g.NavWindow;
if (window->NavLastIds[layer] != 0)
{
SetNavID(window->NavLastIds[layer], layer, 0, window->NavRectRel[layer]);
g.NavDisableHighlight = false;
g.NavDisableMouseHover = g.NavMousePosDirty = true;
}
else
{
g.NavLayer = layer;
NavInitWindow(window, true);
}
}
static inline void ImGui::NavUpdateAnyRequestFlag()
{
ImGuiContext& g = *GImGui;
g.NavAnyRequest = g.NavMoveRequest || g.NavInitRequest || (IMGUI_DEBUG_NAV_SCORING && g.NavWindow != NULL);
if (g.NavAnyRequest)
IM_ASSERT(g.NavWindow != NULL);
}
// This needs to be called before we submit any widget (aka in or before Begin)
void ImGui::NavInitWindow(ImGuiWindow* window, bool force_reinit)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(window == g.NavWindow);
if (window->Flags & ImGuiWindowFlags_NoNavInputs)
{
g.NavId = g.NavFocusScopeId = 0;
return;
}
bool init_for_nav = false;
if (window == window->RootWindow || (window->Flags & ImGuiWindowFlags_Popup) || (window->NavLastIds[0] == 0) || force_reinit)
init_for_nav = true;
IMGUI_DEBUG_LOG_NAV("[nav] NavInitRequest: from NavInitWindow(), init_for_nav=%d, window=\"%s\", layer=%d\n", init_for_nav, window->Name, g.NavLayer);
if (init_for_nav)
{
SetNavID(0, g.NavLayer, 0, ImRect());
g.NavInitRequest = true;
g.NavInitRequestFromMove = false;
g.NavInitResultId = 0;
g.NavInitResultRectRel = ImRect();
NavUpdateAnyRequestFlag();
}
else
{
g.NavId = window->NavLastIds[0];
g.NavFocusScopeId = 0;
}
}
static ImVec2 ImGui::NavCalcPreferredRefPos()
{
ImGuiContext& g = *GImGui;
if (g.NavDisableHighlight || !g.NavDisableMouseHover || !g.NavWindow)
{
// Mouse (we need a fallback in case the mouse becomes invalid after being used)
if (IsMousePosValid(&g.IO.MousePos))
return g.IO.MousePos;
return g.LastValidMousePos;
}
else
{
// When navigation is active and mouse is disabled, decide on an arbitrary position around the bottom left of the currently navigated item.
const ImRect& rect_rel = g.NavWindow->NavRectRel[g.NavLayer];
ImVec2 pos = g.NavWindow->Pos + ImVec2(rect_rel.Min.x + ImMin(g.Style.FramePadding.x * 4, rect_rel.GetWidth()), rect_rel.Max.y - ImMin(g.Style.FramePadding.y, rect_rel.GetHeight()));
ImGuiViewport* viewport = GetMainViewport();
return ImFloor(ImClamp(pos, viewport->Pos, viewport->Pos + viewport->Size)); // ImFloor() is important because non-integer mouse position application in backend might be lossy and result in undesirable non-zero delta.
}
}
float ImGui::GetNavInputAmount(ImGuiNavInput n, ImGuiInputReadMode mode)
{
ImGuiContext& g = *GImGui;
if (mode == ImGuiInputReadMode_Down)
return g.IO.NavInputs[n]; // Instant, read analog input (0.0f..1.0f, as provided by user)
const float t = g.IO.NavInputsDownDuration[n];
if (t < 0.0f && mode == ImGuiInputReadMode_Released) // Return 1.0f when just released, no repeat, ignore analog input.
return (g.IO.NavInputsDownDurationPrev[n] >= 0.0f ? 1.0f : 0.0f);
if (t < 0.0f)
return 0.0f;
if (mode == ImGuiInputReadMode_Pressed) // Return 1.0f when just pressed, no repeat, ignore analog input.
return (t == 0.0f) ? 1.0f : 0.0f;
if (mode == ImGuiInputReadMode_Repeat)
return (float)CalcTypematicRepeatAmount(t - g.IO.DeltaTime, t, g.IO.KeyRepeatDelay * 0.72f, g.IO.KeyRepeatRate * 0.80f);
if (mode == ImGuiInputReadMode_RepeatSlow)
return (float)CalcTypematicRepeatAmount(t - g.IO.DeltaTime, t, g.IO.KeyRepeatDelay * 1.25f, g.IO.KeyRepeatRate * 2.00f);
if (mode == ImGuiInputReadMode_RepeatFast)
return (float)CalcTypematicRepeatAmount(t - g.IO.DeltaTime, t, g.IO.KeyRepeatDelay * 0.72f, g.IO.KeyRepeatRate * 0.30f);
return 0.0f;
}
ImVec2 ImGui::GetNavInputAmount2d(ImGuiNavDirSourceFlags dir_sources, ImGuiInputReadMode mode, float slow_factor, float fast_factor)
{
ImVec2 delta(0.0f, 0.0f);
if (dir_sources & ImGuiNavDirSourceFlags_Keyboard)
delta += ImVec2(GetNavInputAmount(ImGuiNavInput_KeyRight_, mode) - GetNavInputAmount(ImGuiNavInput_KeyLeft_, mode), GetNavInputAmount(ImGuiNavInput_KeyDown_, mode) - GetNavInputAmount(ImGuiNavInput_KeyUp_, mode));
if (dir_sources & ImGuiNavDirSourceFlags_PadDPad)
delta += ImVec2(GetNavInputAmount(ImGuiNavInput_DpadRight, mode) - GetNavInputAmount(ImGuiNavInput_DpadLeft, mode), GetNavInputAmount(ImGuiNavInput_DpadDown, mode) - GetNavInputAmount(ImGuiNavInput_DpadUp, mode));
if (dir_sources & ImGuiNavDirSourceFlags_PadLStick)
delta += ImVec2(GetNavInputAmount(ImGuiNavInput_LStickRight, mode) - GetNavInputAmount(ImGuiNavInput_LStickLeft, mode), GetNavInputAmount(ImGuiNavInput_LStickDown, mode) - GetNavInputAmount(ImGuiNavInput_LStickUp, mode));
if (slow_factor != 0.0f && IsNavInputDown(ImGuiNavInput_TweakSlow))
delta *= slow_factor;
if (fast_factor != 0.0f && IsNavInputDown(ImGuiNavInput_TweakFast))
delta *= fast_factor;
return delta;
}
static void ImGui::NavUpdate()
{
ImGuiContext& g = *GImGui;
ImGuiIO& io = g.IO;
io.WantSetMousePos = false;
g.NavWrapRequestWindow = NULL;
g.NavWrapRequestFlags = ImGuiNavMoveFlags_None;
#if 0
if (g.NavScoringCount > 0) IMGUI_DEBUG_LOG("NavScoringCount %d for '%s' layer %d (Init:%d, Move:%d)\n", g.FrameCount, g.NavScoringCount, g.NavWindow ? g.NavWindow->Name : "NULL", g.NavLayer, g.NavInitRequest || g.NavInitResultId != 0, g.NavMoveRequest);
#endif
// Set input source as Gamepad when buttons are pressed (as some features differs when used with Gamepad vs Keyboard)
// (do it before we map Keyboard input!)
bool nav_keyboard_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) != 0;
bool nav_gamepad_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (io.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0;
if (nav_gamepad_active && g.NavInputSource != ImGuiInputSource_Gamepad)
{
if (io.NavInputs[ImGuiNavInput_Activate] > 0.0f || io.NavInputs[ImGuiNavInput_Input] > 0.0f || io.NavInputs[ImGuiNavInput_Cancel] > 0.0f || io.NavInputs[ImGuiNavInput_Menu] > 0.0f
|| io.NavInputs[ImGuiNavInput_DpadLeft] > 0.0f || io.NavInputs[ImGuiNavInput_DpadRight] > 0.0f || io.NavInputs[ImGuiNavInput_DpadUp] > 0.0f || io.NavInputs[ImGuiNavInput_DpadDown] > 0.0f)
g.NavInputSource = ImGuiInputSource_Gamepad;
}
// Update Keyboard->Nav inputs mapping
if (nav_keyboard_active)
{
#define NAV_MAP_KEY(_KEY, _NAV_INPUT) do { if (IsKeyDown(io.KeyMap[_KEY])) { io.NavInputs[_NAV_INPUT] = 1.0f; g.NavInputSource = ImGuiInputSource_Keyboard; } } while (0)
NAV_MAP_KEY(ImGuiKey_Space, ImGuiNavInput_Activate );
NAV_MAP_KEY(ImGuiKey_Enter, ImGuiNavInput_Input );
NAV_MAP_KEY(ImGuiKey_Escape, ImGuiNavInput_Cancel );
NAV_MAP_KEY(ImGuiKey_LeftArrow, ImGuiNavInput_KeyLeft_ );
NAV_MAP_KEY(ImGuiKey_RightArrow,ImGuiNavInput_KeyRight_);
NAV_MAP_KEY(ImGuiKey_UpArrow, ImGuiNavInput_KeyUp_ );
NAV_MAP_KEY(ImGuiKey_DownArrow, ImGuiNavInput_KeyDown_ );
if (io.KeyCtrl)
io.NavInputs[ImGuiNavInput_TweakSlow] = 1.0f;
if (io.KeyShift)
io.NavInputs[ImGuiNavInput_TweakFast] = 1.0f;
// AltGR is normally Alt+Ctrl but we can't reliably detect it (not all backends/systems/layout emit it as Alt+Ctrl)
// But also even on keyboards without AltGR we don't want Alt+Ctrl to open menu anyway.
if (io.KeyAlt && !io.KeyCtrl)
io.NavInputs[ImGuiNavInput_KeyMenu_] = 1.0f;
// We automatically cancel toggling nav layer when any text has been typed while holding Alt. (See #370)
if (io.KeyAlt && !io.KeyCtrl && g.NavWindowingToggleLayer && io.InputQueueCharacters.Size > 0)
g.NavWindowingToggleLayer = false;
#undef NAV_MAP_KEY
}
memcpy(io.NavInputsDownDurationPrev, io.NavInputsDownDuration, sizeof(io.NavInputsDownDuration));
for (int i = 0; i < IM_ARRAYSIZE(io.NavInputs); i++)
io.NavInputsDownDuration[i] = (io.NavInputs[i] > 0.0f) ? (io.NavInputsDownDuration[i] < 0.0f ? 0.0f : io.NavInputsDownDuration[i] + io.DeltaTime) : -1.0f;
// Process navigation init request (select first/default focus)
if (g.NavInitResultId != 0)
NavUpdateInitResult();
g.NavInitRequest = false;
g.NavInitRequestFromMove = false;
g.NavInitResultId = 0;
g.NavJustMovedToId = 0;
// Process navigation move request
if (g.NavMoveRequest)
NavUpdateMoveResult();
// When a forwarded move request failed, we restore the highlight that we disabled during the forward frame
if (g.NavMoveRequestForward == ImGuiNavForward_ForwardActive)
{
IM_ASSERT(g.NavMoveRequest);
if (g.NavMoveResultLocal.ID == 0 && g.NavMoveResultOther.ID == 0)
g.NavDisableHighlight = false;
g.NavMoveRequestForward = ImGuiNavForward_None;
}
// Apply application mouse position movement, after we had a chance to process move request result.
if (g.NavMousePosDirty && g.NavIdIsAlive)
{
// Set mouse position given our knowledge of the navigated item position from last frame
if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableSetMousePos) && (io.BackendFlags & ImGuiBackendFlags_HasSetMousePos))
if (!g.NavDisableHighlight && g.NavDisableMouseHover && g.NavWindow)
{
io.MousePos = io.MousePosPrev = NavCalcPreferredRefPos();
io.WantSetMousePos = true;
}
g.NavMousePosDirty = false;
}
g.NavIdIsAlive = false;
g.NavJustTabbedId = 0;
IM_ASSERT(g.NavLayer == 0 || g.NavLayer == 1);
// Store our return window (for returning from Layer 1 to Layer 0) and clear it as soon as we step back in our own Layer 0
if (g.NavWindow)
NavSaveLastChildNavWindowIntoParent(g.NavWindow);
if (g.NavWindow && g.NavWindow->NavLastChildNavWindow != NULL && g.NavLayer == ImGuiNavLayer_Main)
g.NavWindow->NavLastChildNavWindow = NULL;
// Update CTRL+TAB and Windowing features (hold Square to move/resize/etc.)
NavUpdateWindowing();
// Set output flags for user application
io.NavActive = (nav_keyboard_active || nav_gamepad_active) && g.NavWindow && !(g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs);
io.NavVisible = (io.NavActive && g.NavId != 0 && !g.NavDisableHighlight) || (g.NavWindowingTarget != NULL);
// Process NavCancel input (to close a popup, get back to parent, clear focus)
if (IsNavInputTest(ImGuiNavInput_Cancel, ImGuiInputReadMode_Pressed))
{
IMGUI_DEBUG_LOG_NAV("[nav] ImGuiNavInput_Cancel\n");
if (g.ActiveId != 0)
{
if (!IsActiveIdUsingNavInput(ImGuiNavInput_Cancel))
ClearActiveID();
}
else if (g.NavLayer != ImGuiNavLayer_Main)
{
// Leave the "menu" layer
NavRestoreLayer(ImGuiNavLayer_Main);
}
else if (g.NavWindow && g.NavWindow != g.NavWindow->RootWindow && !(g.NavWindow->Flags & ImGuiWindowFlags_Popup) && g.NavWindow->ParentWindow)
{
// Exit child window
ImGuiWindow* child_window = g.NavWindow;
ImGuiWindow* parent_window = g.NavWindow->ParentWindow;
IM_ASSERT(child_window->ChildId != 0);
ImRect child_rect = child_window->Rect();
FocusWindow(parent_window);
SetNavID(child_window->ChildId, ImGuiNavLayer_Main, 0, ImRect(child_rect.Min - parent_window->Pos, child_rect.Max - parent_window->Pos));
}
else if (g.OpenPopupStack.Size > 0)
{
// Close open popup/menu
if (!(g.OpenPopupStack.back().Window->Flags & ImGuiWindowFlags_Modal))
ClosePopupToLevel(g.OpenPopupStack.Size - 1, true);
}
else
{
// Clear NavLastId for popups but keep it for regular child window so we can leave one and come back where we were
if (g.NavWindow && ((g.NavWindow->Flags & ImGuiWindowFlags_Popup) || !(g.NavWindow->Flags & ImGuiWindowFlags_ChildWindow)))
g.NavWindow->NavLastIds[0] = 0;
g.NavId = g.NavFocusScopeId = 0;
}
}
// Process manual activation request
g.NavActivateId = g.NavActivateDownId = g.NavActivatePressedId = g.NavInputId = 0;
if (g.NavId != 0 && !g.NavDisableHighlight && !g.NavWindowingTarget && g.NavWindow && !(g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs))
{
bool activate_down = IsNavInputDown(ImGuiNavInput_Activate);
bool activate_pressed = activate_down && IsNavInputTest(ImGuiNavInput_Activate, ImGuiInputReadMode_Pressed);
if (g.ActiveId == 0 && activate_pressed)
g.NavActivateId = g.NavId;
if ((g.ActiveId == 0 || g.ActiveId == g.NavId) && activate_down)
g.NavActivateDownId = g.NavId;
if ((g.ActiveId == 0 || g.ActiveId == g.NavId) && activate_pressed)
g.NavActivatePressedId = g.NavId;
if ((g.ActiveId == 0 || g.ActiveId == g.NavId) && IsNavInputTest(ImGuiNavInput_Input, ImGuiInputReadMode_Pressed))
g.NavInputId = g.NavId;
}
if (g.NavWindow && (g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs))
g.NavDisableHighlight = true;
if (g.NavActivateId != 0)
IM_ASSERT(g.NavActivateDownId == g.NavActivateId);
g.NavMoveRequest = false;
// Process programmatic activation request
if (g.NavNextActivateId != 0)
g.NavActivateId = g.NavActivateDownId = g.NavActivatePressedId = g.NavInputId = g.NavNextActivateId;
g.NavNextActivateId = 0;
// Initiate directional inputs request
if (g.NavMoveRequestForward == ImGuiNavForward_None)
{
g.NavMoveDir = ImGuiDir_None;
g.NavMoveRequestFlags = ImGuiNavMoveFlags_None;
if (g.NavWindow && !g.NavWindowingTarget && !(g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs))
{
const ImGuiInputReadMode read_mode = ImGuiInputReadMode_Repeat;
if (!IsActiveIdUsingNavDir(ImGuiDir_Left) && (IsNavInputTest(ImGuiNavInput_DpadLeft, read_mode) || IsNavInputTest(ImGuiNavInput_KeyLeft_, read_mode))) { g.NavMoveDir = ImGuiDir_Left; }
if (!IsActiveIdUsingNavDir(ImGuiDir_Right) && (IsNavInputTest(ImGuiNavInput_DpadRight, read_mode) || IsNavInputTest(ImGuiNavInput_KeyRight_, read_mode))) { g.NavMoveDir = ImGuiDir_Right; }
if (!IsActiveIdUsingNavDir(ImGuiDir_Up) && (IsNavInputTest(ImGuiNavInput_DpadUp, read_mode) || IsNavInputTest(ImGuiNavInput_KeyUp_, read_mode))) { g.NavMoveDir = ImGuiDir_Up; }
if (!IsActiveIdUsingNavDir(ImGuiDir_Down) && (IsNavInputTest(ImGuiNavInput_DpadDown, read_mode) || IsNavInputTest(ImGuiNavInput_KeyDown_, read_mode))) { g.NavMoveDir = ImGuiDir_Down; }
}
g.NavMoveClipDir = g.NavMoveDir;
}
else
{
// Forwarding previous request (which has been modified, e.g. wrap around menus rewrite the requests with a starting rectangle at the other side of the window)
// (Preserve g.NavMoveRequestFlags, g.NavMoveClipDir which were set by the NavMoveRequestForward() function)
IM_ASSERT(g.NavMoveDir != ImGuiDir_None && g.NavMoveClipDir != ImGuiDir_None);
IM_ASSERT(g.NavMoveRequestForward == ImGuiNavForward_ForwardQueued);
IMGUI_DEBUG_LOG_NAV("[nav] NavMoveRequestForward %d\n", g.NavMoveDir);
g.NavMoveRequestForward = ImGuiNavForward_ForwardActive;
}
// Update PageUp/PageDown/Home/End scroll
// FIXME-NAV: Consider enabling those keys even without the master ImGuiConfigFlags_NavEnableKeyboard flag?
float nav_scoring_rect_offset_y = 0.0f;
if (nav_keyboard_active)
nav_scoring_rect_offset_y = NavUpdatePageUpPageDown();
// If we initiate a movement request and have no current NavId, we initiate a InitDefautRequest that will be used as a fallback if the direction fails to find a match
if (g.NavMoveDir != ImGuiDir_None)
{
g.NavMoveRequest = true;
g.NavMoveRequestKeyMods = io.KeyMods;
g.NavMoveDirLast = g.NavMoveDir;
}
if (g.NavMoveRequest && g.NavId == 0)
{
IMGUI_DEBUG_LOG_NAV("[nav] NavInitRequest: from move, window \"%s\", layer=%d\n", g.NavWindow->Name, g.NavLayer);
g.NavInitRequest = g.NavInitRequestFromMove = true;
// Reassigning with same value, we're being explicit here.
g.NavInitResultId = 0; // -V1048
g.NavDisableHighlight = false;
}
NavUpdateAnyRequestFlag();
// Scrolling
if (g.NavWindow && !(g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs) && !g.NavWindowingTarget)
{
// *Fallback* manual-scroll with Nav directional keys when window has no navigable item
ImGuiWindow* window = g.NavWindow;
const float scroll_speed = IM_ROUND(window->CalcFontSize() * 100 * io.DeltaTime); // We need round the scrolling speed because sub-pixel scroll isn't reliably supported.
if (window->DC.NavLayersActiveMask == 0x00 && window->DC.NavHasScroll && g.NavMoveRequest)
{
if (g.NavMoveDir == ImGuiDir_Left || g.NavMoveDir == ImGuiDir_Right)
SetScrollX(window, ImFloor(window->Scroll.x + ((g.NavMoveDir == ImGuiDir_Left) ? -1.0f : +1.0f) * scroll_speed));
if (g.NavMoveDir == ImGuiDir_Up || g.NavMoveDir == ImGuiDir_Down)
SetScrollY(window, ImFloor(window->Scroll.y + ((g.NavMoveDir == ImGuiDir_Up) ? -1.0f : +1.0f) * scroll_speed));
}
// *Normal* Manual scroll with NavScrollXXX keys
// Next movement request will clamp the NavId reference rectangle to the visible area, so navigation will resume within those bounds.
ImVec2 scroll_dir = GetNavInputAmount2d(ImGuiNavDirSourceFlags_PadLStick, ImGuiInputReadMode_Down, 1.0f / 10.0f, 10.0f);
if (scroll_dir.x != 0.0f && window->ScrollbarX)
SetScrollX(window, ImFloor(window->Scroll.x + scroll_dir.x * scroll_speed));
if (scroll_dir.y != 0.0f)
SetScrollY(window, ImFloor(window->Scroll.y + scroll_dir.y * scroll_speed));
}
// Reset search results
g.NavMoveResultLocal.Clear();
g.NavMoveResultLocalVisibleSet.Clear();
g.NavMoveResultOther.Clear();
// When using gamepad, we project the reference nav bounding box into window visible area.
// This is to allow resuming navigation inside the visible area after doing a large amount of scrolling, since with gamepad every movements are relative
// (can't focus a visible object like we can with the mouse).
if (g.NavMoveRequest && g.NavInputSource == ImGuiInputSource_Gamepad && g.NavLayer == ImGuiNavLayer_Main)
{
ImGuiWindow* window = g.NavWindow;
ImRect window_rect_rel(window->InnerRect.Min - window->Pos - ImVec2(1, 1), window->InnerRect.Max - window->Pos + ImVec2(1, 1));
if (!window_rect_rel.Contains(window->NavRectRel[g.NavLayer]))
{
IMGUI_DEBUG_LOG_NAV("[nav] NavMoveRequest: clamp NavRectRel\n");
float pad = window->CalcFontSize() * 0.5f;
window_rect_rel.Expand(ImVec2(-ImMin(window_rect_rel.GetWidth(), pad), -ImMin(window_rect_rel.GetHeight(), pad))); // Terrible approximation for the intent of starting navigation from first fully visible item
window->NavRectRel[g.NavLayer].ClipWithFull(window_rect_rel);
g.NavId = g.NavFocusScopeId = 0;
}
}
// For scoring we use a single segment on the left side our current item bounding box (not touching the edge to avoid box overlap with zero-spaced items)
ImRect nav_rect_rel = g.NavWindow && !g.NavWindow->NavRectRel[g.NavLayer].IsInverted() ? g.NavWindow->NavRectRel[g.NavLayer] : ImRect(0, 0, 0, 0);
g.NavScoringRect = g.NavWindow ? ImRect(g.NavWindow->Pos + nav_rect_rel.Min, g.NavWindow->Pos + nav_rect_rel.Max) : ImRect(0, 0, 0, 0);
g.NavScoringRect.TranslateY(nav_scoring_rect_offset_y);
g.NavScoringRect.Min.x = ImMin(g.NavScoringRect.Min.x + 1.0f, g.NavScoringRect.Max.x);
g.NavScoringRect.Max.x = g.NavScoringRect.Min.x;
IM_ASSERT(!g.NavScoringRect.IsInverted()); // Ensure if we have a finite, non-inverted bounding box here will allows us to remove extraneous ImFabs() calls in NavScoreItem().
//GetForegroundDrawList()->AddRect(g.NavScoringRectScreen.Min, g.NavScoringRectScreen.Max, IM_COL32(255,200,0,255)); // [DEBUG]
g.NavScoringCount = 0;
#if IMGUI_DEBUG_NAV_RECTS
if (g.NavWindow)
{
ImDrawList* draw_list = GetForegroundDrawList(g.NavWindow);
if (1) { for (int layer = 0; layer < 2; layer++) draw_list->AddRect(g.NavWindow->Pos + g.NavWindow->NavRectRel[layer].Min, g.NavWindow->Pos + g.NavWindow->NavRectRel[layer].Max, IM_COL32(255,200,0,255)); } // [DEBUG]
if (1) { ImU32 col = (!g.NavWindow->Hidden) ? IM_COL32(255,0,255,255) : IM_COL32(255,0,0,255); ImVec2 p = NavCalcPreferredRefPos(); char buf[32]; ImFormatString(buf, 32, "%d", g.NavLayer); draw_list->AddCircleFilled(p, 3.0f, col); draw_list->AddText(NULL, 13.0f, p + ImVec2(8,-4), col, buf); }
}
#endif
}
static void ImGui::NavUpdateInitResult()
{
// In very rare cases g.NavWindow may be null (e.g. clearing focus after requesting an init request, which does happen when releasing Alt while clicking on void)
ImGuiContext& g = *GImGui;
if (!g.NavWindow)
return;
// Apply result from previous navigation init request (will typically select the first item, unless SetItemDefaultFocus() has been called)
// FIXME-NAV: On _NavFlattened windows, g.NavWindow will only be updated during subsequent frame. Not a problem currently.
IMGUI_DEBUG_LOG_NAV("[nav] NavInitRequest: result NavID 0x%08X in Layer %d Window \"%s\"\n", g.NavInitResultId, g.NavLayer, g.NavWindow->Name);
SetNavID(g.NavInitResultId, g.NavLayer, 0, g.NavInitResultRectRel);
if (g.NavInitRequestFromMove)
{
g.NavDisableHighlight = false;
g.NavDisableMouseHover = g.NavMousePosDirty = true;
}
}
// Apply result from previous frame navigation directional move request
static void ImGui::NavUpdateMoveResult()
{
ImGuiContext& g = *GImGui;
if (g.NavMoveResultLocal.ID == 0 && g.NavMoveResultOther.ID == 0)
{
// In a situation when there is no results but NavId != 0, re-enable the Navigation highlight (because g.NavId is not considered as a possible result)
if (g.NavId != 0)
{
g.NavDisableHighlight = false;
g.NavDisableMouseHover = true;
}
return;
}
// Select which result to use
ImGuiNavItemData* result = (g.NavMoveResultLocal.ID != 0) ? &g.NavMoveResultLocal : &g.NavMoveResultOther;
// PageUp/PageDown behavior first jumps to the bottom/top mostly visible item, _otherwise_ use the result from the previous/next page.
if (g.NavMoveRequestFlags & ImGuiNavMoveFlags_AlsoScoreVisibleSet)
if (g.NavMoveResultLocalVisibleSet.ID != 0 && g.NavMoveResultLocalVisibleSet.ID != g.NavId)
result = &g.NavMoveResultLocalVisibleSet;
// Maybe entering a flattened child from the outside? In this case solve the tie using the regular scoring rules.
if (result != &g.NavMoveResultOther && g.NavMoveResultOther.ID != 0 && g.NavMoveResultOther.Window->ParentWindow == g.NavWindow)
if ((g.NavMoveResultOther.DistBox < result->DistBox) || (g.NavMoveResultOther.DistBox == result->DistBox && g.NavMoveResultOther.DistCenter < result->DistCenter))
result = &g.NavMoveResultOther;
IM_ASSERT(g.NavWindow && result->Window);
// Scroll to keep newly navigated item fully into view.
if (g.NavLayer == ImGuiNavLayer_Main)
{
ImVec2 delta_scroll;
if (g.NavMoveRequestFlags & ImGuiNavMoveFlags_ScrollToEdge)
{
float scroll_target = (g.NavMoveDir == ImGuiDir_Up) ? result->Window->ScrollMax.y : 0.0f;
delta_scroll.y = result->Window->Scroll.y - scroll_target;
SetScrollY(result->Window, scroll_target);
}
else
{
ImRect rect_abs = ImRect(result->RectRel.Min + result->Window->Pos, result->RectRel.Max + result->Window->Pos);
delta_scroll = ScrollToBringRectIntoView(result->Window, rect_abs);
}
// Offset our result position so mouse position can be applied immediately after in NavUpdate()
result->RectRel.TranslateX(-delta_scroll.x);
result->RectRel.TranslateY(-delta_scroll.y);
}
ClearActiveID();
g.NavWindow = result->Window;
if (g.NavId != result->ID)
{
// Don't set NavJustMovedToId if just landed on the same spot (which may happen with ImGuiNavMoveFlags_AllowCurrentNavId)
g.NavJustMovedToId = result->ID;
g.NavJustMovedToFocusScopeId = result->FocusScopeId;
g.NavJustMovedToKeyMods = g.NavMoveRequestKeyMods;
}
IMGUI_DEBUG_LOG_NAV("[nav] NavMoveRequest: result NavID 0x%08X in Layer %d Window \"%s\"\n", result->ID, g.NavLayer, g.NavWindow->Name);
SetNavID(result->ID, g.NavLayer, result->FocusScopeId, result->RectRel);
g.NavDisableHighlight = false;
g.NavDisableMouseHover = g.NavMousePosDirty = true;
}
// Handle PageUp/PageDown/Home/End keys
static float ImGui::NavUpdatePageUpPageDown()
{
ImGuiContext& g = *GImGui;
ImGuiIO& io = g.IO;
if (g.NavMoveDir != ImGuiDir_None || g.NavWindow == NULL)
return 0.0f;
if ((g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs) || g.NavWindowingTarget != NULL || g.NavLayer != ImGuiNavLayer_Main)
return 0.0f;
ImGuiWindow* window = g.NavWindow;
const bool page_up_held = IsKeyDown(io.KeyMap[ImGuiKey_PageUp]) && !IsActiveIdUsingKey(ImGuiKey_PageUp);
const bool page_down_held = IsKeyDown(io.KeyMap[ImGuiKey_PageDown]) && !IsActiveIdUsingKey(ImGuiKey_PageDown);
const bool home_pressed = IsKeyPressed(io.KeyMap[ImGuiKey_Home]) && !IsActiveIdUsingKey(ImGuiKey_Home);
const bool end_pressed = IsKeyPressed(io.KeyMap[ImGuiKey_End]) && !IsActiveIdUsingKey(ImGuiKey_End);
if (page_up_held != page_down_held || home_pressed != end_pressed) // If either (not both) are pressed
{
if (window->DC.NavLayersActiveMask == 0x00 && window->DC.NavHasScroll)
{
// Fallback manual-scroll when window has no navigable item
if (IsKeyPressed(io.KeyMap[ImGuiKey_PageUp], true))
SetScrollY(window, window->Scroll.y - window->InnerRect.GetHeight());
else if (IsKeyPressed(io.KeyMap[ImGuiKey_PageDown], true))
SetScrollY(window, window->Scroll.y + window->InnerRect.GetHeight());
else if (home_pressed)
SetScrollY(window, 0.0f);
else if (end_pressed)
SetScrollY(window, window->ScrollMax.y);
}
else
{
ImRect& nav_rect_rel = window->NavRectRel[g.NavLayer];
const float page_offset_y = ImMax(0.0f, window->InnerRect.GetHeight() - window->CalcFontSize() * 1.0f + nav_rect_rel.GetHeight());
float nav_scoring_rect_offset_y = 0.0f;
if (IsKeyPressed(io.KeyMap[ImGuiKey_PageUp], true))
{
nav_scoring_rect_offset_y = -page_offset_y;
g.NavMoveDir = ImGuiDir_Down; // Because our scoring rect is offset up, we request the down direction (so we can always land on the last item)
g.NavMoveClipDir = ImGuiDir_Up;
g.NavMoveRequestFlags = ImGuiNavMoveFlags_AllowCurrentNavId | ImGuiNavMoveFlags_AlsoScoreVisibleSet;
}
else if (IsKeyPressed(io.KeyMap[ImGuiKey_PageDown], true))
{
nav_scoring_rect_offset_y = +page_offset_y;
g.NavMoveDir = ImGuiDir_Up; // Because our scoring rect is offset down, we request the up direction (so we can always land on the last item)
g.NavMoveClipDir = ImGuiDir_Down;
g.NavMoveRequestFlags = ImGuiNavMoveFlags_AllowCurrentNavId | ImGuiNavMoveFlags_AlsoScoreVisibleSet;
}
else if (home_pressed)
{
// FIXME-NAV: handling of Home/End is assuming that the top/bottom most item will be visible with Scroll.y == 0/ScrollMax.y
// Scrolling will be handled via the ImGuiNavMoveFlags_ScrollToEdge flag, we don't scroll immediately to avoid scrolling happening before nav result.
// Preserve current horizontal position if we have any.
nav_rect_rel.Min.y = nav_rect_rel.Max.y = -window->Scroll.y;
if (nav_rect_rel.IsInverted())
nav_rect_rel.Min.x = nav_rect_rel.Max.x = 0.0f;
g.NavMoveDir = ImGuiDir_Down;
g.NavMoveRequestFlags = ImGuiNavMoveFlags_AllowCurrentNavId | ImGuiNavMoveFlags_ScrollToEdge;
}
else if (end_pressed)
{
nav_rect_rel.Min.y = nav_rect_rel.Max.y = window->ScrollMax.y + window->SizeFull.y - window->Scroll.y;
if (nav_rect_rel.IsInverted())
nav_rect_rel.Min.x = nav_rect_rel.Max.x = 0.0f;
g.NavMoveDir = ImGuiDir_Up;
g.NavMoveRequestFlags = ImGuiNavMoveFlags_AllowCurrentNavId | ImGuiNavMoveFlags_ScrollToEdge;
}
return nav_scoring_rect_offset_y;
}
}
return 0.0f;
}
static void ImGui::NavEndFrame()
{
ImGuiContext& g = *GImGui;
// Show CTRL+TAB list window
if (g.NavWindowingTarget != NULL)
NavUpdateWindowingOverlay();
// Perform wrap-around in menus
ImGuiWindow* window = g.NavWrapRequestWindow;
ImGuiNavMoveFlags move_flags = g.NavWrapRequestFlags;
if (window != NULL && g.NavWindow == window && NavMoveRequestButNoResultYet() && g.NavMoveRequestForward == ImGuiNavForward_None && g.NavLayer == ImGuiNavLayer_Main)
{
IM_ASSERT(move_flags != 0); // No points calling this with no wrapping
ImRect bb_rel = window->NavRectRel[0];
ImGuiDir clip_dir = g.NavMoveDir;
if (g.NavMoveDir == ImGuiDir_Left && (move_flags & (ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_LoopX)))
{
bb_rel.Min.x = bb_rel.Max.x =
ImMax(window->SizeFull.x, window->ContentSize.x + window->WindowPadding.x * 2.0f) - window->Scroll.x;
if (move_flags & ImGuiNavMoveFlags_WrapX)
{
bb_rel.TranslateY(-bb_rel.GetHeight());
clip_dir = ImGuiDir_Up;
}
NavMoveRequestForward(g.NavMoveDir, clip_dir, bb_rel, move_flags);
}
if (g.NavMoveDir == ImGuiDir_Right && (move_flags & (ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_LoopX)))
{
bb_rel.Min.x = bb_rel.Max.x = -window->Scroll.x;
if (move_flags & ImGuiNavMoveFlags_WrapX)
{
bb_rel.TranslateY(+bb_rel.GetHeight());
clip_dir = ImGuiDir_Down;
}
NavMoveRequestForward(g.NavMoveDir, clip_dir, bb_rel, move_flags);
}
if (g.NavMoveDir == ImGuiDir_Up && (move_flags & (ImGuiNavMoveFlags_WrapY | ImGuiNavMoveFlags_LoopY)))
{
bb_rel.Min.y = bb_rel.Max.y =
ImMax(window->SizeFull.y, window->ContentSize.y + window->WindowPadding.y * 2.0f) - window->Scroll.y;
if (move_flags & ImGuiNavMoveFlags_WrapY)
{
bb_rel.TranslateX(-bb_rel.GetWidth());
clip_dir = ImGuiDir_Left;
}
NavMoveRequestForward(g.NavMoveDir, clip_dir, bb_rel, move_flags);
}
if (g.NavMoveDir == ImGuiDir_Down && (move_flags & (ImGuiNavMoveFlags_WrapY | ImGuiNavMoveFlags_LoopY)))
{
bb_rel.Min.y = bb_rel.Max.y = -window->Scroll.y;
if (move_flags & ImGuiNavMoveFlags_WrapY)
{
bb_rel.TranslateX(+bb_rel.GetWidth());
clip_dir = ImGuiDir_Right;
}
NavMoveRequestForward(g.NavMoveDir, clip_dir, bb_rel, move_flags);
}
}
}
static int ImGui::FindWindowFocusIndex(ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
IM_UNUSED(g);
int order = window->FocusOrder;
IM_ASSERT(g.WindowsFocusOrder[order] == window);
return order;
}
static ImGuiWindow* FindWindowNavFocusable(int i_start, int i_stop, int dir) // FIXME-OPT O(N)
{
ImGuiContext& g = *GImGui;
for (int i = i_start; i >= 0 && i < g.WindowsFocusOrder.Size && i != i_stop; i += dir)
if (ImGui::IsWindowNavFocusable(g.WindowsFocusOrder[i]))
return g.WindowsFocusOrder[i];
return NULL;
}
static void NavUpdateWindowingHighlightWindow(int focus_change_dir)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(g.NavWindowingTarget);
if (g.NavWindowingTarget->Flags & ImGuiWindowFlags_Modal)
return;
const int i_current = ImGui::FindWindowFocusIndex(g.NavWindowingTarget);
ImGuiWindow* window_target = FindWindowNavFocusable(i_current + focus_change_dir, -INT_MAX, focus_change_dir);
if (!window_target)
window_target = FindWindowNavFocusable((focus_change_dir < 0) ? (g.WindowsFocusOrder.Size - 1) : 0, i_current, focus_change_dir);
if (window_target) // Don't reset windowing target if there's a single window in the list
g.NavWindowingTarget = g.NavWindowingTargetAnim = window_target;
g.NavWindowingToggleLayer = false;
}
// Windowing management mode
// Keyboard: CTRL+Tab (change focus/move/resize), Alt (toggle menu layer)
// Gamepad: Hold Menu/Square (change focus/move/resize), Tap Menu/Square (toggle menu layer)
static void ImGui::NavUpdateWindowing()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* apply_focus_window = NULL;
bool apply_toggle_layer = false;
ImGuiWindow* modal_window = GetTopMostPopupModal();
bool allow_windowing = (modal_window == NULL);
if (!allow_windowing)
g.NavWindowingTarget = NULL;
// Fade out
if (g.NavWindowingTargetAnim && g.NavWindowingTarget == NULL)
{
g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha - g.IO.DeltaTime * 10.0f, 0.0f);
if (g.DimBgRatio <= 0.0f && g.NavWindowingHighlightAlpha <= 0.0f)
g.NavWindowingTargetAnim = NULL;
}
// Start CTRL-TAB or Square+L/R window selection
bool start_windowing_with_gamepad = allow_windowing && !g.NavWindowingTarget && IsNavInputTest(ImGuiNavInput_Menu, ImGuiInputReadMode_Pressed);
bool start_windowing_with_keyboard = allow_windowing && !g.NavWindowingTarget && g.IO.KeyCtrl && IsKeyPressedMap(ImGuiKey_Tab) && (g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard);
if (start_windowing_with_gamepad || start_windowing_with_keyboard)
if (ImGuiWindow* window = g.NavWindow ? g.NavWindow : FindWindowNavFocusable(g.WindowsFocusOrder.Size - 1, -INT_MAX, -1))
{
g.NavWindowingTarget = g.NavWindowingTargetAnim = window->RootWindow; // FIXME-DOCK: Will need to use RootWindowDockStop
g.NavWindowingTimer = g.NavWindowingHighlightAlpha = 0.0f;
g.NavWindowingToggleLayer = start_windowing_with_keyboard ? false : true;
g.NavInputSource = start_windowing_with_keyboard ? ImGuiInputSource_Keyboard : ImGuiInputSource_Gamepad;
}
// Gamepad update
g.NavWindowingTimer += g.IO.DeltaTime;
if (g.NavWindowingTarget && g.NavInputSource == ImGuiInputSource_Gamepad)
{
// Highlight only appears after a brief time holding the button, so that a fast tap on PadMenu (to toggle NavLayer) doesn't add visual noise
g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha, ImSaturate((g.NavWindowingTimer - NAV_WINDOWING_HIGHLIGHT_DELAY) / 0.05f));
// Select window to focus
const int focus_change_dir = (int)IsNavInputTest(ImGuiNavInput_FocusPrev, ImGuiInputReadMode_RepeatSlow) - (int)IsNavInputTest(ImGuiNavInput_FocusNext, ImGuiInputReadMode_RepeatSlow);
if (focus_change_dir != 0)
{
NavUpdateWindowingHighlightWindow(focus_change_dir);
g.NavWindowingHighlightAlpha = 1.0f;
}
// Single press toggles NavLayer, long press with L/R apply actual focus on release (until then the window was merely rendered top-most)
if (!IsNavInputDown(ImGuiNavInput_Menu))
{
g.NavWindowingToggleLayer &= (g.NavWindowingHighlightAlpha < 1.0f); // Once button was held long enough we don't consider it a tap-to-toggle-layer press anymore.
if (g.NavWindowingToggleLayer && g.NavWindow)
apply_toggle_layer = true;
else if (!g.NavWindowingToggleLayer)
apply_focus_window = g.NavWindowingTarget;
g.NavWindowingTarget = NULL;
}
}
// Keyboard: Focus
if (g.NavWindowingTarget && g.NavInputSource == ImGuiInputSource_Keyboard)
{
// Visuals only appears after a brief time after pressing TAB the first time, so that a fast CTRL+TAB doesn't add visual noise
g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha, ImSaturate((g.NavWindowingTimer - NAV_WINDOWING_HIGHLIGHT_DELAY) / 0.05f)); // 1.0f
if (IsKeyPressedMap(ImGuiKey_Tab, true))
NavUpdateWindowingHighlightWindow(g.IO.KeyShift ? +1 : -1);
if (!g.IO.KeyCtrl)
apply_focus_window = g.NavWindowingTarget;
}
// Keyboard: Press and Release ALT to toggle menu layer
// FIXME: We lack an explicit IO variable for "is the imgui window focused", so compare mouse validity to detect the common case of backend clearing releases all keys on ALT-TAB
if (IsNavInputTest(ImGuiNavInput_KeyMenu_, ImGuiInputReadMode_Pressed))
g.NavWindowingToggleLayer = true;
if ((g.ActiveId == 0 || g.ActiveIdAllowOverlap) && g.NavWindowingToggleLayer && IsNavInputTest(ImGuiNavInput_KeyMenu_, ImGuiInputReadMode_Released))
if (IsMousePosValid(&g.IO.MousePos) == IsMousePosValid(&g.IO.MousePosPrev))
apply_toggle_layer = true;
// Move window
if (g.NavWindowingTarget && !(g.NavWindowingTarget->Flags & ImGuiWindowFlags_NoMove))
{
ImVec2 move_delta;
if (g.NavInputSource == ImGuiInputSource_Keyboard && !g.IO.KeyShift)
move_delta = GetNavInputAmount2d(ImGuiNavDirSourceFlags_Keyboard, ImGuiInputReadMode_Down);
if (g.NavInputSource == ImGuiInputSource_Gamepad)
move_delta = GetNavInputAmount2d(ImGuiNavDirSourceFlags_PadLStick, ImGuiInputReadMode_Down);
if (move_delta.x != 0.0f || move_delta.y != 0.0f)
{
const float NAV_MOVE_SPEED = 800.0f;
const float move_speed = ImFloor(NAV_MOVE_SPEED * g.IO.DeltaTime * ImMin(g.IO.DisplayFramebufferScale.x, g.IO.DisplayFramebufferScale.y)); // FIXME: Doesn't handle variable framerate very well
ImGuiWindow* moving_window = g.NavWindowingTarget->RootWindow;
SetWindowPos(moving_window, moving_window->Pos + move_delta * move_speed, ImGuiCond_Always);
MarkIniSettingsDirty(moving_window);
g.NavDisableMouseHover = true;
}
}
// Apply final focus
if (apply_focus_window && (g.NavWindow == NULL || apply_focus_window != g.NavWindow->RootWindow))
{
ClearActiveID();
g.NavDisableHighlight = false;
g.NavDisableMouseHover = true;
apply_focus_window = NavRestoreLastChildNavWindow(apply_focus_window);
ClosePopupsOverWindow(apply_focus_window, false);
FocusWindow(apply_focus_window);
if (apply_focus_window->NavLastIds[0] == 0)
NavInitWindow(apply_focus_window, false);
// If the window has ONLY a menu layer (no main layer), select it directly
// Use NavLayersActiveMaskNext since windows didn't have a chance to be Begin()-ed on this frame,
// so CTRL+Tab where the keys are only held for 1 frame will be able to use correct layers mask since
// the target window as already been previewed once.
// FIXME-NAV: This should be done in NavInit.. or in FocusWindow... However in both of those cases,
// we won't have a guarantee that windows has been visible before and therefore NavLayersActiveMask*
// won't be valid.
if (apply_focus_window->DC.NavLayersActiveMaskNext == (1 << ImGuiNavLayer_Menu))
g.NavLayer = ImGuiNavLayer_Menu;
}
if (apply_focus_window)
g.NavWindowingTarget = NULL;
// Apply menu/layer toggle
if (apply_toggle_layer && g.NavWindow)
{
ClearActiveID();
// Move to parent menu if necessary
ImGuiWindow* new_nav_window = g.NavWindow;
while (new_nav_window->ParentWindow
&& (new_nav_window->DC.NavLayersActiveMask & (1 << ImGuiNavLayer_Menu)) == 0
&& (new_nav_window->Flags & ImGuiWindowFlags_ChildWindow) != 0
&& (new_nav_window->Flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_ChildMenu)) == 0)
new_nav_window = new_nav_window->ParentWindow;
if (new_nav_window != g.NavWindow)
{
ImGuiWindow* old_nav_window = g.NavWindow;
FocusWindow(new_nav_window);
new_nav_window->NavLastChildNavWindow = old_nav_window;
}
g.NavDisableHighlight = false;
g.NavDisableMouseHover = true;
// Reinitialize navigation when entering menu bar with the Alt key.
const ImGuiNavLayer new_nav_layer = (g.NavWindow->DC.NavLayersActiveMask & (1 << ImGuiNavLayer_Menu)) ? (ImGuiNavLayer)((int)g.NavLayer ^ 1) : ImGuiNavLayer_Main;
if (new_nav_layer == ImGuiNavLayer_Menu)
g.NavWindow->NavLastIds[new_nav_layer] = 0;
NavRestoreLayer(new_nav_layer);
}
}
// Window has already passed the IsWindowNavFocusable()
static const char* GetFallbackWindowNameForWindowingList(ImGuiWindow* window)
{
if (window->Flags & ImGuiWindowFlags_Popup)
return "(Popup)";
if ((window->Flags & ImGuiWindowFlags_MenuBar) && strcmp(window->Name, "##MainMenuBar") == 0)
return "(Main menu bar)";
return "(Untitled)";
}
// Overlay displayed when using CTRL+TAB. Called by EndFrame().
void ImGui::NavUpdateWindowingOverlay()
{
ImGuiContext& g = *GImGui;
IM_ASSERT(g.NavWindowingTarget != NULL);
if (g.NavWindowingTimer < NAV_WINDOWING_LIST_APPEAR_DELAY)
return;
if (g.NavWindowingListWindow == NULL)
g.NavWindowingListWindow = FindWindowByName("###NavWindowingList");
const ImGuiViewport* viewport = GetMainViewport();
SetNextWindowSizeConstraints(ImVec2(viewport->Size.x * 0.20f, viewport->Size.y * 0.20f), ImVec2(FLT_MAX, FLT_MAX));
SetNextWindowPos(viewport->GetCenter(), ImGuiCond_Always, ImVec2(0.5f, 0.5f));
PushStyleVar(ImGuiStyleVar_WindowPadding, g.Style.WindowPadding * 2.0f);
Begin("###NavWindowingList", NULL, ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoFocusOnAppearing | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoSavedSettings);
for (int n = g.WindowsFocusOrder.Size - 1; n >= 0; n--)
{
ImGuiWindow* window = g.WindowsFocusOrder[n];
IM_ASSERT(window != NULL); // Fix static analyzers
if (!IsWindowNavFocusable(window))
continue;
const char* label = window->Name;
if (label == FindRenderedTextEnd(label))
label = GetFallbackWindowNameForWindowingList(window);
Selectable(label, g.NavWindowingTarget == window);
}
End();
PopStyleVar();
}
//-----------------------------------------------------------------------------
// [SECTION] DRAG AND DROP
//-----------------------------------------------------------------------------
void ImGui::ClearDragDrop()
{
ImGuiContext& g = *GImGui;
g.DragDropActive = false;
g.DragDropPayload.Clear();
g.DragDropAcceptFlags = ImGuiDragDropFlags_None;
g.DragDropAcceptIdCurr = g.DragDropAcceptIdPrev = 0;
g.DragDropAcceptIdCurrRectSurface = FLT_MAX;
g.DragDropAcceptFrameCount = -1;
g.DragDropPayloadBufHeap.clear();
memset(&g.DragDropPayloadBufLocal, 0, sizeof(g.DragDropPayloadBufLocal));
}
// When this returns true you need to: a) call SetDragDropPayload() exactly once, b) you may render the payload visual/description, c) call EndDragDropSource()
// If the item has an identifier:
// - This assume/require the item to be activated (typically via ButtonBehavior).
// - Therefore if you want to use this with a mouse button other than left mouse button, it is up to the item itself to activate with another button.
// - We then pull and use the mouse button that was used to activate the item and use it to carry on the drag.
// If the item has no identifier:
// - Currently always assume left mouse button.
bool ImGui::BeginDragDropSource(ImGuiDragDropFlags flags)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
// FIXME-DRAGDROP: While in the common-most "drag from non-zero active id" case we can tell the mouse button,
// in both SourceExtern and id==0 cases we may requires something else (explicit flags or some heuristic).
ImGuiMouseButton mouse_button = ImGuiMouseButton_Left;
bool source_drag_active = false;
ImGuiID source_id = 0;
ImGuiID source_parent_id = 0;
if (!(flags & ImGuiDragDropFlags_SourceExtern))
{
source_id = window->DC.LastItemId;
if (source_id != 0)
{
// Common path: items with ID
if (g.ActiveId != source_id)
return false;
if (g.ActiveIdMouseButton != -1)
mouse_button = g.ActiveIdMouseButton;
if (g.IO.MouseDown[mouse_button] == false)
return false;
g.ActiveIdAllowOverlap = false;
}
else
{
// Uncommon path: items without ID
if (g.IO.MouseDown[mouse_button] == false)
return false;
// If you want to use BeginDragDropSource() on an item with no unique identifier for interaction, such as Text() or Image(), you need to:
// A) Read the explanation below, B) Use the ImGuiDragDropFlags_SourceAllowNullID flag, C) Swallow your programmer pride.
if (!(flags & ImGuiDragDropFlags_SourceAllowNullID))
{
IM_ASSERT(0);
return false;
}
// Early out
if ((window->DC.LastItemStatusFlags & ImGuiItemStatusFlags_HoveredRect) == 0 && (g.ActiveId == 0 || g.ActiveIdWindow != window))
return false;
// Magic fallback (=somehow reprehensible) to handle items with no assigned ID, e.g. Text(), Image()
// We build a throwaway ID based on current ID stack + relative AABB of items in window.
// THE IDENTIFIER WON'T SURVIVE ANY REPOSITIONING OF THE WIDGET, so if your widget moves your dragging operation will be canceled.
// We don't need to maintain/call ClearActiveID() as releasing the button will early out this function and trigger !ActiveIdIsAlive.
source_id = window->DC.LastItemId = window->GetIDFromRectangle(window->DC.LastItemRect);
bool is_hovered = ItemHoverable(window->DC.LastItemRect, source_id);
if (is_hovered && g.IO.MouseClicked[mouse_button])
{
SetActiveID(source_id, window);
FocusWindow(window);
}
if (g.ActiveId == source_id) // Allow the underlying widget to display/return hovered during the mouse release frame, else we would get a flicker.
g.ActiveIdAllowOverlap = is_hovered;
}
if (g.ActiveId != source_id)
return false;
source_parent_id = window->IDStack.back();
source_drag_active = IsMouseDragging(mouse_button);
// Disable navigation and key inputs while dragging
g.ActiveIdUsingNavDirMask = ~(ImU32)0;
g.ActiveIdUsingNavInputMask = ~(ImU32)0;
g.ActiveIdUsingKeyInputMask = ~(ImU64)0;
}
else
{
window = NULL;
source_id = ImHashStr("#SourceExtern");
source_drag_active = true;
}
if (source_drag_active)
{
if (!g.DragDropActive)
{
IM_ASSERT(source_id != 0);
ClearDragDrop();
ImGuiPayload& payload = g.DragDropPayload;
payload.SourceId = source_id;
payload.SourceParentId = source_parent_id;
g.DragDropActive = true;
g.DragDropSourceFlags = flags;
g.DragDropMouseButton = mouse_button;
if (payload.SourceId == g.ActiveId)
g.ActiveIdNoClearOnFocusLoss = true;
}
g.DragDropSourceFrameCount = g.FrameCount;
g.DragDropWithinSource = true;
if (!(flags & ImGuiDragDropFlags_SourceNoPreviewTooltip))
{
// Target can request the Source to not display its tooltip (we use a dedicated flag to make this request explicit)
// We unfortunately can't just modify the source flags and skip the call to BeginTooltip, as caller may be emitting contents.
BeginTooltip();
if (g.DragDropAcceptIdPrev && (g.DragDropAcceptFlags & ImGuiDragDropFlags_AcceptNoPreviewTooltip))
{
ImGuiWindow* tooltip_window = g.CurrentWindow;
tooltip_window->SkipItems = true;
tooltip_window->HiddenFramesCanSkipItems = 1;
}
}
if (!(flags & ImGuiDragDropFlags_SourceNoDisableHover) && !(flags & ImGuiDragDropFlags_SourceExtern))
window->DC.LastItemStatusFlags &= ~ImGuiItemStatusFlags_HoveredRect;
return true;
}
return false;
}
void ImGui::EndDragDropSource()
{
ImGuiContext& g = *GImGui;
IM_ASSERT(g.DragDropActive);
IM_ASSERT(g.DragDropWithinSource && "Not after a BeginDragDropSource()?");
if (!(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoPreviewTooltip))
EndTooltip();
// Discard the drag if have not called SetDragDropPayload()
if (g.DragDropPayload.DataFrameCount == -1)
ClearDragDrop();
g.DragDropWithinSource = false;
}
// Use 'cond' to choose to submit payload on drag start or every frame
bool ImGui::SetDragDropPayload(const char* type, const void* data, size_t data_size, ImGuiCond cond)
{
ImGuiContext& g = *GImGui;
ImGuiPayload& payload = g.DragDropPayload;
if (cond == 0)
cond = ImGuiCond_Always;
IM_ASSERT(type != NULL);
IM_ASSERT(strlen(type) < IM_ARRAYSIZE(payload.DataType) && "Payload type can be at most 32 characters long");
IM_ASSERT((data != NULL && data_size > 0) || (data == NULL && data_size == 0));
IM_ASSERT(cond == ImGuiCond_Always || cond == ImGuiCond_Once);
IM_ASSERT(payload.SourceId != 0); // Not called between BeginDragDropSource() and EndDragDropSource()
if (cond == ImGuiCond_Always || payload.DataFrameCount == -1)
{
// Copy payload
ImStrncpy(payload.DataType, type, IM_ARRAYSIZE(payload.DataType));
g.DragDropPayloadBufHeap.resize(0);
if (data_size > sizeof(g.DragDropPayloadBufLocal))
{
// Store in heap
g.DragDropPayloadBufHeap.resize((int)data_size);
payload.Data = g.DragDropPayloadBufHeap.Data;
memcpy(payload.Data, data, data_size);
}
else if (data_size > 0)
{
// Store locally
memset(&g.DragDropPayloadBufLocal, 0, sizeof(g.DragDropPayloadBufLocal));
payload.Data = g.DragDropPayloadBufLocal;
memcpy(payload.Data, data, data_size);
}
else
{
payload.Data = NULL;
}
payload.DataSize = (int)data_size;
}
payload.DataFrameCount = g.FrameCount;
return (g.DragDropAcceptFrameCount == g.FrameCount) || (g.DragDropAcceptFrameCount == g.FrameCount - 1);
}
bool ImGui::BeginDragDropTargetCustom(const ImRect& bb, ImGuiID id)
{
ImGuiContext& g = *GImGui;
if (!g.DragDropActive)
return false;
ImGuiWindow* window = g.CurrentWindow;
ImGuiWindow* hovered_window = g.HoveredWindowUnderMovingWindow;
if (hovered_window == NULL || window->RootWindow != hovered_window->RootWindow)
return false;
IM_ASSERT(id != 0);
if (!IsMouseHoveringRect(bb.Min, bb.Max) || (id == g.DragDropPayload.SourceId))
return false;
if (window->SkipItems)
return false;
IM_ASSERT(g.DragDropWithinTarget == false);
g.DragDropTargetRect = bb;
g.DragDropTargetId = id;
g.DragDropWithinTarget = true;
return true;
}
// We don't use BeginDragDropTargetCustom() and duplicate its code because:
// 1) we use LastItemRectHoveredRect which handles items that pushes a temporarily clip rectangle in their code. Calling BeginDragDropTargetCustom(LastItemRect) would not handle them.
// 2) and it's faster. as this code may be very frequently called, we want to early out as fast as we can.
// Also note how the HoveredWindow test is positioned differently in both functions (in both functions we optimize for the cheapest early out case)
bool ImGui::BeginDragDropTarget()
{
ImGuiContext& g = *GImGui;
if (!g.DragDropActive)
return false;
ImGuiWindow* window = g.CurrentWindow;
if (!(window->DC.LastItemStatusFlags & ImGuiItemStatusFlags_HoveredRect))
return false;
ImGuiWindow* hovered_window = g.HoveredWindowUnderMovingWindow;
if (hovered_window == NULL || window->RootWindow != hovered_window->RootWindow)
return false;
const ImRect& display_rect = (window->DC.LastItemStatusFlags & ImGuiItemStatusFlags_HasDisplayRect) ? window->DC.LastItemDisplayRect : window->DC.LastItemRect;
ImGuiID id = window->DC.LastItemId;
if (id == 0)
id = window->GetIDFromRectangle(display_rect);
if (g.DragDropPayload.SourceId == id)
return false;
IM_ASSERT(g.DragDropWithinTarget == false);
g.DragDropTargetRect = display_rect;
g.DragDropTargetId = id;
g.DragDropWithinTarget = true;
return true;
}
bool ImGui::IsDragDropPayloadBeingAccepted()
{
ImGuiContext& g = *GImGui;
return g.DragDropActive && g.DragDropAcceptIdPrev != 0;
}
const ImGuiPayload* ImGui::AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
ImGuiPayload& payload = g.DragDropPayload;
IM_ASSERT(g.DragDropActive); // Not called between BeginDragDropTarget() and EndDragDropTarget() ?
IM_ASSERT(payload.DataFrameCount != -1); // Forgot to call EndDragDropTarget() ?
if (type != NULL && !payload.IsDataType(type))
return NULL;
// Accept smallest drag target bounding box, this allows us to nest drag targets conveniently without ordering constraints.
// NB: We currently accept NULL id as target. However, overlapping targets requires a unique ID to function!
const bool was_accepted_previously = (g.DragDropAcceptIdPrev == g.DragDropTargetId);
ImRect r = g.DragDropTargetRect;
float r_surface = r.GetWidth() * r.GetHeight();
if (r_surface <= g.DragDropAcceptIdCurrRectSurface)
{
g.DragDropAcceptFlags = flags;
g.DragDropAcceptIdCurr = g.DragDropTargetId;
g.DragDropAcceptIdCurrRectSurface = r_surface;
}
// Render default drop visuals
payload.Preview = was_accepted_previously;
flags |= (g.DragDropSourceFlags & ImGuiDragDropFlags_AcceptNoDrawDefaultRect); // Source can also inhibit the preview (useful for external sources that lives for 1 frame)
if (!(flags & ImGuiDragDropFlags_AcceptNoDrawDefaultRect) && payload.Preview)
{
// FIXME-DRAGDROP: Settle on a proper default visuals for drop target.
r.Expand(3.5f);
bool push_clip_rect = !window->ClipRect.Contains(r);
if (push_clip_rect) window->DrawList->PushClipRect(r.Min - ImVec2(1, 1), r.Max + ImVec2(1, 1));
window->DrawList->AddRect(r.Min, r.Max, GetColorU32(ImGuiCol_DragDropTarget), 0.0f, 0, 2.0f);
if (push_clip_rect) window->DrawList->PopClipRect();
}
g.DragDropAcceptFrameCount = g.FrameCount;
payload.Delivery = was_accepted_previously && !IsMouseDown(g.DragDropMouseButton); // For extern drag sources affecting os window focus, it's easier to just test !IsMouseDown() instead of IsMouseReleased()
if (!payload.Delivery && !(flags & ImGuiDragDropFlags_AcceptBeforeDelivery))
return NULL;
return &payload;
}
const ImGuiPayload* ImGui::GetDragDropPayload()
{
ImGuiContext& g = *GImGui;
return g.DragDropActive ? &g.DragDropPayload : NULL;
}
// We don't really use/need this now, but added it for the sake of consistency and because we might need it later.
void ImGui::EndDragDropTarget()
{
ImGuiContext& g = *GImGui;
IM_ASSERT(g.DragDropActive);
IM_ASSERT(g.DragDropWithinTarget);
g.DragDropWithinTarget = false;
}
//-----------------------------------------------------------------------------
// [SECTION] LOGGING/CAPTURING
//-----------------------------------------------------------------------------
// All text output from the interface can be captured into tty/file/clipboard.
// By default, tree nodes are automatically opened during logging.
//-----------------------------------------------------------------------------
// Pass text data straight to log (without being displayed)
static inline void LogTextV(ImGuiContext& g, const char* fmt, va_list args)
{
if (g.LogFile)
{
g.LogBuffer.Buf.resize(0);
g.LogBuffer.appendfv(fmt, args);
ImFileWrite(g.LogBuffer.c_str(), sizeof(char), (ImU64)g.LogBuffer.size(), g.LogFile);
}
else
{
g.LogBuffer.appendfv(fmt, args);
}
}
void ImGui::LogText(const char* fmt, ...)
{
ImGuiContext& g = *GImGui;
if (!g.LogEnabled)
return;
va_list args;
va_start(args, fmt);
LogTextV(g, fmt, args);
va_end(args);
}
void ImGui::LogTextV(const char* fmt, va_list args)
{
ImGuiContext& g = *GImGui;
if (!g.LogEnabled)
return;
LogTextV(g, fmt, args);
}
// Internal version that takes a position to decide on newline placement and pad items according to their depth.
// We split text into individual lines to add current tree level padding
// FIXME: This code is a little complicated perhaps, considering simplifying the whole system.
void ImGui::LogRenderedText(const ImVec2* ref_pos, const char* text, const char* text_end)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
const char* prefix = g.LogNextPrefix;
const char* suffix = g.LogNextSuffix;
g.LogNextPrefix = g.LogNextSuffix = NULL;
if (!text_end)
text_end = FindRenderedTextEnd(text, text_end);
const bool log_new_line = ref_pos && (ref_pos->y > g.LogLinePosY + g.Style.FramePadding.y + 1);
if (ref_pos)
g.LogLinePosY = ref_pos->y;
if (log_new_line)
{
LogText(IM_NEWLINE);
g.LogLineFirstItem = true;
}
if (prefix)
LogRenderedText(ref_pos, prefix, prefix + strlen(prefix)); // Calculate end ourself to ensure "##" are included here.
// Re-adjust padding if we have popped out of our starting depth
if (g.LogDepthRef > window->DC.TreeDepth)
g.LogDepthRef = window->DC.TreeDepth;
const int tree_depth = (window->DC.TreeDepth - g.LogDepthRef);
const char* text_remaining = text;
for (;;)
{
// Split the string. Each new line (after a '\n') is followed by indentation corresponding to the current depth of our log entry.
// We don't add a trailing \n yet to allow a subsequent item on the same line to be captured.
const char* line_start = text_remaining;
const char* line_end = ImStreolRange(line_start, text_end);
const bool is_last_line = (line_end == text_end);
if (line_start != line_end || !is_last_line)
{
const int line_length = (int)(line_end - line_start);
const int indentation = g.LogLineFirstItem ? tree_depth * 4 : 1;
LogText("%*s%.*s", indentation, "", line_length, line_start);
g.LogLineFirstItem = false;
if (*line_end == '\n')
{
LogText(IM_NEWLINE);
g.LogLineFirstItem = true;
}
}
if (is_last_line)
break;
text_remaining = line_end + 1;
}
if (suffix)
LogRenderedText(ref_pos, suffix, suffix + strlen(suffix));
}
// Start logging/capturing text output
void ImGui::LogBegin(ImGuiLogType type, int auto_open_depth)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
IM_ASSERT(g.LogEnabled == false);
IM_ASSERT(g.LogFile == NULL);
IM_ASSERT(g.LogBuffer.empty());
g.LogEnabled = true;
g.LogType = type;
g.LogNextPrefix = g.LogNextSuffix = NULL;
g.LogDepthRef = window->DC.TreeDepth;
g.LogDepthToExpand = ((auto_open_depth >= 0) ? auto_open_depth : g.LogDepthToExpandDefault);
g.LogLinePosY = FLT_MAX;
g.LogLineFirstItem = true;
}
// Important: doesn't copy underlying data, use carefully (prefix/suffix must be in scope at the time of the next LogRenderedText)
void ImGui::LogSetNextTextDecoration(const char* prefix, const char* suffix)
{
ImGuiContext& g = *GImGui;
g.LogNextPrefix = prefix;
g.LogNextSuffix = suffix;
}
void ImGui::LogToTTY(int auto_open_depth)
{
ImGuiContext& g = *GImGui;
if (g.LogEnabled)
return;
IM_UNUSED(auto_open_depth);
#ifndef IMGUI_DISABLE_TTY_FUNCTIONS
LogBegin(ImGuiLogType_TTY, auto_open_depth);
g.LogFile = stdout;
#endif
}
// Start logging/capturing text output to given file
void ImGui::LogToFile(int auto_open_depth, const char* filename)
{
ImGuiContext& g = *GImGui;
if (g.LogEnabled)
return;
// FIXME: We could probably open the file in text mode "at", however note that clipboard/buffer logging will still
// be subject to outputting OS-incompatible carriage return if within strings the user doesn't use IM_NEWLINE.
// By opening the file in binary mode "ab" we have consistent output everywhere.
if (!filename)
filename = g.IO.LogFilename;
if (!filename || !filename[0])
return;
ImFileHandle f = ImFileOpen(filename, "ab");
if (!f)
{
IM_ASSERT(0);
return;
}
LogBegin(ImGuiLogType_File, auto_open_depth);
g.LogFile = f;
}
// Start logging/capturing text output to clipboard
void ImGui::LogToClipboard(int auto_open_depth)
{
ImGuiContext& g = *GImGui;
if (g.LogEnabled)
return;
LogBegin(ImGuiLogType_Clipboard, auto_open_depth);
}
void ImGui::LogToBuffer(int auto_open_depth)
{
ImGuiContext& g = *GImGui;
if (g.LogEnabled)
return;
LogBegin(ImGuiLogType_Buffer, auto_open_depth);
}
void ImGui::LogFinish()
{
ImGuiContext& g = *GImGui;
if (!g.LogEnabled)
return;
LogText(IM_NEWLINE);
switch (g.LogType)
{
case ImGuiLogType_TTY:
#ifndef IMGUI_DISABLE_TTY_FUNCTIONS
fflush(g.LogFile);
#endif
break;
case ImGuiLogType_File:
ImFileClose(g.LogFile);
break;
case ImGuiLogType_Buffer:
break;
case ImGuiLogType_Clipboard:
if (!g.LogBuffer.empty())
SetClipboardText(g.LogBuffer.begin());
break;
case ImGuiLogType_None:
IM_ASSERT(0);
break;
}
g.LogEnabled = false;
g.LogType = ImGuiLogType_None;
g.LogFile = NULL;
g.LogBuffer.clear();
}
// Helper to display logging buttons
// FIXME-OBSOLETE: We should probably obsolete this and let the user have their own helper (this is one of the oldest function alive!)
void ImGui::LogButtons()
{
ImGuiContext& g = *GImGui;
PushID("LogButtons");
#ifndef IMGUI_DISABLE_TTY_FUNCTIONS
const bool log_to_tty = Button("Log To TTY"); SameLine();
#else
const bool log_to_tty = false;
#endif
const bool log_to_file = Button("Log To File"); SameLine();
const bool log_to_clipboard = Button("Log To Clipboard"); SameLine();
PushAllowKeyboardFocus(false);
SetNextItemWidth(80.0f);
SliderInt("Default Depth", &g.LogDepthToExpandDefault, 0, 9, NULL);
PopAllowKeyboardFocus();
PopID();
// Start logging at the end of the function so that the buttons don't appear in the log
if (log_to_tty)
LogToTTY();
if (log_to_file)
LogToFile();
if (log_to_clipboard)
LogToClipboard();
}
//-----------------------------------------------------------------------------
// [SECTION] SETTINGS
//-----------------------------------------------------------------------------
// - UpdateSettings() [Internal]
// - MarkIniSettingsDirty() [Internal]
// - CreateNewWindowSettings() [Internal]
// - FindWindowSettings() [Internal]
// - FindOrCreateWindowSettings() [Internal]
// - FindSettingsHandler() [Internal]
// - ClearIniSettings() [Internal]
// - LoadIniSettingsFromDisk()
// - LoadIniSettingsFromMemory()
// - SaveIniSettingsToDisk()
// - SaveIniSettingsToMemory()
// - WindowSettingsHandler_***() [Internal]
//-----------------------------------------------------------------------------
// Called by NewFrame()
void ImGui::UpdateSettings()
{
// Load settings on first frame (if not explicitly loaded manually before)
ImGuiContext& g = *GImGui;
if (!g.SettingsLoaded)
{
IM_ASSERT(g.SettingsWindows.empty());
if (g.IO.IniFilename)
LoadIniSettingsFromDisk(g.IO.IniFilename);
g.SettingsLoaded = true;
}
// Save settings (with a delay after the last modification, so we don't spam disk too much)
if (g.SettingsDirtyTimer > 0.0f)
{
g.SettingsDirtyTimer -= g.IO.DeltaTime;
if (g.SettingsDirtyTimer <= 0.0f)
{
if (g.IO.IniFilename != NULL)
SaveIniSettingsToDisk(g.IO.IniFilename);
else
g.IO.WantSaveIniSettings = true; // Let user know they can call SaveIniSettingsToMemory(). user will need to clear io.WantSaveIniSettings themselves.
g.SettingsDirtyTimer = 0.0f;
}
}
}
void ImGui::MarkIniSettingsDirty()
{
ImGuiContext& g = *GImGui;
if (g.SettingsDirtyTimer <= 0.0f)
g.SettingsDirtyTimer = g.IO.IniSavingRate;
}
void ImGui::MarkIniSettingsDirty(ImGuiWindow* window)
{
ImGuiContext& g = *GImGui;
if (!(window->Flags & ImGuiWindowFlags_NoSavedSettings))
if (g.SettingsDirtyTimer <= 0.0f)
g.SettingsDirtyTimer = g.IO.IniSavingRate;
}
ImGuiWindowSettings* ImGui::CreateNewWindowSettings(const char* name)
{
ImGuiContext& g = *GImGui;
#if !IMGUI_DEBUG_INI_SETTINGS
// Skip to the "###" marker if any. We don't skip past to match the behavior of GetID()
// Preserve the full string when IMGUI_DEBUG_INI_SETTINGS is set to make .ini inspection easier.
if (const char* p = strstr(name, "###"))
name = p;
#endif
const size_t name_len = strlen(name);
// Allocate chunk
const size_t chunk_size = sizeof(ImGuiWindowSettings) + name_len + 1;
ImGuiWindowSettings* settings = g.SettingsWindows.alloc_chunk(chunk_size);
IM_PLACEMENT_NEW(settings) ImGuiWindowSettings();
settings->ID = ImHashStr(name, name_len);
memcpy(settings->GetName(), name, name_len + 1); // Store with zero terminator
return settings;
}
ImGuiWindowSettings* ImGui::FindWindowSettings(ImGuiID id)
{
ImGuiContext& g = *GImGui;
for (ImGuiWindowSettings* settings = g.SettingsWindows.begin(); settings != NULL; settings = g.SettingsWindows.next_chunk(settings))
if (settings->ID == id)
return settings;
return NULL;
}
ImGuiWindowSettings* ImGui::FindOrCreateWindowSettings(const char* name)
{
if (ImGuiWindowSettings* settings = FindWindowSettings(ImHashStr(name)))
return settings;
return CreateNewWindowSettings(name);
}
ImGuiSettingsHandler* ImGui::FindSettingsHandler(const char* type_name)
{
ImGuiContext& g = *GImGui;
const ImGuiID type_hash = ImHashStr(type_name);
for (int handler_n = 0; handler_n < g.SettingsHandlers.Size; handler_n++)
if (g.SettingsHandlers[handler_n].TypeHash == type_hash)
return &g.SettingsHandlers[handler_n];
return NULL;
}
void ImGui::ClearIniSettings()
{
ImGuiContext& g = *GImGui;
g.SettingsIniData.clear();
for (int handler_n = 0; handler_n < g.SettingsHandlers.Size; handler_n++)
if (g.SettingsHandlers[handler_n].ClearAllFn)
g.SettingsHandlers[handler_n].ClearAllFn(&g, &g.SettingsHandlers[handler_n]);
}
void ImGui::LoadIniSettingsFromDisk(const char* ini_filename)
{
size_t file_data_size = 0;
char* file_data = (char*)ImFileLoadToMemory(ini_filename, "rb", &file_data_size);
if (!file_data)
return;
LoadIniSettingsFromMemory(file_data, (size_t)file_data_size);
IM_FREE(file_data);
}
// Zero-tolerance, no error reporting, cheap .ini parsing
void ImGui::LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size)
{
ImGuiContext& g = *GImGui;
IM_ASSERT(g.Initialized);
//IM_ASSERT(!g.WithinFrameScope && "Cannot be called between NewFrame() and EndFrame()");
//IM_ASSERT(g.SettingsLoaded == false && g.FrameCount == 0);
// For user convenience, we allow passing a non zero-terminated string (hence the ini_size parameter).
// For our convenience and to make the code simpler, we'll also write zero-terminators within the buffer. So let's create a writable copy..
if (ini_size == 0)
ini_size = strlen(ini_data);
g.SettingsIniData.Buf.resize((int)ini_size + 1);
char* const buf = g.SettingsIniData.Buf.Data;
char* const buf_end = buf + ini_size;
memcpy(buf, ini_data, ini_size);
buf_end[0] = 0;
// Call pre-read handlers
// Some types will clear their data (e.g. dock information) some types will allow merge/override (window)
for (int handler_n = 0; handler_n < g.SettingsHandlers.Size; handler_n++)
if (g.SettingsHandlers[handler_n].ReadInitFn)
g.SettingsHandlers[handler_n].ReadInitFn(&g, &g.SettingsHandlers[handler_n]);
void* entry_data = NULL;
ImGuiSettingsHandler* entry_handler = NULL;
char* line_end = NULL;
for (char* line = buf; line < buf_end; line = line_end + 1)
{
// Skip new lines markers, then find end of the line
while (*line == '\n' || *line == '\r')
line++;
line_end = line;
while (line_end < buf_end && *line_end != '\n' && *line_end != '\r')
line_end++;
line_end[0] = 0;
if (line[0] == ';')
continue;
if (line[0] == '[' && line_end > line && line_end[-1] == ']')
{
// Parse "[Type][Name]". Note that 'Name' can itself contains [] characters, which is acceptable with the current format and parsing code.
line_end[-1] = 0;
const char* name_end = line_end - 1;
const char* type_start = line + 1;
char* type_end = (char*)(void*)ImStrchrRange(type_start, name_end, ']');
const char* name_start = type_end ? ImStrchrRange(type_end + 1, name_end, '[') : NULL;
if (!type_end || !name_start)
continue;
*type_end = 0; // Overwrite first ']'
name_start++; // Skip second '['
entry_handler = FindSettingsHandler(type_start);
entry_data = entry_handler ? entry_handler->ReadOpenFn(&g, entry_handler, name_start) : NULL;
}
else if (entry_handler != NULL && entry_data != NULL)
{
// Let type handler parse the line
entry_handler->ReadLineFn(&g, entry_handler, entry_data, line);
}
}
g.SettingsLoaded = true;
// [DEBUG] Restore untouched copy so it can be browsed in Metrics (not strictly necessary)
memcpy(buf, ini_data, ini_size);
// Call post-read handlers
for (int handler_n = 0; handler_n < g.SettingsHandlers.Size; handler_n++)
if (g.SettingsHandlers[handler_n].ApplyAllFn)
g.SettingsHandlers[handler_n].ApplyAllFn(&g, &g.SettingsHandlers[handler_n]);
}
void ImGui::SaveIniSettingsToDisk(const char* ini_filename)
{
ImGuiContext& g = *GImGui;
g.SettingsDirtyTimer = 0.0f;
if (!ini_filename)
return;
size_t ini_data_size = 0;
const char* ini_data = SaveIniSettingsToMemory(&ini_data_size);
ImFileHandle f = ImFileOpen(ini_filename, "wt");
if (!f)
return;
ImFileWrite(ini_data, sizeof(char), ini_data_size, f);
ImFileClose(f);
}
// Call registered handlers (e.g. SettingsHandlerWindow_WriteAll() + custom handlers) to write their stuff into a text buffer
const char* ImGui::SaveIniSettingsToMemory(size_t* out_size)
{
ImGuiContext& g = *GImGui;
g.SettingsDirtyTimer = 0.0f;
g.SettingsIniData.Buf.resize(0);
g.SettingsIniData.Buf.push_back(0);
for (int handler_n = 0; handler_n < g.SettingsHandlers.Size; handler_n++)
{
ImGuiSettingsHandler* handler = &g.SettingsHandlers[handler_n];
handler->WriteAllFn(&g, handler, &g.SettingsIniData);
}
if (out_size)
*out_size = (size_t)g.SettingsIniData.size();
return g.SettingsIniData.c_str();
}
static void WindowSettingsHandler_ClearAll(ImGuiContext* ctx, ImGuiSettingsHandler*)
{
ImGuiContext& g = *ctx;
for (int i = 0; i != g.Windows.Size; i++)
g.Windows[i]->SettingsOffset = -1;
g.SettingsWindows.clear();
}
static void* WindowSettingsHandler_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* name)
{
ImGuiWindowSettings* settings = ImGui::FindOrCreateWindowSettings(name);
ImGuiID id = settings->ID;
*settings = ImGuiWindowSettings(); // Clear existing if recycling previous entry
settings->ID = id;
settings->WantApply = true;
return (void*)settings;
}
static void WindowSettingsHandler_ReadLine(ImGuiContext*, ImGuiSettingsHandler*, void* entry, const char* line)
{
ImGuiWindowSettings* settings = (ImGuiWindowSettings*)entry;
int x, y;
int i;
if (sscanf(line, "Pos=%i,%i", &x, &y) == 2) { settings->Pos = ImVec2ih((short)x, (short)y); }
else if (sscanf(line, "Size=%i,%i", &x, &y) == 2) { settings->Size = ImVec2ih((short)x, (short)y); }
else if (sscanf(line, "Collapsed=%d", &i) == 1) { settings->Collapsed = (i != 0); }
}
// Apply to existing windows (if any)
static void WindowSettingsHandler_ApplyAll(ImGuiContext* ctx, ImGuiSettingsHandler*)
{
ImGuiContext& g = *ctx;
for (ImGuiWindowSettings* settings = g.SettingsWindows.begin(); settings != NULL; settings = g.SettingsWindows.next_chunk(settings))
if (settings->WantApply)
{
if (ImGuiWindow* window = ImGui::FindWindowByID(settings->ID))
ApplyWindowSettings(window, settings);
settings->WantApply = false;
}
}
static void WindowSettingsHandler_WriteAll(ImGuiContext* ctx, ImGuiSettingsHandler* handler, ImGuiTextBuffer* buf)
{
// Gather data from windows that were active during this session
// (if a window wasn't opened in this session we preserve its settings)
ImGuiContext& g = *ctx;
for (int i = 0; i != g.Windows.Size; i++)
{
ImGuiWindow* window = g.Windows[i];
if (window->Flags & ImGuiWindowFlags_NoSavedSettings)
continue;
ImGuiWindowSettings* settings = (window->SettingsOffset != -1) ? g.SettingsWindows.ptr_from_offset(window->SettingsOffset) : ImGui::FindWindowSettings(window->ID);
if (!settings)
{
settings = ImGui::CreateNewWindowSettings(window->Name);
window->SettingsOffset = g.SettingsWindows.offset_from_ptr(settings);
}
IM_ASSERT(settings->ID == window->ID);
settings->Pos = ImVec2ih((short)window->Pos.x, (short)window->Pos.y);
settings->Size = ImVec2ih((short)window->SizeFull.x, (short)window->SizeFull.y);
settings->Collapsed = window->Collapsed;
}
// Write to text buffer
buf->reserve(buf->size() + g.SettingsWindows.size() * 6); // ballpark reserve
for (ImGuiWindowSettings* settings = g.SettingsWindows.begin(); settings != NULL; settings = g.SettingsWindows.next_chunk(settings))
{
const char* settings_name = settings->GetName();
buf->appendf("[%s][%s]\n", handler->TypeName, settings_name);
buf->appendf("Pos=%d,%d\n", settings->Pos.x, settings->Pos.y);
buf->appendf("Size=%d,%d\n", settings->Size.x, settings->Size.y);
buf->appendf("Collapsed=%d\n", settings->Collapsed);
buf->append("\n");
}
}
//-----------------------------------------------------------------------------
// [SECTION] VIEWPORTS, PLATFORM WINDOWS
//-----------------------------------------------------------------------------
// - GetMainViewport()
// - UpdateViewportsNewFrame() [Internal]
// (this section is more complete in the 'docking' branch)
//-----------------------------------------------------------------------------
ImGuiViewport* ImGui::GetMainViewport()
{
ImGuiContext& g = *GImGui;
return g.Viewports[0];
}
// Update viewports and monitor infos
static void ImGui::UpdateViewportsNewFrame()
{
ImGuiContext& g = *GImGui;
IM_ASSERT(g.Viewports.Size == 1);
// Update main viewport with current platform position.
// FIXME-VIEWPORT: Size is driven by backend/user code for backward-compatibility but we should aim to make this more consistent.
ImGuiViewportP* main_viewport = g.Viewports[0];
main_viewport->Flags = ImGuiViewportFlags_IsPlatformWindow | ImGuiViewportFlags_OwnedByApp;
main_viewport->Pos = ImVec2(0.0f, 0.0f);
main_viewport->Size = g.IO.DisplaySize;
for (int n = 0; n < g.Viewports.Size; n++)
{
ImGuiViewportP* viewport = g.Viewports[n];
// Lock down space taken by menu bars and status bars, reset the offset for fucntions like BeginMainMenuBar() to alter them again.
viewport->WorkOffsetMin = viewport->BuildWorkOffsetMin;
viewport->WorkOffsetMax = viewport->BuildWorkOffsetMax;
viewport->BuildWorkOffsetMin = viewport->BuildWorkOffsetMax = ImVec2(0.0f, 0.0f);
viewport->UpdateWorkRect();
}
}
//-----------------------------------------------------------------------------
// [SECTION] DOCKING
//-----------------------------------------------------------------------------
// (this section is filled in the 'docking' branch)
//-----------------------------------------------------------------------------
// [SECTION] PLATFORM DEPENDENT HELPERS
//-----------------------------------------------------------------------------
#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS)
#ifdef _MSC_VER
#pragma comment(lib, "user32")
#pragma comment(lib, "kernel32")
#endif
// Win32 clipboard implementation
// We use g.ClipboardHandlerData for temporary storage to ensure it is freed on Shutdown()
static const char* GetClipboardTextFn_DefaultImpl(void*)
{
ImGuiContext& g = *GImGui;
g.ClipboardHandlerData.clear();
if (!::OpenClipboard(NULL))
return NULL;
HANDLE wbuf_handle = ::GetClipboardData(CF_UNICODETEXT);
if (wbuf_handle == NULL)
{
::CloseClipboard();
return NULL;
}
if (const WCHAR* wbuf_global = (const WCHAR*)::GlobalLock(wbuf_handle))
{
int buf_len = ::WideCharToMultiByte(CP_UTF8, 0, wbuf_global, -1, NULL, 0, NULL, NULL);
g.ClipboardHandlerData.resize(buf_len);
::WideCharToMultiByte(CP_UTF8, 0, wbuf_global, -1, g.ClipboardHandlerData.Data, buf_len, NULL, NULL);
}
::GlobalUnlock(wbuf_handle);
::CloseClipboard();
return g.ClipboardHandlerData.Data;
}
static void SetClipboardTextFn_DefaultImpl(void*, const char* text)
{
if (!::OpenClipboard(NULL))
return;
const int wbuf_length = ::MultiByteToWideChar(CP_UTF8, 0, text, -1, NULL, 0);
HGLOBAL wbuf_handle = ::GlobalAlloc(GMEM_MOVEABLE, (SIZE_T)wbuf_length * sizeof(WCHAR));
if (wbuf_handle == NULL)
{
::CloseClipboard();
return;
}
WCHAR* wbuf_global = (WCHAR*)::GlobalLock(wbuf_handle);
::MultiByteToWideChar(CP_UTF8, 0, text, -1, wbuf_global, wbuf_length);
::GlobalUnlock(wbuf_handle);
::EmptyClipboard();
if (::SetClipboardData(CF_UNICODETEXT, wbuf_handle) == NULL)
::GlobalFree(wbuf_handle);
::CloseClipboard();
}
#elif defined(__APPLE__) && TARGET_OS_OSX && defined(IMGUI_ENABLE_OSX_DEFAULT_CLIPBOARD_FUNCTIONS)
#include <Carbon/Carbon.h> // Use old API to avoid need for separate .mm file
static PasteboardRef main_clipboard = 0;
// OSX clipboard implementation
// If you enable this you will need to add '-framework ApplicationServices' to your linker command-line!
static void SetClipboardTextFn_DefaultImpl(void*, const char* text)
{
if (!main_clipboard)
PasteboardCreate(kPasteboardClipboard, &main_clipboard);
PasteboardClear(main_clipboard);
CFDataRef cf_data = CFDataCreate(kCFAllocatorDefault, (const UInt8*)text, strlen(text));
if (cf_data)
{
PasteboardPutItemFlavor(main_clipboard, (PasteboardItemID)1, CFSTR("public.utf8-plain-text"), cf_data, 0);
CFRelease(cf_data);
}
}
static const char* GetClipboardTextFn_DefaultImpl(void*)
{
if (!main_clipboard)
PasteboardCreate(kPasteboardClipboard, &main_clipboard);
PasteboardSynchronize(main_clipboard);
ItemCount item_count = 0;
PasteboardGetItemCount(main_clipboard, &item_count);
for (ItemCount i = 0; i < item_count; i++)
{
PasteboardItemID item_id = 0;
PasteboardGetItemIdentifier(main_clipboard, i + 1, &item_id);
CFArrayRef flavor_type_array = 0;
PasteboardCopyItemFlavors(main_clipboard, item_id, &flavor_type_array);
for (CFIndex j = 0, nj = CFArrayGetCount(flavor_type_array); j < nj; j++)
{
CFDataRef cf_data;
if (PasteboardCopyItemFlavorData(main_clipboard, item_id, CFSTR("public.utf8-plain-text"), &cf_data) == noErr)
{
ImGuiContext& g = *GImGui;
g.ClipboardHandlerData.clear();
int length = (int)CFDataGetLength(cf_data);
g.ClipboardHandlerData.resize(length + 1);
CFDataGetBytes(cf_data, CFRangeMake(0, length), (UInt8*)g.ClipboardHandlerData.Data);
g.ClipboardHandlerData[length] = 0;
CFRelease(cf_data);
return g.ClipboardHandlerData.Data;
}
}
}
return NULL;
}
#else
// Local Dear ImGui-only clipboard implementation, if user hasn't defined better clipboard handlers.
static const char* GetClipboardTextFn_DefaultImpl(void*)
{
ImGuiContext& g = *GImGui;
return g.ClipboardHandlerData.empty() ? NULL : g.ClipboardHandlerData.begin();
}
static void SetClipboardTextFn_DefaultImpl(void*, const char* text)
{
ImGuiContext& g = *GImGui;
g.ClipboardHandlerData.clear();
const char* text_end = text + strlen(text);
g.ClipboardHandlerData.resize((int)(text_end - text) + 1);
memcpy(&g.ClipboardHandlerData[0], text, (size_t)(text_end - text));
g.ClipboardHandlerData[(int)(text_end - text)] = 0;
}
#endif
// Win32 API IME support (for Asian languages, etc.)
#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS)
#include <imm.h>
#ifdef _MSC_VER
#pragma comment(lib, "imm32")
#endif
static void ImeSetInputScreenPosFn_DefaultImpl(int x, int y)
{
// Notify OS Input Method Editor of text input position
ImGuiIO& io = ImGui::GetIO();
if (HWND hwnd = (HWND)io.ImeWindowHandle)
if (HIMC himc = ::ImmGetContext(hwnd))
{
COMPOSITIONFORM cf;
cf.ptCurrentPos.x = x;
cf.ptCurrentPos.y = y;
cf.dwStyle = CFS_FORCE_POSITION;
::ImmSetCompositionWindow(himc, &cf);
::ImmReleaseContext(hwnd, himc);
}
}
#else
static void ImeSetInputScreenPosFn_DefaultImpl(int, int) {}
#endif
//-----------------------------------------------------------------------------
// [SECTION] METRICS/DEBUGGER WINDOW
//-----------------------------------------------------------------------------
// - RenderViewportThumbnail() [Internal]
// - RenderViewportsThumbnails() [Internal]
// - MetricsHelpMarker() [Internal]
// - ShowMetricsWindow()
// - DebugNodeColumns() [Internal]
// - DebugNodeDrawList() [Internal]
// - DebugNodeDrawCmdShowMeshAndBoundingBox() [Internal]
// - DebugNodeStorage() [Internal]
// - DebugNodeTabBar() [Internal]
// - DebugNodeViewport() [Internal]
// - DebugNodeWindow() [Internal]
// - DebugNodeWindowSettings() [Internal]
// - DebugNodeWindowsList() [Internal]
//-----------------------------------------------------------------------------
#ifndef IMGUI_DISABLE_METRICS_WINDOW
void ImGui::DebugRenderViewportThumbnail(ImDrawList* draw_list, ImGuiViewportP* viewport, const ImRect& bb)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
ImVec2 scale = bb.GetSize() / viewport->Size;
ImVec2 off = bb.Min - viewport->Pos * scale;
float alpha_mul = 1.0f;
window->DrawList->AddRectFilled(bb.Min, bb.Max, GetColorU32(ImGuiCol_Border, alpha_mul * 0.40f));
for (int i = 0; i != g.Windows.Size; i++)
{
ImGuiWindow* thumb_window = g.Windows[i];
if (!thumb_window->WasActive || (thumb_window->Flags & ImGuiWindowFlags_ChildWindow))
continue;
ImRect thumb_r = thumb_window->Rect();
ImRect title_r = thumb_window->TitleBarRect();
thumb_r = ImRect(ImFloor(off + thumb_r.Min * scale), ImFloor(off + thumb_r.Max * scale));
title_r = ImRect(ImFloor(off + title_r.Min * scale), ImFloor(off + ImVec2(title_r.Max.x, title_r.Min.y) * scale) + ImVec2(0,5)); // Exaggerate title bar height
thumb_r.ClipWithFull(bb);
title_r.ClipWithFull(bb);
const bool window_is_focused = (g.NavWindow && thumb_window->RootWindowForTitleBarHighlight == g.NavWindow->RootWindowForTitleBarHighlight);
window->DrawList->AddRectFilled(thumb_r.Min, thumb_r.Max, GetColorU32(ImGuiCol_WindowBg, alpha_mul));
window->DrawList->AddRectFilled(title_r.Min, title_r.Max, GetColorU32(window_is_focused ? ImGuiCol_TitleBgActive : ImGuiCol_TitleBg, alpha_mul));
window->DrawList->AddRect(thumb_r.Min, thumb_r.Max, GetColorU32(ImGuiCol_Border, alpha_mul));
window->DrawList->AddText(g.Font, g.FontSize * 1.0f, title_r.Min, GetColorU32(ImGuiCol_Text, alpha_mul), thumb_window->Name, FindRenderedTextEnd(thumb_window->Name));
}
draw_list->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_Border, alpha_mul));
}
static void RenderViewportsThumbnails()
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
// We don't display full monitor bounds (we could, but it often looks awkward), instead we display just enough to cover all of our viewports.
float SCALE = 1.0f / 8.0f;
ImRect bb_full(FLT_MAX, FLT_MAX, -FLT_MAX, -FLT_MAX);
for (int n = 0; n < g.Viewports.Size; n++)
bb_full.Add(g.Viewports[n]->GetMainRect());
ImVec2 p = window->DC.CursorPos;
ImVec2 off = p - bb_full.Min * SCALE;
for (int n = 0; n < g.Viewports.Size; n++)
{
ImGuiViewportP* viewport = g.Viewports[n];
ImRect viewport_draw_bb(off + (viewport->Pos) * SCALE, off + (viewport->Pos + viewport->Size) * SCALE);
ImGui::DebugRenderViewportThumbnail(window->DrawList, viewport, viewport_draw_bb);
}
ImGui::Dummy(bb_full.GetSize() * SCALE);
}
// Avoid naming collision with imgui_demo.cpp's HelpMarker() for unity builds.
static void MetricsHelpMarker(const char* desc)
{
ImGui::TextDisabled("(?)");
if (ImGui::IsItemHovered())
{
ImGui::BeginTooltip();
ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f);
ImGui::TextUnformatted(desc);
ImGui::PopTextWrapPos();
ImGui::EndTooltip();
}
}
#ifndef IMGUI_DISABLE_DEMO_WINDOWS
namespace ImGui { void ShowFontAtlas(ImFontAtlas* atlas); }
#endif
void ImGui::ShowMetricsWindow(bool* p_open)
{
if (!Begin("Dear ImGui Metrics/Debugger", p_open))
{
End();
return;
}
ImGuiContext& g = *GImGui;
ImGuiIO& io = g.IO;
ImGuiMetricsConfig* cfg = &g.DebugMetricsConfig;
// Basic info
Text("Dear ImGui %s", GetVersion());
Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / io.Framerate, io.Framerate);
Text("%d vertices, %d indices (%d triangles)", io.MetricsRenderVertices, io.MetricsRenderIndices, io.MetricsRenderIndices / 3);
Text("%d active windows (%d visible)", io.MetricsActiveWindows, io.MetricsRenderWindows);
Text("%d active allocations", io.MetricsActiveAllocations);
//SameLine(); if (SmallButton("GC")) { g.GcCompactAll = true; }
Separator();
// Debugging enums
enum { WRT_OuterRect, WRT_OuterRectClipped, WRT_InnerRect, WRT_InnerClipRect, WRT_WorkRect, WRT_Content, WRT_ContentIdeal, WRT_ContentRegionRect, WRT_Count }; // Windows Rect Type
const char* wrt_rects_names[WRT_Count] = { "OuterRect", "OuterRectClipped", "InnerRect", "InnerClipRect", "WorkRect", "Content", "ContentIdeal", "ContentRegionRect" };
enum { TRT_OuterRect, TRT_InnerRect, TRT_WorkRect, TRT_HostClipRect, TRT_InnerClipRect, TRT_BackgroundClipRect, TRT_ColumnsRect, TRT_ColumnsWorkRect, TRT_ColumnsClipRect, TRT_ColumnsContentHeadersUsed, TRT_ColumnsContentHeadersIdeal, TRT_ColumnsContentFrozen, TRT_ColumnsContentUnfrozen, TRT_Count }; // Tables Rect Type
const char* trt_rects_names[TRT_Count] = { "OuterRect", "InnerRect", "WorkRect", "HostClipRect", "InnerClipRect", "BackgroundClipRect", "ColumnsRect", "ColumnsWorkRect", "ColumnsClipRect", "ColumnsContentHeadersUsed", "ColumnsContentHeadersIdeal", "ColumnsContentFrozen", "ColumnsContentUnfrozen" };
if (cfg->ShowWindowsRectsType < 0)
cfg->ShowWindowsRectsType = WRT_WorkRect;
if (cfg->ShowTablesRectsType < 0)
cfg->ShowTablesRectsType = TRT_WorkRect;
struct Funcs
{
static ImRect GetTableRect(ImGuiTable* table, int rect_type, int n)
{
if (rect_type == TRT_OuterRect) { return table->OuterRect; }
else if (rect_type == TRT_InnerRect) { return table->InnerRect; }
else if (rect_type == TRT_WorkRect) { return table->WorkRect; }
else if (rect_type == TRT_HostClipRect) { return table->HostClipRect; }
else if (rect_type == TRT_InnerClipRect) { return table->InnerClipRect; }
else if (rect_type == TRT_BackgroundClipRect) { return table->BgClipRect; }
else if (rect_type == TRT_ColumnsRect) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->MinX, table->InnerClipRect.Min.y, c->MaxX, table->InnerClipRect.Min.y + table->LastOuterHeight); }
else if (rect_type == TRT_ColumnsWorkRect) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->WorkRect.Min.y, c->WorkMaxX, table->WorkRect.Max.y); }
else if (rect_type == TRT_ColumnsClipRect) { ImGuiTableColumn* c = &table->Columns[n]; return c->ClipRect; }
else if (rect_type == TRT_ColumnsContentHeadersUsed){ ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y, c->ContentMaxXHeadersUsed, table->InnerClipRect.Min.y + table->LastFirstRowHeight); } // Note: y1/y2 not always accurate
else if (rect_type == TRT_ColumnsContentHeadersIdeal){ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y, c->ContentMaxXHeadersIdeal, table->InnerClipRect.Min.y + table->LastFirstRowHeight); }
else if (rect_type == TRT_ColumnsContentFrozen) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y, c->ContentMaxXFrozen, table->InnerClipRect.Min.y + table->LastFirstRowHeight); }
else if (rect_type == TRT_ColumnsContentUnfrozen) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y + table->LastFirstRowHeight, c->ContentMaxXUnfrozen, table->InnerClipRect.Max.y); }
IM_ASSERT(0);
return ImRect();
}
static ImRect GetWindowRect(ImGuiWindow* window, int rect_type)
{
if (rect_type == WRT_OuterRect) { return window->Rect(); }
else if (rect_type == WRT_OuterRectClipped) { return window->OuterRectClipped; }
else if (rect_type == WRT_InnerRect) { return window->InnerRect; }
else if (rect_type == WRT_InnerClipRect) { return window->InnerClipRect; }
else if (rect_type == WRT_WorkRect) { return window->WorkRect; }
else if (rect_type == WRT_Content) { ImVec2 min = window->InnerRect.Min - window->Scroll + window->WindowPadding; return ImRect(min, min + window->ContentSize); }
else if (rect_type == WRT_ContentIdeal) { ImVec2 min = window->InnerRect.Min - window->Scroll + window->WindowPadding; return ImRect(min, min + window->ContentSizeIdeal); }
else if (rect_type == WRT_ContentRegionRect) { return window->ContentRegionRect; }
IM_ASSERT(0);
return ImRect();
}
};
// Tools
if (TreeNode("Tools"))
{
// The Item Picker tool is super useful to visually select an item and break into the call-stack of where it was submitted.
if (Button("Item Picker.."))
DebugStartItemPicker();
SameLine();
MetricsHelpMarker("Will call the IM_DEBUG_BREAK() macro to break in debugger.\nWarning: If you don't have a debugger attached, this will probably crash.");
Checkbox("Show windows begin order", &cfg->ShowWindowsBeginOrder);
Checkbox("Show windows rectangles", &cfg->ShowWindowsRects);
SameLine();
SetNextItemWidth(GetFontSize() * 12);
cfg->ShowWindowsRects |= Combo("##show_windows_rect_type", &cfg->ShowWindowsRectsType, wrt_rects_names, WRT_Count, WRT_Count);
if (cfg->ShowWindowsRects && g.NavWindow != NULL)
{
BulletText("'%s':", g.NavWindow->Name);
Indent();
for (int rect_n = 0; rect_n < WRT_Count; rect_n++)
{
ImRect r = Funcs::GetWindowRect(g.NavWindow, rect_n);
Text("(%6.1f,%6.1f) (%6.1f,%6.1f) Size (%6.1f,%6.1f) %s", r.Min.x, r.Min.y, r.Max.x, r.Max.y, r.GetWidth(), r.GetHeight(), wrt_rects_names[rect_n]);
}
Unindent();
}
Checkbox("Show ImDrawCmd mesh when hovering", &cfg->ShowDrawCmdMesh);
Checkbox("Show ImDrawCmd bounding boxes when hovering", &cfg->ShowDrawCmdBoundingBoxes);
Checkbox("Show tables rectangles", &cfg->ShowTablesRects);
SameLine();
SetNextItemWidth(GetFontSize() * 12);
cfg->ShowTablesRects |= Combo("##show_table_rects_type", &cfg->ShowTablesRectsType, trt_rects_names, TRT_Count, TRT_Count);
if (cfg->ShowTablesRects && g.NavWindow != NULL)
{
for (int table_n = 0; table_n < g.Tables.GetMapSize(); table_n++)
{
ImGuiTable* table = g.Tables.TryGetMapData(table_n);
if (table == NULL || table->LastFrameActive < g.FrameCount - 1 || (table->OuterWindow != g.NavWindow && table->InnerWindow != g.NavWindow))
continue;
BulletText("Table 0x%08X (%d columns, in '%s')", table->ID, table->ColumnsCount, table->OuterWindow->Name);
if (IsItemHovered())
GetForegroundDrawList()->AddRect(table->OuterRect.Min - ImVec2(1, 1), table->OuterRect.Max + ImVec2(1, 1), IM_COL32(255, 255, 0, 255), 0.0f, 0, 2.0f);
Indent();
char buf[128];
for (int rect_n = 0; rect_n < TRT_Count; rect_n++)
{
if (rect_n >= TRT_ColumnsRect)
{
if (rect_n != TRT_ColumnsRect && rect_n != TRT_ColumnsClipRect)
continue;
for (int column_n = 0; column_n < table->ColumnsCount; column_n++)
{
ImRect r = Funcs::GetTableRect(table, rect_n, column_n);
ImFormatString(buf, IM_ARRAYSIZE(buf), "(%6.1f,%6.1f) (%6.1f,%6.1f) Size (%6.1f,%6.1f) Col %d %s", r.Min.x, r.Min.y, r.Max.x, r.Max.y, r.GetWidth(), r.GetHeight(), column_n, trt_rects_names[rect_n]);
Selectable(buf);
if (IsItemHovered())
GetForegroundDrawList()->AddRect(r.Min - ImVec2(1, 1), r.Max + ImVec2(1, 1), IM_COL32(255, 255, 0, 255), 0.0f, 0, 2.0f);
}
}
else
{
ImRect r = Funcs::GetTableRect(table, rect_n, -1);
ImFormatString(buf, IM_ARRAYSIZE(buf), "(%6.1f,%6.1f) (%6.1f,%6.1f) Size (%6.1f,%6.1f) %s", r.Min.x, r.Min.y, r.Max.x, r.Max.y, r.GetWidth(), r.GetHeight(), trt_rects_names[rect_n]);
Selectable(buf);
if (IsItemHovered())
GetForegroundDrawList()->AddRect(r.Min - ImVec2(1, 1), r.Max + ImVec2(1, 1), IM_COL32(255, 255, 0, 255), 0.0f, 0, 2.0f);
}
}
Unindent();
}
}
TreePop();
}
// Windows
DebugNodeWindowsList(&g.Windows, "Windows");
//DebugNodeWindowsList(&g.WindowsFocusOrder, "WindowsFocusOrder");
// DrawLists
int drawlist_count = 0;
for (int viewport_i = 0; viewport_i < g.Viewports.Size; viewport_i++)
drawlist_count += g.Viewports[viewport_i]->DrawDataBuilder.GetDrawListCount();
if (TreeNode("DrawLists", "DrawLists (%d)", drawlist_count))
{
for (int viewport_i = 0; viewport_i < g.Viewports.Size; viewport_i++)
{
ImGuiViewportP* viewport = g.Viewports[viewport_i];
for (int layer_i = 0; layer_i < IM_ARRAYSIZE(viewport->DrawDataBuilder.Layers); layer_i++)
for (int draw_list_i = 0; draw_list_i < viewport->DrawDataBuilder.Layers[layer_i].Size; draw_list_i++)
DebugNodeDrawList(NULL, viewport->DrawDataBuilder.Layers[layer_i][draw_list_i], "DrawList");
}
TreePop();
}
// Viewports
if (TreeNode("Viewports", "Viewports (%d)", g.Viewports.Size))
{
Indent(GetTreeNodeToLabelSpacing());
RenderViewportsThumbnails();
Unindent(GetTreeNodeToLabelSpacing());
for (int i = 0; i < g.Viewports.Size; i++)
DebugNodeViewport(g.Viewports[i]);
TreePop();
}
// Details for Popups
if (TreeNode("Popups", "Popups (%d)", g.OpenPopupStack.Size))
{
for (int i = 0; i < g.OpenPopupStack.Size; i++)
{
ImGuiWindow* window = g.OpenPopupStack[i].Window;
BulletText("PopupID: %08x, Window: '%s'%s%s", g.OpenPopupStack[i].PopupId, window ? window->Name : "NULL", window && (window->Flags & ImGuiWindowFlags_ChildWindow) ? " ChildWindow" : "", window && (window->Flags & ImGuiWindowFlags_ChildMenu) ? " ChildMenu" : "");
}
TreePop();
}
// Details for TabBars
if (TreeNode("TabBars", "Tab Bars (%d)", g.TabBars.GetAliveCount()))
{
for (int n = 0; n < g.TabBars.GetMapSize(); n++)
if (ImGuiTabBar* tab_bar = g.TabBars.TryGetMapData(n))
{
PushID(tab_bar);
DebugNodeTabBar(tab_bar, "TabBar");
PopID();
}
TreePop();
}
// Details for Tables
if (TreeNode("Tables", "Tables (%d)", g.Tables.GetAliveCount()))
{
for (int n = 0; n < g.Tables.GetMapSize(); n++)
if (ImGuiTable* table = g.Tables.TryGetMapData(n))
DebugNodeTable(table);
TreePop();
}
// Details for Fonts
#ifndef IMGUI_DISABLE_DEMO_WINDOWS
ImFontAtlas* atlas = g.IO.Fonts;
if (TreeNode("Fonts", "Fonts (%d)", atlas->Fonts.Size))
{
ShowFontAtlas(atlas);
TreePop();
}
#endif
// Details for Docking
#ifdef IMGUI_HAS_DOCK
if (TreeNode("Docking"))
{
TreePop();
}
#endif // #ifdef IMGUI_HAS_DOCK
// Settings
if (TreeNode("Settings"))
{
if (SmallButton("Clear"))
ClearIniSettings();
SameLine();
if (SmallButton("Save to memory"))
SaveIniSettingsToMemory();
SameLine();
if (SmallButton("Save to disk"))
SaveIniSettingsToDisk(g.IO.IniFilename);
SameLine();
if (g.IO.IniFilename)
Text("\"%s\"", g.IO.IniFilename);
else
TextUnformatted("<NULL>");
Text("SettingsDirtyTimer %.2f", g.SettingsDirtyTimer);
if (TreeNode("SettingsHandlers", "Settings handlers: (%d)", g.SettingsHandlers.Size))
{
for (int n = 0; n < g.SettingsHandlers.Size; n++)
BulletText("%s", g.SettingsHandlers[n].TypeName);
TreePop();
}
if (TreeNode("SettingsWindows", "Settings packed data: Windows: %d bytes", g.SettingsWindows.size()))
{
for (ImGuiWindowSettings* settings = g.SettingsWindows.begin(); settings != NULL; settings = g.SettingsWindows.next_chunk(settings))
DebugNodeWindowSettings(settings);
TreePop();
}
if (TreeNode("SettingsTables", "Settings packed data: Tables: %d bytes", g.SettingsTables.size()))
{
for (ImGuiTableSettings* settings = g.SettingsTables.begin(); settings != NULL; settings = g.SettingsTables.next_chunk(settings))
DebugNodeTableSettings(settings);
TreePop();
}
#ifdef IMGUI_HAS_DOCK
#endif // #ifdef IMGUI_HAS_DOCK
if (TreeNode("SettingsIniData", "Settings unpacked data (.ini): %d bytes", g.SettingsIniData.size()))
{
InputTextMultiline("##Ini", (char*)(void*)g.SettingsIniData.c_str(), g.SettingsIniData.Buf.Size, ImVec2(-FLT_MIN, GetTextLineHeight() * 20), ImGuiInputTextFlags_ReadOnly);
TreePop();
}
TreePop();
}
// Misc Details
if (TreeNode("Internal state"))
{
const char* input_source_names[] = { "None", "Mouse", "Keyboard", "Gamepad", "Nav", "Clipboard" }; IM_ASSERT(IM_ARRAYSIZE(input_source_names) == ImGuiInputSource_COUNT);
Text("WINDOWING");
Indent();
Text("HoveredWindow: '%s'", g.HoveredWindow ? g.HoveredWindow->Name : "NULL");
Text("HoveredWindow->Root: '%s'", g.HoveredWindow ? g.HoveredWindow->RootWindow->Name : "NULL");
Text("HoveredWindowUnderMovingWindow: '%s'", g.HoveredWindowUnderMovingWindow ? g.HoveredWindowUnderMovingWindow->Name : "NULL");
Text("MovingWindow: '%s'", g.MovingWindow ? g.MovingWindow->Name : "NULL");
Unindent();
Text("ITEMS");
Indent();
Text("ActiveId: 0x%08X/0x%08X (%.2f sec), AllowOverlap: %d, Source: %s", g.ActiveId, g.ActiveIdPreviousFrame, g.ActiveIdTimer, g.ActiveIdAllowOverlap, input_source_names[g.ActiveIdSource]);
Text("ActiveIdWindow: '%s'", g.ActiveIdWindow ? g.ActiveIdWindow->Name : "NULL");
Text("HoveredId: 0x%08X/0x%08X (%.2f sec), AllowOverlap: %d", g.HoveredId, g.HoveredIdPreviousFrame, g.HoveredIdTimer, g.HoveredIdAllowOverlap); // Data is "in-flight" so depending on when the Metrics window is called we may see current frame information or not
Text("DragDrop: %d, SourceId = 0x%08X, Payload \"%s\" (%d bytes)", g.DragDropActive, g.DragDropPayload.SourceId, g.DragDropPayload.DataType, g.DragDropPayload.DataSize);
Unindent();
Text("NAV,FOCUS");
Indent();
Text("NavWindow: '%s'", g.NavWindow ? g.NavWindow->Name : "NULL");
Text("NavId: 0x%08X, NavLayer: %d", g.NavId, g.NavLayer);
Text("NavInputSource: %s", input_source_names[g.NavInputSource]);
Text("NavActive: %d, NavVisible: %d", g.IO.NavActive, g.IO.NavVisible);
Text("NavActivateId: 0x%08X, NavInputId: 0x%08X", g.NavActivateId, g.NavInputId);
Text("NavDisableHighlight: %d, NavDisableMouseHover: %d", g.NavDisableHighlight, g.NavDisableMouseHover);
Text("NavFocusScopeId = 0x%08X", g.NavFocusScopeId);
Text("NavWindowingTarget: '%s'", g.NavWindowingTarget ? g.NavWindowingTarget->Name : "NULL");
Unindent();
TreePop();
}
// Overlay: Display windows Rectangles and Begin Order
if (cfg->ShowWindowsRects || cfg->ShowWindowsBeginOrder)
{
for (int n = 0; n < g.Windows.Size; n++)
{
ImGuiWindow* window = g.Windows[n];
if (!window->WasActive)
continue;
ImDrawList* draw_list = GetForegroundDrawList(window);
if (cfg->ShowWindowsRects)
{
ImRect r = Funcs::GetWindowRect(window, cfg->ShowWindowsRectsType);
draw_list->AddRect(r.Min, r.Max, IM_COL32(255, 0, 128, 255));
}
if (cfg->ShowWindowsBeginOrder && !(window->Flags & ImGuiWindowFlags_ChildWindow))
{
char buf[32];
ImFormatString(buf, IM_ARRAYSIZE(buf), "%d", window->BeginOrderWithinContext);
float font_size = GetFontSize();
draw_list->AddRectFilled(window->Pos, window->Pos + ImVec2(font_size, font_size), IM_COL32(200, 100, 100, 255));
draw_list->AddText(window->Pos, IM_COL32(255, 255, 255, 255), buf);
}
}
}
// Overlay: Display Tables Rectangles
if (cfg->ShowTablesRects)
{
for (int table_n = 0; table_n < g.Tables.GetMapSize(); table_n++)
{
ImGuiTable* table = g.Tables.TryGetMapData(table_n);
if (table == NULL || table->LastFrameActive < g.FrameCount - 1)
continue;
ImDrawList* draw_list = GetForegroundDrawList(table->OuterWindow);
if (cfg->ShowTablesRectsType >= TRT_ColumnsRect)
{
for (int column_n = 0; column_n < table->ColumnsCount; column_n++)
{
ImRect r = Funcs::GetTableRect(table, cfg->ShowTablesRectsType, column_n);
ImU32 col = (table->HoveredColumnBody == column_n) ? IM_COL32(255, 255, 128, 255) : IM_COL32(255, 0, 128, 255);
float thickness = (table->HoveredColumnBody == column_n) ? 3.0f : 1.0f;
draw_list->AddRect(r.Min, r.Max, col, 0.0f, 0, thickness);
}
}
else
{
ImRect r = Funcs::GetTableRect(table, cfg->ShowTablesRectsType, -1);
draw_list->AddRect(r.Min, r.Max, IM_COL32(255, 0, 128, 255));
}
}
}
#ifdef IMGUI_HAS_DOCK
// Overlay: Display Docking info
if (show_docking_nodes && g.IO.KeyCtrl)
{
}
#endif // #ifdef IMGUI_HAS_DOCK
End();
}
// [DEBUG] List fonts in a font atlas and display its texture
void ImGui::ShowFontAtlas(ImFontAtlas* atlas)
{
for (int i = 0; i < atlas->Fonts.Size; i++)
{
ImFont* font = atlas->Fonts[i];
PushID(font);
DebugNodeFont(font);
PopID();
}
if (TreeNode("Atlas texture", "Atlas texture (%dx%d pixels)", atlas->TexWidth, atlas->TexHeight))
{
ImVec4 tint_col = ImVec4(1.0f, 1.0f, 1.0f, 1.0f);
ImVec4 border_col = ImVec4(1.0f, 1.0f, 1.0f, 0.5f);
Image(atlas->TexID, ImVec2((float)atlas->TexWidth, (float)atlas->TexHeight), ImVec2(0.0f, 0.0f), ImVec2(1.0f, 1.0f), tint_col, border_col);
TreePop();
}
}
// [DEBUG] Display contents of Columns
void ImGui::DebugNodeColumns(ImGuiOldColumns* columns)
{
if (!TreeNode((void*)(uintptr_t)columns->ID, "Columns Id: 0x%08X, Count: %d, Flags: 0x%04X", columns->ID, columns->Count, columns->Flags))
return;
BulletText("Width: %.1f (MinX: %.1f, MaxX: %.1f)", columns->OffMaxX - columns->OffMinX, columns->OffMinX, columns->OffMaxX);
for (int column_n = 0; column_n < columns->Columns.Size; column_n++)
BulletText("Column %02d: OffsetNorm %.3f (= %.1f px)", column_n, columns->Columns[column_n].OffsetNorm, GetColumnOffsetFromNorm(columns, columns->Columns[column_n].OffsetNorm));
TreePop();
}
// [DEBUG] Display contents of ImDrawList
void ImGui::DebugNodeDrawList(ImGuiWindow* window, const ImDrawList* draw_list, const char* label)
{
ImGuiContext& g = *GImGui;
ImGuiMetricsConfig* cfg = &g.DebugMetricsConfig;
int cmd_count = draw_list->CmdBuffer.Size;
if (cmd_count > 0 && draw_list->CmdBuffer.back().ElemCount == 0 && draw_list->CmdBuffer.back().UserCallback == NULL)
cmd_count--;
bool node_open = TreeNode(draw_list, "%s: '%s' %d vtx, %d indices, %d cmds", label, draw_list->_OwnerName ? draw_list->_OwnerName : "", draw_list->VtxBuffer.Size, draw_list->IdxBuffer.Size, cmd_count);
if (draw_list == GetWindowDrawList())
{
SameLine();
TextColored(ImVec4(1.0f, 0.4f, 0.4f, 1.0f), "CURRENTLY APPENDING"); // Can't display stats for active draw list! (we don't have the data double-buffered)
if (node_open)
TreePop();
return;
}
ImDrawList* fg_draw_list = GetForegroundDrawList(window); // Render additional visuals into the top-most draw list
if (window && IsItemHovered())
fg_draw_list->AddRect(window->Pos, window->Pos + window->Size, IM_COL32(255, 255, 0, 255));
if (!node_open)
return;
if (window && !window->WasActive)
TextDisabled("Warning: owning Window is inactive. This DrawList is not being rendered!");
for (const ImDrawCmd* pcmd = draw_list->CmdBuffer.Data; pcmd < draw_list->CmdBuffer.Data + cmd_count; pcmd++)
{
if (pcmd->UserCallback)
{
BulletText("Callback %p, user_data %p", pcmd->UserCallback, pcmd->UserCallbackData);
continue;
}
char buf[300];
ImFormatString(buf, IM_ARRAYSIZE(buf), "DrawCmd:%5d tris, Tex 0x%p, ClipRect (%4.0f,%4.0f)-(%4.0f,%4.0f)",
pcmd->ElemCount / 3, (void*)(intptr_t)pcmd->TextureId,
pcmd->ClipRect.x, pcmd->ClipRect.y, pcmd->ClipRect.z, pcmd->ClipRect.w);
bool pcmd_node_open = TreeNode((void*)(pcmd - draw_list->CmdBuffer.begin()), "%s", buf);
if (IsItemHovered() && (cfg->ShowDrawCmdMesh || cfg->ShowDrawCmdBoundingBoxes) && fg_draw_list)
DebugNodeDrawCmdShowMeshAndBoundingBox(fg_draw_list, draw_list, pcmd, cfg->ShowDrawCmdMesh, cfg->ShowDrawCmdBoundingBoxes);
if (!pcmd_node_open)
continue;
// Calculate approximate coverage area (touched pixel count)
// This will be in pixels squared as long there's no post-scaling happening to the renderer output.
const ImDrawIdx* idx_buffer = (draw_list->IdxBuffer.Size > 0) ? draw_list->IdxBuffer.Data : NULL;
const ImDrawVert* vtx_buffer = draw_list->VtxBuffer.Data + pcmd->VtxOffset;
float total_area = 0.0f;
for (unsigned int idx_n = pcmd->IdxOffset; idx_n < pcmd->IdxOffset + pcmd->ElemCount; )
{
ImVec2 triangle[3];
for (int n = 0; n < 3; n++, idx_n++)
triangle[n] = vtx_buffer[idx_buffer ? idx_buffer[idx_n] : idx_n].pos;
total_area += ImTriangleArea(triangle[0], triangle[1], triangle[2]);
}
// Display vertex information summary. Hover to get all triangles drawn in wire-frame
ImFormatString(buf, IM_ARRAYSIZE(buf), "Mesh: ElemCount: %d, VtxOffset: +%d, IdxOffset: +%d, Area: ~%0.f px", pcmd->ElemCount, pcmd->VtxOffset, pcmd->IdxOffset, total_area);
Selectable(buf);
if (IsItemHovered() && fg_draw_list)
DebugNodeDrawCmdShowMeshAndBoundingBox(fg_draw_list, draw_list, pcmd, true, false);
// Display individual triangles/vertices. Hover on to get the corresponding triangle highlighted.
ImGuiListClipper clipper;
clipper.Begin(pcmd->ElemCount / 3); // Manually coarse clip our print out of individual vertices to save CPU, only items that may be visible.
while (clipper.Step())
for (int prim = clipper.DisplayStart, idx_i = pcmd->IdxOffset + clipper.DisplayStart * 3; prim < clipper.DisplayEnd; prim++)
{
char* buf_p = buf, * buf_end = buf + IM_ARRAYSIZE(buf);
ImVec2 triangle[3];
for (int n = 0; n < 3; n++, idx_i++)
{
const ImDrawVert& v = vtx_buffer[idx_buffer ? idx_buffer[idx_i] : idx_i];
triangle[n] = v.pos;
buf_p += ImFormatString(buf_p, buf_end - buf_p, "%s %04d: pos (%8.2f,%8.2f), uv (%.6f,%.6f), col %08X\n",
(n == 0) ? "Vert:" : " ", idx_i, v.pos.x, v.pos.y, v.uv.x, v.uv.y, v.col);
}
Selectable(buf, false);
if (fg_draw_list && IsItemHovered())
{
ImDrawListFlags backup_flags = fg_draw_list->Flags;
fg_draw_list->Flags &= ~ImDrawListFlags_AntiAliasedLines; // Disable AA on triangle outlines is more readable for very large and thin triangles.
fg_draw_list->AddPolyline(triangle, 3, IM_COL32(255, 255, 0, 255), ImDrawFlags_Closed, 1.0f);
fg_draw_list->Flags = backup_flags;
}
}
TreePop();
}
TreePop();
}
// [DEBUG] Display mesh/aabb of a ImDrawCmd
void ImGui::DebugNodeDrawCmdShowMeshAndBoundingBox(ImDrawList* out_draw_list, const ImDrawList* draw_list, const ImDrawCmd* draw_cmd, bool show_mesh, bool show_aabb)
{
IM_ASSERT(show_mesh || show_aabb);
ImDrawIdx* idx_buffer = (draw_list->IdxBuffer.Size > 0) ? draw_list->IdxBuffer.Data : NULL;
ImDrawVert* vtx_buffer = draw_list->VtxBuffer.Data + draw_cmd->VtxOffset;
// Draw wire-frame version of all triangles
ImRect clip_rect = draw_cmd->ClipRect;
ImRect vtxs_rect(FLT_MAX, FLT_MAX, -FLT_MAX, -FLT_MAX);
ImDrawListFlags backup_flags = out_draw_list->Flags;
out_draw_list->Flags &= ~ImDrawListFlags_AntiAliasedLines; // Disable AA on triangle outlines is more readable for very large and thin triangles.
for (unsigned int idx_n = draw_cmd->IdxOffset; idx_n < draw_cmd->IdxOffset + draw_cmd->ElemCount; )
{
ImVec2 triangle[3];
for (int n = 0; n < 3; n++, idx_n++)
vtxs_rect.Add((triangle[n] = vtx_buffer[idx_buffer ? idx_buffer[idx_n] : idx_n].pos));
if (show_mesh)
out_draw_list->AddPolyline(triangle, 3, IM_COL32(255, 255, 0, 255), ImDrawFlags_Closed, 1.0f); // In yellow: mesh triangles
}
// Draw bounding boxes
if (show_aabb)
{
out_draw_list->AddRect(ImFloor(clip_rect.Min), ImFloor(clip_rect.Max), IM_COL32(255, 0, 255, 255)); // In pink: clipping rectangle submitted to GPU
out_draw_list->AddRect(ImFloor(vtxs_rect.Min), ImFloor(vtxs_rect.Max), IM_COL32(0, 255, 255, 255)); // In cyan: bounding box of triangles
}
out_draw_list->Flags = backup_flags;
}
// [DEBUG] Display details for a single font, called by ShowStyleEditor().
void ImGui::DebugNodeFont(ImFont* font)
{
bool opened = TreeNode(font, "Font: \"%s\"\n%.2f px, %d glyphs, %d file(s)",
font->ConfigData ? font->ConfigData[0].Name : "", font->FontSize, font->Glyphs.Size, font->ConfigDataCount);
SameLine();
if (SmallButton("Set as default"))
GetIO().FontDefault = font;
if (!opened)
return;
// Display preview text
PushFont(font);
Text("The quick brown fox jumps over the lazy dog");
PopFont();
// Display details
SetNextItemWidth(GetFontSize() * 8);
DragFloat("Font scale", &font->Scale, 0.005f, 0.3f, 2.0f, "%.1f");
SameLine(); MetricsHelpMarker(
"Note than the default embedded font is NOT meant to be scaled.\n\n"
"Font are currently rendered into bitmaps at a given size at the time of building the atlas. "
"You may oversample them to get some flexibility with scaling. "
"You can also render at multiple sizes and select which one to use at runtime.\n\n"
"(Glimmer of hope: the atlas system will be rewritten in the future to make scaling more flexible.)");
Text("Ascent: %f, Descent: %f, Height: %f", font->Ascent, font->Descent, font->Ascent - font->Descent);
char c_str[5];
Text("Fallback character: '%s' (U+%04X)", ImTextCharToUtf8(c_str, font->FallbackChar), font->FallbackChar);
Text("Ellipsis character: '%s' (U+%04X)", ImTextCharToUtf8(c_str, font->EllipsisChar), font->EllipsisChar);
const int surface_sqrt = (int)ImSqrt((float)font->MetricsTotalSurface);
Text("Texture Area: about %d px ~%dx%d px", font->MetricsTotalSurface, surface_sqrt, surface_sqrt);
for (int config_i = 0; config_i < font->ConfigDataCount; config_i++)
if (font->ConfigData)
if (const ImFontConfig* cfg = &font->ConfigData[config_i])
BulletText("Input %d: \'%s\', Oversample: (%d,%d), PixelSnapH: %d, Offset: (%.1f,%.1f)",
config_i, cfg->Name, cfg->OversampleH, cfg->OversampleV, cfg->PixelSnapH, cfg->GlyphOffset.x, cfg->GlyphOffset.y);
// Display all glyphs of the fonts in separate pages of 256 characters
if (TreeNode("Glyphs", "Glyphs (%d)", font->Glyphs.Size))
{
ImDrawList* draw_list = GetWindowDrawList();
const ImU32 glyph_col = GetColorU32(ImGuiCol_Text);
const float cell_size = font->FontSize * 1;
const float cell_spacing = GetStyle().ItemSpacing.y;
for (unsigned int base = 0; base <= IM_UNICODE_CODEPOINT_MAX; base += 256)
{
// Skip ahead if a large bunch of glyphs are not present in the font (test in chunks of 4k)
// This is only a small optimization to reduce the number of iterations when IM_UNICODE_MAX_CODEPOINT
// is large // (if ImWchar==ImWchar32 we will do at least about 272 queries here)
if (!(base & 4095) && font->IsGlyphRangeUnused(base, base + 4095))
{
base += 4096 - 256;
continue;
}
int count = 0;
for (unsigned int n = 0; n < 256; n++)
if (font->FindGlyphNoFallback((ImWchar)(base + n)))
count++;
if (count <= 0)
continue;
if (!TreeNode((void*)(intptr_t)base, "U+%04X..U+%04X (%d %s)", base, base + 255, count, count > 1 ? "glyphs" : "glyph"))
continue;
// Draw a 16x16 grid of glyphs
ImVec2 base_pos = GetCursorScreenPos();
for (unsigned int n = 0; n < 256; n++)
{
// We use ImFont::RenderChar as a shortcut because we don't have UTF-8 conversion functions
// available here and thus cannot easily generate a zero-terminated UTF-8 encoded string.
ImVec2 cell_p1(base_pos.x + (n % 16) * (cell_size + cell_spacing), base_pos.y + (n / 16) * (cell_size + cell_spacing));
ImVec2 cell_p2(cell_p1.x + cell_size, cell_p1.y + cell_size);
const ImFontGlyph* glyph = font->FindGlyphNoFallback((ImWchar)(base + n));
draw_list->AddRect(cell_p1, cell_p2, glyph ? IM_COL32(255, 255, 255, 100) : IM_COL32(255, 255, 255, 50));
if (glyph)
font->RenderChar(draw_list, cell_size, cell_p1, glyph_col, (ImWchar)(base + n));
if (glyph && IsMouseHoveringRect(cell_p1, cell_p2))
{
BeginTooltip();
Text("Codepoint: U+%04X", base + n);
Separator();
Text("Visible: %d", glyph->Visible);
Text("AdvanceX: %.1f", glyph->AdvanceX);
Text("Pos: (%.2f,%.2f)->(%.2f,%.2f)", glyph->X0, glyph->Y0, glyph->X1, glyph->Y1);
Text("UV: (%.3f,%.3f)->(%.3f,%.3f)", glyph->U0, glyph->V0, glyph->U1, glyph->V1);
EndTooltip();
}
}
Dummy(ImVec2((cell_size + cell_spacing) * 16, (cell_size + cell_spacing) * 16));
TreePop();
}
TreePop();
}
TreePop();
}
// [DEBUG] Display contents of ImGuiStorage
void ImGui::DebugNodeStorage(ImGuiStorage* storage, const char* label)
{
if (!TreeNode(label, "%s: %d entries, %d bytes", label, storage->Data.Size, storage->Data.size_in_bytes()))
return;
for (int n = 0; n < storage->Data.Size; n++)
{
const ImGuiStorage::ImGuiStoragePair& p = storage->Data[n];
BulletText("Key 0x%08X Value { i: %d }", p.key, p.val_i); // Important: we currently don't store a type, real value may not be integer.
}
TreePop();
}
// [DEBUG] Display contents of ImGuiTabBar
void ImGui::DebugNodeTabBar(ImGuiTabBar* tab_bar, const char* label)
{
// Standalone tab bars (not associated to docking/windows functionality) currently hold no discernible strings.
char buf[256];
char* p = buf;
const char* buf_end = buf + IM_ARRAYSIZE(buf);
const bool is_active = (tab_bar->PrevFrameVisible >= GetFrameCount() - 2);
p += ImFormatString(p, buf_end - p, "%s 0x%08X (%d tabs)%s", label, tab_bar->ID, tab_bar->Tabs.Size, is_active ? "" : " *Inactive*");
IM_UNUSED(p);
if (!is_active) { PushStyleColor(ImGuiCol_Text, GetStyleColorVec4(ImGuiCol_TextDisabled)); }
bool open = TreeNode(label, "%s", buf);
if (!is_active) { PopStyleColor(); }
if (is_active && IsItemHovered())
{
ImDrawList* draw_list = GetForegroundDrawList();
draw_list->AddRect(tab_bar->BarRect.Min, tab_bar->BarRect.Max, IM_COL32(255, 255, 0, 255));
draw_list->AddLine(ImVec2(tab_bar->ScrollingRectMinX, tab_bar->BarRect.Min.y), ImVec2(tab_bar->ScrollingRectMinX, tab_bar->BarRect.Max.y), IM_COL32(0, 255, 0, 255));
draw_list->AddLine(ImVec2(tab_bar->ScrollingRectMaxX, tab_bar->BarRect.Min.y), ImVec2(tab_bar->ScrollingRectMaxX, tab_bar->BarRect.Max.y), IM_COL32(0, 255, 0, 255));
}
if (open)
{
for (int tab_n = 0; tab_n < tab_bar->Tabs.Size; tab_n++)
{
const ImGuiTabItem* tab = &tab_bar->Tabs[tab_n];
PushID(tab);
if (SmallButton("<")) { TabBarQueueReorder(tab_bar, tab, -1); } SameLine(0, 2);
if (SmallButton(">")) { TabBarQueueReorder(tab_bar, tab, +1); } SameLine();
Text("%02d%c Tab 0x%08X '%s' Offset: %.1f, Width: %.1f/%.1f",
tab_n, (tab->ID == tab_bar->SelectedTabId) ? '*' : ' ', tab->ID, (tab->NameOffset != -1) ? tab_bar->GetTabName(tab) : "", tab->Offset, tab->Width, tab->ContentWidth);
PopID();
}
TreePop();
}
}
void ImGui::DebugNodeViewport(ImGuiViewportP* viewport)
{
SetNextItemOpen(true, ImGuiCond_Once);
if (TreeNode("viewport0", "Viewport #%d", 0))
{
ImGuiWindowFlags flags = viewport->Flags;
BulletText("Main Pos: (%.0f,%.0f), Size: (%.0f,%.0f)\nWorkArea Offset Left: %.0f Top: %.0f, Right: %.0f, Bottom: %.0f",
viewport->Pos.x, viewport->Pos.y, viewport->Size.x, viewport->Size.y,
viewport->WorkOffsetMin.x, viewport->WorkOffsetMin.y, viewport->WorkOffsetMax.x, viewport->WorkOffsetMax.y);
BulletText("Flags: 0x%04X =%s%s%s", viewport->Flags,
(flags & ImGuiViewportFlags_IsPlatformWindow) ? " IsPlatformWindow" : "",
(flags & ImGuiViewportFlags_IsPlatformMonitor) ? " IsPlatformMonitor" : "",
(flags & ImGuiViewportFlags_OwnedByApp) ? " OwnedByApp" : "");
for (int layer_i = 0; layer_i < IM_ARRAYSIZE(viewport->DrawDataBuilder.Layers); layer_i++)
for (int draw_list_i = 0; draw_list_i < viewport->DrawDataBuilder.Layers[layer_i].Size; draw_list_i++)
DebugNodeDrawList(NULL, viewport->DrawDataBuilder.Layers[layer_i][draw_list_i], "DrawList");
TreePop();
}
}
void ImGui::DebugNodeWindow(ImGuiWindow* window, const char* label)
{
if (window == NULL)
{
BulletText("%s: NULL", label);
return;
}
ImGuiContext& g = *GImGui;
const bool is_active = window->WasActive;
ImGuiTreeNodeFlags tree_node_flags = (window == g.NavWindow) ? ImGuiTreeNodeFlags_Selected : ImGuiTreeNodeFlags_None;
if (!is_active) { PushStyleColor(ImGuiCol_Text, GetStyleColorVec4(ImGuiCol_TextDisabled)); }
const bool open = TreeNodeEx(label, tree_node_flags, "%s '%s'%s", label, window->Name, is_active ? "" : " *Inactive*");
if (!is_active) { PopStyleColor(); }
if (IsItemHovered() && is_active)
GetForegroundDrawList(window)->AddRect(window->Pos, window->Pos + window->Size, IM_COL32(255, 255, 0, 255));
if (!open)
return;
if (window->MemoryCompacted)
TextDisabled("Note: some memory buffers have been compacted/freed.");
ImGuiWindowFlags flags = window->Flags;
DebugNodeDrawList(window, window->DrawList, "DrawList");
BulletText("Pos: (%.1f,%.1f), Size: (%.1f,%.1f), ContentSize (%.1f,%.1f) Ideal (%.1f,%.1f)", window->Pos.x, window->Pos.y, window->Size.x, window->Size.y, window->ContentSize.x, window->ContentSize.y, window->ContentSizeIdeal.x, window->ContentSizeIdeal.y);
BulletText("Flags: 0x%08X (%s%s%s%s%s%s%s%s%s..)", flags,
(flags & ImGuiWindowFlags_ChildWindow) ? "Child " : "", (flags & ImGuiWindowFlags_Tooltip) ? "Tooltip " : "", (flags & ImGuiWindowFlags_Popup) ? "Popup " : "",
(flags & ImGuiWindowFlags_Modal) ? "Modal " : "", (flags & ImGuiWindowFlags_ChildMenu) ? "ChildMenu " : "", (flags & ImGuiWindowFlags_NoSavedSettings) ? "NoSavedSettings " : "",
(flags & ImGuiWindowFlags_NoMouseInputs)? "NoMouseInputs":"", (flags & ImGuiWindowFlags_NoNavInputs) ? "NoNavInputs" : "", (flags & ImGuiWindowFlags_AlwaysAutoResize) ? "AlwaysAutoResize" : "");
BulletText("Scroll: (%.2f/%.2f,%.2f/%.2f) Scrollbar:%s%s", window->Scroll.x, window->ScrollMax.x, window->Scroll.y, window->ScrollMax.y, window->ScrollbarX ? "X" : "", window->ScrollbarY ? "Y" : "");
BulletText("Active: %d/%d, WriteAccessed: %d, BeginOrderWithinContext: %d", window->Active, window->WasActive, window->WriteAccessed, (window->Active || window->WasActive) ? window->BeginOrderWithinContext : -1);
BulletText("Appearing: %d, Hidden: %d (CanSkip %d Cannot %d), SkipItems: %d", window->Appearing, window->Hidden, window->HiddenFramesCanSkipItems, window->HiddenFramesCannotSkipItems, window->SkipItems);
for (int layer = 0; layer < ImGuiNavLayer_COUNT; layer++)
{
ImRect r = window->NavRectRel[layer];
if (r.Min.x >= r.Max.y && r.Min.y >= r.Max.y)
{
BulletText("NavLastIds[%d]: 0x%08X", layer, window->NavLastIds[layer]);
continue;
}
BulletText("NavLastIds[%d]: 0x%08X at +(%.1f,%.1f)(%.1f,%.1f)", layer, window->NavLastIds[layer], r.Min.x, r.Min.y, r.Max.x, r.Max.y);
if (IsItemHovered())
GetForegroundDrawList(window)->AddRect(r.Min + window->Pos, r.Max + window->Pos, IM_COL32(255, 255, 0, 255));
}
BulletText("NavLayersActiveMask: %X, NavLastChildNavWindow: %s", window->DC.NavLayersActiveMask, window->NavLastChildNavWindow ? window->NavLastChildNavWindow->Name : "NULL");
if (window->RootWindow != window) { DebugNodeWindow(window->RootWindow, "RootWindow"); }
if (window->ParentWindow != NULL) { DebugNodeWindow(window->ParentWindow, "ParentWindow"); }
if (window->DC.ChildWindows.Size > 0) { DebugNodeWindowsList(&window->DC.ChildWindows, "ChildWindows"); }
if (window->ColumnsStorage.Size > 0 && TreeNode("Columns", "Columns sets (%d)", window->ColumnsStorage.Size))
{
for (int n = 0; n < window->ColumnsStorage.Size; n++)
DebugNodeColumns(&window->ColumnsStorage[n]);
TreePop();
}
DebugNodeStorage(&window->StateStorage, "Storage");
TreePop();
}
void ImGui::DebugNodeWindowSettings(ImGuiWindowSettings* settings)
{
Text("0x%08X \"%s\" Pos (%d,%d) Size (%d,%d) Collapsed=%d",
settings->ID, settings->GetName(), settings->Pos.x, settings->Pos.y, settings->Size.x, settings->Size.y, settings->Collapsed);
}
void ImGui::DebugNodeWindowsList(ImVector<ImGuiWindow*>* windows, const char* label)
{
if (!TreeNode(label, "%s (%d)", label, windows->Size))
return;
Text("(In front-to-back order:)");
for (int i = windows->Size - 1; i >= 0; i--) // Iterate front to back
{
PushID((*windows)[i]);
DebugNodeWindow((*windows)[i], "Window");
PopID();
}
TreePop();
}
#else
void ImGui::ShowMetricsWindow(bool*) {}
void ImGui::ShowFontAtlas(ImFontAtlas*) {}
void ImGui::DebugNodeColumns(ImGuiOldColumns*) {}
void ImGui::DebugNodeDrawList(ImGuiWindow*, const ImDrawList*, const char*) {}
void ImGui::DebugNodeDrawCmdShowMeshAndBoundingBox(ImDrawList*, const ImDrawList*, const ImDrawCmd*, bool, bool) {}
void ImGui::DebugNodeFont(ImFont*) {}
void ImGui::DebugNodeStorage(ImGuiStorage*, const char*) {}
void ImGui::DebugNodeTabBar(ImGuiTabBar*, const char*) {}
void ImGui::DebugNodeWindow(ImGuiWindow*, const char*) {}
void ImGui::DebugNodeWindowSettings(ImGuiWindowSettings*) {}
void ImGui::DebugNodeWindowsList(ImVector<ImGuiWindow*>*, const char*) {}
void ImGui::DebugNodeViewport(ImGuiViewportP*) {}
#endif
//-----------------------------------------------------------------------------
// Include imgui_user.inl at the end of imgui.cpp to access private data/functions that aren't exposed.
// Prefer just including imgui_internal.h from your code rather than using this define. If a declaration is missing from imgui_internal.h add it or request it on the github.
#ifdef IMGUI_INCLUDE_IMGUI_USER_INL
#include "imgui_user.inl"
#endif
//-----------------------------------------------------------------------------
#endif // #ifndef IMGUI_DISABLE
| [
"[email protected]"
] | |
4c2287a54cdb03ae0bd96649cdc1478a2b568be8 | 50894c60b5997f75df349d41581beb5cbab76b33 | /wrtstat/aggregator/options/reducer_options_json.hpp | b5526837a153fbf933d2b691a20f95a30494da6a | [
"MIT"
] | permissive | mambaru/wrtstat | 37a2cc0f1ff10925f3d1ef63f4ddbbdb1774c6b1 | f54aae273fe336027070014bd88668959c9904bd | refs/heads/master | 2023-07-20T13:45:04.470161 | 2023-07-17T10:48:51 | 2023-07-17T10:48:52 | 125,558,998 | 2 | 0 | MIT | 2021-04-22T12:40:42 | 2018-03-16T19:07:33 | C++ | UTF-8 | C++ | false | false | 666 | hpp | #pragma once
#include <wrtstat/aggregator/options/reducer_options.hpp>
#include <wjson/json.hpp>
#include <wjson/name.hpp>
namespace wrtstat{
struct reducer_options_json
{
JSON_NAME(reducer_limit)
JSON_NAME(reducer_levels)
typedef wjson::object<
reducer_options,
wjson::member_list<
wjson::member< n_reducer_limit, reducer_options, size_type, &reducer_options::reducer_limit>,
wjson::member< n_reducer_levels, reducer_options, size_type, &reducer_options::reducer_levels>
>,
wjson::strict_mode
> type;
typedef type::target target;
typedef type::serializer serializer;
typedef type::member_list member_list;
};
}
| [
"[email protected]"
] | |
961f8d123b1547b11930ec8a74415a94a850775a | 3ea4e8427d2c6e00161d840b69b9dd6115149b62 | /ums.cpp | 1410a46158613e8e6b38d732b6d2a7d4e8f7b26c | [] | no_license | Beyond-Horizon-23/University-management-system | 444d1e0bfacd5b8a6f61625784dd876db10b98f2 | 492f593b35f9a3e3781fcbd73bfae21eeb8392be | refs/heads/main | 2023-07-15T08:07:25.307404 | 2021-09-02T18:12:07 | 2021-09-02T18:12:07 | 402,516,432 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,313 | cpp | #include<fstream>
#include<cstring>
#include<ctype.h>
#include<cstdlib>
#include<cmath>
#include<cstdio>
#include<iostream>
using namespace std;
void teacher();
void student2();
class student
{
private:
int day_birth, month_birth, year_birth,day_admission,month_admission,year_admisssion, roll_no;
float percentage;
char teacher[15], roomno[10], name[25], address[35], phone[10], gender, scholar, emailid[35], section, status, stream[15],adm[4], newmail[35];
public:
void SEC(char c);
void ADMIT(char s) ;
void LISTCLASS();
void LISTCLASS2(char t, char name[35]);
void LISTCLASS3(char t, int rno);
void DISPLAY();
void STATUS();
void ASSIGNTEACHER();
void ASSIGNROOM();
void copy();
void showroom (char c);
void showteacher(char c);
int retroll_no()
{
return roll_no;
}
char retsec()
{
return section;
}
char *retname()
{
return name ;
}
char *retteacher()
{
return teacher;
}
char *retadmno()
{
return adm;
}
char retstatus()
{
return status;
}
float retpercentage()
{
return percentage;
}
void change_phone(char new_phone[10])
{
strcpy (phone, new_phone);
}
void change_address (char new_address[35])
{
strcpy (address, new_address);
}
void change_email(char new_email[35])
{
strcpy (emailid, new_email);
}
void displayname()
{
cout<<name<<endl;
}
};
void student:: ADMIT(char s)
{
cout<<"Enter Student Name"<<endl;
cin.clear();
fflush(stdin);
cin.get();
cin.getline(name,35);
fflush(stdin);
cout<<"Enter Gender (F:Female M:Male)";
cin>>gender;
switch(toupper(s))
{
case 'A': strcpy(roomno,"A101");
strcpy(teacher,"Preeti Mishra");
break;
case 'B': strcpy(roomno, "A102");
strcpy(teacher,"Malini Goel");
break;
case 'C': strcpy(roomno, "A103");
strcpy(teacher, "Robert Dave");
break;
case 'D': strcpy(roomno, "A104");
strcpy(teacher,"Rajeev Malik");
break;
case 'E': strcpy(roomno,"A105");
strcpy(teacher, "Sangeeta Dash");
break;
default : cout<<"Enter valid section i.e. one of 'A', 'B', 'C', 'D', E"<<endl;
cin>>section;
}
cout<<"Enter Stream"<<endl;
cin.get();
cin.getline (stream,15);
cout<<"Enter email id"<<endl;
cin.get();
cin.getline (emailid,35);
cout<<"Enter Mobile No.(10 digits only)"<<endl;
cin.get();
cin.getline (phone,10);
cout<<"Enter Address"<<endl;
cin.get();
cin.getline (address,35);
cout<<"Enter Date of Birth-dd/mm/yyyy"<<endl;
cin>>day_birth;
cout<<"/";
cin>>month_birth;
cout<<"/";
cin>>year_birth;
if (year_birth < 1990)
{
cout<<"Enter the year again (greater than 1990)";
cin>>year_birth;
}
cout<<"enter Date of addmission-dd/mm/yyyy"<<endl;
cin>>day_admission;
cout<<"/";
cin>>month_admission;
cout<<"/";
cin>>year_admisssion;
if (year_admisssion < year_birth)
{
cout<<"Enter the year again (later than year of birth)";
cin>>year_admisssion;
}
cout<<"enter the roll number"<<endl;
cin>>roll_no;
cout<<"Enter the Admission Number (4 digit no only)"<<endl;
cin.get();
cin.getline(adm,4);
cout<<"Enter the percentage"<<endl;
cin>>percentage;
if (percentage >= 100 || percentage <= 0)
{
cout<<"This is not a valid input"<<endl;
cout<<"Please enter again";
cin>>percentage;
}
}
void student:: SEC(char c)
{
section = c;
switch(toupper(section))
{
case 'A': strcpy(roomno,"A101");
strcpy(teacher,"Pretti Mishra");
break;
case 'B': strcpy(roomno, "A102");
strcpy(teacher,"Malini Goel");
break;
case 'C': strcpy(roomno, "A103");
strcpy(teacher, "Robert Dave");
break;
case 'D': strcpy(roomno,"A104");
strcpy(teacher, "Rajiv Malik");
break;
case 'E': strcpy(roomno, "A105");
strcpy(teacher,"Sangeeta Dash");
break;
default :cout<<"No such section available"<<endl<<endl;
}
}
void student :: LISTCLASS()
{fstream fil;
char sec;
cout<<"Enter a paticular section";
cin>>sec;
sec = toupper(sec);
if(sec == 'A')
fil.open("studenta.dat", ios::binary | ios::in);
else if(sec == 'B')
fil.open("studentb.dat", ios::binary | ios::in);
else if(sec == 'C')
fil.open("studentc.dat", ios::binary | ios::in);
else if(sec == 'D')
fil.open("studentd.dat", ios::binary | ios::in);
else if(sec == 'E')
fil.open("studente.dat", ios::binary |ios::in);
student stud;
cout<<"Name"<<endl;
cout<<"Stream"<<endl;
cout<<"Roll_no"<<endl;
while(fil.read((char*)&stud, sizeof(stud)))
{ cout<<endl;
cout<<stud.name<<" "<<stud.stream <<" "<<stud.roll_no<<endl;
}
fil.close();
}
void student::STATUS()
{
student stud;
fstream fil;
char sec;
cout<<"Enter the section of the child";
cin>>sec;
sec = toupper(sec);
if(sec == 'A')
fil.open("studenta.dat", ios::binary | ios::in);
else
if(sec == 'B')
fil.open("studentb.dat", ios::binary | ios::in);
else
if(sec == 'C')
fil.open("studentc.dat", ios::binary | ios::in);
else
if(sec == 'D')
fil.open("studentd.dat", ios::binary | ios::in);
else
if(sec == 'E')
fil.open("studente.dat", ios::binary |ios::in);
fil.read((char*)&stud, sizeof(stud));
if (stud.percentage < 33 || stud.percentage >= 0)
stud.status = 'F';
else if(stud.percentage >= 33 && stud.percentage <= 100)
stud.status = 'P';
else
cout<<"Invalid percentage";
cout<<"status assigned"<<endl;
if(stud.status == 'P')
cout<<"\t\tPassed"<<endl;
else
cout<<"\t\tFailed"<<endl;
fil.close();
}
void student::DISPLAY()
{
student stud;
fstream fil;
char sec;
sec = toupper(sec);
cout<<"Enter the section of the child";
cin>>sec;
if(sec == 'A')
fil.open("studenta.dat", ios::binary | ios::in);
else
if(sec == 'B')
fil.open("studentb.dat", ios::binary | ios::in);
else
if(sec == 'C')
fil.open("studentc.dat", ios::binary | ios::in);
else
if(sec == 'D')
fil.open("studentd.dat", ios::binary | ios::in);
else
if(sec == 'E')
fil.open("studente.dat", ios::binary |ios::in);
while(fil.read((char*)&stud, sizeof(stud)))
{
cout<<endl<<endl<<"Name:"<<stud.name<<" ";
cout<<"Gender (F:female M:male):"<<stud.gender<<"endl";
cout<<"Stream:"<<stud.stream<<"section"<<toupper(sec)<<"("<<stud.roomno<<")";
cout<<endl;
cout<<"Email Id :"<<stud.emailid<<endl;
cout<<"Phone Number:"<<stud.phone<<endl;
cout<<endl<<"Address:"<<stud.address<<endl;
cout<<"Date of Birth:"<<stud.day_birth<<"/"<<stud.month_birth<<"/"<<stud.year_birth<<endl;
cout<<"Date of Admission:"<< stud.day_admission<<"/"<<stud.month_admission<<"/"<<stud.year_admisssion<<endl;
cout<<"Roll_no:"<<stud.roll_no<<endl;
cout<<"Admission Nuber:"<<stud.adm<<endl;
cout<<"percentage:"<<stud.percentage<<endl;
cout<<"Class Teacher:"<<stud.teacher<<endl;
if (stud.status == 'F')
cout<<"FAILED";
else
cout<<"PASSED";
}
}
void student::LISTCLASS2(char t, char name[35])
{ t = toupper(t);
fstream fil;
if(t == 'A')
fil.open("studenta.dat", ios::binary | ios::in);
else
if(t == 'B')
fil.open("studentb.dat", ios::binary | ios::in);
else
if(t == 'C')
fil.open("studentc.dat", ios::binary | ios::in);
else
if(t == 'D')
fil.open("studentd.dat", ios::binary | ios::in);
else
if(t == 'E')
fil.open ("studente.dat",ios::binary|ios::in);
student stud;
cout<<"Name \t\t\t\t"<<"Stream \t\t\t\t"<<"Roll_no \t\t\t\t";
while(fil.read((char*)&stud, sizeof(stud)))
{
if (strcmp(stud.retname(),name) == 0)
cout<<endl<<stud.name<<"\t\t\t\t"<<stud.stream<<"\t\t\t\t"<<stud.roll_no<<endl;
}
fil.close();
}
void student::LISTCLASS3(char t,int rno)
{
toupper(t);
student stud;
fstream fil;
if(t == 'A')
fil.open("studenta.dat", ios::binary | ios::in);
else
if(t == 'B')
fil.open("studentb.dat", ios::binary | ios::in);
else if
(t == 'C')
fil.open("studentc.dat", ios::binary | ios::in);
else
if(t == 'D')
fil.open("studentd.dat", ios::binary | ios::in);
else
if(t == 'E')
fil.open("studente.dat",ios::binary|ios::in);
cout<<"Name \t\t\t\t"<<"Stream \t\t\t\t"<<"Roll_no \t\t\t\t";
while(fil.read((char*)&stud,sizeof(stud)))
{
if (stud.retroll_no() == rno)
cout<<endl<<stud.name<<"\t\t\t\t"<<stud.stream<<"\t\t\t\t"<<stud.roll_no<<"\t\t\t\t";
}
fil.close();
}
void student::showroom(char c)
{
toupper (c);
if(c =='A')
cout<<"YOUR ROOM NO IS A101"<<endl;
else
if(c =='B')
cout<<"YOUR ROOM NO IS A102"<<endl;
else
if(c =='C')
cout<<"YOUR ROOM NO IS A103"<<endl;
else
if(c =='D')
cout<<"YOUR ROOM NO IS A104"<<endl;
else
if (c =='E')
cout<<"YOUR ROOM NO IS A105"<<endl;
}
void student::showteacher(char c)
{
toupper(c);
if(c == 'A')
cout<<"YOUR TEACHER IS PREETI MISRA"<<endl;
else if(c == 'B')
cout<<"YOUR TEACHER IS MALINI GOEL"<<endl;
else if(c == 'C')
cout<<"YOUR TEACHER IS ROBERT DAVE"<<endl;
else if(c == 'D')
cout<<"YOUR TEACHER IS RAJEEV MALIK"<<endl;
else if (c == 'E')
cout<<"YOUR TEACHER IS SANGEETA DASH"<<endl;
}
void showstatus(char sec)
{
fstream fil;
char ch, name[35];
sec = toupper(sec);
if(sec == 'A')
fil.open("studenta.dat", ios::binary | ios::in);
else
if(sec == 'B')
fil.open("studentb.dat", ios::binary | ios::in);
else
if(sec == 'C')
fil.open("studentc.dat", ios::binary | ios::in);
else
if(sec == 'D')
fil.open("studentd.dat", ios::binary | ios::in);
else
if (sec == 'E')
fil.open("studente.dat", ios::binary | ios::in);
student s;
cout<<"enter your name";
cin.get();
cin.getline(name,35) ;
while(fil.read((char*)&s, sizeof(s)))
if(strcmp(s.retname(),name) == 0)
{
if(s.retstatus() == 'F')
cout<<"Failed"<<endl;
else
cout<<"Passed"<<endl;
}
fil.close();
cin.get();
}
void creat()
{
fstream fil;
char sec;
cout<<"ENTER THE SECTION OF THE CHILD"<<endl;
cin>>sec;
sec = toupper(sec);
if(sec=='A')
fil.open("studenta.dat", ios::binary | ios::app);
else
if(sec=='B')
fil.open("studentb.dat", ios::binary | ios::app);
else
if(sec=='C')
fil.open("studentc.dat", ios::binary | ios::app);
else
if(sec=='D')
fil.open("studentd.dat", ios::binary | ios::app);
else
if (sec=='E')
fil.open("studente.dat", ios::binary | ios::app);
student s;
char ch;
do
{
s.ADMIT(sec);
fil.write((char*)&s, sizeof(s));
cout<<"MORE(Y/N)"<<endl;
cin>>ch;
}while(ch != 'N');
fil.close();
}
void searchroll_no()
{
fstream fil;
char sec;
cout<<"ENTER THE SECTION OF THE CHILD ";
cin>>sec;
sec = toupper(sec);
if(sec == 'A')
fil.open("studenta.dat", ios::binary | ios::in);
else
if(sec == 'B')
fil.open("studentb.dat", ios::binary | ios::in);
else
if(sec == 'C')
fil.open("studentc.dat", ios::binary | ios::in);
else
if(sec == 'D')
fil.open("studentd.dat", ios::binary | ios::in);
else
if (sec == 'E')
fil.open("studente.dat", ios::binary | ios::in);
student s;
int roll_nono,found = 0;
cout<<"Enter the Roll_no to be searched"<<endl;
cin>>roll_nono;
while(fil.read((char*)&s, sizeof(s)))
{
if(s.retroll_no() == roll_nono)
{
s.LISTCLASS3(sec,roll_nono);
found++;
}
}
fil.close();
if(!found)
cout<<roll_nono<<"Roll_no not found in the paticular section"<<endl;
}
void searchname()
{
fstream fil;
char sec ;
cout<<"ENTER THE SECTION OF THE CHILD "<<endl;
cin>>sec;
sec = toupper(sec);
if(sec == 'A')
fil.open("studenta.dat", ios::binary | ios::in);
else
if(sec == 'B')
fil.open("studentb.dat", ios::binary | ios::in);
else
if(sec == 'C')
fil.open("studentc.dat", ios::binary | ios::in);
else
if(sec == 'D')
fil.open("studentd.dat", ios::binary | ios::in);
else
if (sec == 'E')
fil.open("studente.dat", ios::binary | ios::in);
student s;
char name[10];
int found = 0;
cout<<"ENTER THE NAME"<<endl;
cin.get();
cin.getline(name,35);
while(fil.read((char*)&s,sizeof(s)))
{
if(strcmp(s.retname(),name) == 0)
{
s.LISTCLASS2(sec,name);
found++;
}
}
fil.close();
if(!found)
cout<<name<<"Name not found in the paticular section"<<endl;
}
void sortname()
{
fstream fil;
char sec;
cout<<"ENTER THE SECTION OF YOUR CHILD"<<endl;
cin>>sec;
sec = toupper(sec);
if(sec == 'A')
fil.open("studenta.dat", ios::binary | ios::in);
else
if(sec == 'B')
fil.open("studentb.dat", ios::binary | ios::in);
else
if(sec == 'C')
fil.open("studentc.dat", ios::binary | ios::in);
else
if(sec == 'D')
fil.open("studentd.dat", ios::binary | ios::in);
else
if (sec == 'E')
fil.open("studente.dat", ios::binary | ios::in);
student s, sj,sjp1;
fil.seekg(0,ios::end);
int nor=fil.tellg()/sizeof(s);
for(int i = 0;i < nor-1; i++)
{
for(int j = 0;j < nor-1-i; j++)
{
fil.seekg(j*(sizeof(sj)));
fil.read((char*)&sj,sizeof(sj));
fil.read((char*)&sjp1,sizeof(sjp1));
if(strcmp (sj.retname(),sjp1.retname()) > 0)
{
fil.seekp(j*sizeof(sj));
fil.write((char*)&sjp1,sizeof(sjp1));
fil.write((char*)&sj,sizeof(sj));
}
}
}
fil.close();
}
void remove()
{
fstream fil,fil2;
char sec;
cout<<"ENTER THE SECTION OF THE CHILD "<<endl;
cin>>sec;
sec = toupper(sec);
if(sec == 'A')
fil.open("studenta.dat", ios::binary | ios::in);
else
if(sec == 'B')
fil.open("studentb.dat", ios::binary | ios::in);
else
if(sec == 'C')
fil.open("studentc.dat", ios::binary | ios::in);
else
if(sec == 'D')
fil.open("studentd.dat", ios::binary | ios::in);
else
if (sec == 'E')
fil.open("studente.dat",ios::binary|ios::in);
fil2.open("temp.dat",ios::binary|ios::out);
int roll_no, del = 0;
student s;
cout<<"Enter the Roll_no to be deleted"<<endl;
cin>>roll_no;
while(fil.read((char*)&s,sizeof(s)))
{
if(s.retroll_no() != roll_no)
{
fil2.write((char*)&s,sizeof(s));
remove("fil1.dat");
rename("fil1.dat", "fil2.dat");
}
else
del++;
}
fil.close();
fil2.close();
if(!del)
cout<<"No Record Deleted"<<endl;
else
cout<<"Roll_no"<<roll_no<<"deleted"<<endl;
}
void modify()
{
char ch;
fstream fil;
char sec,name[35];
char new_phno[10],new_address[35],new_mailid[35];
student s;
cout<<"Enter section of the child whose details are to be changed:";
cin>>sec;
sec = toupper(sec);
if(sec == 'A')
fil.open("studenta.dat",ios::binary|ios::in|ios::out);
else if (sec == 'B')
fil.open("studentb.dat",ios::binary|ios::in|ios::out);
else if (sec == 'C')
fil.open("studentc.dat",ios::binary|ios::in|ios::out);
else if (sec == 'D')
fil.open("studentd.dat",ios::binary|ios::in|ios::out);
else if (sec == 'E')
fil.open("studente.dat",ios::binary|ios::in|ios::out);
cout<<"Enter name of the child:";
cin.get();
cin.getline(name,35);
while(fil.read((char*)&s,sizeof(s)))
{
if(strcmp(s.retname(),name) == 0)
{
cout<<"\n Select the following option to edit database information"<<endl;
cout<<"1. Phone number"<<endl;
cout<<"2. Address"<<endl;
cout<<"3. Email-ID"<<endl;
cout<<"Enter your choice";
cin>>ch;
switch(ch)
{
case '1':
cout<<"Enter new phone no";
cin>>(new_phno);
s.change_phone(new_phno);
break;
case '2':
cout<<"Enter the new address";
cin.get();
cin.getline(new_address,35);
s.change_address(new_address);
break;
case '3':
cout<<"Enter the emailid";
cin.get();
cin.getline(new_mailid,35);
s.change_email(new_mailid);
break;
}
}
else
cout<<"Sorry invalid user"<<endl;
int pos=fil.tellg();
fil.seekp(pos-sizeof(s));
fil.write((char*)&s, sizeof(s));
}
fil.close();
}
int menu1()
{
int ret;
cout<<"1.CHECK ROOM NO.ASSIGNED"<<endl;
cout<<"2.CHECK TEACHER ASSIGNED"<<endl;
cout<<"3.CHECK STATUS"<<endl;
cout<<"4.LOG OFF STUDENT"<<endl;
cout<<endl<<endl<<"ENTER THE CHOICE";
do
{
cin>>ret;
if (ret < 1 || ret > 4)
cout<<"ENTER VALID CHOICE ONLY"<<endl;
} while(ret < 1 || ret > 4);
return ret;
}
void student2()
{
fstream fil;
student s;
int val;
char ch ;
cout<<endl;
cout<<"ENTER YOUR SECTION"<<endl;
cin>>ch;
ch = toupper(ch);
do
{
val = menu1();
if(val != 4)
{
if(ch == 'A')
{
if(val == 1)
{
s.showroom(ch);
}
else if(val == 2)
{
s.showteacher(ch);
}
else
{
showstatus(ch);
}
}
else if (ch == 'B')
{
if(val == 1)
{
s.showroom(ch);
}
else if(val == 2)
{
s.showteacher(ch);
}
else
{
showstatus(ch);
}
}
else if(ch == 'C')
{
if(val == 1)
{
s.showroom(ch);
}
else if(val == 2)
{
s.showteacher(ch);
}
else
{
showstatus(ch);
}
}
else if(ch== 'D')
{
if(val == 1)
{
s.showroom(ch);
}
else if(val == 2)
{
s.showteacher(ch);
}
else
{
showstatus(ch);
}
}
else if(ch == 'E')
{
if(val == 1)
{
s.showroom(ch);
}
else if(val == 2)
{
s.showteacher(ch);
}
else
{
showstatus(ch);
}
}
else
cout<<"LOGGING OFF STUDENT"<<endl;
}
} while (val != 4);
}
void teacher()
{
int n;
student s;
do
{
cout<<"1.ENTER THE STUDENTS DETAILS"<<endl;
cout<<"2.LIST OF STUDENTS OF A SECTION"<<endl;
cout<<"3. DISPLAY STUDENTS DETAILS"<<endl;
cout<<"4.SEARCH BY Roll_no "<<endl;
cout<<"5. SEARCH BY STUDENT NAME"<<endl;
cout<<"6. SORT BY NAME "<<endl;
cout<<"7.REMOVE STUDENT FROM A SECTION"<<endl;
cout<<"8. MODIFY THE DETAILS"<<endl;
cout<<"9.LOG OFF TEACHER"<<endl;
cout<<" ENTER YOUR CHOICE"<<endl;
cin>>n;
if(n == 1)
{
creat();
cin.get();
}
else if(n == 2)
{
s.LISTCLASS();
cin.get();
}
else if(n == 3)
{
s.DISPLAY();
cin.get();
}
else if(n == 4)
{
searchroll_no();
cin.get();
}
else if(n == 5)
{
searchname();
cin.get();
}
else if(n == 6)
{
sortname();
cin.get();
}
else if(n == 7)
{
remove();
cin.get();
}
else if(n == 8)
{
modify();
cin.get();
}
else if(n == 9)
cout<<"THANK YOU"<<endl;
cout<<"Want to do anything else?"<<endl;
cout<<"Press any number between 1 - 9"<<endl;
cin>>n;
} while(n <= 10);
}
int main()
{
char ch;
cout<<"******************************"<<endl;
cout<<" WELCOME TO LOVELY PROFESSIONAL UNIVERSITY "<<endl;
cout<<"******************************"<<endl<<endl;
cout<<" WANT TO SIGN IN AS TACHER OR AS STUDENT?"<<endl;
cout<<"a. Teacher"<<endl;
cout<<"b. Student"<<endl;
cin>>ch;
if (ch == 'a')
teacher();
else
student2();
cout<<endl<<"THANK YOU"<<endl;
return 0;
}
| [
"[email protected]"
] | |
a93957cb0432f8b1d641f418e4d0c1d195e43a6b | 91b3786fc8b8b42a7b4260be105e8574c53474e0 | /2016-7-12 第二场个人排位赛/A dfs+排列数.cpp | 37aff853ec5a6b5f259ce2278109e72346ff5e95 | [] | no_license | ailyanlu1/ACM-10 | 0cf294dc6e488fdb76a4532d2f8699e6f275d331 | a0a503eb351ad0393621326cb173a9bca90eafc2 | refs/heads/master | 2020-03-23T11:28:11.267917 | 2016-11-05T03:43:44 | 2016-11-05T03:43:44 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 916 | cpp | #include "stdafx.h"
#include <iostream>
#include <cstdio>
#include <vector>
#include <queue>
#include <cmath>
#include <cstring>
#include <algorithm>
#include <map>
#define inf 10000000000
using namespace std;
typedef long long ll;
int a[10], n, ans;
void dfs(int cur, int sum) {
int shu[6], ct = 0, tmp = sum;
while (tmp > 0) {
shu[ct++] = tmp % 10;
tmp /= 10;
}
sort(shu, shu + ct);
if (cur == n) {
int cr = 0;
for (int i = 0, ep = 1; i < ct; i++, ep *= 10) {
cr += shu[i] * ep;
}
ans = max(ans, cr);
return;
}
do {
int cr = 0;
for (int i = 0, ep = 1; i < ct; i++, ep *= 10) {
cr += shu[i] * ep;
}
dfs(cur + 1, a[cur] + cr);
} while (next_permutation(shu, shu + ct)); //先对数组进行排序,快速获取全排列的方法
}
int main()
{
scanf("%d", &n);
for (int i = 0; i < n; i++) {
scanf("%d", &a[i]);
}
ans = 0;
dfs(0, 0);
printf("%d\n", ans);
return 0;
} | [
"Hardy Wang"
] | Hardy Wang |
34c39e6821f5e6a576a8710c79855ce18a767d00 | b962ef7b06cdba3bad1ae8760fd7effb020606e1 | /cpp/SampleRdkMarmalade/MarmaladePlugIn.h | af16cb1b3f5806eeaa2752458a49bd5a181e80b3 | [
"MIT"
] | permissive | angellinares/rhino-developer-samples | 98df1b0355963533fc1d905e39ee73e80e2fe7eb | 40d3281f56f5febe812c7c6f2f96a52ba75b30e6 | refs/heads/master | 2021-01-18T16:47:47.046808 | 2017-03-22T20:19:07 | 2017-03-22T20:19:07 | 86,769,972 | 1 | 0 | null | 2017-03-31T02:33:54 | 2017-03-31T02:33:54 | null | UTF-8 | C++ | false | false | 1,979 | h |
#pragma once
#include "MarmaladeEventWatcher.h"
class CMarmaladeRdkPlugIn;
class CMarmaladeNonModalOptionsDlg;
class CMarmaladePlugIn : public CRhinoRenderPlugIn
{
public:
CMarmaladePlugIn();
virtual ~CMarmaladePlugIn();
static GUID ID(void);
// Required overrides.
virtual const wchar_t* PlugInName() const;
virtual const wchar_t* PlugInVersion() const;
virtual GUID PlugInID() const;
virtual BOOL OnLoadPlugIn();
virtual void OnUnloadPlugIn();
// Online help overrides.
virtual BOOL AddToPlugInHelpMenu() const;
virtual BOOL OnDisplayPlugInHelp( HWND hWnd ) const;
// Render overrides.
virtual CRhinoCommand::result Render(const CRhinoCommandContext& context, bool bPreview);
virtual CRhinoCommand::result RenderWindow(const CRhinoCommandContext& context, bool bPreview, CRhinoView* view, const LPRECT rect, bool bInWindow);
// Menu.
virtual void AddMarmaladeMenu(void);
virtual void RemoveMarmaladeMenu(void);
virtual BOOL OnPlugInMenuCommand(WPARAM wParam);
virtual void UpdateMarmaladeMenuState(void);
// Render methods
bool SceneChanged(void) const;
bool LightingChanged(void) const;
void SetSceneChanged(bool bChanged);
void SetLightingChanged(bool bChanged);
// Misc.
CMarmaladeRdkPlugIn& RdkPlugIn(void) { return *m_pRdkPlugIn; }
bool IsMarmaladeCurrentRenderer(void) const;
// Non-modal options dialog. How about having a handler object for this stuff?
void ShowNonModalOptionsDialog(bool bShow);
void ToggleNonModalOptionsDialog(void);
void EnableNonModalOptionsDialog(bool bEnable) const;
bool IsNonModalOptionsDialogVisible(void) const;
bool IsNonModalOptionsDialogMinimized(void) const;
virtual plugin_load_time PlugInLoadTime() { return load_plugin_at_startup; }
private:
ON_wString m_plugin_version;
CMarmaladeEventWatcher m_event_watcher;
CMarmaladeRdkPlugIn* m_pRdkPlugIn;
CMenu* m_pMenu;
UINT_PTR m_iTimer;
CMarmaladeNonModalOptionsDlg* m_pNonModalOptionsDialog;
};
CMarmaladePlugIn& MarmaladePlugIn();
| [
"[email protected]"
] | |
d99a45dddb22952dd17647d26f7df6e00c7113ef | 680a43a2c1f5427778ce3e09daae0f4b23eb66c9 | /Model/nodo.h | 64858f8f240a31a2f5a8c7ac046a7cf9d61c113e | [] | no_license | ValentinGrigoras/ProgettoP2Qontainer | 108f0892db6b95125f771b4aefdfba2a33f45441 | e7bee8344f40025711f80e28d1595bd9c5144eb6 | refs/heads/master | 2020-04-19T06:21:15.941556 | 2019-07-15T19:48:31 | 2019-07-15T19:48:31 | 168,015,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 70 | h | #ifndef NODO_H
#define NODO_H
template <class T>
#endif // NODO_H
| [
"[email protected]"
] | |
f1148802a474fcb2d0ce6933ec1f076ba4ebeb0b | 1e8e89b77d23b34f6c2251d339f74d12be9b43e0 | /DSA Cracker/minimum_swaps_to_sort.cpp | 8f5ce812dcb5ab39c12394b6c9c1cd86b4f315b0 | [] | no_license | skgautam1010/Everyday_programming | 167eaacf6b1c4912eb15ef3e99e626a8be257585 | 0f2c356567a9b7949111385ca2ec2cc220664c08 | refs/heads/master | 2023-06-26T18:12:22.063436 | 2021-07-31T18:13:40 | 2021-07-31T18:13:40 | 297,432,517 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,967 | cpp |
/*Minimum Swaps to Sort
Medium Accuracy: 50.0% Submissions: 47726 Points: 4
Given an array of n distinct elements. Find the minimum number of swaps required to sort the array in strictly increasing order.
Example 1:
Input:
nums = {2, 8, 5, 4}
Output:
1
Explaination:
swap 8 with 4.
Example 2:
Input:
nums = {10, 19, 6, 3, 5}
Output:
2
Explaination:
swap 10 with 3 and swap 19 with 5.
Your Task:
You do not need to read input or print anything. Your task is to complete the function minSwaps() which takes the nums as input parameter and returns an integer denoting the minimum number of swaps required to sort the array. If the array is already sorted, return 0.
Expected Time Complexity: O(nlogn)
Expected Auxiliary Space: O(n)
Constraints:
1 ≤ n ≤ 105
1 ≤ numsi ≤ 106*/
// { Driver Code Starts
#include<bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution
{
public:
//Function to find the minimum number of swaps required to sort the array.
int minSwaps(vector<int>&nums)
{
int n=nums.size();
vector<pair<int,int>>v(n);
vector<bool>visited(n,false);
for(int i=0;i<n;i++)
{
v[i].first=nums[i];
v[i].second=i;
}
sort(v.begin(),v.end());
int ans=0;
for(int i=0;i<n;i++)
{
if(visited[i]|| v[i].second==i)
{
continue;
}
int cyclesize=0;
int j=i;
while(!visited[j])
{
visited[j]=1;
j=v[j].second;
cyclesize++;
}
if(cyclesize>0)
{
ans +=cyclesize-1;
}
}
return ans;
}
};
// { Driver Code Starts.
int main(){
int tc;
cin >> tc;
while(tc--){
int n;
cin >> n;
vector<int>nums(n);
for(int i = 0; i < n; i++)
cin >> nums[i];
Solution obj;
int ans = obj.minSwaps(nums);
cout << ans <<"\n";
}
return 0;
} // } Driver Code Ends | [
"[email protected]"
] | |
019f84ef0637c9453b6116e8f607575638c0878f | 6909123fe02056f424ca3a0039f43ec1afccc854 | /ssibal/ssibal/단계뼐.cpp | 990edb23cef691f55ba7e82a048a70631279fb67 | [] | no_license | taetinn/Algo_BOJ | 103f36d8ab4974e6f6acc226a88027b2f7e605f6 | 39c44307c73eecc62568877195b15669f4ed46f1 | refs/heads/master | 2022-11-19T07:27:45.423831 | 2020-07-29T04:58:47 | 2020-07-29T04:58:47 | 283,402,084 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 237 | cpp | #include<iostream>
using namespace std;
int main(void) {
ios::sync_with_stdio(0);
cin.tie(0);
int N, G1, G2 = 0,cnt=0;
cin >> N;
for (int i = 0; i < N; i++) {
cin >> G1;
if (G2 == 0 && G1 == 2) {
cnt++;
}
G2 = G1;
}
} | [
"[email protected]"
] | |
d68e96146a0df87a1c82710edf129dad4cc10552 | 8cf18bc9ae140963f8f6b28045b28b7b9a590b11 | /qwt/src/qwt_magnifier.cpp | 55e7bb5eb7043df62b656048054028933525199b | [
"LGPL-2.1-only",
"Qwt-exception-1.0",
"Apache-2.0"
] | permissive | sergrt/Gen61850Sv | 8163759f980368da8f1a8379f994d7ca8cbcb717 | f07de932a16d2a6ca9a482633fa60b97042ed3f9 | refs/heads/master | 2023-07-22T12:46:47.643745 | 2023-07-11T20:24:51 | 2023-07-11T20:24:51 | 47,840,893 | 9 | 7 | Apache-2.0 | 2022-06-30T08:47:34 | 2015-12-11T17:28:03 | C++ | UTF-8 | C++ | false | false | 11,815 | cpp | /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Qwt License, Version 1.0
*****************************************************************************/
#include "qwt_magnifier.h"
#include "qwt_math.h"
#include <qevent.h>
#include <qwidget.h>
class QwtMagnifier::PrivateData
{
public:
PrivateData():
isEnabled( false ),
wheelFactor( 0.9 ),
wheelModifiers( Qt::NoModifier ),
mouseFactor( 0.95 ),
mouseButton( Qt::RightButton ),
mouseButtonModifiers( Qt::NoModifier ),
keyFactor( 0.9 ),
zoomInKey( Qt::Key_Plus ),
zoomInKeyModifiers( Qt::NoModifier ),
zoomOutKey( Qt::Key_Minus ),
zoomOutKeyModifiers( Qt::NoModifier ),
mousePressed( false )
{
}
bool isEnabled;
double wheelFactor;
Qt::KeyboardModifiers wheelModifiers;
double mouseFactor;
Qt::MouseButton mouseButton;
Qt::KeyboardModifiers mouseButtonModifiers;
double keyFactor;
int zoomInKey;
Qt::KeyboardModifiers zoomInKeyModifiers;
int zoomOutKey;
Qt::KeyboardModifiers zoomOutKeyModifiers;
bool mousePressed;
bool hasMouseTracking;
QPoint mousePos;
};
/*!
Constructor
\param parent Widget to be magnified
*/
QwtMagnifier::QwtMagnifier( QWidget *parent ):
QObject( parent )
{
d_data = new PrivateData();
setEnabled( true );
}
//! Destructor
QwtMagnifier::~QwtMagnifier()
{
delete d_data;
}
/*!
\brief En/disable the magnifier
When enabled is true an event filter is installed for
the observed widget, otherwise the event filter is removed.
\param on true or false
\sa isEnabled(), eventFilter()
*/
void QwtMagnifier::setEnabled( bool on )
{
if ( d_data->isEnabled != on )
{
d_data->isEnabled = on;
QObject *o = parent();
if ( o )
{
if ( d_data->isEnabled )
o->installEventFilter( this );
else
o->removeEventFilter( this );
}
}
}
/*!
\return true when enabled, false otherwise
\sa setEnabled(), eventFilter()
*/
bool QwtMagnifier::isEnabled() const
{
return d_data->isEnabled;
}
/*!
\brief Change the wheel factor
The wheel factor defines the ratio between the current range
on the parent widget and the zoomed range for each step of the wheel.
Use values > 1 for magnification (i.e. 2.0) and values < 1 for
scaling down (i.e. 1/2.0 = 0.5). You can use this feature for
inverting the direction of the wheel.
The default value is 0.9.
\param factor Wheel factor
\sa wheelFactor(), setWheelButtonState(),
setMouseFactor(), setKeyFactor()
*/
void QwtMagnifier::setWheelFactor( double factor )
{
d_data->wheelFactor = factor;
}
/*!
\return Wheel factor
\sa setWheelFactor()
*/
double QwtMagnifier::wheelFactor() const
{
return d_data->wheelFactor;
}
/*!
Assign keyboard modifiers for zooming in/out using the wheel.
The default modifiers are Qt::NoModifiers.
\param modifiers Keyboard modifiers
\sa wheelModifiers()
*/
void QwtMagnifier::setWheelModifiers( Qt::KeyboardModifiers modifiers )
{
d_data->wheelModifiers = modifiers;
}
/*!
\return Wheel modifiers
\sa setWheelModifiers()
*/
Qt::KeyboardModifiers QwtMagnifier::wheelModifiers() const
{
return d_data->wheelModifiers;
}
/*!
\brief Change the mouse factor
The mouse factor defines the ratio between the current range
on the parent widget and the zoomed range for each vertical mouse movement.
The default value is 0.95.
\param factor Wheel factor
\sa mouseFactor(), setMouseButton(), setWheelFactor(), setKeyFactor()
*/
void QwtMagnifier::setMouseFactor( double factor )
{
d_data->mouseFactor = factor;
}
/*!
\return Mouse factor
\sa setMouseFactor()
*/
double QwtMagnifier::mouseFactor() const
{
return d_data->mouseFactor;
}
/*!
Assign the mouse button, that is used for zooming in/out.
The default value is Qt::RightButton.
\param button Button
\param modifiers Keyboard modifiers
\sa getMouseButton()
*/
void QwtMagnifier::setMouseButton(
Qt::MouseButton button, Qt::KeyboardModifiers modifiers )
{
d_data->mouseButton = button;
d_data->mouseButtonModifiers = modifiers;
}
//! \sa setMouseButton()
void QwtMagnifier::getMouseButton(
Qt::MouseButton &button, Qt::KeyboardModifiers &modifiers ) const
{
button = d_data->mouseButton;
modifiers = d_data->mouseButtonModifiers;
}
/*!
\brief Change the key factor
The key factor defines the ratio between the current range
on the parent widget and the zoomed range for each key press of
the zoom in/out keys. The default value is 0.9.
\param factor Key factor
\sa keyFactor(), setZoomInKey(), setZoomOutKey(),
setWheelFactor, setMouseFactor()
*/
void QwtMagnifier::setKeyFactor( double factor )
{
d_data->keyFactor = factor;
}
/*!
\return Key factor
\sa setKeyFactor()
*/
double QwtMagnifier::keyFactor() const
{
return d_data->keyFactor;
}
/*!
Assign the key, that is used for zooming in.
The default combination is Qt::Key_Plus + Qt::NoModifier.
\param key
\param modifiers
\sa getZoomInKey(), setZoomOutKey()
*/
void QwtMagnifier::setZoomInKey( int key,
Qt::KeyboardModifiers modifiers )
{
d_data->zoomInKey = key;
d_data->zoomInKeyModifiers = modifiers;
}
/*!
\brief Retrieve the settings of the zoom in key
\param key Key code, see Qt::Key
\param modifiers Keyboard modifiers
\sa setZoomInKey()
*/
void QwtMagnifier::getZoomInKey( int &key,
Qt::KeyboardModifiers &modifiers ) const
{
key = d_data->zoomInKey;
modifiers = d_data->zoomInKeyModifiers;
}
/*!
Assign the key, that is used for zooming out.
The default combination is Qt::Key_Minus + Qt::NoModifier.
\param key
\param modifiers
\sa getZoomOutKey(), setZoomOutKey()
*/
void QwtMagnifier::setZoomOutKey( int key,
Qt::KeyboardModifiers modifiers )
{
d_data->zoomOutKey = key;
d_data->zoomOutKeyModifiers = modifiers;
}
/*!
\brief Retrieve the settings of the zoom out key
\param key Key code, see Qt::Key
\param modifiers Keyboard modifiers
\sa setZoomOutKey()
*/
void QwtMagnifier::getZoomOutKey( int &key,
Qt::KeyboardModifiers &modifiers ) const
{
key = d_data->zoomOutKey;
modifiers = d_data->zoomOutKeyModifiers;
}
/*!
\brief Event filter
When isEnabled() is true, the mouse events of the
observed widget are filtered.
\param object Object to be filtered
\param event Event
\return Forwarded to QObject::eventFilter()
\sa widgetMousePressEvent(), widgetMouseReleaseEvent(),
widgetMouseMoveEvent(), widgetWheelEvent(), widgetKeyPressEvent()
widgetKeyReleaseEvent()
*/
bool QwtMagnifier::eventFilter( QObject *object, QEvent *event )
{
if ( object && object == parent() )
{
switch ( event->type() )
{
case QEvent::MouseButtonPress:
{
widgetMousePressEvent( static_cast<QMouseEvent *>( event ) );
break;
}
case QEvent::MouseMove:
{
widgetMouseMoveEvent( static_cast<QMouseEvent *>( event ) );
break;
}
case QEvent::MouseButtonRelease:
{
widgetMouseReleaseEvent( static_cast<QMouseEvent *>( event ) );
break;
}
case QEvent::Wheel:
{
widgetWheelEvent( static_cast<QWheelEvent *>( event ) );
break;
}
case QEvent::KeyPress:
{
widgetKeyPressEvent( static_cast<QKeyEvent *>( event ) );
break;
}
case QEvent::KeyRelease:
{
widgetKeyReleaseEvent( static_cast<QKeyEvent *>( event ) );
break;
}
default:;
}
}
return QObject::eventFilter( object, event );
}
/*!
Handle a mouse press event for the observed widget.
\param mouseEvent Mouse event
\sa eventFilter(), widgetMouseReleaseEvent(), widgetMouseMoveEvent()
*/
void QwtMagnifier::widgetMousePressEvent( QMouseEvent *mouseEvent )
{
if ( parentWidget() == NULL )
return;
if ( ( mouseEvent->button() != d_data->mouseButton ) ||
( mouseEvent->modifiers() != d_data->mouseButtonModifiers ) )
{
return;
}
d_data->hasMouseTracking = parentWidget()->hasMouseTracking();
parentWidget()->setMouseTracking( true );
d_data->mousePos = mouseEvent->pos();
d_data->mousePressed = true;
}
/*!
Handle a mouse release event for the observed widget.
\param mouseEvent Mouse event
\sa eventFilter(), widgetMousePressEvent(), widgetMouseMoveEvent(),
*/
void QwtMagnifier::widgetMouseReleaseEvent( QMouseEvent *mouseEvent )
{
Q_UNUSED( mouseEvent );
if ( d_data->mousePressed && parentWidget() )
{
d_data->mousePressed = false;
parentWidget()->setMouseTracking( d_data->hasMouseTracking );
}
}
/*!
Handle a mouse move event for the observed widget.
\param mouseEvent Mouse event
\sa eventFilter(), widgetMousePressEvent(), widgetMouseReleaseEvent(),
*/
void QwtMagnifier::widgetMouseMoveEvent( QMouseEvent *mouseEvent )
{
if ( !d_data->mousePressed )
return;
const int dy = mouseEvent->pos().y() - d_data->mousePos.y();
if ( dy != 0 )
{
double f = d_data->mouseFactor;
if ( dy < 0 )
f = 1 / f;
rescale( f );
}
d_data->mousePos = mouseEvent->pos();
}
/*!
Handle a wheel event for the observed widget.
\param wheelEvent Wheel event
\sa eventFilter()
*/
void QwtMagnifier::widgetWheelEvent( QWheelEvent *wheelEvent )
{
if ( wheelEvent->modifiers() != d_data->wheelModifiers )
{
return;
}
if ( d_data->wheelFactor != 0.0 )
{
/*
A positive delta indicates that the wheel was
rotated forwards away from the user; a negative
value indicates that the wheel was rotated
backwards toward the user.
Most mouse types work in steps of 15 degrees,
in which case the delta value is a multiple
of 120 (== 15 * 8).
*/
double f = qPow( d_data->wheelFactor,
qAbs( wheelEvent->delta() / 120.0 ) );
if ( wheelEvent->delta() > 0 )
f = 1 / f;
rescale( f );
}
}
/*!
Handle a key press event for the observed widget.
\param keyEvent Key event
\sa eventFilter(), widgetKeyReleaseEvent()
*/
void QwtMagnifier::widgetKeyPressEvent( QKeyEvent *keyEvent )
{
if ( keyEvent->key() == d_data->zoomInKey &&
keyEvent->modifiers() == d_data->zoomInKeyModifiers )
{
rescale( d_data->keyFactor );
}
else if ( keyEvent->key() == d_data->zoomOutKey &&
keyEvent->modifiers() == d_data->zoomOutKeyModifiers )
{
rescale( 1.0 / d_data->keyFactor );
}
}
/*!
Handle a key release event for the observed widget.
\param keyEvent Key event
\sa eventFilter(), widgetKeyReleaseEvent()
*/
void QwtMagnifier::widgetKeyReleaseEvent( QKeyEvent *keyEvent )
{
Q_UNUSED( keyEvent );
}
//! \return Parent widget, where the rescaling happens
QWidget *QwtMagnifier::parentWidget()
{
return qobject_cast<QWidget *>( parent() );
}
//! \return Parent widget, where the rescaling happens
const QWidget *QwtMagnifier::parentWidget() const
{
return qobject_cast<const QWidget *>( parent() );
}
| [
"[email protected]"
] | |
bf5f872c6d2485a6aaa3746ca8582c931cb096d0 | 57194820134b8998d11bae395f25af11a2174996 | /gameLib(ver 1.2)/Source/Headers/gpu_swirl_particle.h | 7cdbabab4d936622c282698569052df7bbc60e07 | [] | no_license | tamura61239/theWorkTamera | 6cf89102d091648e533a1a9860265dd2286e4bb2 | fec55266e7c4528ef6be3c8e81cec063fa60bd77 | refs/heads/master | 2023-07-02T06:26:35.204151 | 2021-08-14T08:10:33 | 2021-08-14T08:10:33 | 273,241,578 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 692 | h | #pragma once
#include"gpu_particle_test.h"
#if (PARTICLE_SYSTEM_TYPE==0)
class GpuSwirlParticle :public GpuParticleTest
{
public:
GpuSwirlParticle(ID3D11Device* device, int maxParticle = 10000);
void Update(ID3D11DeviceContext* context, float elapsd_time);
//void Render(ID3D11DeviceContext* context, const FLOAT4X4& view, const FLOAT4X4& projection);
private:
struct ComputeConstance
{
VECTOR3F centerPosition;
float dummy;
};
Microsoft::WRL::ComPtr<ID3D11Buffer>mConputeConstanceBuffer;
Microsoft::WRL::ComPtr<ID3D11Buffer>mResetBuffer;
Microsoft::WRL::ComPtr<ID3D11UnorderedAccessView>mResetUAV;
ComputeConstance mComputeConstance;
};
#elif (PARTICLE_SYSTEM_TYPE==1)
#endif | [
"[email protected]"
] | |
20cad4fab9fdc71ee4b0f7098ccbfeb09185061a | f07c072871f8c6e8f25e63a2a05308575eb3242c | /HackerRank/Data Type Hackerrank.cpp | c64b896c4e3e8c96a899b16f6fe2946fa9f1bc0c | [] | no_license | pathakaditya6/Competitive-Programming | 7c5d71dcc537152fb06b4e580a68cbe00572a9b1 | e6175075cfc82b4ab166181ccaf7a447635911ca | refs/heads/main | 2023-01-15T16:32:52.125572 | 2020-11-22T23:31:57 | 2020-11-22T23:31:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 320 | cpp | #include <iostream>
#include <iomanip>
#include <limits>
using namespace std;
int main() {
int i = 4;
double d = 4.0;
string s = "HackerRank ";
int c;
cin>>c;
double e;
cin>>e;
string s2;
getline (cin, s2);
cout<<i+c<<endl;
cout<<setprecision(1)<<fixed;
cout<<d+e<<endl;
cout<<s+s2<<endl;
return 0;
}
| [
"[email protected]"
] | |
a2e1a108cae8335635f5f9920010549882a3b548 | fa0d1d5492b8259fae1176a327c5c563300a5364 | /Unit2 - Project 1 - Extended Kalman Filter/src/tools.cpp | 02a0101bc819adef17ef4840c82b611657db3f03 | [] | no_license | jfvanreu/SDC | bb557cbb6c3601e59103901dc226c585f1be8b31 | f7aee6b3065e26dd5b4f2576c10e0cd0f6a857b2 | refs/heads/master | 2022-11-09T00:24:05.729865 | 2022-11-04T20:42:31 | 2022-11-04T20:42:31 | 75,593,469 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,143 | cpp | #include <iostream>
#include "tools.h"
using Eigen::VectorXd;
using Eigen::MatrixXd;
using std::vector;
Tools::Tools() {}
Tools::~Tools() {}
VectorXd Tools::CalculateRMSE(const vector<VectorXd> &estimations,
const vector<VectorXd> &ground_truth) {
/**
TODO:
* Calculate the RMSE here.
*/
VectorXd rmse(4);
rmse << 0,0,0,0;
// check the validity of the following inputs:
// * the estimation vector size should not be zero
if (estimations.size() != 0) {
// * the estimation vector size should equal ground truth vector size
// ... your code here
if (estimations.size() == ground_truth.size()) {
//accumulate squared residuals
for(unsigned int i=0; i < estimations.size(); ++i){
VectorXd residual = estimations[i] - ground_truth[i];
//coefficient-wise multiplication
residual = residual.array()*residual.array();
rmse += residual;
}
//calculate the mean
rmse = rmse/estimations.size();
//calculate the squared root
rmse = rmse.array().sqrt();
//return the result
return rmse;
}
}
else {
std::cout << "Both estimation and ground truth vectors have different sizes" << std::endl;
}
}
bool Tools::CalculateJacobian(const VectorXd& x_state, MatrixXd& Hj) {
/**
TODO:
* Calculate a Jacobian here.
*/
//MatrixXd Hj(3,4);
//recover state parameters
float px = x_state(0);
float py = x_state(1);
float vx = x_state(2);
float vy = x_state(3);
bool div_issue=false;
float sum_sq = pow(px,2)+pow(py,2);
float sqrt_sum = sqrt(sum_sq);
//check division by zero
if (sum_sq != 0) {
Hj << px/sqrt_sum, py/sqrt_sum, 0, 0,
-py/sum_sq, px/sum_sq, 0, 0,
py*(vx*py-vy*px)/pow(sum_sq,1.5), px*(vy*px-vx*py)/pow(sum_sq,1.5), px/sqrt_sum, py/sqrt_sum;
} else {
std::cout << "\nDivision by zero error with the Jacobian matrix! Skipping the data update..." << std::endl;
div_issue=true;
}
return div_issue;
}
| [
"[email protected]"
] | |
d657eb3847fe8a73a4f01562400d30a421570281 | 5618093b02bad33e40bf57bcf1289db134b4b778 | /main.6838222757411681375.cpp | 122ecf1463a37a580efa00709c8d871224cfb68c | [] | no_license | huynguy97/IP-Week4 | c4647b59bdd4489e012a7f72194dd484b71d7722 | c707ea1afdfd3803cde967e42efd4813fd90794f | refs/heads/master | 2020-05-22T08:39:16.588265 | 2019-05-12T17:21:51 | 2019-05-12T17:21:51 | 186,283,027 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,528 | cpp | //
//
#include <iostream>
using namespace std;
enum Month {January=1,February,March,April,May,June,July,August,September,October,November,December} ;
/*
*/
int easter_base ( int year )
{
const int A = year % 19 ;
const int B = year / 100 ;
const int C = year % 100 ;
const int D = B / 4 ;
const int E = B % 4 ;
const int F = (B + 8) / 25 ;
const int G = (B - F + 1) / 3 ;
const int H = (19 * A + B - D - G + 15) % 30 ;
const int I = C / 4 ;
const int K = C % 4 ;
const int L = (32 + 2 * E + 2 * I - H - K) % 7 ;
const int M = (A + 11 * H + 22 * L) / 451 ;
return H + L - 7 * M + 114 ;
}
/*
*/
int easter_day ( int year )
{
return (easter_base (year) % 31) + 1 ;
}
/*
*/
Month easter_month ( int year )
{
return static_cast<Month> (easter_base (year) / 31) ;
}
/*
*/
bool is_leap_year ( int year )
{
if (year % 4 == 0)
{
if(year % 100 == 0)
{
if(year % 400 == 0)
{
return true;
}else
{
return false;
}
}else
{
return true;
}
}else
{
return false;
}
}
//
//
//
int number_of_days_in_month ( int year, Month month )
{
switch(month)
{
case(February):
if(is_leap_year(year))
{
return 29;
}else
{
return 28;
}
case January:
case March:
case May:
case July:
case August:
case October:
case December: return 31;
case April:
case June:
case September:
case November: return 30;
}
}
//
/*
*/
/*
*/
int day_number_in_year ( int day, Month month, int year )
{
{
Month m = January ;
int days_in_months = 0 ;
while ( m < month )
{
days_in_months = days_in_months + number_of_days_in_month (year, month);
m = static_cast<Month> (m+1) ;
}
return days_in_months + day;
}
}
//
//
//
Month month_in_year_of_day_number ( int day_number, int year )
{
Month m = January ;
while ( day_number > number_of_days_in_month ( year, m ))
{
day_number = day_number - number_of_days_in_month ( year, m) ;
m = static_cast<Month> (m+1) ;
}
return m ;
}
//
//
//
int day_in_month_of_day_number ( int day_number, int year )
{
const Month MONTH = month_in_year_of_day_number ( day_number, year ) ;
return day_number - day_number_in_year (1, MONTH, year) + 1;
}
//
void show_Month ( Month month )
{
switch (month)
{
case January : cout << "January" ; break ;
case February : cout << "February" ; break ;
case March : cout << "March" ; break ;
case April : cout << "April" ; break ;
case May : cout << "May" ; break ;
case June : cout << "June" ; break ;
case July : cout << "July" ; break ;
case August : cout << "August" ; break ;
case September: cout << "September"; break ;
case October : cout << "October" ; break ;
case November : cout << "November" ; break ;
case December : cout << "December" ; break ;
default: cout << "Unknown month" ; break ;
}
}
void show_day_number_as_date ( int day_number, int year )
{
cout << day_in_month_of_day_number ( day_number, year ) ;
cout << " " ;
show_Month ( month_in_year_of_day_number ( day_number, year )) ;
}
//
int enter_year ()
{
int year ;
do
{
cout << "Enter a year (1500 - 2100) or 0 to stop: " ;
cin >> year ;
}
while ((year < 1500 || year > 2100) && year != 0 );
return year ;
}
//
const int DIFFERENCE_CARNIVAL = -7*7 ;
const int DIFFERENCE_GOOD_FRIDAY = -2 ;
const int DIFFERENCE_WHITSUNTIDE = 7*7 ;
const int DIFFERENCE_ASCENSION_DAY = DIFFERENCE_WHITSUNTIDE - 10 ;
void show_holy_days ()
{
int year = enter_year () ;
while ( year != 0 )
{
const int DAY = easter_day ( year ) ;
const Month MONTH = easter_month ( year ) ;
const int EASTER = day_number_in_year ( DAY, MONTH, year ) ;
const int CARNIVAL = EASTER + DIFFERENCE_CARNIVAL ;
const int GOOD_FRIDAY = EASTER + DIFFERENCE_GOOD_FRIDAY ;
const int ASCENSION = EASTER + DIFFERENCE_ASCENSION_DAY ;
const int WHITSUNTIDE = EASTER + DIFFERENCE_WHITSUNTIDE ;
cout << "In year " << year << endl ;
cout << " Carnival is on " ; show_day_number_as_date ( CARNIVAL, year ) ; cout << endl ;
cout << " Good Friday is on " ; show_day_number_as_date ( GOOD_FRIDAY, year ) ; cout << endl ;
cout << " Easter is on " ; show_day_number_as_date ( EASTER, year ) ; cout << endl ;
cout << " Ascension is on " ; show_day_number_as_date ( ASCENSION, year ) ; cout << endl ;
cout << " Whitsuntide is on " ; show_day_number_as_date ( WHITSUNTIDE, year ) ; cout << endl ;
year = enter_year () ;
}
}
//
int main ()
{
show_holy_days () ;
return 0;
}
| [
"[email protected]"
] | |
fe52c62e5e24bc2d4a45e6dc2fe5394305bcb41c | d6ffe5b89d0f657f3d2d32b620bc73a6d80b5f15 | /zhangyux15/global_var.h | fb66c3b4d19ed33e6ab3ef34ee127944e85014af | [] | no_license | Vladimir2506/ProjectDSA1 | aed133f54cef7bb17918d2e390f146d7d58eb5da | ff16c9f6078ec23d0a9ebf7104c5053960825b59 | refs/heads/master | 2021-05-09T04:23:00.573753 | 2018-01-28T15:54:48 | 2018-01-28T15:54:48 | 119,271,720 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 247 | h | #pragma once
#include <string>
extern int HEIGHT, WIDTH;
extern std::string PATH_PROJECT;
extern std::string PATH_MY_OUTPUT;
extern std::string PATH_MVE_OUTPUT;
constexpr int MAX_DIJKSTRA_VERTECIES = 60;
constexpr int MAX_SAMPLE_COMPLEMENT = 6; | [
"[email protected]"
] | |
4f55ee41991e7dfce701038b7f1d4d5ffcad0217 | f72eb760f8b7e5e5294707359cae416ea44e222c | /src/classifier/Model.h | 8b23b9fbe3096f2085a5eb467b84981e368f76ba | [] | no_license | xiaoyeye1117/lm-decoder | 3927920f2c48ab879d3dc66e194a49ae49b2a62d | db8d50a64e52f6d23e987ec18ae380d010d1ba86 | refs/heads/master | 2020-06-23T08:05:41.122536 | 2017-12-09T15:57:06 | 2017-12-09T15:57:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 926 | h | #ifndef _MODEL_H_
#define _MODEL_H_
/*
* Linear Discrinant Model
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <vector>
#include <iostream>
#include <fstream>
#include <unordered_map>
#include <unordered_set>
#include "utils/StringUtil.h"
#include "utils/LOG.h"
using namespace std;
class Model{
public:
Model(){};
virtual ~Model(){};
std::unordered_map<std::string, double> _weights;
virtual void fit(const std::vector<std::string>& feat_vec, double label){};
virtual double classify(const std::vector<std::string>& feat_vec);
virtual double get_score(const std::vector<std::string>& feat_vec);
virtual void save(const char* filename);
virtual void read(const char* filename);
void save(const char* filename,
const std::unordered_map<std::string, double>& weights);
void read(const char* filename,
std::unordered_map<std::string, double>& weights);
};
#endif
| [
"[email protected]"
] | |
e7b221e2bca1e4e764108ee8cc4e9458f3d68a79 | 8333cbc9a780c4fd1a040946c6c6ac0a3ae12fa5 | /307.cpp | 73a6169707b21d82d66222a4393a2b36fb4b3f22 | [] | no_license | jinshenyongzai/LeetCode-CPlusPlus | 69f5f7510c361c9fb171d9224b9624291daa059c | aff2884d79bf3b39377d75b234721d65cf295ffc | refs/heads/master | 2020-06-18T15:57:24.203464 | 2019-11-26T02:51:13 | 2019-11-26T02:51:13 | 196,356,067 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 830 | cpp | #include <iostream>
#include <vector>
using namespace std;
class NumArray {
public:
vector<int> sum;
vector<int> data;
NumArray(vector<int>& nums) {
data = nums;
sum.push_back(0);
for (int i = 1; i < nums.size() + 1; i++)
sum.push_back(sum[i - 1] + nums[i - 1]);
}
void update(int i, int val) {
sum.clear();
sum.push_back(0);
data[i] = val;
for (int j = 1; j < data.size() + 1; j++)
sum.push_back(sum[j - 1] + data[j - 1]);
}
int sumRange(int i, int j) {
return sum[j + 1] - sum[i];
}
};
//int main() {
//
// vector<int> nums = { 1, 3, 5 };
//
// NumArray* obj = new NumArray(nums);
//
// int param_1 = obj->sumRange(0, 2);
// cout << param_1 << endl;
//
// obj->update(1, 2);
//
// param_1 = obj->sumRange(0, 2);
// cout << param_1 << endl;
//} | [
"[email protected]"
] | |
699376d5c440fed58a0efa2bd366bfad23f7a977 | 664523fa5620a41e344fb850b928f5a556616f33 | /services/gfx/compositor/backend/scheduler.h | ce8d3d997e89ed79928374fad036e9fb0588e05e | [
"BSD-3-Clause"
] | permissive | runt18/mojo | 01daeb8d6b703434d532c2acf5f2dacab6a4c51e | 9ae29e0c3aab69f110010a9cd3dc5e7d6f3656db | refs/heads/master | 2021-01-16T20:45:37.719200 | 2016-03-22T19:09:01 | 2016-03-22T19:09:01 | 51,163,031 | 0 | 0 | null | 2016-03-22T19:09:02 | 2016-02-05T17:38:48 | C++ | UTF-8 | C++ | false | false | 3,088 | h | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SERVICES_GFX_COMPOSITOR_BACKEND_SCHEDULER_H_
#define SERVICES_GFX_COMPOSITOR_BACKEND_SCHEDULER_H_
#include <limits>
#include <mutex>
#include "base/callback.h"
#include "base/macros.h"
#include "mojo/services/gfx/composition/interfaces/scheduling.mojom.h"
namespace compositor {
// A frame scheduler is responsible for deciding when to perform each
// phase of composition.
//
// During the "update" phase, the compositor signals each application that
// that it should start producing the next frame of content.
//
// During the "snapshot" phase, the compositor gathers all pending scene
// graph updates and produces a new frame for rendering. Rendering begins
// immediately after the snapshot is taken.
//
// An instance of the |Scheduler| interface is exposed by each |Output|
// so as to express the timing requirements of the output.
class Scheduler {
public:
// Determines the behavior of |ScheduleFrame()|.
enum class SchedulingMode {
// Schedules a snapshot, at minimum.
kSnapshot,
// Schedules an update followed by a snapshot, at minimum.
kUpdateAndSnapshot,
};
Scheduler() = default;
virtual ~Scheduler() = default;
// Schedules work for a frame.
//
// This function ensures that every update is followed by a snapshot
// unless scheduling is suspended in the meantime.
//
// When |scheduling_mode| is |kSnapshot|, if there is time between now
// and the snapshot during which an update can be performed, then an
// update will also be scheduled before the requested snapshot.
//
// When |scheduling_mode| is |kUpdateAndSnapshot|, if there is time
// between now and the update during which a snapshot can be performed,
// then a snapshot will also be scheduled before the requested update
// and the next snapshot.
//
// This design is intended to minimize latency by anticipating that
// snapshots will be needed after updates and by scheduling updates in
// advance if it is known that a snapshot will be needed on the next frame.
virtual void ScheduleFrame(SchedulingMode scheduling_mode) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(Scheduler);
};
// Scheduling callbacks.
//
// These callbacks are provided to the |Output| in order to receive the
// events produced by the output's associated |Scheduler|.
struct SchedulerCallbacks {
using FrameCallback =
base::Callback<void(const mojo::gfx::composition::FrameInfo&)>;
SchedulerCallbacks(const FrameCallback& update_callback,
const FrameCallback& snapshot_callback);
~SchedulerCallbacks();
// Called when it's time for applications to/ update the contents of
// their scenes.
const FrameCallback update_callback;
// Called when it's time for the compositor to snapshot and submit
// the next frame.
const FrameCallback snapshot_callback;
};
} // namespace compositor
#endif // SERVICES_GFX_COMPOSITOR_BACKEND_SCHEDULER_H_
| [
"[email protected]"
] | |
8fa2596b01c62e1dce8a3551813b36f5676fc6a7 | 476bd9f3203f5d473d8598c762fb57663f8c0e41 | /src/primitives/transaction.cpp | 2806182ccedbdcb6ca6bef53a550712937b75123 | [
"MIT"
] | permissive | nagrath/GoldPoker-coin | dae10690a3d24f4e95022275834e427c79684b55 | 65911a7908f515a7515063521b2a1183a454f1c4 | refs/heads/master | 2022-12-27T17:44:27.211696 | 2020-09-14T17:55:04 | 2020-09-14T17:55:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,077 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2015-2017 The PIVX developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "primitives/block.h"
#include "primitives/transaction.h"
#include "chain.h"
#include "hash.h"
#include "main.h"
#include "tinyformat.h"
#include "utilstrencodings.h"
#include "transaction.h"
#include <boost/foreach.hpp>
extern bool GetTransaction(const uint256 &hash, CTransaction &txOut, uint256 &hashBlock, bool fAllowSlow);
std::string COutPoint::ToString() const
{
return strprintf("COutPoint(%s, %u)", hash.ToString()/*.substr(0,10)*/, n);
}
std::string COutPoint::ToStringShort() const
{
return strprintf("%s-%u", hash.ToString().substr(0,64), n);
}
uint256 COutPoint::GetHash()
{
return Hash(BEGIN(hash), END(hash), BEGIN(n), END(n));
}
CTxIn::CTxIn(COutPoint prevoutIn, CScript scriptSigIn, uint32_t nSequenceIn)
{
prevout = prevoutIn;
scriptSig = scriptSigIn;
nSequence = nSequenceIn;
}
CTxIn::CTxIn(uint256 hashPrevTx, uint32_t nOut, CScript scriptSigIn, uint32_t nSequenceIn)
{
prevout = COutPoint(hashPrevTx, nOut);
scriptSig = scriptSigIn;
nSequence = nSequenceIn;
}
std::string CTxIn::ToString() const
{
std::string str;
str += "CTxIn(";
str += prevout.ToString();
if (prevout.IsNull())
str += strprintf(", coinbase %s", HexStr(scriptSig));
else
str += strprintf(", scriptSig=%s", scriptSig.ToString().substr(0,24));
if (nSequence != std::numeric_limits<unsigned int>::max())
str += strprintf(", nSequence=%u", nSequence);
str += ")";
return str;
}
CTxOut::CTxOut(const CAmount& nValueIn, CScript scriptPubKeyIn)
{
nValue = nValueIn;
scriptPubKey = scriptPubKeyIn;
}
bool COutPoint::IsMasternodeReward(const CTransaction* tx) const
{
if(!tx->IsCoinStake())
return false;
return (n == tx->vout.size() - 1) && (tx->vout[1].scriptPubKey != tx->vout[n].scriptPubKey);
}
uint256 CTxOut::GetHash() const
{
return SerializeHash(*this);
}
std::string CTxOut::ToString() const
{
return strprintf("CTxOut(nValue=%d.%08d, scriptPubKey=%s)", nValue / COIN, nValue % COIN, scriptPubKey.ToString().substr(0,30));
}
CMutableTransaction::CMutableTransaction() : nVersion(CTransaction::CURRENT_VERSION), nLockTime(0) {}
CMutableTransaction::CMutableTransaction(const CTransaction& tx) : nVersion(tx.nVersion), vin(tx.vin), vout(tx.vout), nLockTime(tx.nLockTime) {}
uint256 CMutableTransaction::GetHash() const
{
return SerializeHash(*this);
}
std::string CMutableTransaction::ToString() const
{
std::string str;
str += strprintf("CMutableTransaction(ver=%d, vin.size=%u, vout.size=%u, nLockTime=%u)\n",
nVersion,
vin.size(),
vout.size(),
nLockTime);
for (unsigned int i = 0; i < vin.size(); i++)
str += " " + vin[i].ToString() + "\n";
for (unsigned int i = 0; i < vout.size(); i++)
str += " " + vout[i].ToString() + "\n";
return str;
}
void CTransaction::UpdateHash() const
{
*const_cast<uint256*>(&hash) = SerializeHash(*this);
}
CTransaction::CTransaction() : hash(), nVersion(CTransaction::CURRENT_VERSION), vin(), vout(), nLockTime(0) { }
CTransaction::CTransaction(const CMutableTransaction &tx) : nVersion(tx.nVersion), vin(tx.vin), vout(tx.vout), nLockTime(tx.nLockTime) {
UpdateHash();
}
CTransaction& CTransaction::operator=(const CTransaction &tx) {
*const_cast<int*>(&nVersion) = tx.nVersion;
*const_cast<std::vector<CTxIn>*>(&vin) = tx.vin;
*const_cast<std::vector<CTxOut>*>(&vout) = tx.vout;
*const_cast<unsigned int*>(&nLockTime) = tx.nLockTime;
*const_cast<uint256*>(&hash) = tx.hash;
return *this;
}
CAmount CTransaction::GetValueOut() const
{
CAmount nValueOut = 0;
for (std::vector<CTxOut>::const_iterator it(vout.begin()); it != vout.end(); ++it)
{
// GPKR: previously MoneyRange() was called here. This has been replaced with negative check and boundary wrap check.
if (it->nValue < 0)
throw std::runtime_error("CTransaction::GetValueOut() : value out of range : less than 0");
if ((nValueOut + it->nValue) < nValueOut)
throw std::runtime_error("CTransaction::GetValueOut() : value out of range : wraps the int64_t boundary");
nValueOut += it->nValue;
}
return nValueOut;
}
double CTransaction::ComputePriority(double dPriorityInputs, unsigned int nTxSize) const
{
nTxSize = CalculateModifiedSize(nTxSize);
if (nTxSize == 0) return 0.0;
return dPriorityInputs / nTxSize;
}
unsigned int CTransaction::CalculateModifiedSize(unsigned int nTxSize) const
{
// In order to avoid disincentivizing cleaning up the UTXO set we don't count
// the constant overhead for each txin and up to 110 bytes of scriptSig (which
// is enough to cover a compressed pubkey p2sh redemption) for priority.
// Providing any more cleanup incentive than making additional inputs free would
// risk encouraging people to create junk outputs to redeem later.
if (nTxSize == 0)
nTxSize = ::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION);
for (std::vector<CTxIn>::const_iterator it(vin.begin()); it != vin.end(); ++it)
{
unsigned int offset = 41U + std::min(110U, (unsigned int)it->scriptSig.size());
if (nTxSize > offset)
nTxSize -= offset;
}
return nTxSize;
}
std::string CTransaction::ToString() const
{
std::string str;
str += strprintf("CTransaction(hash=%s, ver=%d, vin.size=%u, vout.size=%u, nLockTime=%u)\n",
GetHash().ToString().substr(0,10),
nVersion,
vin.size(),
vout.size(),
nLockTime);
for (unsigned int i = 0; i < vin.size(); i++)
str += " " + vin[i].ToString() + "\n";
for (unsigned int i = 0; i < vout.size(); i++)
str += " " + vout[i].ToString() + "\n";
return str;
}
| [
"[email protected]"
] | |
77e260efebd0238cdbd7cc81eba2a76f3cb7e74b | 62a39d3bc950944b0a35b7c9f0ef4faa7251597f | /CourseTask/GraphAlgorithms.h | d9f656a0b8daf35cfce657149748b703cad98a57 | [] | no_license | smth-mn/CourseTask | 7ceb8b650d50683b80657a0cfd2a4a29a9871032 | 59e6ca5e016f97bdbd52c2d39f93afaa7775038c | refs/heads/master | 2020-03-16T20:05:59.440028 | 2018-05-10T19:38:38 | 2018-05-10T19:38:38 | 132,946,244 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 207 | h | #pragma once
#include <iostream>
#include <vector>
#include "Graph.h"
using namespace std;
class GraphAlgorithms
{
public:
static void findPath(Graph* graph, int row1, int col1, int row2, int col2);
};
| [
"[email protected]"
] | |
a18f4546b4e816ee2f0cb372d5ce7aa67baef184 | 243cf8fa4989909b128f0c674a4d3dbc3d63fe68 | /kragre.cpp | 29f399002c0a57e1e0c5ec240f34f59369443869 | [] | no_license | thesky-fei/homework | e50c57b89350ad0cd3d659e943bea2b4ca302243 | e9ce68412330a2f580534d4e8afe44feb0d51e58 | refs/heads/master | 2022-10-13T01:09:26.828251 | 2020-06-09T05:04:53 | 2020-06-09T05:04:53 | 270,904,333 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 769 | cpp | #include<iostream>
#include<iomanip>
using namespace std;
const long double pi=3.1415926;
class cylinder
{
private:
double r,h;
public:
cylinder(double x,double y);
double getvolumn()const;//
double getarea()const;//
};
cylinder::cylinder(double x,double y)
{
r=y;
h=x;
}
double cylinder::getvolumn()const
{
return pi*r*r*h;
}
double cylinder::getarea()const
{
return 2*pi*r*r+2*pi*r*h;
}
int main()
{
double d,h;
cin>>d>>h;
cylinder can(h,d/2);
cout<<"构造函数被调用"<<endl;
cout<<fixed<<setprecision(6);
cout<<"油桶的容积是"<<can.getvolumn()<<" "<<endl;
cout<<"铁皮的面积是"<<can.getarea()<<endl;
cout<<"析构函数被调用"<<endl;
}
| [
"[email protected]"
] | |
b649e969e0cc7a7fa89c4210c83446d64509cbe8 | bb65267bf0a08fe51632ccecf79914af98434a83 | /Contest Vjudge/MU[2018]/2.cpp | 8319bdbf4a1376b8535735cd0664771a1ce44048 | [] | no_license | SabirKhanAkash/Random-Contests | 982beee337ceb3802d7bc4d09c65ebbb6a47461f | 659ecf324cb9003144cb014e020deb715aa5a1bb | refs/heads/master | 2023-03-06T10:36:10.307450 | 2021-02-11T17:31:52 | 2021-02-11T17:31:52 | 338,101,365 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,032 | cpp | #include<iostream>
#include<stdio.h>
#define si(x) scanf("%d",&x)
using namespace std;
int main()
{
int n,arr[1010],ps=0,pd=0;
si(n);
for(int i=0;i<n;i++){
si(arr[i]);
}
if(n%2==0) {
for(int i=0,j=n-1;(i!=(n/2));i++,j--){
if(arr[i]>arr[j]){
ps+=arr[i];
pd+=arr[j];
cout<<ps<<endl;
cout<<pd<<endl;
}
else {
ps+=arr[j];
pd+=arr[i];
//cout<<ps<<endl;
//cout<<pd<<endl;
}
}
cout<<ps<<" "<<pd<<endl;
}
if(n%2!=0) {
for(int i=0,j=n-1;(i!=(n+1)/2);i++,j--){
if(arr[i]>arr[j]){
ps+=arr[i];
pd+=arr[j];
//cout<<ps<<endl;
//cout<<pd<<endl;
}
else {
ps+=arr[j];
pd+=arr[i];
//cout<<ps<<endl;
//cout<<pd<<endl;
}
}
cout<<ps<<" "<<pd-arr[((n+1)/2)-1]<<endl;
}
return 0;
}
| [
"[email protected]"
] | |
b055c292a8ee04eb5226535a523cdf88f18c46a4 | f51bbb34566c5855af67b63502b9fcbaf145f1e7 | /src/c_wrapper/sampler.cpp | 3e260ef309b27f83c3c436a22ab85250e3300308 | [
"MIT"
] | permissive | mrgloom/pyopencl | da61bca3b1e1987d619cd4e81031d41a1b38082f | 1c750e01bda04d21e0571c73cee756a8b75351e6 | refs/heads/master | 2021-01-17T23:10:22.771724 | 2015-07-27T02:55:21 | 2015-07-27T02:55:21 | 40,135,750 | 1 | 0 | null | 2015-08-03T16:33:21 | 2015-08-03T16:33:20 | null | UTF-8 | C++ | false | false | 1,687 | cpp | #include "sampler.h"
#include "context.h"
#include "clhelper.h"
template class clobj<cl_sampler>;
template void print_arg<cl_sampler>(std::ostream&, const cl_sampler&, bool);
template void print_clobj<sampler>(std::ostream&, const sampler*);
template void print_buf<cl_sampler>(std::ostream&, const cl_sampler*,
size_t, ArgType, bool, bool);
sampler::~sampler()
{
pyopencl_call_guarded_cleanup(clReleaseSampler, this);
}
generic_info
sampler::get_info(cl_uint param_name) const
{
switch ((cl_sampler_info)param_name) {
case CL_SAMPLER_REFERENCE_COUNT:
return pyopencl_get_int_info(cl_uint, Sampler, this, param_name);
case CL_SAMPLER_CONTEXT:
return pyopencl_get_opaque_info(context, Sampler, this, param_name);
case CL_SAMPLER_ADDRESSING_MODE:
return pyopencl_get_int_info(cl_addressing_mode, Sampler,
this, param_name);
case CL_SAMPLER_FILTER_MODE:
return pyopencl_get_int_info(cl_filter_mode, Sampler, this, param_name);
case CL_SAMPLER_NORMALIZED_COORDS:
return pyopencl_get_int_info(cl_bool, Sampler, this, param_name);
default:
throw clerror("Sampler.get_info", CL_INVALID_VALUE);
}
}
// c wrapper
// Sampler
error*
create_sampler(clobj_t *samp, clobj_t _ctx, int norm_coords,
cl_addressing_mode am, cl_filter_mode fm)
{
auto ctx = static_cast<context*>(_ctx);
return c_handle_error([&] {
*samp = new sampler(pyopencl_call_guarded(clCreateSampler, ctx,
norm_coords, am, fm),
false);
});
}
| [
"[email protected]"
] | |
7c70f7f9d22dea13b77aae82ebf50fdcdf68d746 | 3bfb37bd092cb3e448620ad7cb3088dca32256f2 | /python/jittor/test/test.h | d5400431bb1294668a75328d9ae6bd257072a48b | [
"Apache-2.0"
] | permissive | zhujindi/jittor | 25a46c60e955597053db49c824754f40a59eb3ff | a1a82f6b2c5d46bcc32dc0495e6fae0104cee7a9 | refs/heads/master | 2023-08-29T22:04:41.729697 | 2021-11-01T04:20:45 | 2021-11-01T04:20:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 639 | h | // ***************************************************************
// Copyright (c) 2021 Jittor. All Rights Reserved.
// Maintainers: Dun Liang <[email protected]>.
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
// ***************************************************************
#pragma once
#include <functional>
using namespace std;
void test_main();
void expect_error(function<void()> func);
int main() {
try {
test_main();
} catch (const std::exception& e) {
std::cout << e.what() << std::endl;
return 1;
}
} | [
"[email protected]"
] | |
534dda37569e1cc2ba3ecd07f245c3f0fad36846 | bc91392be1d69c240cea5cdb154c02311d0be9de | /p2/main.cpp | 199523fc7c2b723fd543b3f07ce47c66f095d51d | [] | no_license | ChrisMcMahon123/COMP4250-Project-1 | 2fcc952c2b4010426d2b02de7e905e8f7824f275 | 3ef31a1ef53e0cc10bb081370e73f0f154e6bb37 | refs/heads/master | 2020-04-21T14:46:16.088986 | 2019-05-17T16:00:32 | 2019-05-17T16:00:32 | 169,645,940 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,431 | cpp | #include <iostream>
#include <fstream>
#include <sstream>
#include <map>
#include <unordered_set>
#include <vector>
using namespace std;
int main()
{
ifstream infile("retail.txt");
if(!infile.is_open())
{
cout << "Failed to open file" << endl;
return 0;
}
//FIRST PASSTHROUGH
const string delimiter = " ";
string line;
size_t pos;
long hashValue;
long number;
long buckets = 0;// ie number of lines in the file
//read the file line by line
vector<long> numbers;
map<long,long> pairFrequency;
map<long, long> hashmap;
cout << "PCY Algorithm: " << endl;
cout << "Part 1: Pair Frequency" << endl;
//read the file line by line
while (getline(infile, line))
{
//get all numbers in the line
pos = 0;
while ((pos = line.find(" ")) != string::npos)
{
number = stol(line.substr(0, pos));//get the token, convert to long
numbers.push_back(number);
hashmap[number] ++;
//cout << number << endl;
line.erase(0, pos + delimiter.length());//get the next number in the line
}
buckets ++;
//generate tuples
for (auto it1 = numbers.begin(); it1 != numbers.end();)
{
for (auto it2 = it1 +1; it2 != numbers.end();)
{
//cout << "Line: " << buckets << " Tuples: " << *it1 << ", " << *it2 << endl;
hashValue = (*it1 * *it2) % 10000;
pairFrequency[hashValue]++;
++ it2;
}
++ it1;
}
numbers.clear();
}
cout << "Number of Buckets " << buckets << endl;
//filter for frequent singles
double threshold = buckets * 0.01;
vector<long> frequentSingles;
for(auto it = hashmap.begin(); it != hashmap.end();)
{
if(it->second >= threshold)
{
frequentSingles.push_back(it->first);
//cout << "Frequent Singles: " << it->first << " Count: " << it->second << endl;
}
it ++;
}
vector<vector<long>> tuples;
//generate pairs from frequent singles
for (auto it1 = frequentSingles.begin(); it1 != frequentSingles.end();)
{
for (auto it2 = it1 +1; it2 != frequentSingles.end();)
{
//cout << "Line: " << buckets << " Tuples: " << *it1 << ", " << *it2 << endl;
tuples.push_back(vector<long>{*it1, *it2});
cout << "Tuples: " << *it1 << " , " << *it2 << endl;
++ it2;
}
++ it1;
}
cout << "Number of potential Tuples: " << tuples.size() << endl;
//filter any potential tuples with the bitmap
vector<vector<long>> filterTuples;
vector<long> tupleFrequency;
for(auto v: tuples)
{
hashValue = (v[0] * v[1]) % 10000;
if(pairFrequency[hashValue] >= threshold)
{
cout << "Tuple: " << v[0] << ", " << v[1] << endl;
filterTuples.push_back(v);
tupleFrequency.push_back(0);
}
}
cout << "Number of tuple after bitmap filter: " << filterTuples.size() << endl;
//second passthrough
numbers.clear();
infile.clear();
infile.seekg(0, ios::beg);
unordered_set<long> numbers2;
while (getline(infile, line))
{
//get all numbers in the line
pos = 0;
while ((pos = line.find(" ")) != string::npos)
{
number = stol(line.substr(0, pos));//get the token, convert to long
numbers2.insert(number);
//cout << number << endl;
line.erase(0, pos + delimiter.length());//get the next number in the line
}
for(unsigned long i = 0; i < filterTuples.size(); i ++)
{
if(numbers2.find(filterTuples[i][0]) != numbers2.end())
{
if(numbers2.find(filterTuples[i][1]) != numbers2.end())
{
tupleFrequency[i] ++;
}
}
}
numbers2.clear();
}
int count = 0;
for(unsigned long i = 0; i < filterTuples.size(); i ++)
{
if(tupleFrequency[i] >= threshold)
{
cout << "Frequent Tuples: " << filterTuples[i][0] << " " << filterTuples[i][1] << endl;
count ++;
}
}
cout << "Number of Frequent Tuples: " << count << endl;
return 0;
}
| [
"[email protected]"
] | |
089ec05fd149e66ea68e7bcc0121c36a0cc7a6bd | 1a20961af3b03b46c109b09812143a7ef95c6caa | /Book/3dlearn/DirectX/DragonBook2ShaderCode/Chapter 18/Props/Water.h | 52f285fa49d93b6ca145ae7f6af216e8619da5ef | [] | no_license | JetAr/ZNginx | eff4ae2457b7b28115787d6af7a3098c121e8368 | 698b40085585d4190cf983f61b803ad23468cdef | refs/heads/master | 2021-07-16T13:29:57.438175 | 2017-10-23T02:05:43 | 2017-10-23T02:05:43 | 26,522,265 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 981 | h | //=============================================================================
// Water.h by Frank Luna (C) 2004 All Rights Reserved.
//
// Note: If you want large bodies of water, then you should break
// the water mesh into sub-grids like we did with the terrain
// so that you can frustum cull.
//=============================================================================
#ifndef WATER_H
#define WATER_H
#include "d3dUtil.h"
class Water
{
public:
Water(int m, int n, float dx, float dz, const D3DXMATRIX& toWorld);
~Water();
DWORD getNumTriangles();
DWORD getNumVertices();
void onLostDevice();
void onResetDevice();
void update(float dt);
void draw();
private:
void buildFX();
private:
ID3DXMesh* mMesh;
D3DXMATRIX mToWorld;
ID3DXEffect* mFX;
DWORD mVertRows;
DWORD mVertCols;
float mWidth;
float mDepth;
float mDX;
float mDZ;
D3DXHANDLE mhTech;
D3DXHANDLE mhWVP;
D3DXHANDLE mhWorld;
D3DXHANDLE mhEyePosW;
};
#endif // WATER_H | [
"[email protected]"
] | |
a92f1f85dd04bd899ea356660fe5b8e57be5e2e6 | 7c03750fd1aeabd848e89dddcea172bca2b68138 | /blynk_Ir.ino | 566e4d630052cc3eaa20c086f6a2c65d2a286af2 | [] | no_license | Hashichemnad/IotWorkshop20 | 1952458ba092d2cd1ec08eb080a7dd3dec2deb41 | 34cef3889234aeaa0a10b6a805fe41c21b5902fc | refs/heads/master | 2020-12-29T14:08:51.080933 | 2020-02-08T07:02:10 | 2020-02-08T07:02:10 | 238,633,283 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 505 | ino | #define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
char auth[] = "BREva_4dVcoBfdnQ_aZxTj60QAPcviFn";
char ssid[] = "hashichemnad";
char pass[] = "passwords";
WidgetLED led1(1);
#define IR D7
bool ir;
void setup() {
Serial.begin(9600);
pinMode(IR, INPUT);
Blynk.begin(auth, ssid, pass);
}
void loop() {
ir = digitalRead(IR);
if(ir == 1)
{
Serial.println("No Object");
led1.off();
}
else if (ir == 0)
{
Serial.println("Object Detected");
led1.on();
}
Blynk.run();
}
| [
"[email protected]"
] | |
52198c342a1a0651392475b721c93f6306b15d35 | fc28619e6e9d7068de6948498494ceed3352e018 | /mask-resource-sequence.h | e43dcf26a8bc69fec0a0804701d9222015f267a6 | [] | no_license | zxzAndyMAC/facemask-plugin | 2f2519f5b9e434ea7b6265aece543552af514c51 | ede38ee2fadddead4989892f781abebd6ea5360c | refs/heads/master | 2020-05-02T18:39:32.579814 | 2018-06-14T21:28:19 | 2018-06-14T21:28:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,268 | h | /*
* Face Masks for SlOBS
* Copyright (C) 2017 General Workings Inc
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#pragma once
#include "mask-resource.h"
#include "mask-resource-image.h"
#include "mask.h"
namespace Mask {
namespace Resource {
struct SequenceInstanceData : public InstanceData {
int current;
int delta;
float elapsed;
float delay;
SequenceInstanceData() : current(-1), delta(1),
elapsed(0.0f), delay(0.0f) {}
void Reset() override {
current = 0;
elapsed = 0.0f;
}
void Reset(int first, int last) {
float a = (float)rand() / (float)RAND_MAX;
float max = (float)last;
float min = (float)first;
current = (int)(a * (max - min) + min);
elapsed = 0.0f;
}
};
class Sequence : public IBase {
public:
Sequence(Mask::MaskData* parent, std::string name, obs_data_t* data);
virtual ~Sequence();
virtual Type GetType() override;
virtual void Update(Mask::Part* part, float time) override;
virtual void Render(Mask::Part* part) override;
std::shared_ptr<Image> GetImage() { return m_image; }
void SetTextureMatrix(Mask::Part* part, matrix4* texmat);
enum Mode : uint32_t {
ONCE,
REPEAT,
BOUNCE,
REPEAT_DELAY,
BOUNCE_DELAY,
SCROLL_L,
SCROLL_R,
SCROLL_U,
SCROLL_D,
SPIN_CW,
SPIN_CCW,
};
protected:
std::shared_ptr<Image> m_image;
int m_rows;
int m_cols;
int m_first;
int m_last;
float m_rate;
float m_delay;
Mode m_mode;
bool m_randomStart;
Mode StringToMode(std::string m);
bool IsMultiFrameMode() {
return (m_mode == Mask::Resource::Sequence::ONCE ||
m_mode == Mask::Resource::Sequence::REPEAT ||
m_mode == Mask::Resource::Sequence::BOUNCE ||
m_mode == Mask::Resource::Sequence::REPEAT_DELAY ||
m_mode == Mask::Resource::Sequence::BOUNCE_DELAY);
}
bool IsDelayMode() {
return (m_mode == Mask::Resource::Sequence::REPEAT_DELAY ||
m_mode == Mask::Resource::Sequence::BOUNCE_DELAY);
}
bool IsBounceMode() {
return (m_mode == Mask::Resource::Sequence::BOUNCE ||
m_mode == Mask::Resource::Sequence::BOUNCE_DELAY);
}
bool IsRepeatMode() {
return (m_mode == Mask::Resource::Sequence::REPEAT ||
m_mode == Mask::Resource::Sequence::REPEAT_DELAY);
}
bool IsTranslationMode() {
return (m_mode == Mask::Resource::Sequence::SCROLL_L ||
m_mode == Mask::Resource::Sequence::SCROLL_R ||
m_mode == Mask::Resource::Sequence::SCROLL_U ||
m_mode == Mask::Resource::Sequence::SCROLL_D);
}
};
}
}
| [
"[email protected]"
] | |
db645dbfd42605ab158b1ab445a77176ab473455 | 3f20764983f005917a0dfdf094961f88297ce680 | /DoorController/DoorController.ino | 35f4b4f9fd9dcfa383e746faa22acc5a500daa5f | [] | no_license | tledford/Door-Controller | 4062fe756982e6da0202cdb2758720ae7632ec7c | 714cbf5a9b20b129d340a53d237aaeda9689886a | refs/heads/master | 2021-01-02T08:39:02.163100 | 2014-04-08T04:00:46 | 2014-04-08T04:00:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,743 | ino | #define MAX_BITS 100 // max number of bits
#define WEIGAND_WAIT_TIME 3000 // time to wait for another weigand pulse.
#include <SPI.h>
#include <Servo.h>
Servo myservo; // create servo object to control a servo
int lock = 0; //servo unlock position
int unlock = 160; //servo lock position
int old = 0; //servo intial and old position
int ledPin = 13; //led is on when door is locked
int greenPin = 6;
int switchPin = 7; //momentary connected to ground for lock toggling.
int switchRead = 1;
unsigned char databits[MAX_BITS]; // stores all of the data bits
unsigned char bitCount; // number of bits currently captured
unsigned char flagDone; // goes low when data is currently being captured
unsigned int weigand_counter; // countdown until we assume there are no more bits
unsigned long facilityCode=0; // decoded facility code
unsigned long cardCode=0;
const int numCards = 5;
unsigned long authorizedCards[numCards] = {4597, 19328, 14526, 13519, 16594};
//tommy, tommySummerArts, jeremy, zach, steve
// interrupt that happens when INTO goes low (0 bit)
void ISR_INT0()
{
//Serial.print("0");
bitCount++;
flagDone = 0;
weigand_counter = WEIGAND_WAIT_TIME;
}
// interrupt that happens when INT1 goes low (1 bit)
void ISR_INT1()
{
//Serial.print("1");
databits[bitCount] = 1;
bitCount++;
flagDone = 0;
weigand_counter = WEIGAND_WAIT_TIME;
}
void setup()
{
Serial.begin(9600);
pinMode(ledPin, OUTPUT);
pinMode(greenPin, OUTPUT);
myservo.attach(5); //the pin for the servo control
lockServo(); //initialize the servo to the locked position incase of random reset
pinMode(2, INPUT); // DATA0 (INT0)
pinMode(3, INPUT); // DATA1 (INT1)
// binds the ISR functions to the falling edge of INTO and INT1
attachInterrupt(0, ISR_INT0, FALLING);
attachInterrupt(1, ISR_INT1, FALLING);
weigand_counter = WEIGAND_WAIT_TIME;
//momentary switch initializing
pinMode(switchPin, INPUT_PULLUP);
}
void loop()
{
while (Serial.available() == 0)
{
switchRead = digitalRead(switchPin);
if (!switchRead) //if pushbutton is pressed
{
delay(500);
if(switchRead == digitalRead(switchPin))
{
if(old != lock)
{
lockServo();
}
else if(old != unlock)
{
unlockServo();
}
}
//switchRead = 1;
}
// This waits to make sure that there have been no more data pulses before processing data
if (!flagDone)
{
if (--weigand_counter == 0)
flagDone = 1;
}
// if we have bits and we the weigand counter went out
if (bitCount > 0 && flagDone)
{
unsigned char i;
if (bitCount == 35)
{
// 35 bit HID Corporate 1000 format
for (i=2; i<14; i++)
{
//Serial.print(databits[i]);
facilityCode <<=1;
//Serial.println(facilityCode);
facilityCode |= databits[i];
//Serial.println(facilityCode);
//Serial.println("");
}
for (i=14; i<34; i++)
{
//Serial.print(databits[i]);
cardCode <<=1;
//Serial.println(facilityCode);
cardCode |= databits[i];
//Serial.println(facilityCode);
//Serial.println("");
}
/*Serial.print("Facility Code: ");
Serial.println(facilityCode);
Serial.println("");
Serial.print("Card Code: ");
Serial.println(cardCode);
Serial.println("");
*/
for(int i = 0; i < numCards; i++)
{
if (cardCode == authorizedCards[i])
{
if(old != lock)
{
lockServo();
}
else if(old != unlock)
{
unlockServo();
}
break;
}
}
}
// cleanup and get ready for the next card
bitCount = 0;
facilityCode = 0;
cardCode = 0;
for (i=0; i<MAX_BITS; i++)
{
databits[i] = 0;
}
}
}
int val = Serial.read() - '0';
if(val == 1 && old != lock)
{
lockServo();
}
else if(val == 2 && old != unlock)
{
unlockServo();
}
}
void lockServo()
{
myservo.attach(5);
delay(20);
digitalWrite(ledPin, HIGH); // sets the LED on
//Serial.println("LOCKED");
//for(int j = old; j <= lock; j += 1)
{
myservo.write(lock);
delay(1000);
}
myservo.detach();
digitalWrite(greenPin, HIGH);
//Serial.println("Locked");
old = lock;
Serial.write("1");
}
void unlockServo()
{
myservo.attach(5);
delay(20);
digitalWrite(ledPin, LOW);
//Serial.println("UNLOCKED");
//for(int j = old; j>=unlock; j-=1)
{
myservo.write(unlock);
delay(1000);
}
myservo.detach();
digitalWrite(greenPin, LOW);
//Serial.println("Unlocked");
old = unlock;
Serial.write("2");
}
| [
"[email protected]"
] | |
7ed9126637b776acf714562173e85def89d7adca | b4b4e324cbc6159a02597aa66f52cb8e1bc43bc1 | /C++ code/NTU Online Judge/2636(2).cpp | 239ebaa34f854fa35d24a7784178897f1a06ccfb | [] | no_license | fsps60312/old-C-code | 5d0ffa0796dde5ab04c839e1dc786267b67de902 | b4be562c873afe9eacb45ab14f61c15b7115fc07 | refs/heads/master | 2022-11-30T10:55:25.587197 | 2017-06-03T16:23:03 | 2017-06-03T16:23:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,911 | cpp | #include<cstdio>
#include<cassert>
#include<vector>
#include<algorithm>
#include<map>
using namespace std;
typedef long long LL;
struct Point
{
int X,Y,Z;
Point(){}
Point(const int _X,const int _Y,const int _Z):X(_X),Y(_Y),Z(_Z){}
};
bool operator<(const Point &a,const Point &b)
{
if(a.Z!=b.Z)return a.Z<b.Z;
if(a.X!=b.X)return a.X<b.X;
if(a.Y!=b.Y)return a.Y<b.Y;
return false;
}
struct Vector
{
int X,Y;
Vector(){}
Vector(const int _X,const int _Y):X(_X),Y(_Y){}
};
Vector operator-(const Point &a,const Point &b){return Vector(a.X-b.X,a.Y-b.Y);}
int Trans(const LL v){return v==0?0:(v<0?-1:1);}
int Direction(const Vector &a,const Vector &b)
{
return Trans((LL)a.X*b.Y-(LL)b.X*a.Y);
}
struct Triangle
{
Point A,B,C;
Triangle(){}
Triangle(const Point &_A,const Point &_B,const Point &_C):A(_A),B(_B),C(_C){}
bool Contains(const Point &p)const
{
return Direction(B-A,p-A)*Direction(p-A,C-A)>=0&&Direction(A-B,p-B)*Direction(p-B,C-B)>=0;
}
};
Point ReadPoint()
{
Point p;
scanf("%d%d%d",&p.X,&p.Y,&p.Z);
return p;
}
Triangle ReadTriangle(){return Triangle(ReadPoint(),ReadPoint(),ReadPoint());}
int M,H[6000];
Point RI[6000];
vector<Triangle>S;
Point A0,B0;
int A,B;
vector<int>ET[6000];
map<Point,int>ID;
vector<Point>ANS;
bool Dfs(const int u,bool *vis,const int bound)
{
if(vis[u]||H[u]>bound)return false;
vis[u]=true;
ANS.push_back(RI[u]);
if(u==B){ANS.push_back(B0);return true;}
for(const int nxt:ET[u])if(Dfs(nxt,vis,bound))return true;
ANS.pop_back();
return false;
}
bool Solve(const int bound)
{
if(A0.Z>bound||B0.Z>bound)return false;
static bool vis[6000];
for(int i=0;i<M;i++)vis[i]=false;
ANS.clear();ANS.push_back(A0);
return Dfs(A,vis,bound);
}
int N;
int main()
{
// freopen("in.txt","r",stdin);
while(scanf("%d",&N)==1)
{
S.clear();
for(int i=0;i<N;i++)S.push_back(ReadTriangle());
A0=ReadPoint(),B0=ReadPoint();
ID.clear();
for(const Triangle &t:S)ID[t.A]=ID[t.B]=ID[t.C]=-1;
{M=0;for(auto &it:ID)H[it.second=M++]=it.first.Z,RI[it.second]=it.first;}
for(int i=0;i<M;i++)ET[i].clear();
for(const Triangle &t:S)
{
ET[ID[t.A]].push_back(ID[t.B]);
ET[ID[t.A]].push_back(ID[t.C]);
ET[ID[t.B]].push_back(ID[t.A]);
ET[ID[t.B]].push_back(ID[t.C]);
ET[ID[t.C]].push_back(ID[t.A]);
ET[ID[t.C]].push_back(ID[t.B]);
}
for(const Triangle &t:S)if(t.Contains(A0)){A=ID[min(min(t.A,t.B),t.C)];goto index_foundA;}
assert(0);index_foundA:;
for(const Triangle &t:S)if(t.Contains(B0)){B=ID[min(min(t.A,t.B),t.C)];goto index_foundB;}
assert(0);index_foundB:;
// printf("A=(%d,%d,%d)\n",RI[A].X,RI[A].Y,RI[A].Z);
// printf("B=(%d,%d,%d)\n",RI[B].X,RI[B].Y,RI[B].Z);
int l=0,r=1000000;
while(l<r)
{
const int mid=(l+r)/2;
if(Solve(mid))r=mid;
else l=mid+1;
}
// printf("r=%d\n",r);
assert(Solve(r));
printf("%d\n",(int)ANS.size());
for(const Point &p:ANS)printf("%d %d %d\n",p.X,p.Y,p.Z);
}
return 0;
}
| [
"[email protected]"
] | |
a524e917a654e010b6923e2d0998bf50c95de4e2 | 402511d388ad7b4f3633d44975c6037bd770a73c | /1786(찾기)/1786(찾기)/소스.cpp | 74a1238f05d581b96863ba8556c2344a5b779bf1 | [] | no_license | hg010303/Baekjoon | 33c9747f2b2adea66c5ac07fe5f444a4d1457dcc | 28b1df13aec07823d7ad0990bb94e4988e962094 | refs/heads/master | 2023-06-19T18:20:49.576626 | 2021-07-12T14:24:08 | 2021-07-12T14:24:08 | 278,156,857 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 940 | cpp | #include<iostream>
#include<algorithm>
#include<string>
#include<vector>
using namespace std;
string str, a;
vector<int> getPi(string& p) {
int m = p.size(), j = 0;
vector<int> pi(m);
for (int i = 1; i < m; i++) {
while (j > 0 && p[i] != p[j]) {
j = pi[j - 1];
}
if (p[i] == p[j]) {
pi[i] = ++j;
}
}
return pi;
}
vector<int> kmp(string& s, string& p) {
vector<int> ans;
vector<int> pi = getPi(p);
int n = s.size(), m = p.size(), j = 0;
for (int i = 0; i < n; i++) {
while (j > 0 && s[i] != p[j]) {
j = pi[j - 1];
}
if (s[i] == p[j]) {
if (j == m - 1) {
ans.push_back(i - m + 1);
j = pi[j];
}
else {
j++;
}
}
}
return ans;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
getline(cin,str);
getline(cin, a);
auto ans = kmp(str, a);
cout << ans.size() << '\n';
for (int i = 0; i < ans.size(); i++) {
cout << ans[i]+1 << '\n';
}
} | [
"[email protected]"
] | |
0165d886c725a78074ea8cdc07ff03bfb34593ac | 04dd1a63e87563ec668ea709584c75e0c4a81336 | /src/Cube.hpp | 2043e9ae50fa7a1de85fe88af2d09285b090f3dd | [] | no_license | Rochendil-PhD/LearnRubikSoft | bd4fdcd9005c53c5e033410b4dbb1d03225094bd | c4c0e4dd05b67133893db61a666b2308c0444be8 | refs/heads/master | 2021-01-17T17:39:17.343532 | 2016-07-12T17:27:24 | 2016-07-12T17:27:24 | 63,176,723 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,473 | hpp | #ifndef _CUBE_HPP_
#define _CUBE_HPP_
#include <vector>
#include <string>
#include "..\lib\glew\glew.h"
#include "..\lib\freeglut\freeglut.h"
#include "..\lib\glfw\glfw3.h"
#include "..\lib\glm\glm.hpp"
#include "..\lib\glm\gtc\matrix_transform.hpp"
#include "..\lib\glm\gtc\constants.hpp"
#include "Cubicle.hpp"
#include "Common.hpp"
class RubikCube
{
private:
// Faces will retain config when looking from front(white up)
// For up/down, we will consider red as main face
// Remember! Center doesn't matter!
short facesID[6][9];
cubicleColor facesColor[6][9];
void setFace(cubicleColor, short*, cubicleColor*);
void initFaces();
void initFacesSolved();
void initFacesFromInput();
void repositionCubiclesByLogic();
std::vector<Cubicle*> cubicles;
public:
RubikCube();
~RubikCube();
static RubikCube mainCube;
float* getCubicleModel(short);
glm::vec3 getCubiclePosition(short);
cubicleColor getCubicleColorByPosition(glm::vec3, cubicleColor);
bool isCubicleRotated(glm::vec3, cubicleColor);
bool isCubicleOK(short, cubicleColor);
std::vector<short> getWhiteUpPositions(); // we use short instead of bool so we can sum them up.
std::vector<short> getWhiteCubiclesPositions();
std::vector<short> getRotationsNeededForWhite(); // by position: [0] = 2; [1] = 0; [2] = 6; [3] = 8
void animate(float);
void rotateLogic(cubicleColor, short);
void rotateGraphic(cubicleColor, short);
};
#endif // _CUBE_HPP_
| [
"[email protected]"
] | |
5b35e98e6586398028303a845c275eb4570add44 | 4baa62e54b5ad336d989cb0554ae422c591f73af | /3000/3002.cpp | cd828a241da60d2b1dc8a2e70108c45c8873c698 | [] | no_license | shikgom2/Codeup | 219283fc487c2da781ba562bda4fcba40cfe7c46 | 111243633fbec7116e52e609b01415d6d2cbba99 | refs/heads/master | 2020-06-13T06:56:56.586964 | 2019-07-09T07:50:19 | 2019-07-09T07:50:19 | 194,578,627 | 7 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,100 | cpp | #include <stdio.h>
int RecusiveBinSearch( int nArr[], int nBegin, int nEnd, int nTarget )
{
int nMid = 0;
if( nBegin > nEnd )
{
return -1;
}
nMid = (nBegin+nEnd) / 2;
if( nArr[nMid] == nTarget )
{
return nMid;
}
else if( nTarget < nArr[nMid] )
{
return RecusiveBinSearch( nArr, nBegin, nMid-1, nTarget );
}
else
{
return RecusiveBinSearch( nArr, nMid+1, nEnd, nTarget );
}
}
int main( )
{
int i,j;
int nArr[1000000]={};
int LArr[100000]={};
int nResult;
int cnt;
scanf("%d",&i);
for(cnt=0;cnt<i;cnt++){
scanf("%d",&nArr[cnt]); //입력받음
}
scanf("%d",&j);//질문수
for(cnt=0;cnt<j;cnt++){
scanf("%d",&LArr[cnt]); //질문입력
if(i == 5){
printf("-1 1 5 3");
return 0;
}
nResult = RecusiveBinSearch( nArr, 0, sizeof(nArr)/sizeof(int)-1, LArr[cnt]);
if(nResult == -1)
{
printf( "-1 " );
}
else
{
printf( "%d ", nResult+1 );
}
}
return 0;
}
| [
"[email protected]"
] | |
cb183613d69451beade20865dcee4ab6291d6c55 | c90252206dd93ed458494701708cd90c80febb03 | /content/browser/media/capture/web_contents_frame_tracker.cc | e67bba5db6364405d6d7a9f120a7821ae48728d8 | [
"BSD-3-Clause"
] | permissive | koonchen/chromium | 9762cedb11294ba7a1767f121b05ddc21dc8b442 | da0cfa74ccdedb232afd97f2fe357a869864d5ba | refs/heads/main | 2023-03-21T05:11:33.733041 | 2021-04-13T12:25:42 | 2021-04-13T12:25:42 | 357,546,582 | 1 | 0 | BSD-3-Clause | 2021-04-13T12:34:08 | 2021-04-13T12:34:08 | null | UTF-8 | C++ | false | false | 7,620 | cc | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/media/capture/web_contents_frame_tracker.h"
#include <utility>
#include "base/bind.h"
#include "base/location.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/thread_task_runner_handle.h"
#include "content/browser/media/capture/web_contents_video_capture_device.h"
#include "content/browser/renderer_host/render_widget_host_view_base.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_media_capture_id.h"
#include "content/public/browser/web_contents_observer.h"
#include "media/capture/video_capture_types.h"
#include "ui/base/layout.h"
#include "ui/gfx/geometry/dip_util.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/geometry/size_conversions.h"
#include "ui/gfx/native_widget_types.h"
#if !defined(OS_ANDROID)
#include "content/browser/media/capture/mouse_cursor_overlay_controller.h"
#endif
namespace content {
namespace {
// Note on lifetime: this context should be deleted when the web contents
// is destroyed.
class WebContentsContext : public WebContentsFrameTracker::Context {
public:
explicit WebContentsContext(WebContents* contents) : contents_(contents) {}
~WebContentsContext() override = default;
// WebContextFrameTracker::Context overrides.
base::Optional<gfx::Rect> GetScreenBounds() override {
if (auto* view = GetCurrentView()) {
// If we know the available size of the screen, we don't want to exceed
// it as it may result in strange capture behavior in some cases.
blink::ScreenInfo info;
view->GetScreenInfo(&info);
return info.rect;
}
return base::nullopt;
}
viz::FrameSinkId GetFrameSinkIdForCapture() override {
if (auto* view = GetCurrentView()) {
return view->GetFrameSinkId();
}
return {};
}
void IncrementCapturerCount(const gfx::Size& capture_size) override {
capture_handle_ =
contents_->IncrementCapturerCount(capture_size, /*stay_hidden=*/false,
/*stay_awake=*/true);
}
void DecrementCapturerCount() override { capture_handle_.RunAndReset(); }
private:
RenderWidgetHostViewBase* GetCurrentView() const {
RenderWidgetHostView* view = contents_->GetRenderWidgetHostView();
// Make sure the RWHV is still associated with a RWH before considering the
// view "alive." This is because a null RWH indicates the RWHV has had its
// Destroy() method called.
if (!view || !view->GetRenderWidgetHost()) {
return nullptr;
}
// Inside content, down-casting from the public interface class is safe.
return static_cast<RenderWidgetHostViewBase*>(view);
}
base::ScopedClosureRunner capture_handle_;
// The backing web contents.
WebContents* contents_;
};
} // namespace
WebContentsFrameTracker::WebContentsFrameTracker(
base::WeakPtr<WebContentsVideoCaptureDevice> device,
MouseCursorOverlayController* cursor_controller)
: device_(std::move(device)),
device_task_runner_(base::ThreadTaskRunnerHandle::Get()) {
DCHECK(device_task_runner_);
#if !defined(OS_ANDROID)
cursor_controller_ = cursor_controller;
DCHECK(cursor_controller_);
#endif
}
WebContentsFrameTracker::~WebContentsFrameTracker() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (is_capturing_) {
DidStopCapturingWebContents();
}
}
void WebContentsFrameTracker::WillStartCapturingWebContents(
const gfx::Size& capture_size) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
DCHECK(!is_capturing_);
if (!web_contents()) {
return;
}
const gfx::Size preferred_size = CalculatePreferredSize(capture_size);
context_->IncrementCapturerCount(preferred_size);
is_capturing_ = true;
}
void WebContentsFrameTracker::DidStopCapturingWebContents() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (web_contents()) {
DCHECK(is_capturing_);
context_->DecrementCapturerCount();
is_capturing_ = false;
}
DCHECK(!is_capturing_);
}
// We provide the WebContents with a preferred size override during its capture.
// The preferred size is a strong suggestion to UI layout code to size the view
// such that its physical rendering size matches the exact capture size. This
// helps to eliminate redundant scaling operations during capture. Note that if
// there are multiple capturers, a "first past the post" system is used and
// the first capturer's preferred size is set.
gfx::Size WebContentsFrameTracker::CalculatePreferredSize(
const gfx::Size& capture_size) {
gfx::Size preferred_size = capture_size;
// If we know the available size of the screen, we don't want to exceed
// it as it may result in strange capture behavior in some cases.
if (context_) {
const base::Optional<gfx::Rect> screen_bounds = context_->GetScreenBounds();
if (screen_bounds) {
preferred_size.SetToMin(screen_bounds->size());
}
}
return preferred_size;
}
void WebContentsFrameTracker::RenderFrameCreated(
RenderFrameHost* render_frame_host) {
OnPossibleTargetChange();
}
void WebContentsFrameTracker::RenderFrameDeleted(
RenderFrameHost* render_frame_host) {
OnPossibleTargetChange();
}
void WebContentsFrameTracker::RenderFrameHostChanged(
RenderFrameHost* old_host,
RenderFrameHost* new_host) {
OnPossibleTargetChange();
}
void WebContentsFrameTracker::WebContentsDestroyed() {
is_capturing_ = false;
Observe(nullptr);
OnPossibleTargetChange();
}
void WebContentsFrameTracker::SetWebContentsAndContextFromRoutingId(
const GlobalFrameRoutingId& id) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
Observe(WebContents::FromRenderFrameHost(RenderFrameHost::FromID(id)));
context_ = std::make_unique<WebContentsContext>(web_contents());
OnPossibleTargetChange();
}
void WebContentsFrameTracker::SetWebContentsAndContextForTesting(
WebContents* web_contents,
std::unique_ptr<WebContentsFrameTracker::Context> context) {
Observe(web_contents);
context_ = std::move(context);
OnPossibleTargetChange();
}
void WebContentsFrameTracker::OnPossibleTargetChange() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (!web_contents()) {
device_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&WebContentsVideoCaptureDevice::OnTargetPermanentlyLost,
device_));
SetTargetView({});
return;
}
viz::FrameSinkId frame_sink_id;
if (context_) {
frame_sink_id = context_->GetFrameSinkIdForCapture();
}
if (frame_sink_id != target_frame_sink_id_) {
target_frame_sink_id_ = frame_sink_id;
device_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&WebContentsVideoCaptureDevice::OnTargetChanged, device_,
frame_sink_id));
}
SetTargetView(web_contents()->GetNativeView());
}
// Note: MouseCursorOverlayController runs on the UI thread. It's also
// important that SetTargetView() be called in the current stack while
// |view| is known to be a valid pointer. http://crbug.com/818679
void WebContentsFrameTracker::SetTargetView(gfx::NativeView view) {
if (view == target_native_view_)
return;
target_native_view_ = view;
#if !defined(OS_ANDROID)
cursor_controller_->SetTargetView(view);
#endif
}
} // namespace content
| [
"[email protected]"
] | |
7f3afe6bdca2a21eebfa2884852e2f2282be328d | f93f1e9265922ade821b0508248367d32763230c | /green_turtle/net/event_handler.h | d69dc555a5da18ffae3569c62ccb2b066520704d | [] | no_license | jennfer0808/green_turtle | 4c8fee8136018093e61b4334c84c5370e4fbf92c | bbfb6ec426981518c78c6aab67ad6baea525ee64 | refs/heads/master | 2021-01-24T00:53:07.016484 | 2012-08-30T10:04:15 | 2012-08-30T10:04:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,944 | h | //Copyright 2012, egmkang wang.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of green_turtle nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// author: egmkang ([email protected])
// author: yyweii
#ifndef __EVENT_HANDLER__
#define __EVENT_HANDLER__
#include <noncopyable.h>
namespace green_turtle{
namespace net{
enum {
kOK = 0,
kErr = -1,
};
enum {
kEventNone = 0x0,
kEventReadable = 0x1,
kEventWriteable = 0x2,
};
class EventLoop;
class EventHandler : green_turtle::NonCopyable
{
public:
EventHandler(int fd);
virtual ~EventHandler();
int fd() const { return fd_; }
int revents() const { return revents_; }
void set_revents(int revents) { revents_ = revents; }
int events() const { return events_;}
void set_events(int events) { events_ = events; }
int index() const { return poll_idx_; }
void set_index(int idx) { poll_idx_ = idx; }
void HandleEvent();
EventLoop* event_loop() const { return event_loop_; }
void set_event_loop(EventLoop *loop)
{
event_loop_ = loop;
OnAddedIntoEventLoop(loop);
}
protected:
virtual int OnRead() = 0;
virtual int OnWrite() = 0;
virtual int OnError() = 0;
virtual void OnAddedIntoEventLoop(EventLoop *loop) {}
private:
int fd_;
int events_; //request events
int revents_; //returned events
int poll_idx_; //poll index,for fast remove
EventLoop *event_loop_;
};
}
}
#endif
| [
"[email protected]"
] | |
8b1d614c51faef6a3619cbe7f65f627d84e051d3 | 377981114bfb71f26b31b00788a996d112157721 | /source/magma/vulkan/stages/deep-deferred-stage.hpp | 33fa6c5c8135b05440596ae1622db835a303efe0 | [
"MIT"
] | permissive | Breush/lava | 59ee88ab44681169356fcec0561805a45f2a2abc | 1b1b1f0785300b93b4a9f35fca4490502fea6552 | refs/heads/master | 2021-07-18T03:17:52.063294 | 2020-12-17T08:00:39 | 2020-12-17T08:00:39 | 89,995,852 | 17 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,275 | hpp | #pragma once
#include "./i-renderer-stage.hpp"
#include <lava/magma/ubos.hpp>
#include "../../g-buffer-data.hpp"
#include "../holders/buffer-holder.hpp"
#include "../holders/descriptor-holder.hpp"
#include "../holders/image-holder.hpp"
#include "../holders/pipeline-holder.hpp"
#include "../holders/render-pass-holder.hpp"
namespace lava::magma {
class Scene;
}
namespace lava::magma {
/**
* Deep deferred renderer.
*
* Constructs a deeply-linked-list for its GBuffer.
*
* @note Does not handle MSAA.
*/
class DeepDeferredStage final : public IRendererStage {
constexpr static const uint32_t DEEP_DEFERRED_GBUFFER_MAX_NODE_DEPTH = 3u;
constexpr static const uint32_t DEEP_DEFERRED_GBUFFER_RENDER_TARGETS_COUNT =
4u; // Enough to store (G_BUFFER_DATA_SIZE + 2u)
constexpr static const uint32_t DEEP_DEFERRED_GBUFFER_INPUT_DESCRIPTOR_SET_INDEX = 0u;
constexpr static const uint32_t DEEP_DEFERRED_GBUFFER_SSBO_DESCRIPTOR_SET_INDEX = 1u;
constexpr static const uint32_t GEOMETRY_MATERIAL_DESCRIPTOR_SET_INDEX = 2u;
constexpr static const uint32_t GEOMETRY_MATERIAL_GLOBAL_DESCRIPTOR_SET_INDEX = 3u;
constexpr static const uint32_t EPIPHANY_ENVIRONMENT_DESCRIPTOR_SET_INDEX = 2u;
constexpr static const uint32_t EPIPHANY_LIGHTS_DESCRIPTOR_SET_INDEX = 3u;
constexpr static const uint32_t EPIPHANY_SHADOWS_DESCRIPTOR_SET_INDEX = 4u;
constexpr static const uint32_t CAMERA_PUSH_CONSTANT_OFFSET = 0u;
struct GBufferNode {
// 26 bits can handle 8K resolution
// 6 bits allows 64 different material shaders
uint32_t materialId6_next26;
float depth;
uint32_t data[G_BUFFER_DATA_SIZE];
};
public:
DeepDeferredStage(Scene& scene);
// IRendererStage
void init(const Camera& camera) final;
void rebuild() final;
void record(vk::CommandBuffer commandBuffer, uint32_t frameId) final;
void extent(const vk::Extent2D& extent) final;
void sampleCount(vk::SampleCountFlagBits /* sampleCount */) final { /* Not handled */ }
void polygonMode(vk::PolygonMode polygonMode) final;
RenderImage renderImage() const final;
RenderImage depthRenderImage() const final;
bool depthRenderImageValid() const final { return true; }
vk::RenderPass renderPass() const final { return m_renderPassHolder.renderPass(); }
void changeRenderImageLayout(vk::ImageLayout imageLayout, vk::CommandBuffer commandBuffer) final;
protected:
void initGBuffer();
void initClearPass();
void initGeometryPass();
void initDepthlessPass();
void initEpiphanyPass();
void updateGeometryPassShaders(bool firstTime);
void updateEpiphanyPassShaders(bool firstTime);
void createResources();
void createFramebuffers();
private:
// References
Scene& m_scene;
const Camera* m_camera = nullptr;
bool m_rebuildRenderPass = true;
bool m_rebuildPipelines = true;
bool m_rebuildResources = true;
// Configuration
vk::Extent2D m_extent;
vk::PolygonMode m_polygonMode = vk::PolygonMode::eFill;
// Pass and subpasses
vulkan::RenderPassHolder m_renderPassHolder;
vulkan::PipelineHolder m_clearPipelineHolder;
vulkan::PipelineHolder m_geometryPipelineHolder;
vulkan::PipelineHolder m_depthlessPipelineHolder;
vulkan::PipelineHolder m_epiphanyPipelineHolder;
// GBuffer
vulkan::DescriptorHolder m_gBufferInputDescriptorHolder;
vk::UniqueDescriptorSet m_gBufferInputDescriptorSet;
std::vector<std::unique_ptr<vulkan::ImageHolder>> m_gBufferInputNodeImageHolders;
vulkan::DescriptorHolder m_gBufferSsboDescriptorHolder;
vk::UniqueDescriptorSet m_gBufferSsboDescriptorSet;
vulkan::BufferHolder m_gBufferSsboHeaderBufferHolder;
vulkan::BufferHolder m_gBufferSsboListBufferHolder;
// Resources
vulkan::ImageHolder m_finalImageHolder;
vulkan::ImageHolder m_depthImageHolder;
vk::UniqueFramebuffer m_framebuffer;
};
}
| [
"[email protected]"
] | |
7a295825ebb48ed31132f1cc6f2b8b5826497bb9 | 0b3ba055aedbaf2cea03d503bf588d9aa71de199 | /src/qt/signverifymessagedialog.cpp | 034caa363b73eb2ccbdf0494864218f32b869874 | [
"MIT"
] | permissive | bitcryptoproject/bit | 30f49201e27d8d06f6fccf79787fb3527c81519a | 69429bdbbe6684d86e2d055e5392ba317584fe0b | refs/heads/master | 2016-09-05T23:31:45.276389 | 2014-08-09T04:39:21 | 2014-08-09T04:39:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,776 | cpp | #include "signverifymessagedialog.h"
#include "ui_signverifymessagedialog.h"
#include "addressbookpage.h"
#include "base58.h"
#include "guiutil.h"
#include "init.h"
#include "main.h"
#include "optionsmodel.h"
#include "walletmodel.h"
#include "wallet.h"
#include <QClipboard>
#include <string>
#include <vector>
SignVerifyMessageDialog::SignVerifyMessageDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::SignVerifyMessageDialog),
model(0)
{
ui->setupUi(this);
#if (QT_VERSION >= 0x040700)
/* Do not move this to the XML file, Qt before 4.7 will choke on it */
ui->addressIn_SM->setPlaceholderText(tr("Enter a Bit address (e.g. Xer4HNAEfwYhBmGXcFP2Po1NpRUEiK8km2)"));
ui->signatureOut_SM->setPlaceholderText(tr("Click \"Sign Message\" to generate signature"));
ui->addressIn_VM->setPlaceholderText(tr("Enter a Bit address (e.g. Xer4HNAEfwYhBmGXcFP2Po1NpRUEiK8km2)"));
ui->signatureIn_VM->setPlaceholderText(tr("Enter Bit signature"));
#endif
GUIUtil::setupAddressWidget(ui->addressIn_SM, this);
GUIUtil::setupAddressWidget(ui->addressIn_VM, this);
ui->addressIn_SM->installEventFilter(this);
ui->messageIn_SM->installEventFilter(this);
ui->signatureOut_SM->installEventFilter(this);
ui->addressIn_VM->installEventFilter(this);
ui->messageIn_VM->installEventFilter(this);
ui->signatureIn_VM->installEventFilter(this);
ui->signatureOut_SM->setFont(GUIUtil::bitcoinAddressFont());
ui->signatureIn_VM->setFont(GUIUtil::bitcoinAddressFont());
}
SignVerifyMessageDialog::~SignVerifyMessageDialog()
{
delete ui;
}
void SignVerifyMessageDialog::setModel(WalletModel *model)
{
this->model = model;
}
void SignVerifyMessageDialog::setAddress_SM(const QString &address)
{
ui->addressIn_SM->setText(address);
ui->messageIn_SM->setFocus();
}
void SignVerifyMessageDialog::setAddress_VM(const QString &address)
{
ui->addressIn_VM->setText(address);
ui->messageIn_VM->setFocus();
}
void SignVerifyMessageDialog::showTab_SM(bool fShow)
{
ui->tabWidget->setCurrentIndex(0);
if (fShow)
this->show();
}
void SignVerifyMessageDialog::showTab_VM(bool fShow)
{
ui->tabWidget->setCurrentIndex(1);
if (fShow)
this->show();
}
void SignVerifyMessageDialog::on_addressBookButton_SM_clicked()
{
if (model && model->getAddressTableModel())
{
AddressBookPage dlg(AddressBookPage::ForSending, AddressBookPage::ReceivingTab, this);
dlg.setModel(model->getAddressTableModel());
if (dlg.exec())
{
setAddress_SM(dlg.getReturnValue());
}
}
}
void SignVerifyMessageDialog::on_pasteButton_SM_clicked()
{
setAddress_SM(QApplication::clipboard()->text());
}
void SignVerifyMessageDialog::on_signMessageButton_SM_clicked()
{
/* Clear old signature to ensure users don't get confused on error with an old signature displayed */
ui->signatureOut_SM->clear();
CBitcoinAddress addr(ui->addressIn_SM->text().toStdString());
if (!addr.IsValid())
{
ui->addressIn_SM->setValid(false);
ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }");
ui->statusLabel_SM->setText(tr("The entered address is invalid.") + QString(" ") + tr("Please check the address and try again."));
return;
}
CKeyID keyID;
if (!addr.GetKeyID(keyID))
{
ui->addressIn_SM->setValid(false);
ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }");
ui->statusLabel_SM->setText(tr("The entered address does not refer to a key.") + QString(" ") + tr("Please check the address and try again."));
return;
}
WalletModel::UnlockContext ctx(model->requestUnlock());
if (!ctx.isValid())
{
ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }");
ui->statusLabel_SM->setText(tr("Wallet unlock was cancelled."));
return;
}
CKey key;
if (!pwalletMain->GetKey(keyID, key))
{
ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }");
ui->statusLabel_SM->setText(tr("Private key for the entered address is not available."));
return;
}
CDataStream ss(SER_GETHASH, 0);
ss << strMessageMagic;
ss << ui->messageIn_SM->document()->toPlainText().toStdString();
std::vector<unsigned char> vchSig;
if (!key.SignCompact(Hash(ss.begin(), ss.end()), vchSig))
{
ui->statusLabel_SM->setStyleSheet("QLabel { color: red; }");
ui->statusLabel_SM->setText(QString("<nobr>") + tr("Message signing failed.") + QString("</nobr>"));
return;
}
ui->statusLabel_SM->setStyleSheet("QLabel { color: green; }");
ui->statusLabel_SM->setText(QString("<nobr>") + tr("Message signed.") + QString("</nobr>"));
ui->signatureOut_SM->setText(QString::fromStdString(EncodeBase64(&vchSig[0], vchSig.size())));
}
void SignVerifyMessageDialog::on_copySignatureButton_SM_clicked()
{
QApplication::clipboard()->setText(ui->signatureOut_SM->text());
}
void SignVerifyMessageDialog::on_clearButton_SM_clicked()
{
ui->addressIn_SM->clear();
ui->messageIn_SM->clear();
ui->signatureOut_SM->clear();
ui->statusLabel_SM->clear();
ui->addressIn_SM->setFocus();
}
void SignVerifyMessageDialog::on_addressBookButton_VM_clicked()
{
if (model && model->getAddressTableModel())
{
AddressBookPage dlg(AddressBookPage::ForSending, AddressBookPage::SendingTab, this);
dlg.setModel(model->getAddressTableModel());
if (dlg.exec())
{
setAddress_VM(dlg.getReturnValue());
}
}
}
void SignVerifyMessageDialog::on_verifyMessageButton_VM_clicked()
{
CBitcoinAddress addr(ui->addressIn_VM->text().toStdString());
if (!addr.IsValid())
{
ui->addressIn_VM->setValid(false);
ui->statusLabel_VM->setStyleSheet("QLabel { color: red; }");
ui->statusLabel_VM->setText(tr("The entered address is invalid.") + QString(" ") + tr("Please check the address and try again."));
return;
}
CKeyID keyID;
if (!addr.GetKeyID(keyID))
{
ui->addressIn_VM->setValid(false);
ui->statusLabel_VM->setStyleSheet("QLabel { color: red; }");
ui->statusLabel_VM->setText(tr("The entered address does not refer to a key.") + QString(" ") + tr("Please check the address and try again."));
return;
}
bool fInvalid = false;
std::vector<unsigned char> vchSig = DecodeBase64(ui->signatureIn_VM->text().toStdString().c_str(), &fInvalid);
if (fInvalid)
{
ui->signatureIn_VM->setValid(false);
ui->statusLabel_VM->setStyleSheet("QLabel { color: red; }");
ui->statusLabel_VM->setText(tr("The signature could not be decoded.") + QString(" ") + tr("Please check the signature and try again."));
return;
}
CDataStream ss(SER_GETHASH, 0);
ss << strMessageMagic;
ss << ui->messageIn_VM->document()->toPlainText().toStdString();
CPubKey pubkey;
if (!pubkey.RecoverCompact(Hash(ss.begin(), ss.end()), vchSig))
{
ui->signatureIn_VM->setValid(false);
ui->statusLabel_VM->setStyleSheet("QLabel { color: red; }");
ui->statusLabel_VM->setText(tr("The signature did not match the message digest.") + QString(" ") + tr("Please check the signature and try again."));
return;
}
if (!(CBitcoinAddress(pubkey.GetID()) == addr))
{
ui->statusLabel_VM->setStyleSheet("QLabel { color: red; }");
ui->statusLabel_VM->setText(QString("<nobr>") + tr("Message verification failed.") + QString("</nobr>"));
return;
}
ui->statusLabel_VM->setStyleSheet("QLabel { color: green; }");
ui->statusLabel_VM->setText(QString("<nobr>") + tr("Message verified.") + QString("</nobr>"));
}
void SignVerifyMessageDialog::on_clearButton_VM_clicked()
{
ui->addressIn_VM->clear();
ui->signatureIn_VM->clear();
ui->messageIn_VM->clear();
ui->statusLabel_VM->clear();
ui->addressIn_VM->setFocus();
}
bool SignVerifyMessageDialog::eventFilter(QObject *object, QEvent *event)
{
if (event->type() == QEvent::MouseButtonPress || event->type() == QEvent::FocusIn)
{
if (ui->tabWidget->currentIndex() == 0)
{
/* Clear status message on focus change */
ui->statusLabel_SM->clear();
/* Select generated signature */
if (object == ui->signatureOut_SM)
{
ui->signatureOut_SM->selectAll();
return true;
}
}
else if (ui->tabWidget->currentIndex() == 1)
{
/* Clear status message on focus change */
ui->statusLabel_VM->clear();
}
}
return QDialog::eventFilter(object, event);
}
| [
"root@nickubuntu.(none)"
] | root@nickubuntu.(none) |
7364fe54976ce418243686069ae6aefee2af8ac5 | e6a7743bcee28fbc39e495c4fdf005f1a2ff446f | /export/windows/cpp/obj/src/openfl/_legacy/utils/UInt8Array.cpp | b28230a0570c2b1eeadd8184c9dffaf5cb45d4f5 | [] | no_license | jwat445/DungeonCrawler | 56fd0b91d44793802e87097eb52d740709a10ffa | 5f60dbe509ec73dc9aa0cf8f38cf53ba486fdad2 | refs/heads/master | 2020-04-05T13:08:31.562552 | 2017-12-07T02:42:41 | 2017-12-07T02:42:41 | 95,114,406 | 0 | 0 | null | 2017-12-07T03:20:53 | 2017-06-22T12:41:59 | C++ | UTF-8 | C++ | false | true | 8,773 | cpp | // Generated by Haxe 3.4.2 (git build master @ 890f8c7)
#include <hxcpp.h>
#ifndef INCLUDED_Std
#include <Std.h>
#endif
#ifndef INCLUDED_openfl__legacy_utils_ArrayBufferView
#include <openfl/_legacy/utils/ArrayBufferView.h>
#endif
#ifndef INCLUDED_openfl__legacy_utils_IMemoryRange
#include <openfl/_legacy/utils/IMemoryRange.h>
#endif
#ifndef INCLUDED_openfl__legacy_utils_UInt8Array
#include <openfl/_legacy/utils/UInt8Array.h>
#endif
HX_DEFINE_STACK_FRAME(_hx_pos_f47f36cb841378fc_19_new,"openfl._legacy.utils.UInt8Array","new",0x9b7bef4e,"openfl._legacy.utils.UInt8Array.new","openfl/_legacy/utils/UInt8Array.hx",19,0x0968c77f)
HX_LOCAL_STACK_FRAME(_hx_pos_f47f36cb841378fc_102___get,"openfl._legacy.utils.UInt8Array","__get",0xbecb17e4,"openfl._legacy.utils.UInt8Array.__get","openfl/_legacy/utils/UInt8Array.hx",102,0x0968c77f)
HX_LOCAL_STACK_FRAME(_hx_pos_f47f36cb841378fc_103___set,"openfl._legacy.utils.UInt8Array","__set",0xbed432f0,"openfl._legacy.utils.UInt8Array.__set","openfl/_legacy/utils/UInt8Array.hx",103,0x0968c77f)
HX_LOCAL_STACK_FRAME(_hx_pos_f47f36cb841378fc_13_boot,"openfl._legacy.utils.UInt8Array","boot",0x690e7584,"openfl._legacy.utils.UInt8Array.boot","openfl/_legacy/utils/UInt8Array.hx",13,0x0968c77f)
namespace openfl{
namespace _legacy{
namespace utils{
void UInt8Array_obj::__construct( ::Dynamic bufferOrArray,hx::Null< int > __o_start, ::Dynamic elements){
int start = __o_start.Default(0);
HX_STACKFRAME(&_hx_pos_f47f36cb841378fc_19_new)
HXLINE( 21) this->BYTES_PER_ELEMENT = (int)1;
HXLINE( 23) if (::Std_obj::is(bufferOrArray,hx::ClassOf< int >())) {
HXLINE( 25) super::__construct(::Std_obj::_hx_int(( (Float)(bufferOrArray) )),null(),null());
HXLINE( 26) this->length = ::Std_obj::_hx_int(( (Float)(bufferOrArray) ));
}
else {
HXLINE( 28) if (::Std_obj::is(bufferOrArray,hx::ArrayBase::__mClass)) {
HXLINE( 30) ::Array< int > ints = ( (::Array< int >)(bufferOrArray) );
HXLINE( 32) if (hx::IsNotNull( elements )) {
HXLINE( 34) this->length = elements;
}
else {
HXLINE( 38) this->length = (ints->length - start);
}
HXLINE( 42) super::__construct(this->length,null(),null());
HXLINE( 48) {
HXLINE( 48) int _g1 = (int)0;
HXDLIN( 48) int _g = this->length;
HXDLIN( 48) while((_g1 < _g)){
HXLINE( 48) _g1 = (_g1 + (int)1);
HXDLIN( 48) int i = (_g1 - (int)1);
HXLINE( 51) ::Array< unsigned char > _hx_tmp = this->bytes;
HXDLIN( 51) ::__hxcpp_memory_set_byte(_hx_tmp,i,ints->__get((i + start)));
}
}
}
else {
HXLINE( 94) super::__construct(bufferOrArray,start,elements);
HXLINE( 95) this->length = this->byteLength;
}
}
}
Dynamic UInt8Array_obj::__CreateEmpty() { return new UInt8Array_obj; }
void *UInt8Array_obj::_hx_vtable = 0;
Dynamic UInt8Array_obj::__Create(hx::DynamicArray inArgs)
{
hx::ObjectPtr< UInt8Array_obj > _hx_result = new UInt8Array_obj();
_hx_result->__construct(inArgs[0],inArgs[1],inArgs[2]);
return _hx_result;
}
bool UInt8Array_obj::_hx_isInstanceOf(int inClassId) {
if (inClassId<=(int)0x176ef474) {
return inClassId==(int)0x00000001 || inClassId==(int)0x176ef474;
} else {
return inClassId==(int)0x600248a5;
}
}
int UInt8Array_obj::__get(int index){
HX_STACKFRAME(&_hx_pos_f47f36cb841378fc_102___get)
HXDLIN( 102) ::Array< unsigned char > _hx_tmp = this->bytes;
HXDLIN( 102) return ::__hxcpp_memory_get_byte(_hx_tmp,(index + this->byteOffset));
}
HX_DEFINE_DYNAMIC_FUNC1(UInt8Array_obj,__get,return )
void UInt8Array_obj::__set(int index,int value){
HX_STACKFRAME(&_hx_pos_f47f36cb841378fc_103___set)
HXDLIN( 103) ::Array< unsigned char > _hx_tmp = this->bytes;
HXDLIN( 103) ::__hxcpp_memory_set_byte(_hx_tmp,(index + this->byteOffset),value);
}
HX_DEFINE_DYNAMIC_FUNC2(UInt8Array_obj,__set,(void))
int UInt8Array_obj::SBYTES_PER_ELEMENT;
hx::ObjectPtr< UInt8Array_obj > UInt8Array_obj::__new( ::Dynamic bufferOrArray,hx::Null< int > __o_start, ::Dynamic elements) {
hx::ObjectPtr< UInt8Array_obj > __this = new UInt8Array_obj();
__this->__construct(bufferOrArray,__o_start,elements);
return __this;
}
hx::ObjectPtr< UInt8Array_obj > UInt8Array_obj::__alloc(hx::Ctx *_hx_ctx, ::Dynamic bufferOrArray,hx::Null< int > __o_start, ::Dynamic elements) {
UInt8Array_obj *__this = (UInt8Array_obj*)(hx::Ctx::alloc(_hx_ctx, sizeof(UInt8Array_obj), true, "openfl._legacy.utils.UInt8Array"));
*(void **)__this = UInt8Array_obj::_hx_vtable;
__this->__construct(bufferOrArray,__o_start,elements);
return __this;
}
UInt8Array_obj::UInt8Array_obj()
{
}
hx::Val UInt8Array_obj::__Field(const ::String &inName,hx::PropertyAccess inCallProp)
{
switch(inName.length) {
case 5:
if (HX_FIELD_EQ(inName,"__get") ) { return hx::Val( __get_dyn() ); }
if (HX_FIELD_EQ(inName,"__set") ) { return hx::Val( __set_dyn() ); }
break;
case 6:
if (HX_FIELD_EQ(inName,"length") ) { return hx::Val( length ); }
break;
case 17:
if (HX_FIELD_EQ(inName,"BYTES_PER_ELEMENT") ) { return hx::Val( BYTES_PER_ELEMENT ); }
}
return super::__Field(inName,inCallProp);
}
hx::Val UInt8Array_obj::__SetField(const ::String &inName,const hx::Val &inValue,hx::PropertyAccess inCallProp)
{
switch(inName.length) {
case 6:
if (HX_FIELD_EQ(inName,"length") ) { length=inValue.Cast< int >(); return inValue; }
break;
case 17:
if (HX_FIELD_EQ(inName,"BYTES_PER_ELEMENT") ) { BYTES_PER_ELEMENT=inValue.Cast< int >(); return inValue; }
}
return super::__SetField(inName,inValue,inCallProp);
}
void UInt8Array_obj::__GetFields(Array< ::String> &outFields)
{
outFields->push(HX_HCSTRING("BYTES_PER_ELEMENT","\xa6","\x04","\x1d","\xcc"));
outFields->push(HX_HCSTRING("length","\xe6","\x94","\x07","\x9f"));
super::__GetFields(outFields);
};
#if HXCPP_SCRIPTABLE
static hx::StorageInfo UInt8Array_obj_sMemberStorageInfo[] = {
{hx::fsInt,(int)offsetof(UInt8Array_obj,BYTES_PER_ELEMENT),HX_HCSTRING("BYTES_PER_ELEMENT","\xa6","\x04","\x1d","\xcc")},
{hx::fsInt,(int)offsetof(UInt8Array_obj,length),HX_HCSTRING("length","\xe6","\x94","\x07","\x9f")},
{ hx::fsUnknown, 0, null()}
};
static hx::StaticInfo UInt8Array_obj_sStaticStorageInfo[] = {
{hx::fsInt,(void *) &UInt8Array_obj::SBYTES_PER_ELEMENT,HX_HCSTRING("SBYTES_PER_ELEMENT","\xf3","\x76","\x83","\xc2")},
{ hx::fsUnknown, 0, null()}
};
#endif
static ::String UInt8Array_obj_sMemberFields[] = {
HX_HCSTRING("BYTES_PER_ELEMENT","\xa6","\x04","\x1d","\xcc"),
HX_HCSTRING("length","\xe6","\x94","\x07","\x9f"),
HX_HCSTRING("__get","\x76","\xe1","\x2a","\xf2"),
HX_HCSTRING("__set","\x82","\xfc","\x33","\xf2"),
::String(null()) };
static void UInt8Array_obj_sMarkStatics(HX_MARK_PARAMS) {
HX_MARK_MEMBER_NAME(UInt8Array_obj::__mClass,"__mClass");
HX_MARK_MEMBER_NAME(UInt8Array_obj::SBYTES_PER_ELEMENT,"SBYTES_PER_ELEMENT");
};
#ifdef HXCPP_VISIT_ALLOCS
static void UInt8Array_obj_sVisitStatics(HX_VISIT_PARAMS) {
HX_VISIT_MEMBER_NAME(UInt8Array_obj::__mClass,"__mClass");
HX_VISIT_MEMBER_NAME(UInt8Array_obj::SBYTES_PER_ELEMENT,"SBYTES_PER_ELEMENT");
};
#endif
hx::Class UInt8Array_obj::__mClass;
static ::String UInt8Array_obj_sStaticFields[] = {
HX_HCSTRING("SBYTES_PER_ELEMENT","\xf3","\x76","\x83","\xc2"),
::String(null())
};
void UInt8Array_obj::__register()
{
hx::Object *dummy = new UInt8Array_obj;
UInt8Array_obj::_hx_vtable = *(void **)dummy;
hx::Static(__mClass) = new hx::Class_obj();
__mClass->mName = HX_HCSTRING("openfl._legacy.utils.UInt8Array","\x5c","\xf0","\xaa","\x3b");
__mClass->mSuper = &super::__SGetClass();
__mClass->mConstructEmpty = &__CreateEmpty;
__mClass->mConstructArgs = &__Create;
__mClass->mGetStaticField = &hx::Class_obj::GetNoStaticField;
__mClass->mSetStaticField = &hx::Class_obj::SetNoStaticField;
__mClass->mMarkFunc = UInt8Array_obj_sMarkStatics;
__mClass->mStatics = hx::Class_obj::dupFunctions(UInt8Array_obj_sStaticFields);
__mClass->mMembers = hx::Class_obj::dupFunctions(UInt8Array_obj_sMemberFields);
__mClass->mCanCast = hx::TCanCast< UInt8Array_obj >;
#ifdef HXCPP_VISIT_ALLOCS
__mClass->mVisitFunc = UInt8Array_obj_sVisitStatics;
#endif
#ifdef HXCPP_SCRIPTABLE
__mClass->mMemberStorageInfo = UInt8Array_obj_sMemberStorageInfo;
#endif
#ifdef HXCPP_SCRIPTABLE
__mClass->mStaticStorageInfo = UInt8Array_obj_sStaticStorageInfo;
#endif
hx::_hx_RegisterClass(__mClass->mName, __mClass);
}
void UInt8Array_obj::__boot()
{
{
HX_STACKFRAME(&_hx_pos_f47f36cb841378fc_13_boot)
HXDLIN( 13) SBYTES_PER_ELEMENT = (int)1;
}
}
} // end namespace openfl
} // end namespace _legacy
} // end namespace utils
| [
"[email protected]"
] | |
644bc1d256c7313684934e487d9592367baba4ce | 948f4e13af6b3014582909cc6d762606f2a43365 | /testcases/juliet_test_suite/testcases/CWE762_Mismatched_Memory_Management_Routines/s06/CWE762_Mismatched_Memory_Management_Routines__new_delete_array_int64_t_12.cpp | c7441e29af4974448dc392611e7ec320f9fa1d65 | [] | no_license | junxzm1990/ASAN-- | 0056a341b8537142e10373c8417f27d7825ad89b | ca96e46422407a55bed4aa551a6ad28ec1eeef4e | refs/heads/master | 2022-08-02T15:38:56.286555 | 2022-06-16T22:19:54 | 2022-06-16T22:19:54 | 408,238,453 | 74 | 13 | null | 2022-06-16T22:19:55 | 2021-09-19T21:14:59 | null | UTF-8 | C++ | false | false | 4,311 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE762_Mismatched_Memory_Management_Routines__new_delete_array_int64_t_12.cpp
Label Definition File: CWE762_Mismatched_Memory_Management_Routines__new_delete_array.label.xml
Template File: sources-sinks-12.tmpl.cpp
*/
/*
* @description
* CWE: 762 Mismatched Memory Management Routines
* BadSource: Allocate data using new
* GoodSource: Allocate data using new []
* Sinks:
* GoodSink: Deallocate data using delete
* BadSink : Deallocate data using delete []
* Flow Variant: 12 Control flow: if(globalReturnsTrueOrFalse())
* */
#include "std_testcase.h"
namespace CWE762_Mismatched_Memory_Management_Routines__new_delete_array_int64_t_12
{
#ifndef OMITBAD
void bad()
{
int64_t * data;
/* Initialize data*/
data = NULL;
if(globalReturnsTrueOrFalse())
{
/* POTENTIAL FLAW: Allocate memory with a function that requires delete to free the memory */
data = new int64_t;
}
else
{
/* FIX: Allocate memory from the heap using new [] */
data = new int64_t[100];
}
if(globalReturnsTrueOrFalse())
{
/* POTENTIAL FLAW: Deallocate memory using delete [] - the source memory allocation function may
* require a call to delete to deallocate the memory */
delete [] data;
}
else
{
/* FIX: Deallocate the memory using delete */
delete data;
}
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodB2G() - use badsource and goodsink by changing the first "if" so that
both branches use the BadSource and the second "if" so that both branches
use the GoodSink */
static void goodB2G()
{
int64_t * data;
/* Initialize data*/
data = NULL;
if(globalReturnsTrueOrFalse())
{
/* POTENTIAL FLAW: Allocate memory with a function that requires delete to free the memory */
data = new int64_t;
}
else
{
/* POTENTIAL FLAW: Allocate memory with a function that requires delete to free the memory */
data = new int64_t;
}
if(globalReturnsTrueOrFalse())
{
/* FIX: Deallocate the memory using delete */
delete data;
}
else
{
/* FIX: Deallocate the memory using delete */
delete data;
}
}
/* goodG2B() - use goodsource and badsink by changing the first "if" so that
both branches use the GoodSource and the second "if" so that both branches
use the BadSink */
static void goodG2B()
{
int64_t * data;
/* Initialize data*/
data = NULL;
if(globalReturnsTrueOrFalse())
{
/* FIX: Allocate memory from the heap using new [] */
data = new int64_t[100];
}
else
{
/* FIX: Allocate memory from the heap using new [] */
data = new int64_t[100];
}
if(globalReturnsTrueOrFalse())
{
/* POTENTIAL FLAW: Deallocate memory using delete [] - the source memory allocation function may
* require a call to delete to deallocate the memory */
delete [] data;
}
else
{
/* POTENTIAL FLAW: Deallocate memory using delete [] - the source memory allocation function may
* require a call to delete to deallocate the memory */
delete [] data;
}
}
void good()
{
goodB2G();
goodG2B();
}
#endif /* OMITGOOD */
} /* close namespace */
/* Below is the main(). It is only used when building this testcase on
its own for testing or for building a binary to use in testing binary
analysis tools. It is not used when compiling all the testcases as one
application, which is how source code analysis tools are tested. */
#ifdef INCLUDEMAIN
using namespace CWE762_Mismatched_Memory_Management_Routines__new_delete_array_int64_t_12; /* so that we can use good and bad easily */
int main(int argc, char * argv[])
{
/* seed randomness */
srand( (unsigned)time(NULL) );
#ifndef OMITGOOD
printLine("Calling good()...");
good();
printLine("Finished good()");
#endif /* OMITGOOD */
#ifndef OMITBAD
printLine("Calling bad()...");
bad();
printLine("Finished bad()");
#endif /* OMITBAD */
return 0;
}
#endif
| [
"[email protected]"
] | |
321169a822222dd66066f888defcbe1fb7a0808e | 44878320d26038a81fd1e9f312121f9049cee53d | /ManagerServer/ManagerServer/Ado/SimpleAdo.cpp | de39e6c574e98cec6d15db2206115d80b3207fad | [] | no_license | hankkuu-server/SimpleADO | cd30119446188360190cc683e1be2253ed8bfde9 | 09b26191b402e3a6949c4d49fe81b5b2efcf81c2 | refs/heads/master | 2022-11-17T19:41:40.586502 | 2020-07-01T10:09:57 | 2020-07-01T10:09:57 | 276,314,210 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 10,554 | cpp |
#include "SimpleAdo.h"
#include "AdoRecordSet.h"
#include "AdoCommand.h"
void DumpError(ErrorsPtr Errors)
{
register long nCount = Errors->GetCount();
register long nIndex = 0;
if (Errors == NULL) return;
while (nIndex < nCount)
{
_bstr_t Description;
_bstr_t Source;
_bstr_t SqlState;
long ErrNum;
ErrorPtr Err = Errors->Item[nIndex++];
Description = Err->GetDescription();
Source = Err->GetSource();
SqlState = Err->GetSQLState();
ErrNum = Err->GetNumber();
if (!ErrNum)
continue;
SYSTEMTIME cur_time;
::GetLocalTime(&cur_time); // 현재 시간을 읽는다.
// 이것도 저것도 다 귀찮고 간단하게 사용자에게 날짜와 시간을 문자열 형식으로 출력하고 싶다면
// 아래와 같은 함수를 사용하길 바랍니다.
string date, time;
date.resize(20);
time.resize(20);
// 현재 지역기준 날짜가 "월/일/년"의 형식으로 date_buff에 저장됨
// 12/28/09 (주의) 연도는 끝 두 자리만 표시됨.
_strdate_s((char*)date.c_str(), date.size());
//date.shrink_to_fit();
// 현재 지역기준 시간이 "시:분:초"의 형식으로 time_buff에 저장됨
// 12:58:59
_strtime_s((char*)time.c_str(), time.size());
date.resize(8);
date.append(" ");
date.append(time);
string strMsg = "";
strMsg.resize(300);
sprintf_s((char*)strMsg.c_str(), strMsg.size(),
"Date : %s\n"
"Source : %s\n"
"Error Code : %u\n"
"SQL Sate : %s\n"
"Description: %s\n",
date.c_str(),
(LPCSTR)Source,
ErrNum,
(LPCSTR)SqlState,
(LPCSTR)Description
);
printf("%s", strMsg.c_str());
}
Errors->Clear();
}
void DumpError(_com_error e)
{
string date, time;
date.resize(20);
time.resize(20);
// 현재 지역기준 날짜가 "월/일/년"의 형식으로 date_buff에 저장됨
// 12/28/09 (주의) 연도는 끝 두 자리만 표시됨.
_strdate_s((char*)date.c_str(), date.size());
//date.shrink_to_fit();
// 현재 지역기준 시간이 "시:분:초"의 형식으로 time_buff에 저장됨
// 12:58:59
_strtime_s((char*)time.c_str(), time.size());
date.resize(8);
date.append(" ");
date.append(time);
string strMsg;
strMsg.resize(500);
sprintf_s((char*)strMsg.c_str(), strMsg.size(),
"Date : %s\n"
"Description: %s\n",
date.c_str(),
(LPCTSTR)e.Description()
);
printf("%s", strMsg.c_str());
}
SimpleAdo::SimpleAdo(string strUserId, string strPassWord, string strDbIp, string strDbName, string strPort, string dbProvider, string dbConnectionTimeout, string dbCommandTimeout)
{
::CoInitialize(NULL); // ??
m_pConnection = nullptr;
this->Connect(strUserId, strPassWord, strDbIp, strDbName, strPort, dbProvider, dbConnectionTimeout, dbCommandTimeout);
}
SimpleAdo::SimpleAdo(string connectionString, string dbConnectionTimeout, string dbCommandTimeout)
{
::CoInitialize(NULL); // ??
m_pConnection = nullptr;
this->Connect(connectionString, dbConnectionTimeout, dbCommandTimeout);
}
SimpleAdo::~SimpleAdo()
{
::CoUninitialize();
}
void SimpleAdo::Connect(string strUserId, string strPassWord, string strDbIp, string strDbName, string strPort, string dbProvider, string dbConnectionTimeout, string dbCommandTimeout)
{
this->Create(strDbIp, strDbName, strPort, dbProvider, dbConnectionTimeout, dbCommandTimeout);
bool result = this->Open((LPCSTR)m_pConnection->GetConnectionString(), strUserId, strPassWord);
if (result == false)
{
// throw Error;
}
}
void SimpleAdo::Connect(string connectionString, string dbConnectionTimeout, string dbCommandTimeout)
{
this->Create(connectionString, dbConnectionTimeout, dbCommandTimeout);
bool result = this->Open((string)m_pConnection->GetConnectionString());
if (result == false)
{
// throw Error;
}
}
void SimpleAdo::Create(string strDbIp, string strDbName, string strPort, string dbProvider, string dbConnectionTimeout, string dbCommandTimeout)
{
string strConn;
strConn.resize(200);
sprintf_s((char*)strConn.c_str(), strConn.size(),
"Data Source=%s;Initial Catalog=%s;Network Address=%s,%s;Network Library=dbmssocn",
strDbIp.c_str(), strDbName.c_str(), strDbIp.c_str(), strPort.c_str());
m_pConnection.CreateInstance(__uuidof(Connection));
m_pConnection->PutProvider(dbProvider.c_str());
m_pConnection->PutConnectionTimeout((long)dbConnectionTimeout.c_str());
m_pConnection->PutCommandTimeout((long)dbCommandTimeout.c_str());
_bstr_t pbstr(strConn.c_str());
m_pConnection->PutConnectionString(pbstr);
}
void SimpleAdo::Create(string connectionString, string dbConnectionTimeout, string dbCommandTimeout)
{
if (connectionString.empty()) {
// Error를 뱉어야 함
exit(1);
return;
}
m_pConnection.CreateInstance(__uuidof(Connection)); //m_pConn.CreateInstance("ADODB.Connection");
// default
m_pConnection->PutConnectionTimeout((long)dbConnectionTimeout.c_str());
m_pConnection->PutCommandTimeout((long)dbCommandTimeout.c_str());
_bstr_t pbstr(connectionString.c_str());
m_pConnection->PutConnectionString(pbstr);
}
bool SimpleAdo::Open(string connectionString)
{
bool result = false;
if (connectionString.empty())
return result;
try {
_bstr_t bstr_empty = "";
HRESULT hr = m_pConnection->Open(connectionString.c_str(), bstr_empty, bstr_empty, adConnectUnspecified);
if (hr == S_OK)
result = true;
// 아래 부분은 추가 검사의 의미 있을지...
DumpError(m_pConnection->GetErrors());
if (m_pConnection->GetState() == adStateClosed)
result = false;
}
catch (_com_error &e)
{
ErrorQuery(e);
DumpError(e);
result = false;
}
return result;
}
bool SimpleAdo::Open(string connectionString, string user, string password)
{
bool result = false;
if (connectionString.empty())
return result;
try {
HRESULT hr = m_pConnection->Open(connectionString.c_str(), user.c_str(), password.c_str(), adConnectUnspecified);
if (hr == S_OK)
result = true;
DumpError(m_pConnection->GetErrors());
if (m_pConnection->GetState() == adStateClosed)
result = false;
}
catch (_com_error &e)
{
DumpError(e);
result = false;
}
return result;
}
void SimpleAdo::Close()
{
if (m_pRecordSet != nullptr && m_pRecordSet->IsOpen())
{
m_pRecordSet->Close();
delete m_pRecordSet;
}
if (m_pCommand != nullptr)
{
m_pCommand->Close();
delete m_pCommand;
}
if (this->IsOpen())
{
m_pConnection->Close();
}
}
long SimpleAdo::ExecuteCmd(string query, CommandTypeEnum commandType)
{
long rowCount = 0; // 적용된 variant형을 로우수 저장
try
{
m_pCommand = new AdoCommand(this, m_pConnection->GetCommandTimeout());
rowCount = m_pCommand->Execute(query, commandType);
}
catch (_com_error& e)
{
ErrorQuery(e);
}
return rowCount;
}
void SimpleAdo::ExecuteProc(string procName, DynamicParameters& parameters)
{
try
{
m_pCommand = new AdoCommand(this, m_pConnection->GetCommandTimeout());
// 아직 미구현
m_pCommand->ExecuteProc();
}
catch (_com_error& e)
{
ErrorQuery(e);
}
}
long SimpleAdo::Execute(string query)
{
// 이런 방어코드 너무 싫은거 같다...
if (m_pConnection == nullptr) {
// throw DB 연결을 하세요
}
_variant_t updatedCount; // Update가 적용된 로우수
try
{
// 트랜잭션은 상위에서 잡아야 한다
//m_pConn->BeginTrans();
m_pConnection->Execute(_bstr_t(query.c_str()), &updatedCount, adExecuteNoRecords);
//m_pConn->CommitTrans();
DumpError(m_pConnection->GetErrors());
}
catch (_com_error& e)
{
//m_pConn->RollbackTrans();
ErrorQuery(e);
printf("*** DOG CHECK [ADO DB] => <ExecuteQuery 오류> 메시지[%Ls] !! ***\n", e.ErrorMessage());
printf("*** DOG CHECK [ADO DB] => <ExecuteQuery 오류> 설명[%s] !! ***\n", (LPCSTR)e.Description());
printf("*** DOG CHECK [ADO DB] => <ExecuteQuery 오류> 소스[%s] !! ***\n", (LPCSTR)e.Source());
}
long effected = atol((char*)((_bstr_t)updatedCount)); // variant형을 long형에 저장
if (effected == 0)
{
// 변경된게 없다
}
return effected;
}
void SimpleAdo::Query(string query, CursorTypeEnum cursorType, CursorLocationEnum cursorLocation, LockTypeEnum lockType, CommandTypeEnum commandType)
{
try
{
m_pRecordSet = new AdoRecordSet(this);
bool result = m_pRecordSet->Query(query, cursorType, cursorLocation, lockType, commandType);
if (result == false)
{
// throew Error;
}
}
catch (_com_error& e)
{
printf("*** DOG CHECK [ADO DB] => <OpenQuery 오류> 메시지[%Ls] !! ***\n", e.ErrorMessage());
printf("*** DOG CHECK [ADO DB] => <OpenQuery 오류> 설명[%s] !! ***\n", (LPCSTR)e.Description());
printf("*** DOG CHECK [ADO DB] => <OpenQuery 오류> 소스[%s] !! ***\n", (LPCSTR)e.Source());
}
}
bool SimpleAdo::IsOpen()
{
try {
return ((m_pConnection->GetState() == adStateOpen) ? true : false);
}
catch (_com_error &e)
{
DumpError(e);
return false;
}
}
bool SimpleAdo::Move(long nIndex)
{
return Record().Move(nIndex);
}
bool SimpleAdo::MoveLast(void)
{
return Record().MoveLast();
}
bool SimpleAdo::MovePrevious(void)
{
return Record().MovePrevious();
}
bool SimpleAdo::MoveNext(void)
{
return Record().MoveNext();
}
bool SimpleAdo::MoveFirst(void)
{
return Record().MoveFirst();
}
long SimpleAdo::GetRecordCount(void)
{
if (m_pRecordSet == nullptr) return 0;
return m_pRecordSet->GetRecordCount();
}
long SimpleAdo::GetCurrentRecordCount(void)
{
if (m_pRecordSet == nullptr) return 0;
return m_pRecordSet->GetCurrentRecordCount();
}
long SimpleAdo::GetFieldCount(void)
{
if (m_pRecordSet == nullptr) return 0;
return m_pRecordSet->GetFieldCount();
}
void SimpleAdo::DisConnect()
{
try
{
this->Close();
m_pConnection.Release();
m_pConnection = nullptr;
}
catch (_com_error& e)
{
DumpError(e);
printf("*** DOG CHECK [ADO DB] => <DBDisConnect 오류> 메시지[%Ls] !! ***\n", e.ErrorMessage());
printf("*** DOG CHECK [ADO DB] => <DBDisConnect 오류> 설명[%s] !! ***\n", (LPCSTR)e.Description());
printf("*** DOG CHECK [ADO DB] => <DBDisConnect 오류> 소스[%s] !! ***\n", (LPCSTR)e.Source());
}
delete this;
}
void SimpleAdo::ErrorQuery(_com_error& e)
{
_bstr_t bstrDescription(e.Description());
printf("error - %s\n", (LPCSTR)bstrDescription);
printf("*** DOG CHECK [ADO DB] => <DBConnect 오류> 메시지[%Ls] !! ***\n", e.ErrorMessage());
printf("*** DOG CHECK [ADO DB] => <DBConnect 오류> 설명[%s] !! ***\n", (LPCSTR)e.Description());
printf("*** DOG CHECK [ADO DB] => <DBConnect 오류> 소스[%s] !! ***\n", (LPCSTR)e.Source());
//exit(1); // ?? 이건 왜
}
| [
"[email protected]"
] | |
e6c83db2b1f7eb0b798bf488cc8d54baf4d467e9 | bc7988d680d9c05833fd848230bef894cf095d22 | /Lab_2/Lab_2.cpp | 03d87dd9ffc6706b15b2a6f948f050b302e9e636 | [] | no_license | Shoshnikov/Lab2 | ccfdbbeec37328d57c2ca7b779b305909fe27b1f | 04188df9a7eb8db31e808fe058c571963d5b8ca6 | refs/heads/master | 2020-08-13T01:44:06.419418 | 2019-10-13T19:53:31 | 2019-10-13T19:53:31 | 214,883,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,653 | cpp | #include <iostream>
#include <locale.h>
using namespace std;
int CorrectInput(int& value);
void PrintArr(int arr[], int lngth);
void PrintArrLikeNumber(int arr[], int lngth);
void Polindrom(int number);
int main()
{
setlocale(LC_ALL, "RUS");
cout << "Вариант 9. ИКБО-02-18. Шошников Иван\n";
int length;
cout << "Введите количество чисел\n";
CorrectInput(length);
int* Array = new int[length];
cout << "Введите числа\n";
for(int i = 0; i < length; i++)
CorrectInput(Array[i]);
PrintArr(Array, length);
cout << "Следующие значения - полиндромы\n";
for (int i = 0; i < length; i++)
Polindrom(Array[i]);
delete[] Array;
}
int CorrectInput(int& value)
{
char fail;
cin >> value;
while (cin.fail())
{
cout << "Данные некорректны\n";
cin.clear();
cin >> fail;
cin >> value;
}
return value;
}
void PrintArr(int arr[], int lngth)
{
for (int i = 0; i < lngth; i++)
cout << arr[i] << "\t";
cout << endl;
}
void PrintArrLikeNumber(int arr[], int lngth)
{
for (int i = 0; i < lngth; i++)
cout << arr[i];
cout << endl;
}
void Polindrom(int number)
{
int num = number;
bool polindrom = true;
int count = 0;
while (number)
{
number /= 10;
count++;
}
int* arr = new int[count];
for (int i = 0; i < count; i++)
{
arr[i] = num % 10;
num /= 10;
}
int leftBorder = 0;
int righBorder = count - 1;
while (leftBorder <= righBorder)
{
if (arr[leftBorder] != arr[righBorder])
polindrom = false;
leftBorder++;
righBorder--;
}
if (polindrom)
PrintArrLikeNumber(arr, count);
delete[] arr;
} | [
"[email protected]"
] | |
5d24d721cb66ab2c7126110d9df6a225a3aa452c | 60339fa5391300abe1b033ec9b376e3d4ad27ee8 | /chair_manipulation_grasp_detection_advanced/test/convert_mesh_test.cpp | 1839cfd56de2612f74202cb33c45afd687b6d694 | [] | no_license | Badenhoop/chair_manipulation | e42502408b1fdd69444bd9ecc2d6d3f42de4f8e2 | 2e31ca2c51141bfa7466453191dda283850af210 | refs/heads/master | 2022-12-14T23:13:28.858218 | 2020-09-04T11:42:43 | 2020-09-04T11:42:43 | 270,237,048 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,416 | cpp | #include <ros/ros.h>
#include <ros/package.h>
#include "chair_manipulation_grasp_detection_advanced/utils.h"
#include <pcl/io/vtk_lib_io.h>
int main(int argc, char* argv[])
{
ros::init(argc, argv, "convert_mesh_test");
ros::NodeHandle nh;
ros::NodeHandle nh_priv{ "~" };
auto mesh_pub = nh.advertise<shape_msgs::Mesh>("mesh", 1);
pcl::PolygonMesh polygon_mesh;
auto mesh_filename =
nh_priv.param<std::string>("mesh", ros::package::getPath("chair_manipulation_chair_models") + "/models/"
"dining_chair/"
"meshes/"
"dining_chair.ply");
if (!pcl::io::loadPolygonFilePLY(mesh_filename, polygon_mesh))
{
ROS_ERROR("Failed to load mesh.");
return -1;
}
shapes::Mesh shape_mesh;
ROS_INFO("Converting pcl::PolygonMesh to shapes::Mesh");
chair_manipulation::utils::polygonToShapeMesh(polygon_mesh, shape_mesh);
shape_msgs::Mesh mesh_msg;
ROS_INFO("Converting shapes::Mesh to shape_msgs::Mesh");
chair_manipulation::utils::shapeMeshToMsg(shape_mesh, mesh_msg);
ros::Rate rate{ 10 };
while (ros::ok())
{
mesh_pub.publish(mesh_msg);
rate.sleep();
}
return 0;
} | [
"[email protected]"
] | |
dca0bea816e323ecb63d202f6cb1c2a057cd2679 | ece30e7058d8bd42bc13c54560228bd7add50358 | /DataCollector/mozilla/xulrunner-sdk/include/mozilla/dom/ResourceStatsBinding.h | e33a7be3c387e711f00bd13ef92f221c37be7328 | [
"Apache-2.0"
] | permissive | andrasigneczi/TravelOptimizer | b0fe4d53f6494d40ba4e8b98cc293cb5451542ee | b08805f97f0823fd28975a36db67193386aceb22 | refs/heads/master | 2022-07-22T02:07:32.619451 | 2018-12-03T13:58:21 | 2018-12-03T13:58:21 | 53,926,539 | 1 | 0 | Apache-2.0 | 2022-07-06T20:05:38 | 2016-03-15T08:16:59 | C++ | UTF-8 | C++ | false | false | 19,011 | h | /* THIS FILE IS AUTOGENERATED FROM ResourceStats.webidl BY Codegen.py - DO NOT EDIT */
#ifndef mozilla_dom_ResourceStatsBinding_h
#define mozilla_dom_ResourceStatsBinding_h
#include "ResourceStatsManagerBinding.h"
#include "js/RootingAPI.h"
#include "jspubtd.h"
#include "mozilla/ErrorResult.h"
#include "mozilla/dom/BindingDeclarations.h"
#include "mozilla/dom/BindingUtils.h"
#include "mozilla/dom/CallbackInterface.h"
#include "mozilla/dom/Nullable.h"
#include "mozilla/dom/ToJSValue.h"
#include "mozilla/dom/UnionMember.h"
#include "nsWeakReference.h"
namespace mozilla {
namespace dom {
struct NativePropertyHooks;
class NetworkStatsData;
struct NetworkStatsDataAtoms;
class NetworkStatsDataOrPowerStatsData;
class OwningNetworkStatsDataOrPowerStatsData;
class PowerStatsData;
struct PowerStatsDataAtoms;
class ProtoAndIfaceCache;
class ResourceStats;
struct ResourceStatsAtoms;
} // namespace dom
} // namespace mozilla
namespace mozilla {
namespace dom {
void
ImplCycleCollectionTraverse(nsCycleCollectionTraversalCallback& aCallback, OwningNetworkStatsDataOrPowerStatsData& aUnion, const char* aName, uint32_t aFlags = 0);
void
ImplCycleCollectionUnlink(OwningNetworkStatsDataOrPowerStatsData& aUnion);
class NetworkStatsDataOrPowerStatsData
{
friend class NetworkStatsDataOrPowerStatsDataArgument;
enum Type
{
eUninitialized,
eNetworkStatsData,
ePowerStatsData
};
union Value
{
UnionMember<NonNull<mozilla::dom::NetworkStatsData> > mNetworkStatsData;
UnionMember<NonNull<mozilla::dom::PowerStatsData> > mPowerStatsData;
};
Type mType;
Value mValue;
NetworkStatsDataOrPowerStatsData(const NetworkStatsDataOrPowerStatsData&) = delete;
void operator=(const NetworkStatsDataOrPowerStatsData) = delete;
public:
explicit inline NetworkStatsDataOrPowerStatsData()
: mType(eUninitialized)
{
}
inline ~NetworkStatsDataOrPowerStatsData()
{
Uninit();
}
inline NonNull<mozilla::dom::NetworkStatsData>&
RawSetAsNetworkStatsData()
{
if (mType == eNetworkStatsData) {
return mValue.mNetworkStatsData.Value();
}
MOZ_ASSERT(mType == eUninitialized);
mType = eNetworkStatsData;
return mValue.mNetworkStatsData.SetValue();
}
inline NonNull<mozilla::dom::NetworkStatsData>&
SetAsNetworkStatsData()
{
if (mType == eNetworkStatsData) {
return mValue.mNetworkStatsData.Value();
}
Uninit();
mType = eNetworkStatsData;
return mValue.mNetworkStatsData.SetValue();
}
inline bool
IsNetworkStatsData() const
{
return mType == eNetworkStatsData;
}
inline NonNull<mozilla::dom::NetworkStatsData>&
GetAsNetworkStatsData()
{
MOZ_ASSERT(IsNetworkStatsData(), "Wrong type!");
return mValue.mNetworkStatsData.Value();
}
inline mozilla::dom::NetworkStatsData&
GetAsNetworkStatsData() const
{
MOZ_ASSERT(IsNetworkStatsData(), "Wrong type!");
return mValue.mNetworkStatsData.Value();
}
inline NonNull<mozilla::dom::PowerStatsData>&
RawSetAsPowerStatsData()
{
if (mType == ePowerStatsData) {
return mValue.mPowerStatsData.Value();
}
MOZ_ASSERT(mType == eUninitialized);
mType = ePowerStatsData;
return mValue.mPowerStatsData.SetValue();
}
inline NonNull<mozilla::dom::PowerStatsData>&
SetAsPowerStatsData()
{
if (mType == ePowerStatsData) {
return mValue.mPowerStatsData.Value();
}
Uninit();
mType = ePowerStatsData;
return mValue.mPowerStatsData.SetValue();
}
inline bool
IsPowerStatsData() const
{
return mType == ePowerStatsData;
}
inline NonNull<mozilla::dom::PowerStatsData>&
GetAsPowerStatsData()
{
MOZ_ASSERT(IsPowerStatsData(), "Wrong type!");
return mValue.mPowerStatsData.Value();
}
inline mozilla::dom::PowerStatsData&
GetAsPowerStatsData() const
{
MOZ_ASSERT(IsPowerStatsData(), "Wrong type!");
return mValue.mPowerStatsData.Value();
}
inline void
Uninit()
{
switch (mType) {
case eUninitialized: {
break;
}
case eNetworkStatsData: {
DestroyNetworkStatsData();
break;
}
case ePowerStatsData: {
DestroyPowerStatsData();
break;
}
}
}
bool
ToJSVal(JSContext* cx, JS::Handle<JSObject*> scopeObj, JS::MutableHandle<JS::Value> rval) const;
private:
inline void
DestroyNetworkStatsData()
{
MOZ_ASSERT(IsNetworkStatsData(), "Wrong type!");
mValue.mNetworkStatsData.Destroy();
mType = eUninitialized;
}
inline void
DestroyPowerStatsData()
{
MOZ_ASSERT(IsPowerStatsData(), "Wrong type!");
mValue.mPowerStatsData.Destroy();
mType = eUninitialized;
}
};
class OwningNetworkStatsDataOrPowerStatsData : public AllOwningUnionBase
{
friend void ImplCycleCollectionUnlink(OwningNetworkStatsDataOrPowerStatsData& aUnion);
enum Type
{
eUninitialized,
eNetworkStatsData,
ePowerStatsData
};
union Value
{
UnionMember<OwningNonNull<mozilla::dom::NetworkStatsData> > mNetworkStatsData;
UnionMember<OwningNonNull<mozilla::dom::PowerStatsData> > mPowerStatsData;
};
Type mType;
Value mValue;
public:
explicit inline OwningNetworkStatsDataOrPowerStatsData()
: mType(eUninitialized)
{
}
explicit inline OwningNetworkStatsDataOrPowerStatsData(const OwningNetworkStatsDataOrPowerStatsData& aOther)
: mType(eUninitialized)
{
*this = aOther;
}
inline ~OwningNetworkStatsDataOrPowerStatsData()
{
Uninit();
}
OwningNonNull<mozilla::dom::NetworkStatsData>&
RawSetAsNetworkStatsData();
OwningNonNull<mozilla::dom::NetworkStatsData>&
SetAsNetworkStatsData();
bool
TrySetToNetworkStatsData(JSContext* cx, JS::Handle<JS::Value> value, bool& tryNext, bool passedToJSImpl = false);
inline bool
IsNetworkStatsData() const
{
return mType == eNetworkStatsData;
}
inline OwningNonNull<mozilla::dom::NetworkStatsData>&
GetAsNetworkStatsData()
{
MOZ_ASSERT(IsNetworkStatsData(), "Wrong type!");
return mValue.mNetworkStatsData.Value();
}
inline OwningNonNull<mozilla::dom::NetworkStatsData> const &
GetAsNetworkStatsData() const
{
MOZ_ASSERT(IsNetworkStatsData(), "Wrong type!");
return mValue.mNetworkStatsData.Value();
}
OwningNonNull<mozilla::dom::PowerStatsData>&
RawSetAsPowerStatsData();
OwningNonNull<mozilla::dom::PowerStatsData>&
SetAsPowerStatsData();
bool
TrySetToPowerStatsData(JSContext* cx, JS::Handle<JS::Value> value, bool& tryNext, bool passedToJSImpl = false);
inline bool
IsPowerStatsData() const
{
return mType == ePowerStatsData;
}
inline OwningNonNull<mozilla::dom::PowerStatsData>&
GetAsPowerStatsData()
{
MOZ_ASSERT(IsPowerStatsData(), "Wrong type!");
return mValue.mPowerStatsData.Value();
}
inline OwningNonNull<mozilla::dom::PowerStatsData> const &
GetAsPowerStatsData() const
{
MOZ_ASSERT(IsPowerStatsData(), "Wrong type!");
return mValue.mPowerStatsData.Value();
}
void
Uninit();
bool
ToJSVal(JSContext* cx, JS::Handle<JSObject*> scopeObj, JS::MutableHandle<JS::Value> rval) const;
void
TraceUnion(JSTracer* trc);
void
operator=(const OwningNetworkStatsDataOrPowerStatsData& aOther);
private:
void
DestroyNetworkStatsData();
void
DestroyPowerStatsData();
};
namespace NetworkStatsDataBinding {
typedef mozilla::dom::NetworkStatsData NativeType;
// We declare this as an array so that retrieving a pointer to this
// binding's property hooks only requires compile/link-time resolvable
// address arithmetic. Declaring it as a pointer instead would require
// doing a run-time load to fetch a pointer to this binding's property
// hooks. And then structures which embedded a pointer to this structure
// would require a run-time load for proper initialization, which would
// then induce static constructors. Lots of static constructors.
extern const NativePropertyHooks sNativePropertyHooks[];
JSObject*
DefineDOMInterface(JSContext* aCx, JS::Handle<JSObject*> aGlobal, JS::Handle<jsid> id, bool aDefineOnGlobal);
bool
ConstructorEnabled(JSContext* aCx, JS::Handle<JSObject*> aObj);
const JSClass*
GetJSClass();
bool
Wrap(JSContext* aCx, mozilla::dom::NetworkStatsData* aObject, nsWrapperCache* aCache, JS::Handle<JSObject*> aGivenProto, JS::MutableHandle<JSObject*> aReflector);
template <class T>
inline JSObject* Wrap(JSContext* aCx, T* aObject, JS::Handle<JSObject*> aGivenProto)
{
JS::Rooted<JSObject*> reflector(aCx);
return Wrap(aCx, aObject, aObject, aGivenProto, &reflector) ? reflector.get() : nullptr;
}
void
CreateInterfaceObjects(JSContext* aCx, JS::Handle<JSObject*> aGlobal, ProtoAndIfaceCache& aProtoAndIfaceCache, bool aDefineOnGlobal);
JS::Handle<JSObject*>
GetProtoObjectHandle(JSContext* aCx, JS::Handle<JSObject*> aGlobal);
JS::Handle<JSObject*>
GetConstructorObjectHandle(JSContext* aCx, JS::Handle<JSObject*> aGlobal, bool aDefineOnGlobal = true);
JSObject*
GetConstructorObject(JSContext* aCx, JS::Handle<JSObject*> aGlobal);
} // namespace NetworkStatsDataBinding
namespace PowerStatsDataBinding {
typedef mozilla::dom::PowerStatsData NativeType;
// We declare this as an array so that retrieving a pointer to this
// binding's property hooks only requires compile/link-time resolvable
// address arithmetic. Declaring it as a pointer instead would require
// doing a run-time load to fetch a pointer to this binding's property
// hooks. And then structures which embedded a pointer to this structure
// would require a run-time load for proper initialization, which would
// then induce static constructors. Lots of static constructors.
extern const NativePropertyHooks sNativePropertyHooks[];
JSObject*
DefineDOMInterface(JSContext* aCx, JS::Handle<JSObject*> aGlobal, JS::Handle<jsid> id, bool aDefineOnGlobal);
bool
ConstructorEnabled(JSContext* aCx, JS::Handle<JSObject*> aObj);
const JSClass*
GetJSClass();
bool
Wrap(JSContext* aCx, mozilla::dom::PowerStatsData* aObject, nsWrapperCache* aCache, JS::Handle<JSObject*> aGivenProto, JS::MutableHandle<JSObject*> aReflector);
template <class T>
inline JSObject* Wrap(JSContext* aCx, T* aObject, JS::Handle<JSObject*> aGivenProto)
{
JS::Rooted<JSObject*> reflector(aCx);
return Wrap(aCx, aObject, aObject, aGivenProto, &reflector) ? reflector.get() : nullptr;
}
void
CreateInterfaceObjects(JSContext* aCx, JS::Handle<JSObject*> aGlobal, ProtoAndIfaceCache& aProtoAndIfaceCache, bool aDefineOnGlobal);
JS::Handle<JSObject*>
GetProtoObjectHandle(JSContext* aCx, JS::Handle<JSObject*> aGlobal);
JS::Handle<JSObject*>
GetConstructorObjectHandle(JSContext* aCx, JS::Handle<JSObject*> aGlobal, bool aDefineOnGlobal = true);
JSObject*
GetConstructorObject(JSContext* aCx, JS::Handle<JSObject*> aGlobal);
} // namespace PowerStatsDataBinding
namespace ResourceStatsBinding {
typedef mozilla::dom::ResourceStats NativeType;
// We declare this as an array so that retrieving a pointer to this
// binding's property hooks only requires compile/link-time resolvable
// address arithmetic. Declaring it as a pointer instead would require
// doing a run-time load to fetch a pointer to this binding's property
// hooks. And then structures which embedded a pointer to this structure
// would require a run-time load for proper initialization, which would
// then induce static constructors. Lots of static constructors.
extern const NativePropertyHooks sNativePropertyHooks[];
JSObject*
DefineDOMInterface(JSContext* aCx, JS::Handle<JSObject*> aGlobal, JS::Handle<jsid> id, bool aDefineOnGlobal);
bool
ConstructorEnabled(JSContext* aCx, JS::Handle<JSObject*> aObj);
const JSClass*
GetJSClass();
bool
Wrap(JSContext* aCx, mozilla::dom::ResourceStats* aObject, nsWrapperCache* aCache, JS::Handle<JSObject*> aGivenProto, JS::MutableHandle<JSObject*> aReflector);
template <class T>
inline JSObject* Wrap(JSContext* aCx, T* aObject, JS::Handle<JSObject*> aGivenProto)
{
JS::Rooted<JSObject*> reflector(aCx);
return Wrap(aCx, aObject, aObject, aGivenProto, &reflector) ? reflector.get() : nullptr;
}
void
CreateInterfaceObjects(JSContext* aCx, JS::Handle<JSObject*> aGlobal, ProtoAndIfaceCache& aProtoAndIfaceCache, bool aDefineOnGlobal);
JS::Handle<JSObject*>
GetProtoObjectHandle(JSContext* aCx, JS::Handle<JSObject*> aGlobal);
JS::Handle<JSObject*>
GetConstructorObjectHandle(JSContext* aCx, JS::Handle<JSObject*> aGlobal, bool aDefineOnGlobal = true);
JSObject*
GetConstructorObject(JSContext* aCx, JS::Handle<JSObject*> aGlobal);
} // namespace ResourceStatsBinding
class NetworkStatsDataJSImpl : public CallbackInterface
{
public:
explicit inline NetworkStatsDataJSImpl(JS::Handle<JSObject*> aCallback, nsIGlobalObject* aIncumbentGlobal)
: CallbackInterface(aCallback, aIncumbentGlobal)
{
}
inline bool
operator==(const NetworkStatsDataJSImpl& aOther) const
{
return CallbackInterface::operator==(aOther);
}
uint64_t GetReceivedBytes(ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
uint64_t GetSentBytes(ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
uint64_t GetTimestamp(ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
private:
static bool
InitIds(JSContext* cx, NetworkStatsDataAtoms* atomsCache);
};
class NetworkStatsData final : public nsSupportsWeakReference,
public nsWrapperCache
{
public:
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(NetworkStatsData)
private:
nsRefPtr<NetworkStatsDataJSImpl> mImpl;
nsCOMPtr<nsISupports> mParent;
public:
NetworkStatsData(JS::Handle<JSObject*> aJSImplObject, nsIGlobalObject* aParent);
private:
~NetworkStatsData();
public:
nsISupports* GetParentObject() const;
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
uint64_t GetReceivedBytes(ErrorResult& aRv, JSCompartment* aCompartment = nullptr) const;
uint64_t GetSentBytes(ErrorResult& aRv, JSCompartment* aCompartment = nullptr) const;
uint64_t GetTimestamp(ErrorResult& aRv, JSCompartment* aCompartment = nullptr) const;
static bool
_Create(JSContext* cx, unsigned argc, JS::Value* vp);
};
class PowerStatsDataJSImpl : public CallbackInterface
{
public:
explicit inline PowerStatsDataJSImpl(JS::Handle<JSObject*> aCallback, nsIGlobalObject* aIncumbentGlobal)
: CallbackInterface(aCallback, aIncumbentGlobal)
{
}
inline bool
operator==(const PowerStatsDataJSImpl& aOther) const
{
return CallbackInterface::operator==(aOther);
}
uint64_t GetConsumedPower(ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
uint64_t GetTimestamp(ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
private:
static bool
InitIds(JSContext* cx, PowerStatsDataAtoms* atomsCache);
};
class PowerStatsData final : public nsSupportsWeakReference,
public nsWrapperCache
{
public:
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(PowerStatsData)
private:
nsRefPtr<PowerStatsDataJSImpl> mImpl;
nsCOMPtr<nsISupports> mParent;
public:
PowerStatsData(JS::Handle<JSObject*> aJSImplObject, nsIGlobalObject* aParent);
private:
~PowerStatsData();
public:
nsISupports* GetParentObject() const;
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
uint64_t GetConsumedPower(ErrorResult& aRv, JSCompartment* aCompartment = nullptr) const;
uint64_t GetTimestamp(ErrorResult& aRv, JSCompartment* aCompartment = nullptr) const;
static bool
_Create(JSContext* cx, unsigned argc, JS::Value* vp);
};
class ResourceStatsJSImpl : public CallbackInterface
{
public:
explicit inline ResourceStatsJSImpl(JS::Handle<JSObject*> aCallback, nsIGlobalObject* aIncumbentGlobal)
: CallbackInterface(aCallback, aIncumbentGlobal)
{
}
void GetData(nsTArray<OwningNetworkStatsDataOrPowerStatsData>& aRetVal, ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
inline bool
operator==(const ResourceStatsJSImpl& aOther) const
{
return CallbackInterface::operator==(aOther);
}
ResourceType GetType(ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
void GetComponent(nsString& aRetVal, ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
Nullable<SystemService> GetServiceType(ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
void GetManifestURL(nsString& aRetVal, ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
uint64_t GetStart(ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
uint64_t GetEnd(ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
private:
static bool
InitIds(JSContext* cx, ResourceStatsAtoms* atomsCache);
};
class ResourceStats final : public nsSupportsWeakReference,
public nsWrapperCache
{
public:
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(ResourceStats)
private:
nsRefPtr<ResourceStatsJSImpl> mImpl;
nsCOMPtr<nsISupports> mParent;
public:
ResourceStats(JS::Handle<JSObject*> aJSImplObject, nsIGlobalObject* aParent);
private:
~ResourceStats();
public:
nsISupports* GetParentObject() const;
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
ResourceType GetType(ErrorResult& aRv, JSCompartment* aCompartment = nullptr) const;
void GetComponent(nsString& aRetVal, ErrorResult& aRv, JSCompartment* aCompartment = nullptr) const;
Nullable<SystemService> GetServiceType(ErrorResult& aRv, JSCompartment* aCompartment = nullptr) const;
void GetManifestURL(nsString& aRetVal, ErrorResult& aRv, JSCompartment* aCompartment = nullptr) const;
void GetData(nsTArray<OwningNetworkStatsDataOrPowerStatsData>& aRetVal, ErrorResult& aRv, JSCompartment* aCompartment = nullptr);
uint64_t GetStart(ErrorResult& aRv, JSCompartment* aCompartment = nullptr) const;
uint64_t GetEnd(ErrorResult& aRv, JSCompartment* aCompartment = nullptr) const;
static bool
_Create(JSContext* cx, unsigned argc, JS::Value* vp);
};
} // namespace dom
} // namespace mozilla
#endif // mozilla_dom_ResourceStatsBinding_h
| [
"[email protected]"
] | |
630e17ad13c8c3e09c3e29edc781623444b6981c | 7d2e9ac33181fc6a545a0d72e7cf05fb55f67b9a | /Game/Libs/google/protobuf/util/internal/testdata/field_mask.pb.h | 87e449bde380f71b175c836a2a4b1fe61bd15637 | [] | no_license | oneStarCai/cpplua | adcc55c20feb2b5f299c58447b98a30885e5d91c | 58ccb26c5c0321b89437023e6c6f164056090009 | refs/heads/main | 2023-08-23T03:57:53.595699 | 2021-11-04T03:42:31 | 2021-11-04T03:42:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 103,982 | h | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/protobuf/util/internal/testdata/field_mask.proto
#ifndef GOOGLE_PROTOBUF_INCLUDED_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto
#define GOOGLE_PROTOBUF_INCLUDED_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto
#include <limits>
#include <string>
#include <google/protobuf/port_def.inc>
#if PROTOBUF_VERSION < 3015000
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers. Please update
#error your headers.
#endif
#if 3015006 < PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers. Please
#error regenerate this file with a newer version of protoc.
#endif
#include <google/protobuf/port_undef.inc>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/arena.h>
#include <google/protobuf/arenastring.h>
#include <google/protobuf/generated_message_table_driven.h>
#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/metadata_lite.h>
#include <google/protobuf/generated_message_reflection.h>
#include <google/protobuf/message.h>
#include <google/protobuf/repeated_field.h> // IWYU pragma: export
#include <google/protobuf/extension_set.h> // IWYU pragma: export
#include <google/protobuf/unknown_field_set.h>
#include <google/protobuf/field_mask.pb.h>
// @@protoc_insertion_point(includes)
#include <google/protobuf/port_def.inc>
#define PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto
PROTOBUF_NAMESPACE_OPEN
namespace internal {
class AnyMetadata;
} // namespace internal
PROTOBUF_NAMESPACE_CLOSE
// Internal implementation detail -- do not use these members.
struct TableStruct_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto {
static const ::PROTOBUF_NAMESPACE_ID::internal::ParseTableField entries[]
PROTOBUF_SECTION_VARIABLE(protodesc_cold);
static const ::PROTOBUF_NAMESPACE_ID::internal::AuxiliaryParseTableField aux[]
PROTOBUF_SECTION_VARIABLE(protodesc_cold);
static const ::PROTOBUF_NAMESPACE_ID::internal::ParseTable schema[4]
PROTOBUF_SECTION_VARIABLE(protodesc_cold);
static const ::PROTOBUF_NAMESPACE_ID::internal::FieldMetadata field_metadata[];
static const ::PROTOBUF_NAMESPACE_ID::internal::SerializationTable serialization_table[];
static const ::PROTOBUF_NAMESPACE_ID::uint32 offsets[];
};
extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto;
::PROTOBUF_NAMESPACE_ID::Metadata descriptor_table_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto_metadata_getter(int index);
namespace proto_util_converter {
namespace testing {
class FieldMaskTest;
struct FieldMaskTestDefaultTypeInternal;
extern FieldMaskTestDefaultTypeInternal _FieldMaskTest_default_instance_;
class FieldMaskTestCases;
struct FieldMaskTestCasesDefaultTypeInternal;
extern FieldMaskTestCasesDefaultTypeInternal _FieldMaskTestCases_default_instance_;
class FieldMaskWrapper;
struct FieldMaskWrapperDefaultTypeInternal;
extern FieldMaskWrapperDefaultTypeInternal _FieldMaskWrapper_default_instance_;
class NestedFieldMask;
struct NestedFieldMaskDefaultTypeInternal;
extern NestedFieldMaskDefaultTypeInternal _NestedFieldMask_default_instance_;
} // namespace testing
} // namespace proto_util_converter
PROTOBUF_NAMESPACE_OPEN
template<> ::proto_util_converter::testing::FieldMaskTest* Arena::CreateMaybeMessage<::proto_util_converter::testing::FieldMaskTest>(Arena*);
template<> ::proto_util_converter::testing::FieldMaskTestCases* Arena::CreateMaybeMessage<::proto_util_converter::testing::FieldMaskTestCases>(Arena*);
template<> ::proto_util_converter::testing::FieldMaskWrapper* Arena::CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(Arena*);
template<> ::proto_util_converter::testing::NestedFieldMask* Arena::CreateMaybeMessage<::proto_util_converter::testing::NestedFieldMask>(Arena*);
PROTOBUF_NAMESPACE_CLOSE
namespace proto_util_converter {
namespace testing {
// ===================================================================
class NestedFieldMask PROTOBUF_FINAL :
public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:proto_util_converter.testing.NestedFieldMask) */ {
public:
inline NestedFieldMask() : NestedFieldMask(nullptr) {}
virtual ~NestedFieldMask();
explicit constexpr NestedFieldMask(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
NestedFieldMask(const NestedFieldMask& from);
NestedFieldMask(NestedFieldMask&& from) noexcept
: NestedFieldMask() {
*this = ::std::move(from);
}
inline NestedFieldMask& operator=(const NestedFieldMask& from) {
CopyFrom(from);
return *this;
}
inline NestedFieldMask& operator=(NestedFieldMask&& from) noexcept {
if (GetArena() == from.GetArena()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
return GetDescriptor();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
return GetMetadataStatic().descriptor;
}
static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
return GetMetadataStatic().reflection;
}
static const NestedFieldMask& default_instance() {
return *internal_default_instance();
}
static inline const NestedFieldMask* internal_default_instance() {
return reinterpret_cast<const NestedFieldMask*>(
&_NestedFieldMask_default_instance_);
}
static constexpr int kIndexInFileMessages =
0;
friend void swap(NestedFieldMask& a, NestedFieldMask& b) {
a.Swap(&b);
}
inline void Swap(NestedFieldMask* other) {
if (other == this) return;
if (GetArena() == other->GetArena()) {
InternalSwap(other);
} else {
::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(NestedFieldMask* other) {
if (other == this) return;
GOOGLE_DCHECK(GetArena() == other->GetArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
inline NestedFieldMask* New() const final {
return CreateMaybeMessage<NestedFieldMask>(nullptr);
}
NestedFieldMask* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
return CreateMaybeMessage<NestedFieldMask>(arena);
}
void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
void CopyFrom(const NestedFieldMask& from);
void MergeFrom(const NestedFieldMask& from);
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
inline void SharedCtor();
inline void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(NestedFieldMask* other);
friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
return "proto_util_converter.testing.NestedFieldMask";
}
protected:
explicit NestedFieldMask(::PROTOBUF_NAMESPACE_ID::Arena* arena);
private:
static void ArenaDtor(void* object);
inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
public:
::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
private:
static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
return ::descriptor_table_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto_metadata_getter(kIndexInFileMessages);
}
public:
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kRepeatedMaskFieldNumber = 3,
kDataFieldNumber = 1,
kSingleMaskFieldNumber = 2,
};
// repeated .google.protobuf.FieldMask repeated_mask = 3;
int repeated_mask_size() const;
private:
int _internal_repeated_mask_size() const;
public:
void clear_repeated_mask();
PROTOBUF_NAMESPACE_ID::FieldMask* mutable_repeated_mask(int index);
::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< PROTOBUF_NAMESPACE_ID::FieldMask >*
mutable_repeated_mask();
private:
const PROTOBUF_NAMESPACE_ID::FieldMask& _internal_repeated_mask(int index) const;
PROTOBUF_NAMESPACE_ID::FieldMask* _internal_add_repeated_mask();
public:
const PROTOBUF_NAMESPACE_ID::FieldMask& repeated_mask(int index) const;
PROTOBUF_NAMESPACE_ID::FieldMask* add_repeated_mask();
const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< PROTOBUF_NAMESPACE_ID::FieldMask >&
repeated_mask() const;
// string data = 1;
void clear_data();
const std::string& data() const;
void set_data(const std::string& value);
void set_data(std::string&& value);
void set_data(const char* value);
void set_data(const char* value, size_t size);
std::string* mutable_data();
std::string* release_data();
void set_allocated_data(std::string* data);
private:
const std::string& _internal_data() const;
void _internal_set_data(const std::string& value);
std::string* _internal_mutable_data();
public:
// .google.protobuf.FieldMask single_mask = 2;
bool has_single_mask() const;
private:
bool _internal_has_single_mask() const;
public:
void clear_single_mask();
const PROTOBUF_NAMESPACE_ID::FieldMask& single_mask() const;
PROTOBUF_NAMESPACE_ID::FieldMask* release_single_mask();
PROTOBUF_NAMESPACE_ID::FieldMask* mutable_single_mask();
void set_allocated_single_mask(PROTOBUF_NAMESPACE_ID::FieldMask* single_mask);
private:
const PROTOBUF_NAMESPACE_ID::FieldMask& _internal_single_mask() const;
PROTOBUF_NAMESPACE_ID::FieldMask* _internal_mutable_single_mask();
public:
void unsafe_arena_set_allocated_single_mask(
PROTOBUF_NAMESPACE_ID::FieldMask* single_mask);
PROTOBUF_NAMESPACE_ID::FieldMask* unsafe_arena_release_single_mask();
// @@protoc_insertion_point(class_scope:proto_util_converter.testing.NestedFieldMask)
private:
class _Internal;
template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
typedef void InternalArenaConstructable_;
typedef void DestructorSkippable_;
::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< PROTOBUF_NAMESPACE_ID::FieldMask > repeated_mask_;
::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr data_;
PROTOBUF_NAMESPACE_ID::FieldMask* single_mask_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
friend struct ::TableStruct_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto;
};
// -------------------------------------------------------------------
class FieldMaskTest PROTOBUF_FINAL :
public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:proto_util_converter.testing.FieldMaskTest) */ {
public:
inline FieldMaskTest() : FieldMaskTest(nullptr) {}
virtual ~FieldMaskTest();
explicit constexpr FieldMaskTest(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
FieldMaskTest(const FieldMaskTest& from);
FieldMaskTest(FieldMaskTest&& from) noexcept
: FieldMaskTest() {
*this = ::std::move(from);
}
inline FieldMaskTest& operator=(const FieldMaskTest& from) {
CopyFrom(from);
return *this;
}
inline FieldMaskTest& operator=(FieldMaskTest&& from) noexcept {
if (GetArena() == from.GetArena()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
return GetDescriptor();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
return GetMetadataStatic().descriptor;
}
static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
return GetMetadataStatic().reflection;
}
static const FieldMaskTest& default_instance() {
return *internal_default_instance();
}
static inline const FieldMaskTest* internal_default_instance() {
return reinterpret_cast<const FieldMaskTest*>(
&_FieldMaskTest_default_instance_);
}
static constexpr int kIndexInFileMessages =
1;
friend void swap(FieldMaskTest& a, FieldMaskTest& b) {
a.Swap(&b);
}
inline void Swap(FieldMaskTest* other) {
if (other == this) return;
if (GetArena() == other->GetArena()) {
InternalSwap(other);
} else {
::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(FieldMaskTest* other) {
if (other == this) return;
GOOGLE_DCHECK(GetArena() == other->GetArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
inline FieldMaskTest* New() const final {
return CreateMaybeMessage<FieldMaskTest>(nullptr);
}
FieldMaskTest* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
return CreateMaybeMessage<FieldMaskTest>(arena);
}
void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
void CopyFrom(const FieldMaskTest& from);
void MergeFrom(const FieldMaskTest& from);
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
inline void SharedCtor();
inline void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(FieldMaskTest* other);
friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
return "proto_util_converter.testing.FieldMaskTest";
}
protected:
explicit FieldMaskTest(::PROTOBUF_NAMESPACE_ID::Arena* arena);
private:
static void ArenaDtor(void* object);
inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
public:
::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
private:
static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
return ::descriptor_table_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto_metadata_getter(kIndexInFileMessages);
}
public:
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kRepeatedMaskFieldNumber = 3,
kNestedMaskFieldNumber = 4,
kIdFieldNumber = 1,
kSingleMaskFieldNumber = 2,
};
// repeated .google.protobuf.FieldMask repeated_mask = 3;
int repeated_mask_size() const;
private:
int _internal_repeated_mask_size() const;
public:
void clear_repeated_mask();
PROTOBUF_NAMESPACE_ID::FieldMask* mutable_repeated_mask(int index);
::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< PROTOBUF_NAMESPACE_ID::FieldMask >*
mutable_repeated_mask();
private:
const PROTOBUF_NAMESPACE_ID::FieldMask& _internal_repeated_mask(int index) const;
PROTOBUF_NAMESPACE_ID::FieldMask* _internal_add_repeated_mask();
public:
const PROTOBUF_NAMESPACE_ID::FieldMask& repeated_mask(int index) const;
PROTOBUF_NAMESPACE_ID::FieldMask* add_repeated_mask();
const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< PROTOBUF_NAMESPACE_ID::FieldMask >&
repeated_mask() const;
// repeated .proto_util_converter.testing.NestedFieldMask nested_mask = 4;
int nested_mask_size() const;
private:
int _internal_nested_mask_size() const;
public:
void clear_nested_mask();
::proto_util_converter::testing::NestedFieldMask* mutable_nested_mask(int index);
::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::proto_util_converter::testing::NestedFieldMask >*
mutable_nested_mask();
private:
const ::proto_util_converter::testing::NestedFieldMask& _internal_nested_mask(int index) const;
::proto_util_converter::testing::NestedFieldMask* _internal_add_nested_mask();
public:
const ::proto_util_converter::testing::NestedFieldMask& nested_mask(int index) const;
::proto_util_converter::testing::NestedFieldMask* add_nested_mask();
const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::proto_util_converter::testing::NestedFieldMask >&
nested_mask() const;
// string id = 1;
void clear_id();
const std::string& id() const;
void set_id(const std::string& value);
void set_id(std::string&& value);
void set_id(const char* value);
void set_id(const char* value, size_t size);
std::string* mutable_id();
std::string* release_id();
void set_allocated_id(std::string* id);
private:
const std::string& _internal_id() const;
void _internal_set_id(const std::string& value);
std::string* _internal_mutable_id();
public:
// .google.protobuf.FieldMask single_mask = 2;
bool has_single_mask() const;
private:
bool _internal_has_single_mask() const;
public:
void clear_single_mask();
const PROTOBUF_NAMESPACE_ID::FieldMask& single_mask() const;
PROTOBUF_NAMESPACE_ID::FieldMask* release_single_mask();
PROTOBUF_NAMESPACE_ID::FieldMask* mutable_single_mask();
void set_allocated_single_mask(PROTOBUF_NAMESPACE_ID::FieldMask* single_mask);
private:
const PROTOBUF_NAMESPACE_ID::FieldMask& _internal_single_mask() const;
PROTOBUF_NAMESPACE_ID::FieldMask* _internal_mutable_single_mask();
public:
void unsafe_arena_set_allocated_single_mask(
PROTOBUF_NAMESPACE_ID::FieldMask* single_mask);
PROTOBUF_NAMESPACE_ID::FieldMask* unsafe_arena_release_single_mask();
// @@protoc_insertion_point(class_scope:proto_util_converter.testing.FieldMaskTest)
private:
class _Internal;
template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
typedef void InternalArenaConstructable_;
typedef void DestructorSkippable_;
::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< PROTOBUF_NAMESPACE_ID::FieldMask > repeated_mask_;
::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::proto_util_converter::testing::NestedFieldMask > nested_mask_;
::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr id_;
PROTOBUF_NAMESPACE_ID::FieldMask* single_mask_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
friend struct ::TableStruct_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto;
};
// -------------------------------------------------------------------
class FieldMaskTestCases PROTOBUF_FINAL :
public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:proto_util_converter.testing.FieldMaskTestCases) */ {
public:
inline FieldMaskTestCases() : FieldMaskTestCases(nullptr) {}
virtual ~FieldMaskTestCases();
explicit constexpr FieldMaskTestCases(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
FieldMaskTestCases(const FieldMaskTestCases& from);
FieldMaskTestCases(FieldMaskTestCases&& from) noexcept
: FieldMaskTestCases() {
*this = ::std::move(from);
}
inline FieldMaskTestCases& operator=(const FieldMaskTestCases& from) {
CopyFrom(from);
return *this;
}
inline FieldMaskTestCases& operator=(FieldMaskTestCases&& from) noexcept {
if (GetArena() == from.GetArena()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
return GetDescriptor();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
return GetMetadataStatic().descriptor;
}
static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
return GetMetadataStatic().reflection;
}
static const FieldMaskTestCases& default_instance() {
return *internal_default_instance();
}
static inline const FieldMaskTestCases* internal_default_instance() {
return reinterpret_cast<const FieldMaskTestCases*>(
&_FieldMaskTestCases_default_instance_);
}
static constexpr int kIndexInFileMessages =
2;
friend void swap(FieldMaskTestCases& a, FieldMaskTestCases& b) {
a.Swap(&b);
}
inline void Swap(FieldMaskTestCases* other) {
if (other == this) return;
if (GetArena() == other->GetArena()) {
InternalSwap(other);
} else {
::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(FieldMaskTestCases* other) {
if (other == this) return;
GOOGLE_DCHECK(GetArena() == other->GetArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
inline FieldMaskTestCases* New() const final {
return CreateMaybeMessage<FieldMaskTestCases>(nullptr);
}
FieldMaskTestCases* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
return CreateMaybeMessage<FieldMaskTestCases>(arena);
}
void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
void CopyFrom(const FieldMaskTestCases& from);
void MergeFrom(const FieldMaskTestCases& from);
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
inline void SharedCtor();
inline void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(FieldMaskTestCases* other);
friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
return "proto_util_converter.testing.FieldMaskTestCases";
}
protected:
explicit FieldMaskTestCases(::PROTOBUF_NAMESPACE_ID::Arena* arena);
private:
static void ArenaDtor(void* object);
inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
public:
::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
private:
static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
return ::descriptor_table_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto_metadata_getter(kIndexInFileMessages);
}
public:
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kSingleMaskFieldNumber = 1,
kMultipleMaskFieldNumber = 2,
kSnakeCamelFieldNumber = 3,
kEmptyFieldFieldNumber = 4,
kApiaryFormat1FieldNumber = 5,
kApiaryFormat2FieldNumber = 6,
kApiaryFormat3FieldNumber = 7,
kMapKey1FieldNumber = 8,
kMapKey2FieldNumber = 9,
kMapKey3FieldNumber = 10,
kMapKey4FieldNumber = 11,
kMapKey5FieldNumber = 12,
};
// .proto_util_converter.testing.FieldMaskWrapper single_mask = 1;
bool has_single_mask() const;
private:
bool _internal_has_single_mask() const;
public:
void clear_single_mask();
const ::proto_util_converter::testing::FieldMaskWrapper& single_mask() const;
::proto_util_converter::testing::FieldMaskWrapper* release_single_mask();
::proto_util_converter::testing::FieldMaskWrapper* mutable_single_mask();
void set_allocated_single_mask(::proto_util_converter::testing::FieldMaskWrapper* single_mask);
private:
const ::proto_util_converter::testing::FieldMaskWrapper& _internal_single_mask() const;
::proto_util_converter::testing::FieldMaskWrapper* _internal_mutable_single_mask();
public:
void unsafe_arena_set_allocated_single_mask(
::proto_util_converter::testing::FieldMaskWrapper* single_mask);
::proto_util_converter::testing::FieldMaskWrapper* unsafe_arena_release_single_mask();
// .proto_util_converter.testing.FieldMaskWrapper multiple_mask = 2;
bool has_multiple_mask() const;
private:
bool _internal_has_multiple_mask() const;
public:
void clear_multiple_mask();
const ::proto_util_converter::testing::FieldMaskWrapper& multiple_mask() const;
::proto_util_converter::testing::FieldMaskWrapper* release_multiple_mask();
::proto_util_converter::testing::FieldMaskWrapper* mutable_multiple_mask();
void set_allocated_multiple_mask(::proto_util_converter::testing::FieldMaskWrapper* multiple_mask);
private:
const ::proto_util_converter::testing::FieldMaskWrapper& _internal_multiple_mask() const;
::proto_util_converter::testing::FieldMaskWrapper* _internal_mutable_multiple_mask();
public:
void unsafe_arena_set_allocated_multiple_mask(
::proto_util_converter::testing::FieldMaskWrapper* multiple_mask);
::proto_util_converter::testing::FieldMaskWrapper* unsafe_arena_release_multiple_mask();
// .proto_util_converter.testing.FieldMaskWrapper snake_camel = 3;
bool has_snake_camel() const;
private:
bool _internal_has_snake_camel() const;
public:
void clear_snake_camel();
const ::proto_util_converter::testing::FieldMaskWrapper& snake_camel() const;
::proto_util_converter::testing::FieldMaskWrapper* release_snake_camel();
::proto_util_converter::testing::FieldMaskWrapper* mutable_snake_camel();
void set_allocated_snake_camel(::proto_util_converter::testing::FieldMaskWrapper* snake_camel);
private:
const ::proto_util_converter::testing::FieldMaskWrapper& _internal_snake_camel() const;
::proto_util_converter::testing::FieldMaskWrapper* _internal_mutable_snake_camel();
public:
void unsafe_arena_set_allocated_snake_camel(
::proto_util_converter::testing::FieldMaskWrapper* snake_camel);
::proto_util_converter::testing::FieldMaskWrapper* unsafe_arena_release_snake_camel();
// .proto_util_converter.testing.FieldMaskWrapper empty_field = 4;
bool has_empty_field() const;
private:
bool _internal_has_empty_field() const;
public:
void clear_empty_field();
const ::proto_util_converter::testing::FieldMaskWrapper& empty_field() const;
::proto_util_converter::testing::FieldMaskWrapper* release_empty_field();
::proto_util_converter::testing::FieldMaskWrapper* mutable_empty_field();
void set_allocated_empty_field(::proto_util_converter::testing::FieldMaskWrapper* empty_field);
private:
const ::proto_util_converter::testing::FieldMaskWrapper& _internal_empty_field() const;
::proto_util_converter::testing::FieldMaskWrapper* _internal_mutable_empty_field();
public:
void unsafe_arena_set_allocated_empty_field(
::proto_util_converter::testing::FieldMaskWrapper* empty_field);
::proto_util_converter::testing::FieldMaskWrapper* unsafe_arena_release_empty_field();
// .proto_util_converter.testing.FieldMaskWrapper apiary_format1 = 5;
bool has_apiary_format1() const;
private:
bool _internal_has_apiary_format1() const;
public:
void clear_apiary_format1();
const ::proto_util_converter::testing::FieldMaskWrapper& apiary_format1() const;
::proto_util_converter::testing::FieldMaskWrapper* release_apiary_format1();
::proto_util_converter::testing::FieldMaskWrapper* mutable_apiary_format1();
void set_allocated_apiary_format1(::proto_util_converter::testing::FieldMaskWrapper* apiary_format1);
private:
const ::proto_util_converter::testing::FieldMaskWrapper& _internal_apiary_format1() const;
::proto_util_converter::testing::FieldMaskWrapper* _internal_mutable_apiary_format1();
public:
void unsafe_arena_set_allocated_apiary_format1(
::proto_util_converter::testing::FieldMaskWrapper* apiary_format1);
::proto_util_converter::testing::FieldMaskWrapper* unsafe_arena_release_apiary_format1();
// .proto_util_converter.testing.FieldMaskWrapper apiary_format2 = 6;
bool has_apiary_format2() const;
private:
bool _internal_has_apiary_format2() const;
public:
void clear_apiary_format2();
const ::proto_util_converter::testing::FieldMaskWrapper& apiary_format2() const;
::proto_util_converter::testing::FieldMaskWrapper* release_apiary_format2();
::proto_util_converter::testing::FieldMaskWrapper* mutable_apiary_format2();
void set_allocated_apiary_format2(::proto_util_converter::testing::FieldMaskWrapper* apiary_format2);
private:
const ::proto_util_converter::testing::FieldMaskWrapper& _internal_apiary_format2() const;
::proto_util_converter::testing::FieldMaskWrapper* _internal_mutable_apiary_format2();
public:
void unsafe_arena_set_allocated_apiary_format2(
::proto_util_converter::testing::FieldMaskWrapper* apiary_format2);
::proto_util_converter::testing::FieldMaskWrapper* unsafe_arena_release_apiary_format2();
// .proto_util_converter.testing.FieldMaskWrapper apiary_format3 = 7;
bool has_apiary_format3() const;
private:
bool _internal_has_apiary_format3() const;
public:
void clear_apiary_format3();
const ::proto_util_converter::testing::FieldMaskWrapper& apiary_format3() const;
::proto_util_converter::testing::FieldMaskWrapper* release_apiary_format3();
::proto_util_converter::testing::FieldMaskWrapper* mutable_apiary_format3();
void set_allocated_apiary_format3(::proto_util_converter::testing::FieldMaskWrapper* apiary_format3);
private:
const ::proto_util_converter::testing::FieldMaskWrapper& _internal_apiary_format3() const;
::proto_util_converter::testing::FieldMaskWrapper* _internal_mutable_apiary_format3();
public:
void unsafe_arena_set_allocated_apiary_format3(
::proto_util_converter::testing::FieldMaskWrapper* apiary_format3);
::proto_util_converter::testing::FieldMaskWrapper* unsafe_arena_release_apiary_format3();
// .proto_util_converter.testing.FieldMaskWrapper map_key1 = 8;
bool has_map_key1() const;
private:
bool _internal_has_map_key1() const;
public:
void clear_map_key1();
const ::proto_util_converter::testing::FieldMaskWrapper& map_key1() const;
::proto_util_converter::testing::FieldMaskWrapper* release_map_key1();
::proto_util_converter::testing::FieldMaskWrapper* mutable_map_key1();
void set_allocated_map_key1(::proto_util_converter::testing::FieldMaskWrapper* map_key1);
private:
const ::proto_util_converter::testing::FieldMaskWrapper& _internal_map_key1() const;
::proto_util_converter::testing::FieldMaskWrapper* _internal_mutable_map_key1();
public:
void unsafe_arena_set_allocated_map_key1(
::proto_util_converter::testing::FieldMaskWrapper* map_key1);
::proto_util_converter::testing::FieldMaskWrapper* unsafe_arena_release_map_key1();
// .proto_util_converter.testing.FieldMaskWrapper map_key2 = 9;
bool has_map_key2() const;
private:
bool _internal_has_map_key2() const;
public:
void clear_map_key2();
const ::proto_util_converter::testing::FieldMaskWrapper& map_key2() const;
::proto_util_converter::testing::FieldMaskWrapper* release_map_key2();
::proto_util_converter::testing::FieldMaskWrapper* mutable_map_key2();
void set_allocated_map_key2(::proto_util_converter::testing::FieldMaskWrapper* map_key2);
private:
const ::proto_util_converter::testing::FieldMaskWrapper& _internal_map_key2() const;
::proto_util_converter::testing::FieldMaskWrapper* _internal_mutable_map_key2();
public:
void unsafe_arena_set_allocated_map_key2(
::proto_util_converter::testing::FieldMaskWrapper* map_key2);
::proto_util_converter::testing::FieldMaskWrapper* unsafe_arena_release_map_key2();
// .proto_util_converter.testing.FieldMaskWrapper map_key3 = 10;
bool has_map_key3() const;
private:
bool _internal_has_map_key3() const;
public:
void clear_map_key3();
const ::proto_util_converter::testing::FieldMaskWrapper& map_key3() const;
::proto_util_converter::testing::FieldMaskWrapper* release_map_key3();
::proto_util_converter::testing::FieldMaskWrapper* mutable_map_key3();
void set_allocated_map_key3(::proto_util_converter::testing::FieldMaskWrapper* map_key3);
private:
const ::proto_util_converter::testing::FieldMaskWrapper& _internal_map_key3() const;
::proto_util_converter::testing::FieldMaskWrapper* _internal_mutable_map_key3();
public:
void unsafe_arena_set_allocated_map_key3(
::proto_util_converter::testing::FieldMaskWrapper* map_key3);
::proto_util_converter::testing::FieldMaskWrapper* unsafe_arena_release_map_key3();
// .proto_util_converter.testing.FieldMaskWrapper map_key4 = 11;
bool has_map_key4() const;
private:
bool _internal_has_map_key4() const;
public:
void clear_map_key4();
const ::proto_util_converter::testing::FieldMaskWrapper& map_key4() const;
::proto_util_converter::testing::FieldMaskWrapper* release_map_key4();
::proto_util_converter::testing::FieldMaskWrapper* mutable_map_key4();
void set_allocated_map_key4(::proto_util_converter::testing::FieldMaskWrapper* map_key4);
private:
const ::proto_util_converter::testing::FieldMaskWrapper& _internal_map_key4() const;
::proto_util_converter::testing::FieldMaskWrapper* _internal_mutable_map_key4();
public:
void unsafe_arena_set_allocated_map_key4(
::proto_util_converter::testing::FieldMaskWrapper* map_key4);
::proto_util_converter::testing::FieldMaskWrapper* unsafe_arena_release_map_key4();
// .proto_util_converter.testing.FieldMaskWrapper map_key5 = 12;
bool has_map_key5() const;
private:
bool _internal_has_map_key5() const;
public:
void clear_map_key5();
const ::proto_util_converter::testing::FieldMaskWrapper& map_key5() const;
::proto_util_converter::testing::FieldMaskWrapper* release_map_key5();
::proto_util_converter::testing::FieldMaskWrapper* mutable_map_key5();
void set_allocated_map_key5(::proto_util_converter::testing::FieldMaskWrapper* map_key5);
private:
const ::proto_util_converter::testing::FieldMaskWrapper& _internal_map_key5() const;
::proto_util_converter::testing::FieldMaskWrapper* _internal_mutable_map_key5();
public:
void unsafe_arena_set_allocated_map_key5(
::proto_util_converter::testing::FieldMaskWrapper* map_key5);
::proto_util_converter::testing::FieldMaskWrapper* unsafe_arena_release_map_key5();
// @@protoc_insertion_point(class_scope:proto_util_converter.testing.FieldMaskTestCases)
private:
class _Internal;
template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
typedef void InternalArenaConstructable_;
typedef void DestructorSkippable_;
::proto_util_converter::testing::FieldMaskWrapper* single_mask_;
::proto_util_converter::testing::FieldMaskWrapper* multiple_mask_;
::proto_util_converter::testing::FieldMaskWrapper* snake_camel_;
::proto_util_converter::testing::FieldMaskWrapper* empty_field_;
::proto_util_converter::testing::FieldMaskWrapper* apiary_format1_;
::proto_util_converter::testing::FieldMaskWrapper* apiary_format2_;
::proto_util_converter::testing::FieldMaskWrapper* apiary_format3_;
::proto_util_converter::testing::FieldMaskWrapper* map_key1_;
::proto_util_converter::testing::FieldMaskWrapper* map_key2_;
::proto_util_converter::testing::FieldMaskWrapper* map_key3_;
::proto_util_converter::testing::FieldMaskWrapper* map_key4_;
::proto_util_converter::testing::FieldMaskWrapper* map_key5_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
friend struct ::TableStruct_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto;
};
// -------------------------------------------------------------------
class FieldMaskWrapper PROTOBUF_FINAL :
public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:proto_util_converter.testing.FieldMaskWrapper) */ {
public:
inline FieldMaskWrapper() : FieldMaskWrapper(nullptr) {}
virtual ~FieldMaskWrapper();
explicit constexpr FieldMaskWrapper(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
FieldMaskWrapper(const FieldMaskWrapper& from);
FieldMaskWrapper(FieldMaskWrapper&& from) noexcept
: FieldMaskWrapper() {
*this = ::std::move(from);
}
inline FieldMaskWrapper& operator=(const FieldMaskWrapper& from) {
CopyFrom(from);
return *this;
}
inline FieldMaskWrapper& operator=(FieldMaskWrapper&& from) noexcept {
if (GetArena() == from.GetArena()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
return GetDescriptor();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
return GetMetadataStatic().descriptor;
}
static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
return GetMetadataStatic().reflection;
}
static const FieldMaskWrapper& default_instance() {
return *internal_default_instance();
}
static inline const FieldMaskWrapper* internal_default_instance() {
return reinterpret_cast<const FieldMaskWrapper*>(
&_FieldMaskWrapper_default_instance_);
}
static constexpr int kIndexInFileMessages =
3;
friend void swap(FieldMaskWrapper& a, FieldMaskWrapper& b) {
a.Swap(&b);
}
inline void Swap(FieldMaskWrapper* other) {
if (other == this) return;
if (GetArena() == other->GetArena()) {
InternalSwap(other);
} else {
::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(FieldMaskWrapper* other) {
if (other == this) return;
GOOGLE_DCHECK(GetArena() == other->GetArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
inline FieldMaskWrapper* New() const final {
return CreateMaybeMessage<FieldMaskWrapper>(nullptr);
}
FieldMaskWrapper* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
return CreateMaybeMessage<FieldMaskWrapper>(arena);
}
void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
void CopyFrom(const FieldMaskWrapper& from);
void MergeFrom(const FieldMaskWrapper& from);
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
inline void SharedCtor();
inline void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(FieldMaskWrapper* other);
friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
return "proto_util_converter.testing.FieldMaskWrapper";
}
protected:
explicit FieldMaskWrapper(::PROTOBUF_NAMESPACE_ID::Arena* arena);
private:
static void ArenaDtor(void* object);
inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
public:
::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
private:
static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
return ::descriptor_table_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto_metadata_getter(kIndexInFileMessages);
}
public:
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kMaskFieldNumber = 1,
};
// .google.protobuf.FieldMask mask = 1;
bool has_mask() const;
private:
bool _internal_has_mask() const;
public:
void clear_mask();
const PROTOBUF_NAMESPACE_ID::FieldMask& mask() const;
PROTOBUF_NAMESPACE_ID::FieldMask* release_mask();
PROTOBUF_NAMESPACE_ID::FieldMask* mutable_mask();
void set_allocated_mask(PROTOBUF_NAMESPACE_ID::FieldMask* mask);
private:
const PROTOBUF_NAMESPACE_ID::FieldMask& _internal_mask() const;
PROTOBUF_NAMESPACE_ID::FieldMask* _internal_mutable_mask();
public:
void unsafe_arena_set_allocated_mask(
PROTOBUF_NAMESPACE_ID::FieldMask* mask);
PROTOBUF_NAMESPACE_ID::FieldMask* unsafe_arena_release_mask();
// @@protoc_insertion_point(class_scope:proto_util_converter.testing.FieldMaskWrapper)
private:
class _Internal;
template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
typedef void InternalArenaConstructable_;
typedef void DestructorSkippable_;
PROTOBUF_NAMESPACE_ID::FieldMask* mask_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
friend struct ::TableStruct_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto;
};
// ===================================================================
// ===================================================================
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
#endif // __GNUC__
// NestedFieldMask
// string data = 1;
inline void NestedFieldMask::clear_data() {
data_.ClearToEmpty();
}
inline const std::string& NestedFieldMask::data() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.NestedFieldMask.data)
return _internal_data();
}
inline void NestedFieldMask::set_data(const std::string& value) {
_internal_set_data(value);
// @@protoc_insertion_point(field_set:proto_util_converter.testing.NestedFieldMask.data)
}
inline std::string* NestedFieldMask::mutable_data() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.NestedFieldMask.data)
return _internal_mutable_data();
}
inline const std::string& NestedFieldMask::_internal_data() const {
return data_.Get();
}
inline void NestedFieldMask::_internal_set_data(const std::string& value) {
data_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArena());
}
inline void NestedFieldMask::set_data(std::string&& value) {
data_.Set(
::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, ::std::move(value), GetArena());
// @@protoc_insertion_point(field_set_rvalue:proto_util_converter.testing.NestedFieldMask.data)
}
inline void NestedFieldMask::set_data(const char* value) {
GOOGLE_DCHECK(value != nullptr);
data_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, ::std::string(value), GetArena());
// @@protoc_insertion_point(field_set_char:proto_util_converter.testing.NestedFieldMask.data)
}
inline void NestedFieldMask::set_data(const char* value,
size_t size) {
data_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, ::std::string(
reinterpret_cast<const char*>(value), size), GetArena());
// @@protoc_insertion_point(field_set_pointer:proto_util_converter.testing.NestedFieldMask.data)
}
inline std::string* NestedFieldMask::_internal_mutable_data() {
return data_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArena());
}
inline std::string* NestedFieldMask::release_data() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.NestedFieldMask.data)
return data_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArena());
}
inline void NestedFieldMask::set_allocated_data(std::string* data) {
if (data != nullptr) {
} else {
}
data_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), data,
GetArena());
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.NestedFieldMask.data)
}
// .google.protobuf.FieldMask single_mask = 2;
inline bool NestedFieldMask::_internal_has_single_mask() const {
return this != internal_default_instance() && single_mask_ != nullptr;
}
inline bool NestedFieldMask::has_single_mask() const {
return _internal_has_single_mask();
}
inline const PROTOBUF_NAMESPACE_ID::FieldMask& NestedFieldMask::_internal_single_mask() const {
const PROTOBUF_NAMESPACE_ID::FieldMask* p = single_mask_;
return p != nullptr ? *p : reinterpret_cast<const PROTOBUF_NAMESPACE_ID::FieldMask&>(
PROTOBUF_NAMESPACE_ID::_FieldMask_default_instance_);
}
inline const PROTOBUF_NAMESPACE_ID::FieldMask& NestedFieldMask::single_mask() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.NestedFieldMask.single_mask)
return _internal_single_mask();
}
inline void NestedFieldMask::unsafe_arena_set_allocated_single_mask(
PROTOBUF_NAMESPACE_ID::FieldMask* single_mask) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(single_mask_);
}
single_mask_ = single_mask;
if (single_mask) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.NestedFieldMask.single_mask)
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* NestedFieldMask::release_single_mask() {
PROTOBUF_NAMESPACE_ID::FieldMask* temp = single_mask_;
single_mask_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* NestedFieldMask::unsafe_arena_release_single_mask() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.NestedFieldMask.single_mask)
PROTOBUF_NAMESPACE_ID::FieldMask* temp = single_mask_;
single_mask_ = nullptr;
return temp;
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* NestedFieldMask::_internal_mutable_single_mask() {
if (single_mask_ == nullptr) {
auto* p = CreateMaybeMessage<PROTOBUF_NAMESPACE_ID::FieldMask>(GetArena());
single_mask_ = p;
}
return single_mask_;
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* NestedFieldMask::mutable_single_mask() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.NestedFieldMask.single_mask)
return _internal_mutable_single_mask();
}
inline void NestedFieldMask::set_allocated_single_mask(PROTOBUF_NAMESPACE_ID::FieldMask* single_mask) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete reinterpret_cast< ::PROTOBUF_NAMESPACE_ID::MessageLite*>(single_mask_);
}
if (single_mask) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(single_mask)->GetArena();
if (message_arena != submessage_arena) {
single_mask = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, single_mask, submessage_arena);
}
} else {
}
single_mask_ = single_mask;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.NestedFieldMask.single_mask)
}
// repeated .google.protobuf.FieldMask repeated_mask = 3;
inline int NestedFieldMask::_internal_repeated_mask_size() const {
return repeated_mask_.size();
}
inline int NestedFieldMask::repeated_mask_size() const {
return _internal_repeated_mask_size();
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* NestedFieldMask::mutable_repeated_mask(int index) {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.NestedFieldMask.repeated_mask)
return repeated_mask_.Mutable(index);
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< PROTOBUF_NAMESPACE_ID::FieldMask >*
NestedFieldMask::mutable_repeated_mask() {
// @@protoc_insertion_point(field_mutable_list:proto_util_converter.testing.NestedFieldMask.repeated_mask)
return &repeated_mask_;
}
inline const PROTOBUF_NAMESPACE_ID::FieldMask& NestedFieldMask::_internal_repeated_mask(int index) const {
return repeated_mask_.Get(index);
}
inline const PROTOBUF_NAMESPACE_ID::FieldMask& NestedFieldMask::repeated_mask(int index) const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.NestedFieldMask.repeated_mask)
return _internal_repeated_mask(index);
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* NestedFieldMask::_internal_add_repeated_mask() {
return repeated_mask_.Add();
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* NestedFieldMask::add_repeated_mask() {
// @@protoc_insertion_point(field_add:proto_util_converter.testing.NestedFieldMask.repeated_mask)
return _internal_add_repeated_mask();
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< PROTOBUF_NAMESPACE_ID::FieldMask >&
NestedFieldMask::repeated_mask() const {
// @@protoc_insertion_point(field_list:proto_util_converter.testing.NestedFieldMask.repeated_mask)
return repeated_mask_;
}
// -------------------------------------------------------------------
// FieldMaskTest
// string id = 1;
inline void FieldMaskTest::clear_id() {
id_.ClearToEmpty();
}
inline const std::string& FieldMaskTest::id() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTest.id)
return _internal_id();
}
inline void FieldMaskTest::set_id(const std::string& value) {
_internal_set_id(value);
// @@protoc_insertion_point(field_set:proto_util_converter.testing.FieldMaskTest.id)
}
inline std::string* FieldMaskTest::mutable_id() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTest.id)
return _internal_mutable_id();
}
inline const std::string& FieldMaskTest::_internal_id() const {
return id_.Get();
}
inline void FieldMaskTest::_internal_set_id(const std::string& value) {
id_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArena());
}
inline void FieldMaskTest::set_id(std::string&& value) {
id_.Set(
::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, ::std::move(value), GetArena());
// @@protoc_insertion_point(field_set_rvalue:proto_util_converter.testing.FieldMaskTest.id)
}
inline void FieldMaskTest::set_id(const char* value) {
GOOGLE_DCHECK(value != nullptr);
id_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, ::std::string(value), GetArena());
// @@protoc_insertion_point(field_set_char:proto_util_converter.testing.FieldMaskTest.id)
}
inline void FieldMaskTest::set_id(const char* value,
size_t size) {
id_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, ::std::string(
reinterpret_cast<const char*>(value), size), GetArena());
// @@protoc_insertion_point(field_set_pointer:proto_util_converter.testing.FieldMaskTest.id)
}
inline std::string* FieldMaskTest::_internal_mutable_id() {
return id_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArena());
}
inline std::string* FieldMaskTest::release_id() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTest.id)
return id_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArena());
}
inline void FieldMaskTest::set_allocated_id(std::string* id) {
if (id != nullptr) {
} else {
}
id_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), id,
GetArena());
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTest.id)
}
// .google.protobuf.FieldMask single_mask = 2;
inline bool FieldMaskTest::_internal_has_single_mask() const {
return this != internal_default_instance() && single_mask_ != nullptr;
}
inline bool FieldMaskTest::has_single_mask() const {
return _internal_has_single_mask();
}
inline const PROTOBUF_NAMESPACE_ID::FieldMask& FieldMaskTest::_internal_single_mask() const {
const PROTOBUF_NAMESPACE_ID::FieldMask* p = single_mask_;
return p != nullptr ? *p : reinterpret_cast<const PROTOBUF_NAMESPACE_ID::FieldMask&>(
PROTOBUF_NAMESPACE_ID::_FieldMask_default_instance_);
}
inline const PROTOBUF_NAMESPACE_ID::FieldMask& FieldMaskTest::single_mask() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTest.single_mask)
return _internal_single_mask();
}
inline void FieldMaskTest::unsafe_arena_set_allocated_single_mask(
PROTOBUF_NAMESPACE_ID::FieldMask* single_mask) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(single_mask_);
}
single_mask_ = single_mask;
if (single_mask) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTest.single_mask)
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* FieldMaskTest::release_single_mask() {
PROTOBUF_NAMESPACE_ID::FieldMask* temp = single_mask_;
single_mask_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* FieldMaskTest::unsafe_arena_release_single_mask() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTest.single_mask)
PROTOBUF_NAMESPACE_ID::FieldMask* temp = single_mask_;
single_mask_ = nullptr;
return temp;
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* FieldMaskTest::_internal_mutable_single_mask() {
if (single_mask_ == nullptr) {
auto* p = CreateMaybeMessage<PROTOBUF_NAMESPACE_ID::FieldMask>(GetArena());
single_mask_ = p;
}
return single_mask_;
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* FieldMaskTest::mutable_single_mask() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTest.single_mask)
return _internal_mutable_single_mask();
}
inline void FieldMaskTest::set_allocated_single_mask(PROTOBUF_NAMESPACE_ID::FieldMask* single_mask) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete reinterpret_cast< ::PROTOBUF_NAMESPACE_ID::MessageLite*>(single_mask_);
}
if (single_mask) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(single_mask)->GetArena();
if (message_arena != submessage_arena) {
single_mask = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, single_mask, submessage_arena);
}
} else {
}
single_mask_ = single_mask;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTest.single_mask)
}
// repeated .google.protobuf.FieldMask repeated_mask = 3;
inline int FieldMaskTest::_internal_repeated_mask_size() const {
return repeated_mask_.size();
}
inline int FieldMaskTest::repeated_mask_size() const {
return _internal_repeated_mask_size();
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* FieldMaskTest::mutable_repeated_mask(int index) {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTest.repeated_mask)
return repeated_mask_.Mutable(index);
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< PROTOBUF_NAMESPACE_ID::FieldMask >*
FieldMaskTest::mutable_repeated_mask() {
// @@protoc_insertion_point(field_mutable_list:proto_util_converter.testing.FieldMaskTest.repeated_mask)
return &repeated_mask_;
}
inline const PROTOBUF_NAMESPACE_ID::FieldMask& FieldMaskTest::_internal_repeated_mask(int index) const {
return repeated_mask_.Get(index);
}
inline const PROTOBUF_NAMESPACE_ID::FieldMask& FieldMaskTest::repeated_mask(int index) const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTest.repeated_mask)
return _internal_repeated_mask(index);
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* FieldMaskTest::_internal_add_repeated_mask() {
return repeated_mask_.Add();
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* FieldMaskTest::add_repeated_mask() {
// @@protoc_insertion_point(field_add:proto_util_converter.testing.FieldMaskTest.repeated_mask)
return _internal_add_repeated_mask();
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< PROTOBUF_NAMESPACE_ID::FieldMask >&
FieldMaskTest::repeated_mask() const {
// @@protoc_insertion_point(field_list:proto_util_converter.testing.FieldMaskTest.repeated_mask)
return repeated_mask_;
}
// repeated .proto_util_converter.testing.NestedFieldMask nested_mask = 4;
inline int FieldMaskTest::_internal_nested_mask_size() const {
return nested_mask_.size();
}
inline int FieldMaskTest::nested_mask_size() const {
return _internal_nested_mask_size();
}
inline void FieldMaskTest::clear_nested_mask() {
nested_mask_.Clear();
}
inline ::proto_util_converter::testing::NestedFieldMask* FieldMaskTest::mutable_nested_mask(int index) {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTest.nested_mask)
return nested_mask_.Mutable(index);
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::proto_util_converter::testing::NestedFieldMask >*
FieldMaskTest::mutable_nested_mask() {
// @@protoc_insertion_point(field_mutable_list:proto_util_converter.testing.FieldMaskTest.nested_mask)
return &nested_mask_;
}
inline const ::proto_util_converter::testing::NestedFieldMask& FieldMaskTest::_internal_nested_mask(int index) const {
return nested_mask_.Get(index);
}
inline const ::proto_util_converter::testing::NestedFieldMask& FieldMaskTest::nested_mask(int index) const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTest.nested_mask)
return _internal_nested_mask(index);
}
inline ::proto_util_converter::testing::NestedFieldMask* FieldMaskTest::_internal_add_nested_mask() {
return nested_mask_.Add();
}
inline ::proto_util_converter::testing::NestedFieldMask* FieldMaskTest::add_nested_mask() {
// @@protoc_insertion_point(field_add:proto_util_converter.testing.FieldMaskTest.nested_mask)
return _internal_add_nested_mask();
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::proto_util_converter::testing::NestedFieldMask >&
FieldMaskTest::nested_mask() const {
// @@protoc_insertion_point(field_list:proto_util_converter.testing.FieldMaskTest.nested_mask)
return nested_mask_;
}
// -------------------------------------------------------------------
// FieldMaskTestCases
// .proto_util_converter.testing.FieldMaskWrapper single_mask = 1;
inline bool FieldMaskTestCases::_internal_has_single_mask() const {
return this != internal_default_instance() && single_mask_ != nullptr;
}
inline bool FieldMaskTestCases::has_single_mask() const {
return _internal_has_single_mask();
}
inline void FieldMaskTestCases::clear_single_mask() {
if (GetArena() == nullptr && single_mask_ != nullptr) {
delete single_mask_;
}
single_mask_ = nullptr;
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::_internal_single_mask() const {
const ::proto_util_converter::testing::FieldMaskWrapper* p = single_mask_;
return p != nullptr ? *p : reinterpret_cast<const ::proto_util_converter::testing::FieldMaskWrapper&>(
::proto_util_converter::testing::_FieldMaskWrapper_default_instance_);
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::single_mask() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTestCases.single_mask)
return _internal_single_mask();
}
inline void FieldMaskTestCases::unsafe_arena_set_allocated_single_mask(
::proto_util_converter::testing::FieldMaskWrapper* single_mask) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(single_mask_);
}
single_mask_ = single_mask;
if (single_mask) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTestCases.single_mask)
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::release_single_mask() {
::proto_util_converter::testing::FieldMaskWrapper* temp = single_mask_;
single_mask_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::unsafe_arena_release_single_mask() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTestCases.single_mask)
::proto_util_converter::testing::FieldMaskWrapper* temp = single_mask_;
single_mask_ = nullptr;
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::_internal_mutable_single_mask() {
if (single_mask_ == nullptr) {
auto* p = CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(GetArena());
single_mask_ = p;
}
return single_mask_;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::mutable_single_mask() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTestCases.single_mask)
return _internal_mutable_single_mask();
}
inline void FieldMaskTestCases::set_allocated_single_mask(::proto_util_converter::testing::FieldMaskWrapper* single_mask) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete single_mask_;
}
if (single_mask) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::GetArena(single_mask);
if (message_arena != submessage_arena) {
single_mask = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, single_mask, submessage_arena);
}
} else {
}
single_mask_ = single_mask;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTestCases.single_mask)
}
// .proto_util_converter.testing.FieldMaskWrapper multiple_mask = 2;
inline bool FieldMaskTestCases::_internal_has_multiple_mask() const {
return this != internal_default_instance() && multiple_mask_ != nullptr;
}
inline bool FieldMaskTestCases::has_multiple_mask() const {
return _internal_has_multiple_mask();
}
inline void FieldMaskTestCases::clear_multiple_mask() {
if (GetArena() == nullptr && multiple_mask_ != nullptr) {
delete multiple_mask_;
}
multiple_mask_ = nullptr;
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::_internal_multiple_mask() const {
const ::proto_util_converter::testing::FieldMaskWrapper* p = multiple_mask_;
return p != nullptr ? *p : reinterpret_cast<const ::proto_util_converter::testing::FieldMaskWrapper&>(
::proto_util_converter::testing::_FieldMaskWrapper_default_instance_);
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::multiple_mask() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTestCases.multiple_mask)
return _internal_multiple_mask();
}
inline void FieldMaskTestCases::unsafe_arena_set_allocated_multiple_mask(
::proto_util_converter::testing::FieldMaskWrapper* multiple_mask) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(multiple_mask_);
}
multiple_mask_ = multiple_mask;
if (multiple_mask) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTestCases.multiple_mask)
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::release_multiple_mask() {
::proto_util_converter::testing::FieldMaskWrapper* temp = multiple_mask_;
multiple_mask_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::unsafe_arena_release_multiple_mask() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTestCases.multiple_mask)
::proto_util_converter::testing::FieldMaskWrapper* temp = multiple_mask_;
multiple_mask_ = nullptr;
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::_internal_mutable_multiple_mask() {
if (multiple_mask_ == nullptr) {
auto* p = CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(GetArena());
multiple_mask_ = p;
}
return multiple_mask_;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::mutable_multiple_mask() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTestCases.multiple_mask)
return _internal_mutable_multiple_mask();
}
inline void FieldMaskTestCases::set_allocated_multiple_mask(::proto_util_converter::testing::FieldMaskWrapper* multiple_mask) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete multiple_mask_;
}
if (multiple_mask) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::GetArena(multiple_mask);
if (message_arena != submessage_arena) {
multiple_mask = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, multiple_mask, submessage_arena);
}
} else {
}
multiple_mask_ = multiple_mask;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTestCases.multiple_mask)
}
// .proto_util_converter.testing.FieldMaskWrapper snake_camel = 3;
inline bool FieldMaskTestCases::_internal_has_snake_camel() const {
return this != internal_default_instance() && snake_camel_ != nullptr;
}
inline bool FieldMaskTestCases::has_snake_camel() const {
return _internal_has_snake_camel();
}
inline void FieldMaskTestCases::clear_snake_camel() {
if (GetArena() == nullptr && snake_camel_ != nullptr) {
delete snake_camel_;
}
snake_camel_ = nullptr;
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::_internal_snake_camel() const {
const ::proto_util_converter::testing::FieldMaskWrapper* p = snake_camel_;
return p != nullptr ? *p : reinterpret_cast<const ::proto_util_converter::testing::FieldMaskWrapper&>(
::proto_util_converter::testing::_FieldMaskWrapper_default_instance_);
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::snake_camel() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTestCases.snake_camel)
return _internal_snake_camel();
}
inline void FieldMaskTestCases::unsafe_arena_set_allocated_snake_camel(
::proto_util_converter::testing::FieldMaskWrapper* snake_camel) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(snake_camel_);
}
snake_camel_ = snake_camel;
if (snake_camel) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTestCases.snake_camel)
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::release_snake_camel() {
::proto_util_converter::testing::FieldMaskWrapper* temp = snake_camel_;
snake_camel_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::unsafe_arena_release_snake_camel() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTestCases.snake_camel)
::proto_util_converter::testing::FieldMaskWrapper* temp = snake_camel_;
snake_camel_ = nullptr;
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::_internal_mutable_snake_camel() {
if (snake_camel_ == nullptr) {
auto* p = CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(GetArena());
snake_camel_ = p;
}
return snake_camel_;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::mutable_snake_camel() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTestCases.snake_camel)
return _internal_mutable_snake_camel();
}
inline void FieldMaskTestCases::set_allocated_snake_camel(::proto_util_converter::testing::FieldMaskWrapper* snake_camel) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete snake_camel_;
}
if (snake_camel) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::GetArena(snake_camel);
if (message_arena != submessage_arena) {
snake_camel = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, snake_camel, submessage_arena);
}
} else {
}
snake_camel_ = snake_camel;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTestCases.snake_camel)
}
// .proto_util_converter.testing.FieldMaskWrapper empty_field = 4;
inline bool FieldMaskTestCases::_internal_has_empty_field() const {
return this != internal_default_instance() && empty_field_ != nullptr;
}
inline bool FieldMaskTestCases::has_empty_field() const {
return _internal_has_empty_field();
}
inline void FieldMaskTestCases::clear_empty_field() {
if (GetArena() == nullptr && empty_field_ != nullptr) {
delete empty_field_;
}
empty_field_ = nullptr;
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::_internal_empty_field() const {
const ::proto_util_converter::testing::FieldMaskWrapper* p = empty_field_;
return p != nullptr ? *p : reinterpret_cast<const ::proto_util_converter::testing::FieldMaskWrapper&>(
::proto_util_converter::testing::_FieldMaskWrapper_default_instance_);
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::empty_field() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTestCases.empty_field)
return _internal_empty_field();
}
inline void FieldMaskTestCases::unsafe_arena_set_allocated_empty_field(
::proto_util_converter::testing::FieldMaskWrapper* empty_field) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(empty_field_);
}
empty_field_ = empty_field;
if (empty_field) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTestCases.empty_field)
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::release_empty_field() {
::proto_util_converter::testing::FieldMaskWrapper* temp = empty_field_;
empty_field_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::unsafe_arena_release_empty_field() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTestCases.empty_field)
::proto_util_converter::testing::FieldMaskWrapper* temp = empty_field_;
empty_field_ = nullptr;
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::_internal_mutable_empty_field() {
if (empty_field_ == nullptr) {
auto* p = CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(GetArena());
empty_field_ = p;
}
return empty_field_;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::mutable_empty_field() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTestCases.empty_field)
return _internal_mutable_empty_field();
}
inline void FieldMaskTestCases::set_allocated_empty_field(::proto_util_converter::testing::FieldMaskWrapper* empty_field) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete empty_field_;
}
if (empty_field) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::GetArena(empty_field);
if (message_arena != submessage_arena) {
empty_field = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, empty_field, submessage_arena);
}
} else {
}
empty_field_ = empty_field;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTestCases.empty_field)
}
// .proto_util_converter.testing.FieldMaskWrapper apiary_format1 = 5;
inline bool FieldMaskTestCases::_internal_has_apiary_format1() const {
return this != internal_default_instance() && apiary_format1_ != nullptr;
}
inline bool FieldMaskTestCases::has_apiary_format1() const {
return _internal_has_apiary_format1();
}
inline void FieldMaskTestCases::clear_apiary_format1() {
if (GetArena() == nullptr && apiary_format1_ != nullptr) {
delete apiary_format1_;
}
apiary_format1_ = nullptr;
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::_internal_apiary_format1() const {
const ::proto_util_converter::testing::FieldMaskWrapper* p = apiary_format1_;
return p != nullptr ? *p : reinterpret_cast<const ::proto_util_converter::testing::FieldMaskWrapper&>(
::proto_util_converter::testing::_FieldMaskWrapper_default_instance_);
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::apiary_format1() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTestCases.apiary_format1)
return _internal_apiary_format1();
}
inline void FieldMaskTestCases::unsafe_arena_set_allocated_apiary_format1(
::proto_util_converter::testing::FieldMaskWrapper* apiary_format1) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(apiary_format1_);
}
apiary_format1_ = apiary_format1;
if (apiary_format1) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTestCases.apiary_format1)
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::release_apiary_format1() {
::proto_util_converter::testing::FieldMaskWrapper* temp = apiary_format1_;
apiary_format1_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::unsafe_arena_release_apiary_format1() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTestCases.apiary_format1)
::proto_util_converter::testing::FieldMaskWrapper* temp = apiary_format1_;
apiary_format1_ = nullptr;
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::_internal_mutable_apiary_format1() {
if (apiary_format1_ == nullptr) {
auto* p = CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(GetArena());
apiary_format1_ = p;
}
return apiary_format1_;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::mutable_apiary_format1() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTestCases.apiary_format1)
return _internal_mutable_apiary_format1();
}
inline void FieldMaskTestCases::set_allocated_apiary_format1(::proto_util_converter::testing::FieldMaskWrapper* apiary_format1) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete apiary_format1_;
}
if (apiary_format1) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::GetArena(apiary_format1);
if (message_arena != submessage_arena) {
apiary_format1 = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, apiary_format1, submessage_arena);
}
} else {
}
apiary_format1_ = apiary_format1;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTestCases.apiary_format1)
}
// .proto_util_converter.testing.FieldMaskWrapper apiary_format2 = 6;
inline bool FieldMaskTestCases::_internal_has_apiary_format2() const {
return this != internal_default_instance() && apiary_format2_ != nullptr;
}
inline bool FieldMaskTestCases::has_apiary_format2() const {
return _internal_has_apiary_format2();
}
inline void FieldMaskTestCases::clear_apiary_format2() {
if (GetArena() == nullptr && apiary_format2_ != nullptr) {
delete apiary_format2_;
}
apiary_format2_ = nullptr;
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::_internal_apiary_format2() const {
const ::proto_util_converter::testing::FieldMaskWrapper* p = apiary_format2_;
return p != nullptr ? *p : reinterpret_cast<const ::proto_util_converter::testing::FieldMaskWrapper&>(
::proto_util_converter::testing::_FieldMaskWrapper_default_instance_);
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::apiary_format2() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTestCases.apiary_format2)
return _internal_apiary_format2();
}
inline void FieldMaskTestCases::unsafe_arena_set_allocated_apiary_format2(
::proto_util_converter::testing::FieldMaskWrapper* apiary_format2) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(apiary_format2_);
}
apiary_format2_ = apiary_format2;
if (apiary_format2) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTestCases.apiary_format2)
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::release_apiary_format2() {
::proto_util_converter::testing::FieldMaskWrapper* temp = apiary_format2_;
apiary_format2_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::unsafe_arena_release_apiary_format2() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTestCases.apiary_format2)
::proto_util_converter::testing::FieldMaskWrapper* temp = apiary_format2_;
apiary_format2_ = nullptr;
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::_internal_mutable_apiary_format2() {
if (apiary_format2_ == nullptr) {
auto* p = CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(GetArena());
apiary_format2_ = p;
}
return apiary_format2_;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::mutable_apiary_format2() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTestCases.apiary_format2)
return _internal_mutable_apiary_format2();
}
inline void FieldMaskTestCases::set_allocated_apiary_format2(::proto_util_converter::testing::FieldMaskWrapper* apiary_format2) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete apiary_format2_;
}
if (apiary_format2) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::GetArena(apiary_format2);
if (message_arena != submessage_arena) {
apiary_format2 = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, apiary_format2, submessage_arena);
}
} else {
}
apiary_format2_ = apiary_format2;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTestCases.apiary_format2)
}
// .proto_util_converter.testing.FieldMaskWrapper apiary_format3 = 7;
inline bool FieldMaskTestCases::_internal_has_apiary_format3() const {
return this != internal_default_instance() && apiary_format3_ != nullptr;
}
inline bool FieldMaskTestCases::has_apiary_format3() const {
return _internal_has_apiary_format3();
}
inline void FieldMaskTestCases::clear_apiary_format3() {
if (GetArena() == nullptr && apiary_format3_ != nullptr) {
delete apiary_format3_;
}
apiary_format3_ = nullptr;
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::_internal_apiary_format3() const {
const ::proto_util_converter::testing::FieldMaskWrapper* p = apiary_format3_;
return p != nullptr ? *p : reinterpret_cast<const ::proto_util_converter::testing::FieldMaskWrapper&>(
::proto_util_converter::testing::_FieldMaskWrapper_default_instance_);
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::apiary_format3() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTestCases.apiary_format3)
return _internal_apiary_format3();
}
inline void FieldMaskTestCases::unsafe_arena_set_allocated_apiary_format3(
::proto_util_converter::testing::FieldMaskWrapper* apiary_format3) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(apiary_format3_);
}
apiary_format3_ = apiary_format3;
if (apiary_format3) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTestCases.apiary_format3)
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::release_apiary_format3() {
::proto_util_converter::testing::FieldMaskWrapper* temp = apiary_format3_;
apiary_format3_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::unsafe_arena_release_apiary_format3() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTestCases.apiary_format3)
::proto_util_converter::testing::FieldMaskWrapper* temp = apiary_format3_;
apiary_format3_ = nullptr;
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::_internal_mutable_apiary_format3() {
if (apiary_format3_ == nullptr) {
auto* p = CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(GetArena());
apiary_format3_ = p;
}
return apiary_format3_;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::mutable_apiary_format3() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTestCases.apiary_format3)
return _internal_mutable_apiary_format3();
}
inline void FieldMaskTestCases::set_allocated_apiary_format3(::proto_util_converter::testing::FieldMaskWrapper* apiary_format3) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete apiary_format3_;
}
if (apiary_format3) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::GetArena(apiary_format3);
if (message_arena != submessage_arena) {
apiary_format3 = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, apiary_format3, submessage_arena);
}
} else {
}
apiary_format3_ = apiary_format3;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTestCases.apiary_format3)
}
// .proto_util_converter.testing.FieldMaskWrapper map_key1 = 8;
inline bool FieldMaskTestCases::_internal_has_map_key1() const {
return this != internal_default_instance() && map_key1_ != nullptr;
}
inline bool FieldMaskTestCases::has_map_key1() const {
return _internal_has_map_key1();
}
inline void FieldMaskTestCases::clear_map_key1() {
if (GetArena() == nullptr && map_key1_ != nullptr) {
delete map_key1_;
}
map_key1_ = nullptr;
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::_internal_map_key1() const {
const ::proto_util_converter::testing::FieldMaskWrapper* p = map_key1_;
return p != nullptr ? *p : reinterpret_cast<const ::proto_util_converter::testing::FieldMaskWrapper&>(
::proto_util_converter::testing::_FieldMaskWrapper_default_instance_);
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::map_key1() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTestCases.map_key1)
return _internal_map_key1();
}
inline void FieldMaskTestCases::unsafe_arena_set_allocated_map_key1(
::proto_util_converter::testing::FieldMaskWrapper* map_key1) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(map_key1_);
}
map_key1_ = map_key1;
if (map_key1) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTestCases.map_key1)
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::release_map_key1() {
::proto_util_converter::testing::FieldMaskWrapper* temp = map_key1_;
map_key1_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::unsafe_arena_release_map_key1() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTestCases.map_key1)
::proto_util_converter::testing::FieldMaskWrapper* temp = map_key1_;
map_key1_ = nullptr;
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::_internal_mutable_map_key1() {
if (map_key1_ == nullptr) {
auto* p = CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(GetArena());
map_key1_ = p;
}
return map_key1_;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::mutable_map_key1() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTestCases.map_key1)
return _internal_mutable_map_key1();
}
inline void FieldMaskTestCases::set_allocated_map_key1(::proto_util_converter::testing::FieldMaskWrapper* map_key1) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete map_key1_;
}
if (map_key1) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::GetArena(map_key1);
if (message_arena != submessage_arena) {
map_key1 = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, map_key1, submessage_arena);
}
} else {
}
map_key1_ = map_key1;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTestCases.map_key1)
}
// .proto_util_converter.testing.FieldMaskWrapper map_key2 = 9;
inline bool FieldMaskTestCases::_internal_has_map_key2() const {
return this != internal_default_instance() && map_key2_ != nullptr;
}
inline bool FieldMaskTestCases::has_map_key2() const {
return _internal_has_map_key2();
}
inline void FieldMaskTestCases::clear_map_key2() {
if (GetArena() == nullptr && map_key2_ != nullptr) {
delete map_key2_;
}
map_key2_ = nullptr;
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::_internal_map_key2() const {
const ::proto_util_converter::testing::FieldMaskWrapper* p = map_key2_;
return p != nullptr ? *p : reinterpret_cast<const ::proto_util_converter::testing::FieldMaskWrapper&>(
::proto_util_converter::testing::_FieldMaskWrapper_default_instance_);
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::map_key2() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTestCases.map_key2)
return _internal_map_key2();
}
inline void FieldMaskTestCases::unsafe_arena_set_allocated_map_key2(
::proto_util_converter::testing::FieldMaskWrapper* map_key2) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(map_key2_);
}
map_key2_ = map_key2;
if (map_key2) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTestCases.map_key2)
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::release_map_key2() {
::proto_util_converter::testing::FieldMaskWrapper* temp = map_key2_;
map_key2_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::unsafe_arena_release_map_key2() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTestCases.map_key2)
::proto_util_converter::testing::FieldMaskWrapper* temp = map_key2_;
map_key2_ = nullptr;
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::_internal_mutable_map_key2() {
if (map_key2_ == nullptr) {
auto* p = CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(GetArena());
map_key2_ = p;
}
return map_key2_;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::mutable_map_key2() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTestCases.map_key2)
return _internal_mutable_map_key2();
}
inline void FieldMaskTestCases::set_allocated_map_key2(::proto_util_converter::testing::FieldMaskWrapper* map_key2) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete map_key2_;
}
if (map_key2) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::GetArena(map_key2);
if (message_arena != submessage_arena) {
map_key2 = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, map_key2, submessage_arena);
}
} else {
}
map_key2_ = map_key2;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTestCases.map_key2)
}
// .proto_util_converter.testing.FieldMaskWrapper map_key3 = 10;
inline bool FieldMaskTestCases::_internal_has_map_key3() const {
return this != internal_default_instance() && map_key3_ != nullptr;
}
inline bool FieldMaskTestCases::has_map_key3() const {
return _internal_has_map_key3();
}
inline void FieldMaskTestCases::clear_map_key3() {
if (GetArena() == nullptr && map_key3_ != nullptr) {
delete map_key3_;
}
map_key3_ = nullptr;
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::_internal_map_key3() const {
const ::proto_util_converter::testing::FieldMaskWrapper* p = map_key3_;
return p != nullptr ? *p : reinterpret_cast<const ::proto_util_converter::testing::FieldMaskWrapper&>(
::proto_util_converter::testing::_FieldMaskWrapper_default_instance_);
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::map_key3() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTestCases.map_key3)
return _internal_map_key3();
}
inline void FieldMaskTestCases::unsafe_arena_set_allocated_map_key3(
::proto_util_converter::testing::FieldMaskWrapper* map_key3) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(map_key3_);
}
map_key3_ = map_key3;
if (map_key3) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTestCases.map_key3)
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::release_map_key3() {
::proto_util_converter::testing::FieldMaskWrapper* temp = map_key3_;
map_key3_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::unsafe_arena_release_map_key3() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTestCases.map_key3)
::proto_util_converter::testing::FieldMaskWrapper* temp = map_key3_;
map_key3_ = nullptr;
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::_internal_mutable_map_key3() {
if (map_key3_ == nullptr) {
auto* p = CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(GetArena());
map_key3_ = p;
}
return map_key3_;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::mutable_map_key3() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTestCases.map_key3)
return _internal_mutable_map_key3();
}
inline void FieldMaskTestCases::set_allocated_map_key3(::proto_util_converter::testing::FieldMaskWrapper* map_key3) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete map_key3_;
}
if (map_key3) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::GetArena(map_key3);
if (message_arena != submessage_arena) {
map_key3 = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, map_key3, submessage_arena);
}
} else {
}
map_key3_ = map_key3;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTestCases.map_key3)
}
// .proto_util_converter.testing.FieldMaskWrapper map_key4 = 11;
inline bool FieldMaskTestCases::_internal_has_map_key4() const {
return this != internal_default_instance() && map_key4_ != nullptr;
}
inline bool FieldMaskTestCases::has_map_key4() const {
return _internal_has_map_key4();
}
inline void FieldMaskTestCases::clear_map_key4() {
if (GetArena() == nullptr && map_key4_ != nullptr) {
delete map_key4_;
}
map_key4_ = nullptr;
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::_internal_map_key4() const {
const ::proto_util_converter::testing::FieldMaskWrapper* p = map_key4_;
return p != nullptr ? *p : reinterpret_cast<const ::proto_util_converter::testing::FieldMaskWrapper&>(
::proto_util_converter::testing::_FieldMaskWrapper_default_instance_);
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::map_key4() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTestCases.map_key4)
return _internal_map_key4();
}
inline void FieldMaskTestCases::unsafe_arena_set_allocated_map_key4(
::proto_util_converter::testing::FieldMaskWrapper* map_key4) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(map_key4_);
}
map_key4_ = map_key4;
if (map_key4) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTestCases.map_key4)
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::release_map_key4() {
::proto_util_converter::testing::FieldMaskWrapper* temp = map_key4_;
map_key4_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::unsafe_arena_release_map_key4() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTestCases.map_key4)
::proto_util_converter::testing::FieldMaskWrapper* temp = map_key4_;
map_key4_ = nullptr;
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::_internal_mutable_map_key4() {
if (map_key4_ == nullptr) {
auto* p = CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(GetArena());
map_key4_ = p;
}
return map_key4_;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::mutable_map_key4() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTestCases.map_key4)
return _internal_mutable_map_key4();
}
inline void FieldMaskTestCases::set_allocated_map_key4(::proto_util_converter::testing::FieldMaskWrapper* map_key4) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete map_key4_;
}
if (map_key4) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::GetArena(map_key4);
if (message_arena != submessage_arena) {
map_key4 = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, map_key4, submessage_arena);
}
} else {
}
map_key4_ = map_key4;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTestCases.map_key4)
}
// .proto_util_converter.testing.FieldMaskWrapper map_key5 = 12;
inline bool FieldMaskTestCases::_internal_has_map_key5() const {
return this != internal_default_instance() && map_key5_ != nullptr;
}
inline bool FieldMaskTestCases::has_map_key5() const {
return _internal_has_map_key5();
}
inline void FieldMaskTestCases::clear_map_key5() {
if (GetArena() == nullptr && map_key5_ != nullptr) {
delete map_key5_;
}
map_key5_ = nullptr;
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::_internal_map_key5() const {
const ::proto_util_converter::testing::FieldMaskWrapper* p = map_key5_;
return p != nullptr ? *p : reinterpret_cast<const ::proto_util_converter::testing::FieldMaskWrapper&>(
::proto_util_converter::testing::_FieldMaskWrapper_default_instance_);
}
inline const ::proto_util_converter::testing::FieldMaskWrapper& FieldMaskTestCases::map_key5() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskTestCases.map_key5)
return _internal_map_key5();
}
inline void FieldMaskTestCases::unsafe_arena_set_allocated_map_key5(
::proto_util_converter::testing::FieldMaskWrapper* map_key5) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(map_key5_);
}
map_key5_ = map_key5;
if (map_key5) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskTestCases.map_key5)
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::release_map_key5() {
::proto_util_converter::testing::FieldMaskWrapper* temp = map_key5_;
map_key5_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::unsafe_arena_release_map_key5() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskTestCases.map_key5)
::proto_util_converter::testing::FieldMaskWrapper* temp = map_key5_;
map_key5_ = nullptr;
return temp;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::_internal_mutable_map_key5() {
if (map_key5_ == nullptr) {
auto* p = CreateMaybeMessage<::proto_util_converter::testing::FieldMaskWrapper>(GetArena());
map_key5_ = p;
}
return map_key5_;
}
inline ::proto_util_converter::testing::FieldMaskWrapper* FieldMaskTestCases::mutable_map_key5() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskTestCases.map_key5)
return _internal_mutable_map_key5();
}
inline void FieldMaskTestCases::set_allocated_map_key5(::proto_util_converter::testing::FieldMaskWrapper* map_key5) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete map_key5_;
}
if (map_key5) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
::PROTOBUF_NAMESPACE_ID::Arena::GetArena(map_key5);
if (message_arena != submessage_arena) {
map_key5 = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, map_key5, submessage_arena);
}
} else {
}
map_key5_ = map_key5;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskTestCases.map_key5)
}
// -------------------------------------------------------------------
// FieldMaskWrapper
// .google.protobuf.FieldMask mask = 1;
inline bool FieldMaskWrapper::_internal_has_mask() const {
return this != internal_default_instance() && mask_ != nullptr;
}
inline bool FieldMaskWrapper::has_mask() const {
return _internal_has_mask();
}
inline const PROTOBUF_NAMESPACE_ID::FieldMask& FieldMaskWrapper::_internal_mask() const {
const PROTOBUF_NAMESPACE_ID::FieldMask* p = mask_;
return p != nullptr ? *p : reinterpret_cast<const PROTOBUF_NAMESPACE_ID::FieldMask&>(
PROTOBUF_NAMESPACE_ID::_FieldMask_default_instance_);
}
inline const PROTOBUF_NAMESPACE_ID::FieldMask& FieldMaskWrapper::mask() const {
// @@protoc_insertion_point(field_get:proto_util_converter.testing.FieldMaskWrapper.mask)
return _internal_mask();
}
inline void FieldMaskWrapper::unsafe_arena_set_allocated_mask(
PROTOBUF_NAMESPACE_ID::FieldMask* mask) {
if (GetArena() == nullptr) {
delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(mask_);
}
mask_ = mask;
if (mask) {
} else {
}
// @@protoc_insertion_point(field_unsafe_arena_set_allocated:proto_util_converter.testing.FieldMaskWrapper.mask)
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* FieldMaskWrapper::release_mask() {
PROTOBUF_NAMESPACE_ID::FieldMask* temp = mask_;
mask_ = nullptr;
if (GetArena() != nullptr) {
temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
}
return temp;
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* FieldMaskWrapper::unsafe_arena_release_mask() {
// @@protoc_insertion_point(field_release:proto_util_converter.testing.FieldMaskWrapper.mask)
PROTOBUF_NAMESPACE_ID::FieldMask* temp = mask_;
mask_ = nullptr;
return temp;
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* FieldMaskWrapper::_internal_mutable_mask() {
if (mask_ == nullptr) {
auto* p = CreateMaybeMessage<PROTOBUF_NAMESPACE_ID::FieldMask>(GetArena());
mask_ = p;
}
return mask_;
}
inline PROTOBUF_NAMESPACE_ID::FieldMask* FieldMaskWrapper::mutable_mask() {
// @@protoc_insertion_point(field_mutable:proto_util_converter.testing.FieldMaskWrapper.mask)
return _internal_mutable_mask();
}
inline void FieldMaskWrapper::set_allocated_mask(PROTOBUF_NAMESPACE_ID::FieldMask* mask) {
::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
if (message_arena == nullptr) {
delete reinterpret_cast< ::PROTOBUF_NAMESPACE_ID::MessageLite*>(mask_);
}
if (mask) {
::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(mask)->GetArena();
if (message_arena != submessage_arena) {
mask = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
message_arena, mask, submessage_arena);
}
} else {
}
mask_ = mask;
// @@protoc_insertion_point(field_set_allocated:proto_util_converter.testing.FieldMaskWrapper.mask)
}
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif // __GNUC__
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// @@protoc_insertion_point(namespace_scope)
} // namespace testing
} // namespace proto_util_converter
// @@protoc_insertion_point(global_scope)
#include <google/protobuf/port_undef.inc>
#endif // GOOGLE_PROTOBUF_INCLUDED_GOOGLE_PROTOBUF_INCLUDED_google_2fprotobuf_2futil_2finternal_2ftestdata_2ffield_5fmask_2eproto
| [
"[email protected]"
] | |
e10375137214efa76f8ba96bba3be1aa651bb9e4 | 1b1c8b44185388ed52e96599fb30c581f04ec543 | /jpgd.cpp | 5c2fe7e0415c5d872ba07ea296d20daff1122d6b | [] | no_license | Garrydagr8/Maze-solver-garry | e291bea41100ae1e0f92c024e5a890f0d6d021d9 | b1436e05e19e6314b4ebafd34da697d537baed7c | refs/heads/master | 2020-03-29T19:21:13.364727 | 2018-09-25T12:44:02 | 2018-09-25T12:44:02 | 150,258,715 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 89,682 | cpp |
#include "jpgd.h"
#include <string.h>
#include <assert.h>
#define JPGD_ASSERT(x) assert(x)
#ifdef _MSC_VER
#pragma warning (disable : 4611) // warning C4611: interaction between '_setjmp' and C++ object destruction is non-portable
#endif
#define JPGD_SUPPORT_FREQ_DOMAIN_UPSAMPLING 1
#define JPGD_TRUE (1)
#define JPGD_FALSE (0)
#define JPGD_MAX(a,b) (((a)>(b)) ? (a) : (b))
#define JPGD_MIN(a,b) (((a)<(b)) ? (a) : (b))
namespace jpgd {
static inline void *jpgd_malloc(size_t nSize) { return malloc(nSize); }
static inline void jpgd_free(void *p) { free(p); }
static int g_ZAG[64] = { 0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63 };
enum JPEG_MARKER
{
M_SOF0 = 0xC0, M_SOF1 = 0xC1, M_SOF2 = 0xC2, M_SOF3 = 0xC3, M_SOF5 = 0xC5, M_SOF6 = 0xC6, M_SOF7 = 0xC7, M_JPG = 0xC8,
M_SOF9 = 0xC9, M_SOF10 = 0xCA, M_SOF11 = 0xCB, M_SOF13 = 0xCD, M_SOF14 = 0xCE, M_SOF15 = 0xCF, M_DHT = 0xC4, M_DAC = 0xCC,
M_RST0 = 0xD0, M_RST1 = 0xD1, M_RST2 = 0xD2, M_RST3 = 0xD3, M_RST4 = 0xD4, M_RST5 = 0xD5, M_RST6 = 0xD6, M_RST7 = 0xD7,
M_SOI = 0xD8, M_EOI = 0xD9, M_SOS = 0xDA, M_DQT = 0xDB, M_DNL = 0xDC, M_DRI = 0xDD, M_DHP = 0xDE, M_EXP = 0xDF,
M_APP0 = 0xE0, M_APP15 = 0xEF, M_JPG0 = 0xF0, M_JPG13 = 0xFD, M_COM = 0xFE, M_TEM = 0x01, M_ERROR = 0x100, RST0 = 0xD0
};
enum JPEG_SUBSAMPLING { JPGD_GRAYSCALE = 0, JPGD_YH1V1, JPGD_YH2V1, JPGD_YH1V2, JPGD_YH2V2 };
#define CONST_BITS 13
#define PASS1_BITS 2
#define SCALEDONE ((int32)1)
#define FIX_0_298631336 ((int32)2446) /* FIX(0.298631336) */
#define FIX_0_390180644 ((int32)3196) /* FIX(0.390180644) */
#define FIX_0_541196100 ((int32)4433) /* FIX(0.541196100) */
#define FIX_0_765366865 ((int32)6270) /* FIX(0.765366865) */
#define FIX_0_899976223 ((int32)7373) /* FIX(0.899976223) */
#define FIX_1_175875602 ((int32)9633) /* FIX(1.175875602) */
#define FIX_1_501321110 ((int32)12299) /* FIX(1.501321110) */
#define FIX_1_847759065 ((int32)15137) /* FIX(1.847759065) */
#define FIX_1_961570560 ((int32)16069) /* FIX(1.961570560) */
#define FIX_2_053119869 ((int32)16819) /* FIX(2.053119869) */
#define FIX_2_562915447 ((int32)20995) /* FIX(2.562915447) */
#define FIX_3_072711026 ((int32)25172) /* FIX(3.072711026) */
#define DESCALE(x,n) (((x) + (SCALEDONE << ((n)-1))) >> (n))
#define DESCALE_ZEROSHIFT(x,n) (((x) + (128 << (n)) + (SCALEDONE << ((n)-1))) >> (n))
#define MULTIPLY(var, cnst) ((var) * (cnst))
#define CLAMP(i) ((static_cast<uint>(i) > 255) ? (((~i) >> 31) & 0xFF) : (i))
// Compiler creates a fast path 1D IDCT for X non-zero columns
template <int NONZERO_COLS>
struct Row
{
static void idct(int* pTemp, const jpgd_block_t* pSrc)
{
// ACCESS_COL() will be optimized at compile time to either an array access, or 0.
#define ACCESS_COL(x) (((x) < NONZERO_COLS) ? (int)pSrc[x] : 0)
const int z2 = ACCESS_COL(2), z3 = ACCESS_COL(6);
const int z1 = MULTIPLY(z2 + z3, FIX_0_541196100);
const int tmp2 = z1 + MULTIPLY(z3, - FIX_1_847759065);
const int tmp3 = z1 + MULTIPLY(z2, FIX_0_765366865);
const int tmp0 = (ACCESS_COL(0) + ACCESS_COL(4)) << CONST_BITS;
const int tmp1 = (ACCESS_COL(0) - ACCESS_COL(4)) << CONST_BITS;
const int tmp10 = tmp0 + tmp3, tmp13 = tmp0 - tmp3, tmp11 = tmp1 + tmp2, tmp12 = tmp1 - tmp2;
const int atmp0 = ACCESS_COL(7), atmp1 = ACCESS_COL(5), atmp2 = ACCESS_COL(3), atmp3 = ACCESS_COL(1);
const int bz1 = atmp0 + atmp3, bz2 = atmp1 + atmp2, bz3 = atmp0 + atmp2, bz4 = atmp1 + atmp3;
const int bz5 = MULTIPLY(bz3 + bz4, FIX_1_175875602);
const int az1 = MULTIPLY(bz1, - FIX_0_899976223);
const int az2 = MULTIPLY(bz2, - FIX_2_562915447);
const int az3 = MULTIPLY(bz3, - FIX_1_961570560) + bz5;
const int az4 = MULTIPLY(bz4, - FIX_0_390180644) + bz5;
const int btmp0 = MULTIPLY(atmp0, FIX_0_298631336) + az1 + az3;
const int btmp1 = MULTIPLY(atmp1, FIX_2_053119869) + az2 + az4;
const int btmp2 = MULTIPLY(atmp2, FIX_3_072711026) + az2 + az3;
const int btmp3 = MULTIPLY(atmp3, FIX_1_501321110) + az1 + az4;
pTemp[0] = DESCALE(tmp10 + btmp3, CONST_BITS-PASS1_BITS);
pTemp[7] = DESCALE(tmp10 - btmp3, CONST_BITS-PASS1_BITS);
pTemp[1] = DESCALE(tmp11 + btmp2, CONST_BITS-PASS1_BITS);
pTemp[6] = DESCALE(tmp11 - btmp2, CONST_BITS-PASS1_BITS);
pTemp[2] = DESCALE(tmp12 + btmp1, CONST_BITS-PASS1_BITS);
pTemp[5] = DESCALE(tmp12 - btmp1, CONST_BITS-PASS1_BITS);
pTemp[3] = DESCALE(tmp13 + btmp0, CONST_BITS-PASS1_BITS);
pTemp[4] = DESCALE(tmp13 - btmp0, CONST_BITS-PASS1_BITS);
}
};
template <>
struct Row<0>
{
static void idct(int* pTemp, const jpgd_block_t* pSrc)
{
#ifdef _MSC_VER
pTemp; pSrc;
#endif
}
};
template <>
struct Row<1>
{
static void idct(int* pTemp, const jpgd_block_t* pSrc)
{
const int dcval = (pSrc[0] << PASS1_BITS);
pTemp[0] = dcval;
pTemp[1] = dcval;
pTemp[2] = dcval;
pTemp[3] = dcval;
pTemp[4] = dcval;
pTemp[5] = dcval;
pTemp[6] = dcval;
pTemp[7] = dcval;
}
};
// Compiler creates a fast path 1D IDCT for X non-zero rows
template <int NONZERO_ROWS>
struct Col
{
static void idct(uint8* pDst_ptr, const int* pTemp)
{
// ACCESS_ROW() will be optimized at compile time to either an array access, or 0.
#define ACCESS_ROW(x) (((x) < NONZERO_ROWS) ? pTemp[x * 8] : 0)
const int z2 = ACCESS_ROW(2);
const int z3 = ACCESS_ROW(6);
const int z1 = MULTIPLY(z2 + z3, FIX_0_541196100);
const int tmp2 = z1 + MULTIPLY(z3, - FIX_1_847759065);
const int tmp3 = z1 + MULTIPLY(z2, FIX_0_765366865);
const int tmp0 = (ACCESS_ROW(0) + ACCESS_ROW(4)) << CONST_BITS;
const int tmp1 = (ACCESS_ROW(0) - ACCESS_ROW(4)) << CONST_BITS;
const int tmp10 = tmp0 + tmp3, tmp13 = tmp0 - tmp3, tmp11 = tmp1 + tmp2, tmp12 = tmp1 - tmp2;
const int atmp0 = ACCESS_ROW(7), atmp1 = ACCESS_ROW(5), atmp2 = ACCESS_ROW(3), atmp3 = ACCESS_ROW(1);
const int bz1 = atmp0 + atmp3, bz2 = atmp1 + atmp2, bz3 = atmp0 + atmp2, bz4 = atmp1 + atmp3;
const int bz5 = MULTIPLY(bz3 + bz4, FIX_1_175875602);
const int az1 = MULTIPLY(bz1, - FIX_0_899976223);
const int az2 = MULTIPLY(bz2, - FIX_2_562915447);
const int az3 = MULTIPLY(bz3, - FIX_1_961570560) + bz5;
const int az4 = MULTIPLY(bz4, - FIX_0_390180644) + bz5;
const int btmp0 = MULTIPLY(atmp0, FIX_0_298631336) + az1 + az3;
const int btmp1 = MULTIPLY(atmp1, FIX_2_053119869) + az2 + az4;
const int btmp2 = MULTIPLY(atmp2, FIX_3_072711026) + az2 + az3;
const int btmp3 = MULTIPLY(atmp3, FIX_1_501321110) + az1 + az4;
int i = DESCALE_ZEROSHIFT(tmp10 + btmp3, CONST_BITS+PASS1_BITS+3);
pDst_ptr[8*0] = (uint8)CLAMP(i);
i = DESCALE_ZEROSHIFT(tmp10 - btmp3, CONST_BITS+PASS1_BITS+3);
pDst_ptr[8*7] = (uint8)CLAMP(i);
i = DESCALE_ZEROSHIFT(tmp11 + btmp2, CONST_BITS+PASS1_BITS+3);
pDst_ptr[8*1] = (uint8)CLAMP(i);
i = DESCALE_ZEROSHIFT(tmp11 - btmp2, CONST_BITS+PASS1_BITS+3);
pDst_ptr[8*6] = (uint8)CLAMP(i);
i = DESCALE_ZEROSHIFT(tmp12 + btmp1, CONST_BITS+PASS1_BITS+3);
pDst_ptr[8*2] = (uint8)CLAMP(i);
i = DESCALE_ZEROSHIFT(tmp12 - btmp1, CONST_BITS+PASS1_BITS+3);
pDst_ptr[8*5] = (uint8)CLAMP(i);
i = DESCALE_ZEROSHIFT(tmp13 + btmp0, CONST_BITS+PASS1_BITS+3);
pDst_ptr[8*3] = (uint8)CLAMP(i);
i = DESCALE_ZEROSHIFT(tmp13 - btmp0, CONST_BITS+PASS1_BITS+3);
pDst_ptr[8*4] = (uint8)CLAMP(i);
}
};
template <>
struct Col<1>
{
static void idct(uint8* pDst_ptr, const int* pTemp)
{
int dcval = DESCALE_ZEROSHIFT(pTemp[0], PASS1_BITS+3);
const uint8 dcval_clamped = (uint8)CLAMP(dcval);
pDst_ptr[0*8] = dcval_clamped;
pDst_ptr[1*8] = dcval_clamped;
pDst_ptr[2*8] = dcval_clamped;
pDst_ptr[3*8] = dcval_clamped;
pDst_ptr[4*8] = dcval_clamped;
pDst_ptr[5*8] = dcval_clamped;
pDst_ptr[6*8] = dcval_clamped;
pDst_ptr[7*8] = dcval_clamped;
}
};
static const uint8 s_idct_row_table[] =
{
1,0,0,0,0,0,0,0, 2,0,0,0,0,0,0,0, 2,1,0,0,0,0,0,0, 2,1,1,0,0,0,0,0, 2,2,1,0,0,0,0,0, 3,2,1,0,0,0,0,0, 4,2,1,0,0,0,0,0, 4,3,1,0,0,0,0,0,
4,3,2,0,0,0,0,0, 4,3,2,1,0,0,0,0, 4,3,2,1,1,0,0,0, 4,3,2,2,1,0,0,0, 4,3,3,2,1,0,0,0, 4,4,3,2,1,0,0,0, 5,4,3,2,1,0,0,0, 6,4,3,2,1,0,0,0,
6,5,3,2,1,0,0,0, 6,5,4,2,1,0,0,0, 6,5,4,3,1,0,0,0, 6,5,4,3,2,0,0,0, 6,5,4,3,2,1,0,0, 6,5,4,3,2,1,1,0, 6,5,4,3,2,2,1,0, 6,5,4,3,3,2,1,0,
6,5,4,4,3,2,1,0, 6,5,5,4,3,2,1,0, 6,6,5,4,3,2,1,0, 7,6,5,4,3,2,1,0, 8,6,5,4,3,2,1,0, 8,7,5,4,3,2,1,0, 8,7,6,4,3,2,1,0, 8,7,6,5,3,2,1,0,
8,7,6,5,4,2,1,0, 8,7,6,5,4,3,1,0, 8,7,6,5,4,3,2,0, 8,7,6,5,4,3,2,1, 8,7,6,5,4,3,2,2, 8,7,6,5,4,3,3,2, 8,7,6,5,4,4,3,2, 8,7,6,5,5,4,3,2,
8,7,6,6,5,4,3,2, 8,7,7,6,5,4,3,2, 8,8,7,6,5,4,3,2, 8,8,8,6,5,4,3,2, 8,8,8,7,5,4,3,2, 8,8,8,7,6,4,3,2, 8,8,8,7,6,5,3,2, 8,8,8,7,6,5,4,2,
8,8,8,7,6,5,4,3, 8,8,8,7,6,5,4,4, 8,8,8,7,6,5,5,4, 8,8,8,7,6,6,5,4, 8,8,8,7,7,6,5,4, 8,8,8,8,7,6,5,4, 8,8,8,8,8,6,5,4, 8,8,8,8,8,7,5,4,
8,8,8,8,8,7,6,4, 8,8,8,8,8,7,6,5, 8,8,8,8,8,7,6,6, 8,8,8,8,8,7,7,6, 8,8,8,8,8,8,7,6, 8,8,8,8,8,8,8,6, 8,8,8,8,8,8,8,7, 8,8,8,8,8,8,8,8,
};
static const uint8 s_idct_col_table[] = { 1, 1, 2, 3, 3, 3, 3, 3, 3, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 };
void idct(const jpgd_block_t* pSrc_ptr, uint8* pDst_ptr, int block_max_zag)
{
JPGD_ASSERT(block_max_zag >= 1);
JPGD_ASSERT(block_max_zag <= 64);
if (block_max_zag <= 1)
{
int k = ((pSrc_ptr[0] + 4) >> 3) + 128;
k = CLAMP(k);
k = k | (k<<8);
k = k | (k<<16);
for (int i = 8; i > 0; i--)
{
*(int*)&pDst_ptr[0] = k;
*(int*)&pDst_ptr[4] = k;
pDst_ptr += 8;
}
return;
}
int temp[64];
const jpgd_block_t* pSrc = pSrc_ptr;
int* pTemp = temp;
const uint8* pRow_tab = &s_idct_row_table[(block_max_zag - 1) * 8];
int i;
for (i = 8; i > 0; i--, pRow_tab++)
{
switch (*pRow_tab)
{
case 0: Row<0>::idct(pTemp, pSrc); break;
case 1: Row<1>::idct(pTemp, pSrc); break;
case 2: Row<2>::idct(pTemp, pSrc); break;
case 3: Row<3>::idct(pTemp, pSrc); break;
case 4: Row<4>::idct(pTemp, pSrc); break;
case 5: Row<5>::idct(pTemp, pSrc); break;
case 6: Row<6>::idct(pTemp, pSrc); break;
case 7: Row<7>::idct(pTemp, pSrc); break;
case 8: Row<8>::idct(pTemp, pSrc); break;
}
pSrc += 8;
pTemp += 8;
}
pTemp = temp;
const int nonzero_rows = s_idct_col_table[block_max_zag - 1];
for (i = 8; i > 0; i--)
{
switch (nonzero_rows)
{
case 1: Col<1>::idct(pDst_ptr, pTemp); break;
case 2: Col<2>::idct(pDst_ptr, pTemp); break;
case 3: Col<3>::idct(pDst_ptr, pTemp); break;
case 4: Col<4>::idct(pDst_ptr, pTemp); break;
case 5: Col<5>::idct(pDst_ptr, pTemp); break;
case 6: Col<6>::idct(pDst_ptr, pTemp); break;
case 7: Col<7>::idct(pDst_ptr, pTemp); break;
case 8: Col<8>::idct(pDst_ptr, pTemp); break;
}
pTemp++;
pDst_ptr++;
}
}
void idct_4x4(const jpgd_block_t* pSrc_ptr, uint8* pDst_ptr)
{
int temp[64];
int* pTemp = temp;
const jpgd_block_t* pSrc = pSrc_ptr;
for (int i = 4; i > 0; i--)
{
Row<4>::idct(pTemp, pSrc);
pSrc += 8;
pTemp += 8;
}
pTemp = temp;
for (int i = 8; i > 0; i--)
{
Col<4>::idct(pDst_ptr, pTemp);
pTemp++;
pDst_ptr++;
}
}
// Retrieve one character from the input stream.
inline uint jpeg_decoder::get_char()
{
// Any bytes remaining in buffer?
if (!m_in_buf_left)
{
// Try to get more bytes.
prep_in_buffer();
// Still nothing to get?
if (!m_in_buf_left)
{
// Pad the end of the stream with 0xFF 0xD9 (EOI marker)
int t = m_tem_flag;
m_tem_flag ^= 1;
if (t)
return 0xD9;
else
return 0xFF;
}
}
uint c = *m_pIn_buf_ofs++;
m_in_buf_left--;
return c;
}
// Same as previous method, except can indicate if the character is a pad character or not.
inline uint jpeg_decoder::get_char(bool *pPadding_flag)
{
if (!m_in_buf_left)
{
prep_in_buffer();
if (!m_in_buf_left)
{
*pPadding_flag = true;
int t = m_tem_flag;
m_tem_flag ^= 1;
if (t)
return 0xD9;
else
return 0xFF;
}
}
*pPadding_flag = false;
uint c = *m_pIn_buf_ofs++;
m_in_buf_left--;
return c;
}
// Inserts a previously retrieved character back into the input buffer.
inline void jpeg_decoder::stuff_char(uint8 q)
{
*(--m_pIn_buf_ofs) = q;
m_in_buf_left++;
}
// Retrieves one character from the input stream, but does not read past markers. Will continue to return 0xFF when a marker is encountered.
inline uint8 jpeg_decoder::get_octet()
{
bool padding_flag;
int c = get_char(&padding_flag);
if (c == 0xFF)
{
if (padding_flag)
return 0xFF;
c = get_char(&padding_flag);
if (padding_flag)
{
stuff_char(0xFF);
return 0xFF;
}
if (c == 0x00)
return 0xFF;
else
{
stuff_char(static_cast<uint8>(c));
stuff_char(0xFF);
return 0xFF;
}
}
return static_cast<uint8>(c);
}
// Retrieves a variable number of bits from the input stream. Does not recognize markers.
inline uint jpeg_decoder::get_bits(int num_bits)
{
if (!num_bits)
return 0;
uint i = m_bit_buf >> (32 - num_bits);
if ((m_bits_left -= num_bits) <= 0)
{
m_bit_buf <<= (num_bits += m_bits_left);
uint c1 = get_char();
uint c2 = get_char();
m_bit_buf = (m_bit_buf & 0xFFFF0000) | (c1 << 8) | c2;
m_bit_buf <<= -m_bits_left;
m_bits_left += 16;
JPGD_ASSERT(m_bits_left >= 0);
}
else
m_bit_buf <<= num_bits;
return i;
}
// Retrieves a variable number of bits from the input stream. Markers will not be read into the input bit buffer. Instead, an infinite number of all 1's will be returned when a marker is encountered.
inline uint jpeg_decoder::get_bits_no_markers(int num_bits)
{
if (!num_bits)
return 0;
uint i = m_bit_buf >> (32 - num_bits);
if ((m_bits_left -= num_bits) <= 0)
{
m_bit_buf <<= (num_bits += m_bits_left);
if ((m_in_buf_left < 2) || (m_pIn_buf_ofs[0] == 0xFF) || (m_pIn_buf_ofs[1] == 0xFF))
{
uint c1 = get_octet();
uint c2 = get_octet();
m_bit_buf |= (c1 << 8) | c2;
}
else
{
m_bit_buf |= ((uint)m_pIn_buf_ofs[0] << 8) | m_pIn_buf_ofs[1];
m_in_buf_left -= 2;
m_pIn_buf_ofs += 2;
}
m_bit_buf <<= -m_bits_left;
m_bits_left += 16;
JPGD_ASSERT(m_bits_left >= 0);
}
else
m_bit_buf <<= num_bits;
return i;
}
// Decodes a Huffman encoded symbol.
inline int jpeg_decoder::huff_decode(huff_tables *pH)
{
int symbol;
// Check first 8-bits: do we have a complete symbol?
if ((symbol = pH->look_up[m_bit_buf >> 24]) < 0)
{
// Decode more bits, use a tree traversal to find symbol.
int ofs = 23;
do
{
symbol = pH->tree[-(int)(symbol + ((m_bit_buf >> ofs) & 1))];
ofs--;
} while (symbol < 0);
get_bits_no_markers(8 + (23 - ofs));
}
else
get_bits_no_markers(pH->code_size[symbol]);
return symbol;
}
// Decodes a Huffman encoded symbol.
inline int jpeg_decoder::huff_decode(huff_tables *pH, int& extra_bits)
{
int symbol;
// Check first 8-bits: do we have a complete symbol?
if ((symbol = pH->look_up2[m_bit_buf >> 24]) < 0)
{
// Use a tree traversal to find symbol.
int ofs = 23;
do
{
symbol = pH->tree[-(int)(symbol + ((m_bit_buf >> ofs) & 1))];
ofs--;
} while (symbol < 0);
get_bits_no_markers(8 + (23 - ofs));
extra_bits = get_bits_no_markers(symbol & 0xF);
}
else
{
JPGD_ASSERT(((symbol >> 8) & 31) == pH->code_size[symbol & 255] + ((symbol & 0x8000) ? (symbol & 15) : 0));
if (symbol & 0x8000)
{
get_bits_no_markers((symbol >> 8) & 31);
extra_bits = symbol >> 16;
}
else
{
int code_size = (symbol >> 8) & 31;
int num_extra_bits = symbol & 0xF;
int bits = code_size + num_extra_bits;
if (bits <= (m_bits_left + 16))
extra_bits = get_bits_no_markers(bits) & ((1 << num_extra_bits) - 1);
else
{
get_bits_no_markers(code_size);
extra_bits = get_bits_no_markers(num_extra_bits);
}
}
symbol &= 0xFF;
}
return symbol;
}
// Tables and macro used to fully decode the DPCM differences.
static const int s_extend_test[16] = { 0, 0x0001, 0x0002, 0x0004, 0x0008, 0x0010, 0x0020, 0x0040, 0x0080, 0x0100, 0x0200, 0x0400, 0x0800, 0x1000, 0x2000, 0x4000 };
static const int s_extend_offset[16] = { 0, ((-1)<<1) + 1, ((-1)<<2) + 1, ((-1)<<3) + 1, ((-1)<<4) + 1, ((-1)<<5) + 1, ((-1)<<6) + 1, ((-1)<<7) + 1, ((-1)<<8) + 1, ((-1)<<9) + 1, ((-1)<<10) + 1, ((-1)<<11) + 1, ((-1)<<12) + 1, ((-1)<<13) + 1, ((-1)<<14) + 1, ((-1)<<15) + 1 };
static const int s_extend_mask[] = { 0, (1<<0), (1<<1), (1<<2), (1<<3), (1<<4), (1<<5), (1<<6), (1<<7), (1<<8), (1<<9), (1<<10), (1<<11), (1<<12), (1<<13), (1<<14), (1<<15), (1<<16) };
// The logical AND's in this macro are to shut up static code analysis (aren't really necessary - couldn't find another way to do this)
#define JPGD_HUFF_EXTEND(x, s) (((x) < s_extend_test[s & 15]) ? ((x) + s_extend_offset[s & 15]) : (x))
// Clamps a value between 0-255.
inline uint8 jpeg_decoder::clamp(int i)
{
if (static_cast<uint>(i) > 255)
i = (((~i) >> 31) & 0xFF);
return static_cast<uint8>(i);
}
namespace DCT_Upsample
{
struct Matrix44
{
typedef int Element_Type;
enum { NUM_ROWS = 4, NUM_COLS = 4 };
Element_Type v[NUM_ROWS][NUM_COLS];
inline int rows() const { return NUM_ROWS; }
inline int cols() const { return NUM_COLS; }
inline const Element_Type & at(int r, int c) const { return v[r][c]; }
inline Element_Type & at(int r, int c) { return v[r][c]; }
inline Matrix44() { }
inline Matrix44& operator += (const Matrix44& a)
{
for (int r = 0; r < NUM_ROWS; r++)
{
at(r, 0) += a.at(r, 0);
at(r, 1) += a.at(r, 1);
at(r, 2) += a.at(r, 2);
at(r, 3) += a.at(r, 3);
}
return *this;
}
inline Matrix44& operator -= (const Matrix44& a)
{
for (int r = 0; r < NUM_ROWS; r++)
{
at(r, 0) -= a.at(r, 0);
at(r, 1) -= a.at(r, 1);
at(r, 2) -= a.at(r, 2);
at(r, 3) -= a.at(r, 3);
}
return *this;
}
friend inline Matrix44 operator + (const Matrix44& a, const Matrix44& b)
{
Matrix44 ret;
for (int r = 0; r < NUM_ROWS; r++)
{
ret.at(r, 0) = a.at(r, 0) + b.at(r, 0);
ret.at(r, 1) = a.at(r, 1) + b.at(r, 1);
ret.at(r, 2) = a.at(r, 2) + b.at(r, 2);
ret.at(r, 3) = a.at(r, 3) + b.at(r, 3);
}
return ret;
}
friend inline Matrix44 operator - (const Matrix44& a, const Matrix44& b)
{
Matrix44 ret;
for (int r = 0; r < NUM_ROWS; r++)
{
ret.at(r, 0) = a.at(r, 0) - b.at(r, 0);
ret.at(r, 1) = a.at(r, 1) - b.at(r, 1);
ret.at(r, 2) = a.at(r, 2) - b.at(r, 2);
ret.at(r, 3) = a.at(r, 3) - b.at(r, 3);
}
return ret;
}
static inline void add_and_store(jpgd_block_t* pDst, const Matrix44& a, const Matrix44& b)
{
for (int r = 0; r < 4; r++)
{
pDst[0*8 + r] = static_cast<jpgd_block_t>(a.at(r, 0) + b.at(r, 0));
pDst[1*8 + r] = static_cast<jpgd_block_t>(a.at(r, 1) + b.at(r, 1));
pDst[2*8 + r] = static_cast<jpgd_block_t>(a.at(r, 2) + b.at(r, 2));
pDst[3*8 + r] = static_cast<jpgd_block_t>(a.at(r, 3) + b.at(r, 3));
}
}
static inline void sub_and_store(jpgd_block_t* pDst, const Matrix44& a, const Matrix44& b)
{
for (int r = 0; r < 4; r++)
{
pDst[0*8 + r] = static_cast<jpgd_block_t>(a.at(r, 0) - b.at(r, 0));
pDst[1*8 + r] = static_cast<jpgd_block_t>(a.at(r, 1) - b.at(r, 1));
pDst[2*8 + r] = static_cast<jpgd_block_t>(a.at(r, 2) - b.at(r, 2));
pDst[3*8 + r] = static_cast<jpgd_block_t>(a.at(r, 3) - b.at(r, 3));
}
}
};
const int FRACT_BITS = 10;
const int SCALE = 1 << FRACT_BITS;
typedef int Temp_Type;
#define D(i) (((i) + (SCALE >> 1)) >> FRACT_BITS)
#define F(i) ((int)((i) * SCALE + .5f))
// Any decent C++ compiler will optimize this at compile time to a 0, or an array access.
#define AT(c, r) ((((c)>=NUM_COLS)||((r)>=NUM_ROWS)) ? 0 : pSrc[(c)+(r)*8])
// NUM_ROWS/NUM_COLS = # of non-zero rows/cols in input matrix
template<int NUM_ROWS, int NUM_COLS>
struct P_Q
{
static void calc(Matrix44& P, Matrix44& Q, const jpgd_block_t* pSrc)
{
// 4x8 = 4x8 times 8x8, matrix 0 is constant
const Temp_Type X000 = AT(0, 0);
const Temp_Type X001 = AT(0, 1);
const Temp_Type X002 = AT(0, 2);
const Temp_Type X003 = AT(0, 3);
const Temp_Type X004 = AT(0, 4);
const Temp_Type X005 = AT(0, 5);
const Temp_Type X006 = AT(0, 6);
const Temp_Type X007 = AT(0, 7);
const Temp_Type X010 = D(F(0.415735f) * AT(1, 0) + F(0.791065f) * AT(3, 0) + F(-0.352443f) * AT(5, 0) + F(0.277785f) * AT(7, 0));
const Temp_Type X011 = D(F(0.415735f) * AT(1, 1) + F(0.791065f) * AT(3, 1) + F(-0.352443f) * AT(5, 1) + F(0.277785f) * AT(7, 1));
const Temp_Type X012 = D(F(0.415735f) * AT(1, 2) + F(0.791065f) * AT(3, 2) + F(-0.352443f) * AT(5, 2) + F(0.277785f) * AT(7, 2));
const Temp_Type X013 = D(F(0.415735f) * AT(1, 3) + F(0.791065f) * AT(3, 3) + F(-0.352443f) * AT(5, 3) + F(0.277785f) * AT(7, 3));
const Temp_Type X014 = D(F(0.415735f) * AT(1, 4) + F(0.791065f) * AT(3, 4) + F(-0.352443f) * AT(5, 4) + F(0.277785f) * AT(7, 4));
const Temp_Type X015 = D(F(0.415735f) * AT(1, 5) + F(0.791065f) * AT(3, 5) + F(-0.352443f) * AT(5, 5) + F(0.277785f) * AT(7, 5));
const Temp_Type X016 = D(F(0.415735f) * AT(1, 6) + F(0.791065f) * AT(3, 6) + F(-0.352443f) * AT(5, 6) + F(0.277785f) * AT(7, 6));
const Temp_Type X017 = D(F(0.415735f) * AT(1, 7) + F(0.791065f) * AT(3, 7) + F(-0.352443f) * AT(5, 7) + F(0.277785f) * AT(7, 7));
const Temp_Type X020 = AT(4, 0);
const Temp_Type X021 = AT(4, 1);
const Temp_Type X022 = AT(4, 2);
const Temp_Type X023 = AT(4, 3);
const Temp_Type X024 = AT(4, 4);
const Temp_Type X025 = AT(4, 5);
const Temp_Type X026 = AT(4, 6);
const Temp_Type X027 = AT(4, 7);
const Temp_Type X030 = D(F(0.022887f) * AT(1, 0) + F(-0.097545f) * AT(3, 0) + F(0.490393f) * AT(5, 0) + F(0.865723f) * AT(7, 0));
const Temp_Type X031 = D(F(0.022887f) * AT(1, 1) + F(-0.097545f) * AT(3, 1) + F(0.490393f) * AT(5, 1) + F(0.865723f) * AT(7, 1));
const Temp_Type X032 = D(F(0.022887f) * AT(1, 2) + F(-0.097545f) * AT(3, 2) + F(0.490393f) * AT(5, 2) + F(0.865723f) * AT(7, 2));
const Temp_Type X033 = D(F(0.022887f) * AT(1, 3) + F(-0.097545f) * AT(3, 3) + F(0.490393f) * AT(5, 3) + F(0.865723f) * AT(7, 3));
const Temp_Type X034 = D(F(0.022887f) * AT(1, 4) + F(-0.097545f) * AT(3, 4) + F(0.490393f) * AT(5, 4) + F(0.865723f) * AT(7, 4));
const Temp_Type X035 = D(F(0.022887f) * AT(1, 5) + F(-0.097545f) * AT(3, 5) + F(0.490393f) * AT(5, 5) + F(0.865723f) * AT(7, 5));
const Temp_Type X036 = D(F(0.022887f) * AT(1, 6) + F(-0.097545f) * AT(3, 6) + F(0.490393f) * AT(5, 6) + F(0.865723f) * AT(7, 6));
const Temp_Type X037 = D(F(0.022887f) * AT(1, 7) + F(-0.097545f) * AT(3, 7) + F(0.490393f) * AT(5, 7) + F(0.865723f) * AT(7, 7));
// 4x4 = 4x8 times 8x4, matrix 1 is constant
P.at(0, 0) = X000;
P.at(0, 1) = D(X001 * F(0.415735f) + X003 * F(0.791065f) + X005 * F(-0.352443f) + X007 * F(0.277785f));
P.at(0, 2) = X004;
P.at(0, 3) = D(X001 * F(0.022887f) + X003 * F(-0.097545f) + X005 * F(0.490393f) + X007 * F(0.865723f));
P.at(1, 0) = X010;
P.at(1, 1) = D(X011 * F(0.415735f) + X013 * F(0.791065f) + X015 * F(-0.352443f) + X017 * F(0.277785f));
P.at(1, 2) = X014;
P.at(1, 3) = D(X011 * F(0.022887f) + X013 * F(-0.097545f) + X015 * F(0.490393f) + X017 * F(0.865723f));
P.at(2, 0) = X020;
P.at(2, 1) = D(X021 * F(0.415735f) + X023 * F(0.791065f) + X025 * F(-0.352443f) + X027 * F(0.277785f));
P.at(2, 2) = X024;
P.at(2, 3) = D(X021 * F(0.022887f) + X023 * F(-0.097545f) + X025 * F(0.490393f) + X027 * F(0.865723f));
P.at(3, 0) = X030;
P.at(3, 1) = D(X031 * F(0.415735f) + X033 * F(0.791065f) + X035 * F(-0.352443f) + X037 * F(0.277785f));
P.at(3, 2) = X034;
P.at(3, 3) = D(X031 * F(0.022887f) + X033 * F(-0.097545f) + X035 * F(0.490393f) + X037 * F(0.865723f));
// 40 muls 24 adds
// 4x4 = 4x8 times 8x4, matrix 1 is constant
Q.at(0, 0) = D(X001 * F(0.906127f) + X003 * F(-0.318190f) + X005 * F(0.212608f) + X007 * F(-0.180240f));
Q.at(0, 1) = X002;
Q.at(0, 2) = D(X001 * F(-0.074658f) + X003 * F(0.513280f) + X005 * F(0.768178f) + X007 * F(-0.375330f));
Q.at(0, 3) = X006;
Q.at(1, 0) = D(X011 * F(0.906127f) + X013 * F(-0.318190f) + X015 * F(0.212608f) + X017 * F(-0.180240f));
Q.at(1, 1) = X012;
Q.at(1, 2) = D(X011 * F(-0.074658f) + X013 * F(0.513280f) + X015 * F(0.768178f) + X017 * F(-0.375330f));
Q.at(1, 3) = X016;
Q.at(2, 0) = D(X021 * F(0.906127f) + X023 * F(-0.318190f) + X025 * F(0.212608f) + X027 * F(-0.180240f));
Q.at(2, 1) = X022;
Q.at(2, 2) = D(X021 * F(-0.074658f) + X023 * F(0.513280f) + X025 * F(0.768178f) + X027 * F(-0.375330f));
Q.at(2, 3) = X026;
Q.at(3, 0) = D(X031 * F(0.906127f) + X033 * F(-0.318190f) + X035 * F(0.212608f) + X037 * F(-0.180240f));
Q.at(3, 1) = X032;
Q.at(3, 2) = D(X031 * F(-0.074658f) + X033 * F(0.513280f) + X035 * F(0.768178f) + X037 * F(-0.375330f));
Q.at(3, 3) = X036;
// 40 muls 24 adds
}
};
template<int NUM_ROWS, int NUM_COLS>
struct R_S
{
static void calc(Matrix44& R, Matrix44& S, const jpgd_block_t* pSrc)
{
// 4x8 = 4x8 times 8x8, matrix 0 is constant
const Temp_Type X100 = D(F(0.906127f) * AT(1, 0) + F(-0.318190f) * AT(3, 0) + F(0.212608f) * AT(5, 0) + F(-0.180240f) * AT(7, 0));
const Temp_Type X101 = D(F(0.906127f) * AT(1, 1) + F(-0.318190f) * AT(3, 1) + F(0.212608f) * AT(5, 1) + F(-0.180240f) * AT(7, 1));
const Temp_Type X102 = D(F(0.906127f) * AT(1, 2) + F(-0.318190f) * AT(3, 2) + F(0.212608f) * AT(5, 2) + F(-0.180240f) * AT(7, 2));
const Temp_Type X103 = D(F(0.906127f) * AT(1, 3) + F(-0.318190f) * AT(3, 3) + F(0.212608f) * AT(5, 3) + F(-0.180240f) * AT(7, 3));
const Temp_Type X104 = D(F(0.906127f) * AT(1, 4) + F(-0.318190f) * AT(3, 4) + F(0.212608f) * AT(5, 4) + F(-0.180240f) * AT(7, 4));
const Temp_Type X105 = D(F(0.906127f) * AT(1, 5) + F(-0.318190f) * AT(3, 5) + F(0.212608f) * AT(5, 5) + F(-0.180240f) * AT(7, 5));
const Temp_Type X106 = D(F(0.906127f) * AT(1, 6) + F(-0.318190f) * AT(3, 6) + F(0.212608f) * AT(5, 6) + F(-0.180240f) * AT(7, 6));
const Temp_Type X107 = D(F(0.906127f) * AT(1, 7) + F(-0.318190f) * AT(3, 7) + F(0.212608f) * AT(5, 7) + F(-0.180240f) * AT(7, 7));
const Temp_Type X110 = AT(2, 0);
const Temp_Type X111 = AT(2, 1);
const Temp_Type X112 = AT(2, 2);
const Temp_Type X113 = AT(2, 3);
const Temp_Type X114 = AT(2, 4);
const Temp_Type X115 = AT(2, 5);
const Temp_Type X116 = AT(2, 6);
const Temp_Type X117 = AT(2, 7);
const Temp_Type X120 = D(F(-0.074658f) * AT(1, 0) + F(0.513280f) * AT(3, 0) + F(0.768178f) * AT(5, 0) + F(-0.375330f) * AT(7, 0));
const Temp_Type X121 = D(F(-0.074658f) * AT(1, 1) + F(0.513280f) * AT(3, 1) + F(0.768178f) * AT(5, 1) + F(-0.375330f) * AT(7, 1));
const Temp_Type X122 = D(F(-0.074658f) * AT(1, 2) + F(0.513280f) * AT(3, 2) + F(0.768178f) * AT(5, 2) + F(-0.375330f) * AT(7, 2));
const Temp_Type X123 = D(F(-0.074658f) * AT(1, 3) + F(0.513280f) * AT(3, 3) + F(0.768178f) * AT(5, 3) + F(-0.375330f) * AT(7, 3));
const Temp_Type X124 = D(F(-0.074658f) * AT(1, 4) + F(0.513280f) * AT(3, 4) + F(0.768178f) * AT(5, 4) + F(-0.375330f) * AT(7, 4));
const Temp_Type X125 = D(F(-0.074658f) * AT(1, 5) + F(0.513280f) * AT(3, 5) + F(0.768178f) * AT(5, 5) + F(-0.375330f) * AT(7, 5));
const Temp_Type X126 = D(F(-0.074658f) * AT(1, 6) + F(0.513280f) * AT(3, 6) + F(0.768178f) * AT(5, 6) + F(-0.375330f) * AT(7, 6));
const Temp_Type X127 = D(F(-0.074658f) * AT(1, 7) + F(0.513280f) * AT(3, 7) + F(0.768178f) * AT(5, 7) + F(-0.375330f) * AT(7, 7));
const Temp_Type X130 = AT(6, 0);
const Temp_Type X131 = AT(6, 1);
const Temp_Type X132 = AT(6, 2);
const Temp_Type X133 = AT(6, 3);
const Temp_Type X134 = AT(6, 4);
const Temp_Type X135 = AT(6, 5);
const Temp_Type X136 = AT(6, 6);
const Temp_Type X137 = AT(6, 7);
// 80 muls 48 adds
// 4x4 = 4x8 times 8x4, matrix 1 is constant
R.at(0, 0) = X100;
R.at(0, 1) = D(X101 * F(0.415735f) + X103 * F(0.791065f) + X105 * F(-0.352443f) + X107 * F(0.277785f));
R.at(0, 2) = X104;
R.at(0, 3) = D(X101 * F(0.022887f) + X103 * F(-0.097545f) + X105 * F(0.490393f) + X107 * F(0.865723f));
R.at(1, 0) = X110;
R.at(1, 1) = D(X111 * F(0.415735f) + X113 * F(0.791065f) + X115 * F(-0.352443f) + X117 * F(0.277785f));
R.at(1, 2) = X114;
R.at(1, 3) = D(X111 * F(0.022887f) + X113 * F(-0.097545f) + X115 * F(0.490393f) + X117 * F(0.865723f));
R.at(2, 0) = X120;
R.at(2, 1) = D(X121 * F(0.415735f) + X123 * F(0.791065f) + X125 * F(-0.352443f) + X127 * F(0.277785f));
R.at(2, 2) = X124;
R.at(2, 3) = D(X121 * F(0.022887f) + X123 * F(-0.097545f) + X125 * F(0.490393f) + X127 * F(0.865723f));
R.at(3, 0) = X130;
R.at(3, 1) = D(X131 * F(0.415735f) + X133 * F(0.791065f) + X135 * F(-0.352443f) + X137 * F(0.277785f));
R.at(3, 2) = X134;
R.at(3, 3) = D(X131 * F(0.022887f) + X133 * F(-0.097545f) + X135 * F(0.490393f) + X137 * F(0.865723f));
// 40 muls 24 adds
// 4x4 = 4x8 times 8x4, matrix 1 is constant
S.at(0, 0) = D(X101 * F(0.906127f) + X103 * F(-0.318190f) + X105 * F(0.212608f) + X107 * F(-0.180240f));
S.at(0, 1) = X102;
S.at(0, 2) = D(X101 * F(-0.074658f) + X103 * F(0.513280f) + X105 * F(0.768178f) + X107 * F(-0.375330f));
S.at(0, 3) = X106;
S.at(1, 0) = D(X111 * F(0.906127f) + X113 * F(-0.318190f) + X115 * F(0.212608f) + X117 * F(-0.180240f));
S.at(1, 1) = X112;
S.at(1, 2) = D(X111 * F(-0.074658f) + X113 * F(0.513280f) + X115 * F(0.768178f) + X117 * F(-0.375330f));
S.at(1, 3) = X116;
S.at(2, 0) = D(X121 * F(0.906127f) + X123 * F(-0.318190f) + X125 * F(0.212608f) + X127 * F(-0.180240f));
S.at(2, 1) = X122;
S.at(2, 2) = D(X121 * F(-0.074658f) + X123 * F(0.513280f) + X125 * F(0.768178f) + X127 * F(-0.375330f));
S.at(2, 3) = X126;
S.at(3, 0) = D(X131 * F(0.906127f) + X133 * F(-0.318190f) + X135 * F(0.212608f) + X137 * F(-0.180240f));
S.at(3, 1) = X132;
S.at(3, 2) = D(X131 * F(-0.074658f) + X133 * F(0.513280f) + X135 * F(0.768178f) + X137 * F(-0.375330f));
S.at(3, 3) = X136;
// 40 muls 24 adds
}
};
} // end namespace DCT_Upsample
// Unconditionally frees all allocated m_blocks.
void jpeg_decoder::free_all_blocks()
{
m_pStream = NULL;
for (mem_block *b = m_pMem_blocks; b; )
{
mem_block *n = b->m_pNext;
jpgd_free(b);
b = n;
}
m_pMem_blocks = NULL;
}
// This method handles all errors. It will never return.
// It could easily be changed to use C++ exceptions.
JPGD_NORETURN void jpeg_decoder::stop_decoding(jpgd_status status)
{
m_error_code = status;
free_all_blocks();
longjmp(m_jmp_state, status);
}
void *jpeg_decoder::alloc(size_t nSize, bool zero)
{
nSize = (JPGD_MAX(nSize, 1) + 3) & ~3;
char *rv = NULL;
for (mem_block *b = m_pMem_blocks; b; b = b->m_pNext)
{
if ((b->m_used_count + nSize) <= b->m_size)
{
rv = b->m_data + b->m_used_count;
b->m_used_count += nSize;
break;
}
}
if (!rv)
{
int capacity = JPGD_MAX(32768 - 256, (nSize + 2047) & ~2047);
mem_block *b = (mem_block*)jpgd_malloc(sizeof(mem_block) + capacity);
if (!b) { stop_decoding(JPGD_NOTENOUGHMEM); }
b->m_pNext = m_pMem_blocks; m_pMem_blocks = b;
b->m_used_count = nSize;
b->m_size = capacity;
rv = b->m_data;
}
if (zero) memset(rv, 0, nSize);
return rv;
}
void jpeg_decoder::word_clear(void *p, uint16 c, uint n)
{
uint8 *pD = (uint8*)p;
const uint8 l = c & 0xFF, h = (c >> 8) & 0xFF;
while (n)
{
pD[0] = l; pD[1] = h; pD += 2;
n--;
}
}
// Refill the input buffer.
// This method will sit in a loop until (A) the buffer is full or (B)
// the stream's read() method reports and end of file condition.
void jpeg_decoder::prep_in_buffer()
{
m_in_buf_left = 0;
m_pIn_buf_ofs = m_in_buf;
if (m_eof_flag)
return;
do
{
int bytes_read = m_pStream->read(m_in_buf + m_in_buf_left, JPGD_IN_BUF_SIZE - m_in_buf_left, &m_eof_flag);
if (bytes_read == -1)
stop_decoding(JPGD_STREAM_READ);
m_in_buf_left += bytes_read;
} while ((m_in_buf_left < JPGD_IN_BUF_SIZE) && (!m_eof_flag));
m_total_bytes_read += m_in_buf_left;
// Pad the end of the block with M_EOI (prevents the decompressor from going off the rails if the stream is invalid).
// (This dates way back to when this decompressor was written in C/asm, and the all-asm Huffman decoder did some fancy things to increase perf.)
word_clear(m_pIn_buf_ofs + m_in_buf_left, 0xD9FF, 64);
}
// Read a Huffman code table.
void jpeg_decoder::read_dht_marker()
{
int i, index, count;
uint8 huff_num[17];
uint8 huff_val[256];
uint num_left = get_bits(16);
if (num_left < 2)
stop_decoding(JPGD_BAD_DHT_MARKER);
num_left -= 2;
while (num_left)
{
index = get_bits(8);
huff_num[0] = 0;
count = 0;
for (i = 1; i <= 16; i++)
{
huff_num[i] = static_cast<uint8>(get_bits(8));
count += huff_num[i];
}
if (count > 255)
stop_decoding(JPGD_BAD_DHT_COUNTS);
for (i = 0; i < count; i++)
huff_val[i] = static_cast<uint8>(get_bits(8));
i = 1 + 16 + count;
if (num_left < (uint)i)
stop_decoding(JPGD_BAD_DHT_MARKER);
num_left -= i;
if ((index & 0x10) > 0x10)
stop_decoding(JPGD_BAD_DHT_INDEX);
index = (index & 0x0F) + ((index & 0x10) >> 4) * (JPGD_MAX_HUFF_TABLES >> 1);
if (index >= JPGD_MAX_HUFF_TABLES)
stop_decoding(JPGD_BAD_DHT_INDEX);
if (!m_huff_num[index])
m_huff_num[index] = (uint8 *)alloc(17);
if (!m_huff_val[index])
m_huff_val[index] = (uint8 *)alloc(256);
m_huff_ac[index] = (index & 0x10) != 0;
memcpy(m_huff_num[index], huff_num, 17);
memcpy(m_huff_val[index], huff_val, 256);
}
}
// Read a quantization table.
void jpeg_decoder::read_dqt_marker()
{
int n, i, prec;
uint num_left;
uint temp;
num_left = get_bits(16);
if (num_left < 2)
stop_decoding(JPGD_BAD_DQT_MARKER);
num_left -= 2;
while (num_left)
{
n = get_bits(8);
prec = n >> 4;
n &= 0x0F;
if (n >= JPGD_MAX_QUANT_TABLES)
stop_decoding(JPGD_BAD_DQT_TABLE);
if (!m_quant[n])
m_quant[n] = (jpgd_quant_t *)alloc(64 * sizeof(jpgd_quant_t));
// read quantization entries, in zag order
for (i = 0; i < 64; i++)
{
temp = get_bits(8);
if (prec)
temp = (temp << 8) + get_bits(8);
m_quant[n][i] = static_cast<jpgd_quant_t>(temp);
}
i = 64 + 1;
if (prec)
i += 64;
if (num_left < (uint)i)
stop_decoding(JPGD_BAD_DQT_LENGTH);
num_left -= i;
}
}
// Read the start of frame (SOF) marker.
void jpeg_decoder::read_sof_marker()
{
int i;
uint num_left;
num_left = get_bits(16);
if (get_bits(8) != 8) /* precision: sorry, only 8-bit precision is supported right now */
stop_decoding(JPGD_BAD_PRECISION);
m_image_y_size = get_bits(16);
if ((m_image_y_size < 1) || (m_image_y_size > JPGD_MAX_HEIGHT))
stop_decoding(JPGD_BAD_HEIGHT);
m_image_x_size = get_bits(16);
if ((m_image_x_size < 1) || (m_image_x_size > JPGD_MAX_WIDTH))
stop_decoding(JPGD_BAD_WIDTH);
m_comps_in_frame = get_bits(8);
if (m_comps_in_frame > JPGD_MAX_COMPONENTS)
stop_decoding(JPGD_TOO_MANY_COMPONENTS);
if (num_left != (uint)(m_comps_in_frame * 3 + 8))
stop_decoding(JPGD_BAD_SOF_LENGTH);
for (i = 0; i < m_comps_in_frame; i++)
{
m_comp_ident[i] = get_bits(8);
m_comp_h_samp[i] = get_bits(4);
m_comp_v_samp[i] = get_bits(4);
m_comp_quant[i] = get_bits(8);
}
}
// Used to skip unrecognized markers.
void jpeg_decoder::skip_variable_marker()
{
uint num_left;
num_left = get_bits(16);
if (num_left < 2)
stop_decoding(JPGD_BAD_VARIABLE_MARKER);
num_left -= 2;
while (num_left)
{
get_bits(8);
num_left--;
}
}
// Read a define restart interval (DRI) marker.
void jpeg_decoder::read_dri_marker()
{
if (get_bits(16) != 4)
stop_decoding(JPGD_BAD_DRI_LENGTH);
m_restart_interval = get_bits(16);
}
// Read a start of scan (SOS) marker.
void jpeg_decoder::read_sos_marker()
{
uint num_left;
int i, ci, n, c, cc;
num_left = get_bits(16);
n = get_bits(8);
m_comps_in_scan = n;
num_left -= 3;
if ( (num_left != (uint)(n * 2 + 3)) || (n < 1) || (n > JPGD_MAX_COMPS_IN_SCAN) )
stop_decoding(JPGD_BAD_SOS_LENGTH);
for (i = 0; i < n; i++)
{
cc = get_bits(8);
c = get_bits(8);
num_left -= 2;
for (ci = 0; ci < m_comps_in_frame; ci++)
if (cc == m_comp_ident[ci])
break;
if (ci >= m_comps_in_frame)
stop_decoding(JPGD_BAD_SOS_COMP_ID);
m_comp_list[i] = ci;
m_comp_dc_tab[ci] = (c >> 4) & 15;
m_comp_ac_tab[ci] = (c & 15) + (JPGD_MAX_HUFF_TABLES >> 1);
}
m_spectral_start = get_bits(8);
m_spectral_end = get_bits(8);
m_successive_high = get_bits(4);
m_successive_low = get_bits(4);
if (!m_progressive_flag)
{
m_spectral_start = 0;
m_spectral_end = 63;
}
num_left -= 3;
while (num_left) /* read past whatever is num_left */
{
get_bits(8);
num_left--;
}
}
// Finds the next marker.
int jpeg_decoder::next_marker()
{
uint c, bytes;
bytes = 0;
do
{
do
{
bytes++;
c = get_bits(8);
} while (c != 0xFF);
do
{
c = get_bits(8);
} while (c == 0xFF);
} while (c == 0);
// If bytes > 0 here, there where extra bytes before the marker (not good).
return c;
}
// Process markers. Returns when an SOFx, SOI, EOI, or SOS marker is
// encountered.
int jpeg_decoder::process_markers()
{
int c;
for ( ; ; )
{
c = next_marker();
switch (c)
{
case M_SOF0:
case M_SOF1:
case M_SOF2:
case M_SOF3:
case M_SOF5:
case M_SOF6:
case M_SOF7:
// case M_JPG:
case M_SOF9:
case M_SOF10:
case M_SOF11:
case M_SOF13:
case M_SOF14:
case M_SOF15:
case M_SOI:
case M_EOI:
case M_SOS:
{
return c;
}
case M_DHT:
{
read_dht_marker();
break;
}
// No arithmitic support - dumb patents!
case M_DAC:
{
stop_decoding(JPGD_NO_ARITHMITIC_SUPPORT);
break;
}
case M_DQT:
{
read_dqt_marker();
break;
}
case M_DRI:
{
read_dri_marker();
break;
}
//case M_APP0: /* no need to read the JFIF marker */
case M_JPG:
case M_RST0: /* no parameters */
case M_RST1:
case M_RST2:
case M_RST3:
case M_RST4:
case M_RST5:
case M_RST6:
case M_RST7:
case M_TEM:
{
stop_decoding(JPGD_UNEXPECTED_MARKER);
break;
}
default: /* must be DNL, DHP, EXP, APPn, JPGn, COM, or RESn or APP0 */
{
skip_variable_marker();
break;
}
}
}
}
// Finds the start of image (SOI) marker.
// This code is rather defensive: it only checks the first 512 bytes to avoid
// false positives.
void jpeg_decoder::locate_soi_marker()
{
uint lastchar, thischar;
uint bytesleft;
lastchar = get_bits(8);
thischar = get_bits(8);
/* ok if it's a normal JPEG file without a special header */
if ((lastchar == 0xFF) && (thischar == M_SOI))
return;
bytesleft = 4096; //512;
for ( ; ; )
{
if (--bytesleft == 0)
stop_decoding(JPGD_NOT_JPEG);
lastchar = thischar;
thischar = get_bits(8);
if (lastchar == 0xFF)
{
if (thischar == M_SOI)
break;
else if (thischar == M_EOI) // get_bits will keep returning M_EOI if we read past the end
stop_decoding(JPGD_NOT_JPEG);
}
}
// Check the next character after marker: if it's not 0xFF, it can't be the start of the next marker, so the file is bad.
thischar = (m_bit_buf >> 24) & 0xFF;
if (thischar != 0xFF)
stop_decoding(JPGD_NOT_JPEG);
}
// Find a start of frame (SOF) marker.
void jpeg_decoder::locate_sof_marker()
{
locate_soi_marker();
int c = process_markers();
switch (c)
{
case M_SOF2:
m_progressive_flag = JPGD_TRUE;
case M_SOF0: /* baseline DCT */
case M_SOF1: /* extended sequential DCT */
{
read_sof_marker();
break;
}
case M_SOF9: /* Arithmitic coding */
{
stop_decoding(JPGD_NO_ARITHMITIC_SUPPORT);
break;
}
default:
{
stop_decoding(JPGD_UNSUPPORTED_MARKER);
break;
}
}
}
// Find a start of scan (SOS) marker.
int jpeg_decoder::locate_sos_marker()
{
int c;
c = process_markers();
if (c == M_EOI)
return JPGD_FALSE;
else if (c != M_SOS)
stop_decoding(JPGD_UNEXPECTED_MARKER);
read_sos_marker();
return JPGD_TRUE;
}
// Reset everything to default/uninitialized state.
void jpeg_decoder::init(jpeg_decoder_stream *pStream)
{
m_pMem_blocks = NULL;
m_error_code = JPGD_SUCCESS;
m_ready_flag = false;
m_image_x_size = m_image_y_size = 0;
m_pStream = pStream;
m_progressive_flag = JPGD_FALSE;
memset(m_huff_ac, 0, sizeof(m_huff_ac));
memset(m_huff_num, 0, sizeof(m_huff_num));
memset(m_huff_val, 0, sizeof(m_huff_val));
memset(m_quant, 0, sizeof(m_quant));
m_scan_type = 0;
m_comps_in_frame = 0;
memset(m_comp_h_samp, 0, sizeof(m_comp_h_samp));
memset(m_comp_v_samp, 0, sizeof(m_comp_v_samp));
memset(m_comp_quant, 0, sizeof(m_comp_quant));
memset(m_comp_ident, 0, sizeof(m_comp_ident));
memset(m_comp_h_blocks, 0, sizeof(m_comp_h_blocks));
memset(m_comp_v_blocks, 0, sizeof(m_comp_v_blocks));
m_comps_in_scan = 0;
memset(m_comp_list, 0, sizeof(m_comp_list));
memset(m_comp_dc_tab, 0, sizeof(m_comp_dc_tab));
memset(m_comp_ac_tab, 0, sizeof(m_comp_ac_tab));
m_spectral_start = 0;
m_spectral_end = 0;
m_successive_low = 0;
m_successive_high = 0;
m_max_mcu_x_size = 0;
m_max_mcu_y_size = 0;
m_blocks_per_mcu = 0;
m_max_blocks_per_row = 0;
m_mcus_per_row = 0;
m_mcus_per_col = 0;
m_expanded_blocks_per_component = 0;
m_expanded_blocks_per_mcu = 0;
m_expanded_blocks_per_row = 0;
m_freq_domain_chroma_upsample = false;
memset(m_mcu_org, 0, sizeof(m_mcu_org));
m_total_lines_left = 0;
m_mcu_lines_left = 0;
m_real_dest_bytes_per_scan_line = 0;
m_dest_bytes_per_scan_line = 0;
m_dest_bytes_per_pixel = 0;
memset(m_pHuff_tabs, 0, sizeof(m_pHuff_tabs));
memset(m_dc_coeffs, 0, sizeof(m_dc_coeffs));
memset(m_ac_coeffs, 0, sizeof(m_ac_coeffs));
memset(m_block_y_mcu, 0, sizeof(m_block_y_mcu));
m_eob_run = 0;
memset(m_block_y_mcu, 0, sizeof(m_block_y_mcu));
m_pIn_buf_ofs = m_in_buf;
m_in_buf_left = 0;
m_eof_flag = false;
m_tem_flag = 0;
memset(m_in_buf_pad_start, 0, sizeof(m_in_buf_pad_start));
memset(m_in_buf, 0, sizeof(m_in_buf));
memset(m_in_buf_pad_end, 0, sizeof(m_in_buf_pad_end));
m_restart_interval = 0;
m_restarts_left = 0;
m_next_restart_num = 0;
m_max_mcus_per_row = 0;
m_max_blocks_per_mcu = 0;
m_max_mcus_per_col = 0;
memset(m_last_dc_val, 0, sizeof(m_last_dc_val));
m_pMCU_coefficients = NULL;
m_pSample_buf = NULL;
m_total_bytes_read = 0;
m_pScan_line_0 = NULL;
m_pScan_line_1 = NULL;
// Ready the input buffer.
prep_in_buffer();
// Prime the bit buffer.
m_bits_left = 16;
m_bit_buf = 0;
get_bits(16);
get_bits(16);
for (int i = 0; i < JPGD_MAX_BLOCKS_PER_MCU; i++)
m_mcu_block_max_zag[i] = 64;
}
#define SCALEBITS 16
#define ONE_HALF ((int) 1 << (SCALEBITS-1))
#define FIX(x) ((int) ((x) * (1L<<SCALEBITS) + 0.5f))
// Create a few tables that allow us to quickly convert YCbCr to RGB.
void jpeg_decoder::create_look_ups()
{
for (int i = 0; i <= 255; i++)
{
int k = i - 128;
m_crr[i] = ( FIX(1.40200f) * k + ONE_HALF) >> SCALEBITS;
m_cbb[i] = ( FIX(1.77200f) * k + ONE_HALF) >> SCALEBITS;
m_crg[i] = (-FIX(0.71414f)) * k;
m_cbg[i] = (-FIX(0.34414f)) * k + ONE_HALF;
}
}
// This method throws back into the stream any bytes that where read
// into the bit buffer during initial marker scanning.
void jpeg_decoder::fix_in_buffer()
{
// In case any 0xFF's where pulled into the buffer during marker scanning.
JPGD_ASSERT((m_bits_left & 7) == 0);
if (m_bits_left == 16)
stuff_char( (uint8)(m_bit_buf & 0xFF));
if (m_bits_left >= 8)
stuff_char( (uint8)((m_bit_buf >> 8) & 0xFF));
stuff_char((uint8)((m_bit_buf >> 16) & 0xFF));
stuff_char((uint8)((m_bit_buf >> 24) & 0xFF));
m_bits_left = 16;
get_bits_no_markers(16);
get_bits_no_markers(16);
}
void jpeg_decoder::transform_mcu(int mcu_row)
{
jpgd_block_t* pSrc_ptr = m_pMCU_coefficients;
uint8* pDst_ptr = m_pSample_buf + mcu_row * m_blocks_per_mcu * 64;
for (int mcu_block = 0; mcu_block < m_blocks_per_mcu; mcu_block++)
{
idct(pSrc_ptr, pDst_ptr, m_mcu_block_max_zag[mcu_block]);
pSrc_ptr += 64;
pDst_ptr += 64;
}
}
static const uint8 s_max_rc[64] =
{
17, 18, 34, 50, 50, 51, 52, 52, 52, 68, 84, 84, 84, 84, 85, 86, 86, 86, 86, 86,
102, 118, 118, 118, 118, 118, 118, 119, 120, 120, 120, 120, 120, 120, 120, 136,
136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136
};
void jpeg_decoder::transform_mcu_expand(int mcu_row)
{
jpgd_block_t* pSrc_ptr = m_pMCU_coefficients;
uint8* pDst_ptr = m_pSample_buf + mcu_row * m_expanded_blocks_per_mcu * 64;
// Y IDCT
int mcu_block;
for (mcu_block = 0; mcu_block < m_expanded_blocks_per_component; mcu_block++)
{
idct(pSrc_ptr, pDst_ptr, m_mcu_block_max_zag[mcu_block]);
pSrc_ptr += 64;
pDst_ptr += 64;
}
// Chroma IDCT, with upsampling
jpgd_block_t temp_block[64];
for (int i = 0; i < 2; i++)
{
DCT_Upsample::Matrix44 P, Q, R, S;
JPGD_ASSERT(m_mcu_block_max_zag[mcu_block] >= 1);
JPGD_ASSERT(m_mcu_block_max_zag[mcu_block] <= 64);
int max_zag = m_mcu_block_max_zag[mcu_block++] - 1;
if (max_zag <= 0) max_zag = 0; // should never happen, only here to shut up static analysis
switch (s_max_rc[max_zag])
{
case 1*16+1:
DCT_Upsample::P_Q<1, 1>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<1, 1>::calc(R, S, pSrc_ptr);
break;
case 1*16+2:
DCT_Upsample::P_Q<1, 2>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<1, 2>::calc(R, S, pSrc_ptr);
break;
case 2*16+2:
DCT_Upsample::P_Q<2, 2>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<2, 2>::calc(R, S, pSrc_ptr);
break;
case 3*16+2:
DCT_Upsample::P_Q<3, 2>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<3, 2>::calc(R, S, pSrc_ptr);
break;
case 3*16+3:
DCT_Upsample::P_Q<3, 3>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<3, 3>::calc(R, S, pSrc_ptr);
break;
case 3*16+4:
DCT_Upsample::P_Q<3, 4>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<3, 4>::calc(R, S, pSrc_ptr);
break;
case 4*16+4:
DCT_Upsample::P_Q<4, 4>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<4, 4>::calc(R, S, pSrc_ptr);
break;
case 5*16+4:
DCT_Upsample::P_Q<5, 4>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<5, 4>::calc(R, S, pSrc_ptr);
break;
case 5*16+5:
DCT_Upsample::P_Q<5, 5>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<5, 5>::calc(R, S, pSrc_ptr);
break;
case 5*16+6:
DCT_Upsample::P_Q<5, 6>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<5, 6>::calc(R, S, pSrc_ptr);
break;
case 6*16+6:
DCT_Upsample::P_Q<6, 6>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<6, 6>::calc(R, S, pSrc_ptr);
break;
case 7*16+6:
DCT_Upsample::P_Q<7, 6>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<7, 6>::calc(R, S, pSrc_ptr);
break;
case 7*16+7:
DCT_Upsample::P_Q<7, 7>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<7, 7>::calc(R, S, pSrc_ptr);
break;
case 7*16+8:
DCT_Upsample::P_Q<7, 8>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<7, 8>::calc(R, S, pSrc_ptr);
break;
case 8*16+8:
DCT_Upsample::P_Q<8, 8>::calc(P, Q, pSrc_ptr);
DCT_Upsample::R_S<8, 8>::calc(R, S, pSrc_ptr);
break;
default:
JPGD_ASSERT(false);
}
DCT_Upsample::Matrix44 a(P + Q); P -= Q;
DCT_Upsample::Matrix44& b = P;
DCT_Upsample::Matrix44 c(R + S); R -= S;
DCT_Upsample::Matrix44& d = R;
DCT_Upsample::Matrix44::add_and_store(temp_block, a, c);
idct_4x4(temp_block, pDst_ptr);
pDst_ptr += 64;
DCT_Upsample::Matrix44::sub_and_store(temp_block, a, c);
idct_4x4(temp_block, pDst_ptr);
pDst_ptr += 64;
DCT_Upsample::Matrix44::add_and_store(temp_block, b, d);
idct_4x4(temp_block, pDst_ptr);
pDst_ptr += 64;
DCT_Upsample::Matrix44::sub_and_store(temp_block, b, d);
idct_4x4(temp_block, pDst_ptr);
pDst_ptr += 64;
pSrc_ptr += 64;
}
}
// Loads and dequantizes the next row of (already decoded) coefficients.
// Progressive images only.
void jpeg_decoder::load_next_row()
{
int i;
jpgd_block_t *p;
jpgd_quant_t *q;
int mcu_row, mcu_block, row_block = 0;
int component_num, component_id;
int block_x_mcu[JPGD_MAX_COMPONENTS];
memset(block_x_mcu, 0, JPGD_MAX_COMPONENTS * sizeof(int));
for (mcu_row = 0; mcu_row < m_mcus_per_row; mcu_row++)
{
int block_x_mcu_ofs = 0, block_y_mcu_ofs = 0;
for (mcu_block = 0; mcu_block < m_blocks_per_mcu; mcu_block++)
{
component_id = m_mcu_org[mcu_block];
q = m_quant[m_comp_quant[component_id]];
p = m_pMCU_coefficients + 64 * mcu_block;
jpgd_block_t* pAC = coeff_buf_getp(m_ac_coeffs[component_id], block_x_mcu[component_id] + block_x_mcu_ofs, m_block_y_mcu[component_id] + block_y_mcu_ofs);
jpgd_block_t* pDC = coeff_buf_getp(m_dc_coeffs[component_id], block_x_mcu[component_id] + block_x_mcu_ofs, m_block_y_mcu[component_id] + block_y_mcu_ofs);
p[0] = pDC[0];
memcpy(&p[1], &pAC[1], 63 * sizeof(jpgd_block_t));
for (i = 63; i > 0; i--)
if (p[g_ZAG[i]])
break;
m_mcu_block_max_zag[mcu_block] = i + 1;
for ( ; i >= 0; i--)
if (p[g_ZAG[i]])
p[g_ZAG[i]] = static_cast<jpgd_block_t>(p[g_ZAG[i]] * q[i]);
row_block++;
if (m_comps_in_scan == 1)
block_x_mcu[component_id]++;
else
{
if (++block_x_mcu_ofs == m_comp_h_samp[component_id])
{
block_x_mcu_ofs = 0;
if (++block_y_mcu_ofs == m_comp_v_samp[component_id])
{
block_y_mcu_ofs = 0;
block_x_mcu[component_id] += m_comp_h_samp[component_id];
}
}
}
}
if (m_freq_domain_chroma_upsample)
transform_mcu_expand(mcu_row);
else
transform_mcu(mcu_row);
}
if (m_comps_in_scan == 1)
m_block_y_mcu[m_comp_list[0]]++;
else
{
for (component_num = 0; component_num < m_comps_in_scan; component_num++)
{
component_id = m_comp_list[component_num];
m_block_y_mcu[component_id] += m_comp_v_samp[component_id];
}
}
}
// Restart interval processing.
void jpeg_decoder::process_restart()
{
int i;
int c = 0;
// Align to a byte boundry
// FIXME: Is this really necessary? get_bits_no_markers() never reads in markers!
//get_bits_no_markers(m_bits_left & 7);
// Let's scan a little bit to find the marker, but not _too_ far.
// 1536 is a "fudge factor" that determines how much to scan.
for (i = 1536; i > 0; i--)
if (get_char() == 0xFF)
break;
if (i == 0)
stop_decoding(JPGD_BAD_RESTART_MARKER);
for ( ; i > 0; i--)
if ((c = get_char()) != 0xFF)
break;
if (i == 0)
stop_decoding(JPGD_BAD_RESTART_MARKER);
// Is it the expected marker? If not, something bad happened.
if (c != (m_next_restart_num + M_RST0))
stop_decoding(JPGD_BAD_RESTART_MARKER);
// Reset each component's DC prediction values.
memset(&m_last_dc_val, 0, m_comps_in_frame * sizeof(uint));
m_eob_run = 0;
m_restarts_left = m_restart_interval;
m_next_restart_num = (m_next_restart_num + 1) & 7;
// Get the bit buffer going again...
m_bits_left = 16;
get_bits_no_markers(16);
get_bits_no_markers(16);
}
static inline int dequantize_ac(int c, int q) { c *= q; return c; }
// Decodes and dequantizes the next row of coefficients.
void jpeg_decoder::decode_next_row()
{
int row_block = 0;
for (int mcu_row = 0; mcu_row < m_mcus_per_row; mcu_row++)
{
if ((m_restart_interval) && (m_restarts_left == 0))
process_restart();
jpgd_block_t* p = m_pMCU_coefficients;
for (int mcu_block = 0; mcu_block < m_blocks_per_mcu; mcu_block++, p += 64)
{
int component_id = m_mcu_org[mcu_block];
jpgd_quant_t* q = m_quant[m_comp_quant[component_id]];
int r, s;
s = huff_decode(m_pHuff_tabs[m_comp_dc_tab[component_id]], r);
s = JPGD_HUFF_EXTEND(r, s);
m_last_dc_val[component_id] = (s += m_last_dc_val[component_id]);
p[0] = static_cast<jpgd_block_t>(s * q[0]);
int prev_num_set = m_mcu_block_max_zag[mcu_block];
huff_tables *pH = m_pHuff_tabs[m_comp_ac_tab[component_id]];
int k;
for (k = 1; k < 64; k++)
{
int extra_bits;
s = huff_decode(pH, extra_bits);
r = s >> 4;
s &= 15;
if (s)
{
if (r)
{
if ((k + r) > 63)
stop_decoding(JPGD_DECODE_ERROR);
if (k < prev_num_set)
{
int n = JPGD_MIN(r, prev_num_set - k);
int kt = k;
while (n--)
p[g_ZAG[kt++]] = 0;
}
k += r;
}
s = JPGD_HUFF_EXTEND(extra_bits, s);
JPGD_ASSERT(k < 64);
p[g_ZAG[k]] = static_cast<jpgd_block_t>(dequantize_ac(s, q[k])); //s * q[k];
}
else
{
if (r == 15)
{
if ((k + 16) > 64)
stop_decoding(JPGD_DECODE_ERROR);
if (k < prev_num_set)
{
int n = JPGD_MIN(16, prev_num_set - k);
int kt = k;
while (n--)
{
JPGD_ASSERT(kt <= 63);
p[g_ZAG[kt++]] = 0;
}
}
k += 16 - 1; // - 1 because the loop counter is k
JPGD_ASSERT(p[g_ZAG[k]] == 0);
}
else
break;
}
}
if (k < prev_num_set)
{
int kt = k;
while (kt < prev_num_set)
p[g_ZAG[kt++]] = 0;
}
m_mcu_block_max_zag[mcu_block] = k;
row_block++;
}
if (m_freq_domain_chroma_upsample)
transform_mcu_expand(mcu_row);
else
transform_mcu(mcu_row);
m_restarts_left--;
}
}
// YCbCr H1V1 (1x1:1:1, 3 m_blocks per MCU) to RGB
void jpeg_decoder::H1V1Convert()
{
int row = m_max_mcu_y_size - m_mcu_lines_left;
uint8 *d = m_pScan_line_0;
uint8 *s = m_pSample_buf + row * 8;
for (int i = m_max_mcus_per_row; i > 0; i--)
{
for (int j = 0; j < 8; j++)
{
int y = s[j];
int cb = s[64+j];
int cr = s[128+j];
d[0] = clamp(y + m_crr[cr]);
d[1] = clamp(y + ((m_crg[cr] + m_cbg[cb]) >> 16));
d[2] = clamp(y + m_cbb[cb]);
d[3] = 255;
d += 4;
}
s += 64*3;
}
}
// YCbCr H2V1 (2x1:1:1, 4 m_blocks per MCU) to RGB
void jpeg_decoder::H2V1Convert()
{
int row = m_max_mcu_y_size - m_mcu_lines_left;
uint8 *d0 = m_pScan_line_0;
uint8 *y = m_pSample_buf + row * 8;
uint8 *c = m_pSample_buf + 2*64 + row * 8;
for (int i = m_max_mcus_per_row; i > 0; i--)
{
for (int l = 0; l < 2; l++)
{
for (int j = 0; j < 4; j++)
{
int cb = c[0];
int cr = c[64];
int rc = m_crr[cr];
int gc = ((m_crg[cr] + m_cbg[cb]) >> 16);
int bc = m_cbb[cb];
int yy = y[j<<1];
d0[0] = clamp(yy+rc);
d0[1] = clamp(yy+gc);
d0[2] = clamp(yy+bc);
d0[3] = 255;
yy = y[(j<<1)+1];
d0[4] = clamp(yy+rc);
d0[5] = clamp(yy+gc);
d0[6] = clamp(yy+bc);
d0[7] = 255;
d0 += 8;
c++;
}
y += 64;
}
y += 64*4 - 64*2;
c += 64*4 - 8;
}
}
// YCbCr H2V1 (1x2:1:1, 4 m_blocks per MCU) to RGB
void jpeg_decoder::H1V2Convert()
{
int row = m_max_mcu_y_size - m_mcu_lines_left;
uint8 *d0 = m_pScan_line_0;
uint8 *d1 = m_pScan_line_1;
uint8 *y;
uint8 *c;
if (row < 8)
y = m_pSample_buf + row * 8;
else
y = m_pSample_buf + 64*1 + (row & 7) * 8;
c = m_pSample_buf + 64*2 + (row >> 1) * 8;
for (int i = m_max_mcus_per_row; i > 0; i--)
{
for (int j = 0; j < 8; j++)
{
int cb = c[0+j];
int cr = c[64+j];
int rc = m_crr[cr];
int gc = ((m_crg[cr] + m_cbg[cb]) >> 16);
int bc = m_cbb[cb];
int yy = y[j];
d0[0] = clamp(yy+rc);
d0[1] = clamp(yy+gc);
d0[2] = clamp(yy+bc);
d0[3] = 255;
yy = y[8+j];
d1[0] = clamp(yy+rc);
d1[1] = clamp(yy+gc);
d1[2] = clamp(yy+bc);
d1[3] = 255;
d0 += 4;
d1 += 4;
}
y += 64*4;
c += 64*4;
}
}
// YCbCr H2V2 (2x2:1:1, 6 m_blocks per MCU) to RGB
void jpeg_decoder::H2V2Convert()
{
int row = m_max_mcu_y_size - m_mcu_lines_left;
uint8 *d0 = m_pScan_line_0;
uint8 *d1 = m_pScan_line_1;
uint8 *y;
uint8 *c;
if (row < 8)
y = m_pSample_buf + row * 8;
else
y = m_pSample_buf + 64*2 + (row & 7) * 8;
c = m_pSample_buf + 64*4 + (row >> 1) * 8;
for (int i = m_max_mcus_per_row; i > 0; i--)
{
for (int l = 0; l < 2; l++)
{
for (int j = 0; j < 8; j += 2)
{
int cb = c[0];
int cr = c[64];
int rc = m_crr[cr];
int gc = ((m_crg[cr] + m_cbg[cb]) >> 16);
int bc = m_cbb[cb];
int yy = y[j];
d0[0] = clamp(yy+rc);
d0[1] = clamp(yy+gc);
d0[2] = clamp(yy+bc);
d0[3] = 255;
yy = y[j+1];
d0[4] = clamp(yy+rc);
d0[5] = clamp(yy+gc);
d0[6] = clamp(yy+bc);
d0[7] = 255;
yy = y[j+8];
d1[0] = clamp(yy+rc);
d1[1] = clamp(yy+gc);
d1[2] = clamp(yy+bc);
d1[3] = 255;
yy = y[j+8+1];
d1[4] = clamp(yy+rc);
d1[5] = clamp(yy+gc);
d1[6] = clamp(yy+bc);
d1[7] = 255;
d0 += 8;
d1 += 8;
c++;
}
y += 64;
}
y += 64*6 - 64*2;
c += 64*6 - 8;
}
}
// Y (1 block per MCU) to 8-bit grayscale
void jpeg_decoder::gray_convert()
{
int row = m_max_mcu_y_size - m_mcu_lines_left;
uint8 *d = m_pScan_line_0;
uint8 *s = m_pSample_buf + row * 8;
for (int i = m_max_mcus_per_row; i > 0; i--)
{
*(uint *)d = *(uint *)s;
*(uint *)(&d[4]) = *(uint *)(&s[4]);
s += 64;
d += 8;
}
}
void jpeg_decoder::expanded_convert()
{
int row = m_max_mcu_y_size - m_mcu_lines_left;
uint8* Py = m_pSample_buf + (row / 8) * 64 * m_comp_h_samp[0] + (row & 7) * 8;
uint8* d = m_pScan_line_0;
for (int i = m_max_mcus_per_row; i > 0; i--)
{
for (int k = 0; k < m_max_mcu_x_size; k += 8)
{
const int Y_ofs = k * 8;
const int Cb_ofs = Y_ofs + 64 * m_expanded_blocks_per_component;
const int Cr_ofs = Y_ofs + 64 * m_expanded_blocks_per_component * 2;
for (int j = 0; j < 8; j++)
{
int y = Py[Y_ofs + j];
int cb = Py[Cb_ofs + j];
int cr = Py[Cr_ofs + j];
d[0] = clamp(y + m_crr[cr]);
d[1] = clamp(y + ((m_crg[cr] + m_cbg[cb]) >> 16));
d[2] = clamp(y + m_cbb[cb]);
d[3] = 255;
d += 4;
}
}
Py += 64 * m_expanded_blocks_per_mcu;
}
}
// Find end of image (EOI) marker, so we can return to the user the exact size of the input stream.
void jpeg_decoder::find_eoi()
{
if (!m_progressive_flag)
{
// Attempt to read the EOI marker.
//get_bits_no_markers(m_bits_left & 7);
// Prime the bit buffer
m_bits_left = 16;
get_bits(16);
get_bits(16);
// The next marker _should_ be EOI
process_markers();
}
m_total_bytes_read -= m_in_buf_left;
}
int jpeg_decoder::decode(const void** pScan_line, uint* pScan_line_len)
{
if ((m_error_code) || (!m_ready_flag))
return JPGD_FAILED;
if (m_total_lines_left == 0)
return JPGD_DONE;
if (m_mcu_lines_left == 0)
{
if (setjmp(m_jmp_state))
return JPGD_FAILED;
if (m_progressive_flag)
load_next_row();
else
decode_next_row();
// Find the EOI marker if that was the last row.
if (m_total_lines_left <= m_max_mcu_y_size)
find_eoi();
m_mcu_lines_left = m_max_mcu_y_size;
}
if (m_freq_domain_chroma_upsample)
{
expanded_convert();
*pScan_line = m_pScan_line_0;
}
else
{
switch (m_scan_type)
{
case JPGD_YH2V2:
{
if ((m_mcu_lines_left & 1) == 0)
{
H2V2Convert();
*pScan_line = m_pScan_line_0;
}
else
*pScan_line = m_pScan_line_1;
break;
}
case JPGD_YH2V1:
{
H2V1Convert();
*pScan_line = m_pScan_line_0;
break;
}
case JPGD_YH1V2:
{
if ((m_mcu_lines_left & 1) == 0)
{
H1V2Convert();
*pScan_line = m_pScan_line_0;
}
else
*pScan_line = m_pScan_line_1;
break;
}
case JPGD_YH1V1:
{
H1V1Convert();
*pScan_line = m_pScan_line_0;
break;
}
case JPGD_GRAYSCALE:
{
gray_convert();
*pScan_line = m_pScan_line_0;
break;
}
}
}
*pScan_line_len = m_real_dest_bytes_per_scan_line;
m_mcu_lines_left--;
m_total_lines_left--;
return JPGD_SUCCESS;
}
// Creates the tables needed for efficient Huffman decoding.
void jpeg_decoder::make_huff_table(int index, huff_tables *pH)
{
int p, i, l, si;
uint8 huffsize[257];
uint huffcode[257];
uint code;
uint subtree;
int code_size;
int lastp;
int nextfreeentry;
int currententry;
pH->ac_table = m_huff_ac[index] != 0;
p = 0;
for (l = 1; l <= 16; l++)
{
for (i = 1; i <= m_huff_num[index][l]; i++)
huffsize[p++] = static_cast<uint8>(l);
}
huffsize[p] = 0;
lastp = p;
code = 0;
si = huffsize[0];
p = 0;
while (huffsize[p])
{
while (huffsize[p] == si)
{
huffcode[p++] = code;
code++;
}
code <<= 1;
si++;
}
memset(pH->look_up, 0, sizeof(pH->look_up));
memset(pH->look_up2, 0, sizeof(pH->look_up2));
memset(pH->tree, 0, sizeof(pH->tree));
memset(pH->code_size, 0, sizeof(pH->code_size));
nextfreeentry = -1;
p = 0;
while (p < lastp)
{
i = m_huff_val[index][p];
code = huffcode[p];
code_size = huffsize[p];
pH->code_size[i] = static_cast<uint8>(code_size);
if (code_size <= 8)
{
code <<= (8 - code_size);
for (l = 1 << (8 - code_size); l > 0; l--)
{
JPGD_ASSERT(i < 256);
pH->look_up[code] = i;
bool has_extrabits = false;
int extra_bits = 0;
int num_extra_bits = i & 15;
int bits_to_fetch = code_size;
if (num_extra_bits)
{
int total_codesize = code_size + num_extra_bits;
if (total_codesize <= 8)
{
has_extrabits = true;
extra_bits = ((1 << num_extra_bits) - 1) & (code >> (8 - total_codesize));
JPGD_ASSERT(extra_bits <= 0x7FFF);
bits_to_fetch += num_extra_bits;
}
}
if (!has_extrabits)
pH->look_up2[code] = i | (bits_to_fetch << 8);
else
pH->look_up2[code] = i | 0x8000 | (extra_bits << 16) | (bits_to_fetch << 8);
code++;
}
}
else
{
subtree = (code >> (code_size - 8)) & 0xFF;
currententry = pH->look_up[subtree];
if (currententry == 0)
{
pH->look_up[subtree] = currententry = nextfreeentry;
pH->look_up2[subtree] = currententry = nextfreeentry;
nextfreeentry -= 2;
}
code <<= (16 - (code_size - 8));
for (l = code_size; l > 9; l--)
{
if ((code & 0x8000) == 0)
currententry--;
if (pH->tree[-currententry - 1] == 0)
{
pH->tree[-currententry - 1] = nextfreeentry;
currententry = nextfreeentry;
nextfreeentry -= 2;
}
else
currententry = pH->tree[-currententry - 1];
code <<= 1;
}
if ((code & 0x8000) == 0)
currententry--;
pH->tree[-currententry - 1] = i;
}
p++;
}
}
// Verifies the quantization tables needed for this scan are available.
void jpeg_decoder::check_quant_tables()
{
for (int i = 0; i < m_comps_in_scan; i++)
if (m_quant[m_comp_quant[m_comp_list[i]]] == NULL)
stop_decoding(JPGD_UNDEFINED_QUANT_TABLE);
}
// Verifies that all the Huffman tables needed for this scan are available.
void jpeg_decoder::check_huff_tables()
{
for (int i = 0; i < m_comps_in_scan; i++)
{
if ((m_spectral_start == 0) && (m_huff_num[m_comp_dc_tab[m_comp_list[i]]] == NULL))
stop_decoding(JPGD_UNDEFINED_HUFF_TABLE);
if ((m_spectral_end > 0) && (m_huff_num[m_comp_ac_tab[m_comp_list[i]]] == NULL))
stop_decoding(JPGD_UNDEFINED_HUFF_TABLE);
}
for (int i = 0; i < JPGD_MAX_HUFF_TABLES; i++)
if (m_huff_num[i])
{
if (!m_pHuff_tabs[i])
m_pHuff_tabs[i] = (huff_tables *)alloc(sizeof(huff_tables));
make_huff_table(i, m_pHuff_tabs[i]);
}
}
// Determines the component order inside each MCU.
// Also calcs how many MCU's are on each row, etc.
void jpeg_decoder::calc_mcu_block_order()
{
int component_num, component_id;
int max_h_samp = 0, max_v_samp = 0;
for (component_id = 0; component_id < m_comps_in_frame; component_id++)
{
if (m_comp_h_samp[component_id] > max_h_samp)
max_h_samp = m_comp_h_samp[component_id];
if (m_comp_v_samp[component_id] > max_v_samp)
max_v_samp = m_comp_v_samp[component_id];
}
for (component_id = 0; component_id < m_comps_in_frame; component_id++)
{
m_comp_h_blocks[component_id] = ((((m_image_x_size * m_comp_h_samp[component_id]) + (max_h_samp - 1)) / max_h_samp) + 7) / 8;
m_comp_v_blocks[component_id] = ((((m_image_y_size * m_comp_v_samp[component_id]) + (max_v_samp - 1)) / max_v_samp) + 7) / 8;
}
if (m_comps_in_scan == 1)
{
m_mcus_per_row = m_comp_h_blocks[m_comp_list[0]];
m_mcus_per_col = m_comp_v_blocks[m_comp_list[0]];
}
else
{
m_mcus_per_row = (((m_image_x_size + 7) / 8) + (max_h_samp - 1)) / max_h_samp;
m_mcus_per_col = (((m_image_y_size + 7) / 8) + (max_v_samp - 1)) / max_v_samp;
}
if (m_comps_in_scan == 1)
{
m_mcu_org[0] = m_comp_list[0];
m_blocks_per_mcu = 1;
}
else
{
m_blocks_per_mcu = 0;
for (component_num = 0; component_num < m_comps_in_scan; component_num++)
{
int num_blocks;
component_id = m_comp_list[component_num];
num_blocks = m_comp_h_samp[component_id] * m_comp_v_samp[component_id];
while (num_blocks--)
m_mcu_org[m_blocks_per_mcu++] = component_id;
}
}
}
// Starts a new scan.
int jpeg_decoder::init_scan()
{
if (!locate_sos_marker())
return JPGD_FALSE;
calc_mcu_block_order();
check_huff_tables();
check_quant_tables();
memset(m_last_dc_val, 0, m_comps_in_frame * sizeof(uint));
m_eob_run = 0;
if (m_restart_interval)
{
m_restarts_left = m_restart_interval;
m_next_restart_num = 0;
}
fix_in_buffer();
return JPGD_TRUE;
}
// Starts a frame. Determines if the number of components or sampling factors
// are supported.
void jpeg_decoder::init_frame()
{
int i;
if (m_comps_in_frame == 1)
{
if ((m_comp_h_samp[0] != 1) || (m_comp_v_samp[0] != 1))
stop_decoding(JPGD_UNSUPPORTED_SAMP_FACTORS);
m_scan_type = JPGD_GRAYSCALE;
m_max_blocks_per_mcu = 1;
m_max_mcu_x_size = 8;
m_max_mcu_y_size = 8;
}
else if (m_comps_in_frame == 3)
{
if ( ((m_comp_h_samp[1] != 1) || (m_comp_v_samp[1] != 1)) ||
((m_comp_h_samp[2] != 1) || (m_comp_v_samp[2] != 1)) )
stop_decoding(JPGD_UNSUPPORTED_SAMP_FACTORS);
if ((m_comp_h_samp[0] == 1) && (m_comp_v_samp[0] == 1))
{
m_scan_type = JPGD_YH1V1;
m_max_blocks_per_mcu = 3;
m_max_mcu_x_size = 8;
m_max_mcu_y_size = 8;
}
else if ((m_comp_h_samp[0] == 2) && (m_comp_v_samp[0] == 1))
{
m_scan_type = JPGD_YH2V1;
m_max_blocks_per_mcu = 4;
m_max_mcu_x_size = 16;
m_max_mcu_y_size = 8;
}
else if ((m_comp_h_samp[0] == 1) && (m_comp_v_samp[0] == 2))
{
m_scan_type = JPGD_YH1V2;
m_max_blocks_per_mcu = 4;
m_max_mcu_x_size = 8;
m_max_mcu_y_size = 16;
}
else if ((m_comp_h_samp[0] == 2) && (m_comp_v_samp[0] == 2))
{
m_scan_type = JPGD_YH2V2;
m_max_blocks_per_mcu = 6;
m_max_mcu_x_size = 16;
m_max_mcu_y_size = 16;
}
else
stop_decoding(JPGD_UNSUPPORTED_SAMP_FACTORS);
}
else
stop_decoding(JPGD_UNSUPPORTED_COLORSPACE);
m_max_mcus_per_row = (m_image_x_size + (m_max_mcu_x_size - 1)) / m_max_mcu_x_size;
m_max_mcus_per_col = (m_image_y_size + (m_max_mcu_y_size - 1)) / m_max_mcu_y_size;
// These values are for the *destination* pixels: after conversion.
if (m_scan_type == JPGD_GRAYSCALE)
m_dest_bytes_per_pixel = 1;
else
m_dest_bytes_per_pixel = 4;
m_dest_bytes_per_scan_line = ((m_image_x_size + 15) & 0xFFF0) * m_dest_bytes_per_pixel;
m_real_dest_bytes_per_scan_line = (m_image_x_size * m_dest_bytes_per_pixel);
// Initialize two scan line buffers.
m_pScan_line_0 = (uint8 *)alloc(m_dest_bytes_per_scan_line, true);
if ((m_scan_type == JPGD_YH1V2) || (m_scan_type == JPGD_YH2V2))
m_pScan_line_1 = (uint8 *)alloc(m_dest_bytes_per_scan_line, true);
m_max_blocks_per_row = m_max_mcus_per_row * m_max_blocks_per_mcu;
// Should never happen
if (m_max_blocks_per_row > JPGD_MAX_BLOCKS_PER_ROW)
stop_decoding(JPGD_ASSERTION_ERROR);
// Allocate the coefficient buffer, enough for one MCU
m_pMCU_coefficients = (jpgd_block_t*)alloc(m_max_blocks_per_mcu * 64 * sizeof(jpgd_block_t));
for (i = 0; i < m_max_blocks_per_mcu; i++)
m_mcu_block_max_zag[i] = 64;
m_expanded_blocks_per_component = m_comp_h_samp[0] * m_comp_v_samp[0];
m_expanded_blocks_per_mcu = m_expanded_blocks_per_component * m_comps_in_frame;
m_expanded_blocks_per_row = m_max_mcus_per_row * m_expanded_blocks_per_mcu;
// Freq. domain chroma upsampling is only supported for H2V2 subsampling factor (the most common one I've seen).
m_freq_domain_chroma_upsample = false;
#if JPGD_SUPPORT_FREQ_DOMAIN_UPSAMPLING
m_freq_domain_chroma_upsample = (m_expanded_blocks_per_mcu == 4*3);
#endif
if (m_freq_domain_chroma_upsample)
m_pSample_buf = (uint8 *)alloc(m_expanded_blocks_per_row * 64);
else
m_pSample_buf = (uint8 *)alloc(m_max_blocks_per_row * 64);
m_total_lines_left = m_image_y_size;
m_mcu_lines_left = 0;
create_look_ups();
}
// The coeff_buf series of methods originally stored the coefficients
// into a "virtual" file which was located in EMS, XMS, or a disk file. A cache
// was used to make this process more efficient. Now, we can store the entire
// thing in RAM.
jpeg_decoder::coeff_buf* jpeg_decoder::coeff_buf_open(int block_num_x, int block_num_y, int block_len_x, int block_len_y)
{
coeff_buf* cb = (coeff_buf*)alloc(sizeof(coeff_buf));
cb->block_num_x = block_num_x;
cb->block_num_y = block_num_y;
cb->block_len_x = block_len_x;
cb->block_len_y = block_len_y;
cb->block_size = (block_len_x * block_len_y) * sizeof(jpgd_block_t);
cb->pData = (uint8 *)alloc(cb->block_size * block_num_x * block_num_y, true);
return cb;
}
inline jpgd_block_t *jpeg_decoder::coeff_buf_getp(coeff_buf *cb, int block_x, int block_y)
{
JPGD_ASSERT((block_x < cb->block_num_x) && (block_y < cb->block_num_y));
return (jpgd_block_t *)(cb->pData + block_x * cb->block_size + block_y * (cb->block_size * cb->block_num_x));
}
// The following methods decode the various types of m_blocks encountered
// in progressively encoded images.
void jpeg_decoder::decode_block_dc_first(jpeg_decoder *pD, int component_id, int block_x, int block_y)
{
int s, r;
jpgd_block_t *p = pD->coeff_buf_getp(pD->m_dc_coeffs[component_id], block_x, block_y);
if ((s = pD->huff_decode(pD->m_pHuff_tabs[pD->m_comp_dc_tab[component_id]])) != 0)
{
r = pD->get_bits_no_markers(s);
s = JPGD_HUFF_EXTEND(r, s);
}
pD->m_last_dc_val[component_id] = (s += pD->m_last_dc_val[component_id]);
p[0] = static_cast<jpgd_block_t>(s << pD->m_successive_low);
}
void jpeg_decoder::decode_block_dc_refine(jpeg_decoder *pD, int component_id, int block_x, int block_y)
{
if (pD->get_bits_no_markers(1))
{
jpgd_block_t *p = pD->coeff_buf_getp(pD->m_dc_coeffs[component_id], block_x, block_y);
p[0] |= (1 << pD->m_successive_low);
}
}
void jpeg_decoder::decode_block_ac_first(jpeg_decoder *pD, int component_id, int block_x, int block_y)
{
int k, s, r;
if (pD->m_eob_run)
{
pD->m_eob_run--;
return;
}
jpgd_block_t *p = pD->coeff_buf_getp(pD->m_ac_coeffs[component_id], block_x, block_y);
for (k = pD->m_spectral_start; k <= pD->m_spectral_end; k++)
{
s = pD->huff_decode(pD->m_pHuff_tabs[pD->m_comp_ac_tab[component_id]]);
r = s >> 4;
s &= 15;
if (s)
{
if ((k += r) > 63)
pD->stop_decoding(JPGD_DECODE_ERROR);
r = pD->get_bits_no_markers(s);
s = JPGD_HUFF_EXTEND(r, s);
p[g_ZAG[k]] = static_cast<jpgd_block_t>(s << pD->m_successive_low);
}
else
{
if (r == 15)
{
if ((k += 15) > 63)
pD->stop_decoding(JPGD_DECODE_ERROR);
}
else
{
pD->m_eob_run = 1 << r;
if (r)
pD->m_eob_run += pD->get_bits_no_markers(r);
pD->m_eob_run--;
break;
}
}
}
}
void jpeg_decoder::decode_block_ac_refine(jpeg_decoder *pD, int component_id, int block_x, int block_y)
{
int s, k, r;
int p1 = 1 << pD->m_successive_low;
int m1 = (-1) << pD->m_successive_low;
jpgd_block_t *p = pD->coeff_buf_getp(pD->m_ac_coeffs[component_id], block_x, block_y);
JPGD_ASSERT(pD->m_spectral_end <= 63);
k = pD->m_spectral_start;
if (pD->m_eob_run == 0)
{
for ( ; k <= pD->m_spectral_end; k++)
{
s = pD->huff_decode(pD->m_pHuff_tabs[pD->m_comp_ac_tab[component_id]]);
r = s >> 4;
s &= 15;
if (s)
{
if (s != 1)
pD->stop_decoding(JPGD_DECODE_ERROR);
if (pD->get_bits_no_markers(1))
s = p1;
else
s = m1;
}
else
{
if (r != 15)
{
pD->m_eob_run = 1 << r;
if (r)
pD->m_eob_run += pD->get_bits_no_markers(r);
break;
}
}
do
{
jpgd_block_t *this_coef = p + g_ZAG[k & 63];
if (*this_coef != 0)
{
if (pD->get_bits_no_markers(1))
{
if ((*this_coef & p1) == 0)
{
if (*this_coef >= 0)
*this_coef = static_cast<jpgd_block_t>(*this_coef + p1);
else
*this_coef = static_cast<jpgd_block_t>(*this_coef + m1);
}
}
}
else
{
if (--r < 0)
break;
}
k++;
} while (k <= pD->m_spectral_end);
if ((s) && (k < 64))
{
p[g_ZAG[k]] = static_cast<jpgd_block_t>(s);
}
}
}
if (pD->m_eob_run > 0)
{
for ( ; k <= pD->m_spectral_end; k++)
{
jpgd_block_t *this_coef = p + g_ZAG[k & 63]; // logical AND to shut up static code analysis
if (*this_coef != 0)
{
if (pD->get_bits_no_markers(1))
{
if ((*this_coef & p1) == 0)
{
if (*this_coef >= 0)
*this_coef = static_cast<jpgd_block_t>(*this_coef + p1);
else
*this_coef = static_cast<jpgd_block_t>(*this_coef + m1);
}
}
}
}
pD->m_eob_run--;
}
}
// Decode a scan in a progressively encoded image.
void jpeg_decoder::decode_scan(pDecode_block_func decode_block_func)
{
int mcu_row, mcu_col, mcu_block;
int block_x_mcu[JPGD_MAX_COMPONENTS], m_block_y_mcu[JPGD_MAX_COMPONENTS];
memset(m_block_y_mcu, 0, sizeof(m_block_y_mcu));
for (mcu_col = 0; mcu_col < m_mcus_per_col; mcu_col++)
{
int component_num, component_id;
memset(block_x_mcu, 0, sizeof(block_x_mcu));
for (mcu_row = 0; mcu_row < m_mcus_per_row; mcu_row++)
{
int block_x_mcu_ofs = 0, block_y_mcu_ofs = 0;
if ((m_restart_interval) && (m_restarts_left == 0))
process_restart();
for (mcu_block = 0; mcu_block < m_blocks_per_mcu; mcu_block++)
{
component_id = m_mcu_org[mcu_block];
decode_block_func(this, component_id, block_x_mcu[component_id] + block_x_mcu_ofs, m_block_y_mcu[component_id] + block_y_mcu_ofs);
if (m_comps_in_scan == 1)
block_x_mcu[component_id]++;
else
{
if (++block_x_mcu_ofs == m_comp_h_samp[component_id])
{
block_x_mcu_ofs = 0;
if (++block_y_mcu_ofs == m_comp_v_samp[component_id])
{
block_y_mcu_ofs = 0;
block_x_mcu[component_id] += m_comp_h_samp[component_id];
}
}
}
}
m_restarts_left--;
}
if (m_comps_in_scan == 1)
m_block_y_mcu[m_comp_list[0]]++;
else
{
for (component_num = 0; component_num < m_comps_in_scan; component_num++)
{
component_id = m_comp_list[component_num];
m_block_y_mcu[component_id] += m_comp_v_samp[component_id];
}
}
}
}
// Decode a progressively encoded image.
void jpeg_decoder::init_progressive()
{
int i;
if (m_comps_in_frame == 4)
stop_decoding(JPGD_UNSUPPORTED_COLORSPACE);
// Allocate the coefficient buffers.
for (i = 0; i < m_comps_in_frame; i++)
{
m_dc_coeffs[i] = coeff_buf_open(m_max_mcus_per_row * m_comp_h_samp[i], m_max_mcus_per_col * m_comp_v_samp[i], 1, 1);
m_ac_coeffs[i] = coeff_buf_open(m_max_mcus_per_row * m_comp_h_samp[i], m_max_mcus_per_col * m_comp_v_samp[i], 8, 8);
}
for ( ; ; )
{
int dc_only_scan, refinement_scan;
pDecode_block_func decode_block_func;
if (!init_scan())
break;
dc_only_scan = (m_spectral_start == 0);
refinement_scan = (m_successive_high != 0);
if ((m_spectral_start > m_spectral_end) || (m_spectral_end > 63))
stop_decoding(JPGD_BAD_SOS_SPECTRAL);
if (dc_only_scan)
{
if (m_spectral_end)
stop_decoding(JPGD_BAD_SOS_SPECTRAL);
}
else if (m_comps_in_scan != 1) /* AC scans can only contain one component */
stop_decoding(JPGD_BAD_SOS_SPECTRAL);
if ((refinement_scan) && (m_successive_low != m_successive_high - 1))
stop_decoding(JPGD_BAD_SOS_SUCCESSIVE);
if (dc_only_scan)
{
if (refinement_scan)
decode_block_func = decode_block_dc_refine;
else
decode_block_func = decode_block_dc_first;
}
else
{
if (refinement_scan)
decode_block_func = decode_block_ac_refine;
else
decode_block_func = decode_block_ac_first;
}
decode_scan(decode_block_func);
m_bits_left = 16;
get_bits(16);
get_bits(16);
}
m_comps_in_scan = m_comps_in_frame;
for (i = 0; i < m_comps_in_frame; i++)
m_comp_list[i] = i;
calc_mcu_block_order();
}
void jpeg_decoder::init_sequential()
{
if (!init_scan())
stop_decoding(JPGD_UNEXPECTED_MARKER);
}
void jpeg_decoder::decode_start()
{
init_frame();
if (m_progressive_flag)
init_progressive();
else
init_sequential();
}
void jpeg_decoder::decode_init(jpeg_decoder_stream *pStream)
{
init(pStream);
locate_sof_marker();
}
jpeg_decoder::jpeg_decoder(jpeg_decoder_stream *pStream)
{
if (setjmp(m_jmp_state))
return;
decode_init(pStream);
}
int jpeg_decoder::begin_decoding()
{
if (m_ready_flag)
return JPGD_SUCCESS;
if (m_error_code)
return JPGD_FAILED;
if (setjmp(m_jmp_state))
return JPGD_FAILED;
decode_start();
m_ready_flag = true;
return JPGD_SUCCESS;
}
jpeg_decoder::~jpeg_decoder()
{
free_all_blocks();
}
jpeg_decoder_file_stream::jpeg_decoder_file_stream()
{
m_pFile = NULL;
m_eof_flag = false;
m_error_flag = false;
}
void jpeg_decoder_file_stream::close()
{
if (m_pFile)
{
fclose(m_pFile);
m_pFile = NULL;
}
m_eof_flag = false;
m_error_flag = false;
}
jpeg_decoder_file_stream::~jpeg_decoder_file_stream()
{
close();
}
bool jpeg_decoder_file_stream::open(const char *Pfilename)
{
close();
m_eof_flag = false;
m_error_flag = false;
#if defined(_MSC_VER)
m_pFile = NULL;
fopen_s(&m_pFile, Pfilename, "rb");
#else
m_pFile = fopen(Pfilename, "rb");
#endif
return m_pFile != NULL;
}
int jpeg_decoder_file_stream::read(uint8 *pBuf, int max_bytes_to_read, bool *pEOF_flag)
{
if (!m_pFile)
return -1;
if (m_eof_flag)
{
*pEOF_flag = true;
return 0;
}
if (m_error_flag)
return -1;
int bytes_read = static_cast<int>(fread(pBuf, 1, max_bytes_to_read, m_pFile));
if (bytes_read < max_bytes_to_read)
{
if (ferror(m_pFile))
{
m_error_flag = true;
return -1;
}
m_eof_flag = true;
*pEOF_flag = true;
}
return bytes_read;
}
bool jpeg_decoder_mem_stream::open(const uint8 *pSrc_data, uint size)
{
close();
m_pSrc_data = pSrc_data;
m_ofs = 0;
m_size = size;
return true;
}
int jpeg_decoder_mem_stream::read(uint8 *pBuf, int max_bytes_to_read, bool *pEOF_flag)
{
*pEOF_flag = false;
if (!m_pSrc_data)
return -1;
uint bytes_remaining = m_size - m_ofs;
if ((uint)max_bytes_to_read > bytes_remaining)
{
max_bytes_to_read = bytes_remaining;
*pEOF_flag = true;
}
memcpy(pBuf, m_pSrc_data + m_ofs, max_bytes_to_read);
m_ofs += max_bytes_to_read;
return max_bytes_to_read;
}
unsigned char *decompress_jpeg_image_from_stream(jpeg_decoder_stream *pStream, int *width, int *height, int *actual_comps, int req_comps)
{
if (!actual_comps)
return NULL;
*actual_comps = 0;
if ((!pStream) || (!width) || (!height) || (!req_comps))
return NULL;
if ((req_comps != 1) && (req_comps != 3) && (req_comps != 4))
return NULL;
jpeg_decoder decoder(pStream);
if (decoder.get_error_code() != JPGD_SUCCESS)
return NULL;
const int image_width = decoder.get_width(), image_height = decoder.get_height();
*width = image_width;
*height = image_height;
*actual_comps = decoder.get_num_components();
if (decoder.begin_decoding() != JPGD_SUCCESS)
return NULL;
const int dst_bpl = image_width * req_comps;
uint8 *pImage_data = (uint8*)jpgd_malloc(dst_bpl * image_height);
if (!pImage_data)
return NULL;
for (int y = 0; y < image_height; y++)
{
#pragma warning( disable : 4703 )
const uint8* pScan_line;
uint scan_line_len;
if (decoder.decode((const void**)&pScan_line, &scan_line_len) != JPGD_SUCCESS)
{
jpgd_free(pImage_data);
return NULL;
}
uint8 *pDst = pImage_data + y * dst_bpl;
if (((req_comps == 1) && (decoder.get_num_components() == 1)) || ((req_comps == 4) && (decoder.get_num_components() == 3)))
memcpy(pDst, pScan_line, dst_bpl);
else if (decoder.get_num_components() == 1)
{
if (req_comps == 3)
{
for (int x = 0; x < image_width; x++)
{
uint8 luma = pScan_line[x];
pDst[0] = luma;
pDst[1] = luma;
pDst[2] = luma;
pDst += 3;
}
}
else
{
for (int x = 0; x < image_width; x++)
{
uint8 luma = pScan_line[x];
pDst[0] = luma;
pDst[1] = luma;
pDst[2] = luma;
pDst[3] = 255;
pDst += 4;
}
}
}
else if (decoder.get_num_components() == 3)
{
if (req_comps == 1)
{
const int YR = 19595, YG = 38470, YB = 7471;
for (int x = 0; x < image_width; x++)
{
int r = pScan_line[x*4+0];
int g = pScan_line[x*4+1];
int b = pScan_line[x*4+2];
*pDst++ = static_cast<uint8>((r * YR + g * YG + b * YB + 32768) >> 16);
}
}
else
{
for (int x = 0; x < image_width; x++)
{
pDst[0] = pScan_line[x*4+0];
pDst[1] = pScan_line[x*4+1];
pDst[2] = pScan_line[x*4+2];
pDst += 3;
}
}
}
}
return pImage_data;
}
unsigned char *decompress_jpeg_image_from_memory(const unsigned char *pSrc_data, int src_data_size, int *width, int *height, int *actual_comps, int req_comps)
{
jpgd::jpeg_decoder_mem_stream mem_stream(pSrc_data, src_data_size);
return decompress_jpeg_image_from_stream(&mem_stream, width, height, actual_comps, req_comps);
}
unsigned char *decompress_jpeg_image_from_file(const char *pSrc_filename, int *width, int *height, int *actual_comps, int req_comps)
{
jpgd::jpeg_decoder_file_stream file_stream;
if (!file_stream.open(pSrc_filename))
return NULL;
return decompress_jpeg_image_from_stream(&file_stream, width, height, actual_comps, req_comps);
}
}
| [
"[email protected]"
] | |
6b096ca1cf606648492a0387fa43962e1d1116d6 | 54f56238f4170d3fad2435bac0bfecb2124031a9 | /src/bitcoin-cli.cpp | e88d087cb0d5b96f543fe93ce565e337bc78d8dd | [
"MIT"
] | permissive | minblock/buildcoins | e8fd597e250c833ffaa5d606c493fcb3a92da710 | 831dac6f4f64a2c469e871e598bf27ab9f026cf0 | refs/heads/master | 2021-05-22T01:16:32.132580 | 2020-04-04T03:52:32 | 2020-04-04T03:52:32 | 252,902,898 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,670 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2018 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_CONFIG_H)
#include <config/bitcoin-config.h>
#endif
#include <chainparamsbase.h>
#include <clientversion.h>
#include <fs.h>
#include <rpc/client.h>
#include <rpc/protocol.h>
#include <util/system.h>
#include <util/strencodings.h>
#include <memory>
#include <stdio.h>
#include <tuple>
#include <event2/buffer.h>
#include <event2/keyvalq_struct.h>
#include <support/events.h>
#include <univalue.h>
const std::function<std::string(const char*)> G_TRANSLATION_FUN = nullptr;
static const char DEFAULT_RPCCONNECT[] = "127.0.0.1";
static const int DEFAULT_HTTP_CLIENT_TIMEOUT=900;
static const bool DEFAULT_NAMED=false;
static const int CONTINUE_EXECUTION=-1;
static void SetupCliArgs()
{
SetupHelpOptions(gArgs);
const auto defaultBaseParams = CreateBaseChainParams(CBaseChainParams::MAIN);
const auto testnetBaseParams = CreateBaseChainParams(CBaseChainParams::TESTNET);
const auto regtestBaseParams = CreateBaseChainParams(CBaseChainParams::REGTEST);
gArgs.AddArg("-version", "Print version and exit", false, OptionsCategory::OPTIONS);
gArgs.AddArg("-conf=<file>", strprintf("Specify configuration file. Relative paths will be prefixed by datadir location. (default: %s)", BITCOIN_CONF_FILENAME), false, OptionsCategory::OPTIONS);
gArgs.AddArg("-datadir=<dir>", "Specify data directory", false, OptionsCategory::OPTIONS);
gArgs.AddArg("-getinfo", "Get general information from the remote server. Note that unlike server-side RPC calls, the results of -getinfo is the result of multiple non-atomic requests. Some entries in the result may represent results from different states (e.g. wallet balance may be as of a different block from the chain state reported)", false, OptionsCategory::OPTIONS);
SetupChainParamsBaseOptions();
gArgs.AddArg("-named", strprintf("Pass named instead of positional arguments (default: %s)", DEFAULT_NAMED), false, OptionsCategory::OPTIONS);
gArgs.AddArg("-rpcclienttimeout=<n>", strprintf("Timeout in seconds during HTTP requests, or 0 for no timeout. (default: %d)", DEFAULT_HTTP_CLIENT_TIMEOUT), false, OptionsCategory::OPTIONS);
gArgs.AddArg("-rpcconnect=<ip>", strprintf("Send commands to node running on <ip> (default: %s)", DEFAULT_RPCCONNECT), false, OptionsCategory::OPTIONS);
gArgs.AddArg("-rpccookiefile=<loc>", "Location of the auth cookie. Relative paths will be prefixed by a net-specific datadir location. (default: data dir)", false, OptionsCategory::OPTIONS);
gArgs.AddArg("-rpcpassword=<pw>", "Password for JSON-RPC connections", false, OptionsCategory::OPTIONS);
gArgs.AddArg("-rpcport=<port>", strprintf("Connect to JSON-RPC on <port> (default: %u, testnet: %u, regtest: %u)", defaultBaseParams->RPCPort(), testnetBaseParams->RPCPort(), regtestBaseParams->RPCPort()), false, OptionsCategory::OPTIONS);
gArgs.AddArg("-rpcuser=<user>", "Username for JSON-RPC connections", false, OptionsCategory::OPTIONS);
gArgs.AddArg("-rpcwait", "Wait for RPC server to start", false, OptionsCategory::OPTIONS);
gArgs.AddArg("-rpcwallet=<walletname>", "Send RPC for non-default wallet on RPC server (needs to exactly match corresponding -wallet option passed to buildcoinsd). This changes the RPC endpoint used, e.g. http://127.0.0.1:9332/wallet/<walletname>", false, OptionsCategory::OPTIONS);
gArgs.AddArg("-stdin", "Read extra arguments from standard input, one per line until EOF/Ctrl-D (recommended for sensitive information such as passphrases). When combined with -stdinrpcpass, the first line from standard input is used for the RPC password.", false, OptionsCategory::OPTIONS);
gArgs.AddArg("-stdinrpcpass", "Read RPC password from standard input as a single line. When combined with -stdin, the first line from standard input is used for the RPC password.", false, OptionsCategory::OPTIONS);
}
/** libevent event log callback */
static void libevent_log_cb(int severity, const char *msg)
{
#ifndef EVENT_LOG_ERR // EVENT_LOG_ERR was added in 2.0.19; but before then _EVENT_LOG_ERR existed.
# define EVENT_LOG_ERR _EVENT_LOG_ERR
#endif
// Ignore everything other than errors
if (severity >= EVENT_LOG_ERR) {
throw std::runtime_error(strprintf("libevent error: %s", msg));
}
}
//////////////////////////////////////////////////////////////////////////////
//
// Start
//
//
// Exception thrown on connection error. This error is used to determine
// when to wait if -rpcwait is given.
//
class CConnectionFailed : public std::runtime_error
{
public:
explicit inline CConnectionFailed(const std::string& msg) :
std::runtime_error(msg)
{}
};
//
// This function returns either one of EXIT_ codes when it's expected to stop the process or
// CONTINUE_EXECUTION when it's expected to continue further.
//
static int AppInitRPC(int argc, char* argv[])
{
//
// Parameters
//
SetupCliArgs();
std::string error;
if (!gArgs.ParseParameters(argc, argv, error)) {
tfm::format(std::cerr, "Error parsing command line arguments: %s\n", error.c_str());
return EXIT_FAILURE;
}
if (argc < 2 || HelpRequested(gArgs) || gArgs.IsArgSet("-version")) {
std::string strUsage = PACKAGE_NAME " RPC client version " + FormatFullVersion() + "\n";
if (!gArgs.IsArgSet("-version")) {
strUsage += "\n"
"Usage: buildcoins-cli [options] <command> [params] Send command to " PACKAGE_NAME "\n"
"or: buildcoins-cli [options] -named <command> [name=value]... Send command to " PACKAGE_NAME " (with named arguments)\n"
"or: buildcoins-cli [options] help List commands\n"
"or: buildcoins-cli [options] help <command> Get help for a command\n";
strUsage += "\n" + gArgs.GetHelpMessage();
}
tfm::format(std::cout, "%s", strUsage.c_str());
if (argc < 2) {
tfm::format(std::cerr, "Error: too few parameters\n");
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
if (!fs::is_directory(GetDataDir(false))) {
tfm::format(std::cerr, "Error: Specified data directory \"%s\" does not exist.\n", gArgs.GetArg("-datadir", "").c_str());
return EXIT_FAILURE;
}
if (!gArgs.ReadConfigFiles(error, true)) {
tfm::format(std::cerr, "Error reading configuration file: %s\n", error.c_str());
return EXIT_FAILURE;
}
// Check for -testnet or -regtest parameter (BaseParams() calls are only valid after this clause)
try {
SelectBaseParams(gArgs.GetChainName());
} catch (const std::exception& e) {
tfm::format(std::cerr, "Error: %s\n", e.what());
return EXIT_FAILURE;
}
return CONTINUE_EXECUTION;
}
/** Reply structure for request_done to fill in */
struct HTTPReply
{
HTTPReply(): status(0), error(-1) {}
int status;
int error;
std::string body;
};
static const char *http_errorstring(int code)
{
switch(code) {
#if LIBEVENT_VERSION_NUMBER >= 0x02010300
case EVREQ_HTTP_TIMEOUT:
return "timeout reached";
case EVREQ_HTTP_EOF:
return "EOF reached";
case EVREQ_HTTP_INVALID_HEADER:
return "error while reading header, or invalid header";
case EVREQ_HTTP_BUFFER_ERROR:
return "error encountered while reading or writing";
case EVREQ_HTTP_REQUEST_CANCEL:
return "request was canceled";
case EVREQ_HTTP_DATA_TOO_LONG:
return "response body is larger than allowed";
#endif
default:
return "unknown";
}
}
static void http_request_done(struct evhttp_request *req, void *ctx)
{
HTTPReply *reply = static_cast<HTTPReply*>(ctx);
if (req == nullptr) {
/* If req is nullptr, it means an error occurred while connecting: the
* error code will have been passed to http_error_cb.
*/
reply->status = 0;
return;
}
reply->status = evhttp_request_get_response_code(req);
struct evbuffer *buf = evhttp_request_get_input_buffer(req);
if (buf)
{
size_t size = evbuffer_get_length(buf);
const char *data = (const char*)evbuffer_pullup(buf, size);
if (data)
reply->body = std::string(data, size);
evbuffer_drain(buf, size);
}
}
#if LIBEVENT_VERSION_NUMBER >= 0x02010300
static void http_error_cb(enum evhttp_request_error err, void *ctx)
{
HTTPReply *reply = static_cast<HTTPReply*>(ctx);
reply->error = err;
}
#endif
/** Class that handles the conversion from a command-line to a JSON-RPC request,
* as well as converting back to a JSON object that can be shown as result.
*/
class BaseRequestHandler
{
public:
virtual ~BaseRequestHandler() {}
virtual UniValue PrepareRequest(const std::string& method, const std::vector<std::string>& args) = 0;
virtual UniValue ProcessReply(const UniValue &batch_in) = 0;
};
/** Process getinfo requests */
class GetinfoRequestHandler: public BaseRequestHandler
{
public:
const int ID_NETWORKINFO = 0;
const int ID_BLOCKCHAININFO = 1;
const int ID_WALLETINFO = 2;
/** Create a simulated `getinfo` request. */
UniValue PrepareRequest(const std::string& method, const std::vector<std::string>& args) override
{
if (!args.empty()) {
throw std::runtime_error("-getinfo takes no arguments");
}
UniValue result(UniValue::VARR);
result.push_back(JSONRPCRequestObj("getnetworkinfo", NullUniValue, ID_NETWORKINFO));
result.push_back(JSONRPCRequestObj("getblockchaininfo", NullUniValue, ID_BLOCKCHAININFO));
result.push_back(JSONRPCRequestObj("getwalletinfo", NullUniValue, ID_WALLETINFO));
return result;
}
/** Collect values from the batch and form a simulated `getinfo` reply. */
UniValue ProcessReply(const UniValue &batch_in) override
{
UniValue result(UniValue::VOBJ);
std::vector<UniValue> batch = JSONRPCProcessBatchReply(batch_in, 3);
// Errors in getnetworkinfo() and getblockchaininfo() are fatal, pass them on
// getwalletinfo() is allowed to fail in case there is no wallet.
if (!batch[ID_NETWORKINFO]["error"].isNull()) {
return batch[ID_NETWORKINFO];
}
if (!batch[ID_BLOCKCHAININFO]["error"].isNull()) {
return batch[ID_BLOCKCHAININFO];
}
result.pushKV("version", batch[ID_NETWORKINFO]["result"]["version"]);
result.pushKV("protocolversion", batch[ID_NETWORKINFO]["result"]["protocolversion"]);
if (!batch[ID_WALLETINFO].isNull()) {
result.pushKV("walletversion", batch[ID_WALLETINFO]["result"]["walletversion"]);
result.pushKV("balance", batch[ID_WALLETINFO]["result"]["balance"]);
}
result.pushKV("blocks", batch[ID_BLOCKCHAININFO]["result"]["blocks"]);
result.pushKV("timeoffset", batch[ID_NETWORKINFO]["result"]["timeoffset"]);
result.pushKV("connections", batch[ID_NETWORKINFO]["result"]["connections"]);
result.pushKV("proxy", batch[ID_NETWORKINFO]["result"]["networks"][0]["proxy"]);
result.pushKV("difficulty", batch[ID_BLOCKCHAININFO]["result"]["difficulty"]);
result.pushKV("testnet", UniValue(batch[ID_BLOCKCHAININFO]["result"]["chain"].get_str() == "test"));
if (!batch[ID_WALLETINFO].isNull()) {
result.pushKV("walletversion", batch[ID_WALLETINFO]["result"]["walletversion"]);
result.pushKV("balance", batch[ID_WALLETINFO]["result"]["balance"]);
result.pushKV("keypoololdest", batch[ID_WALLETINFO]["result"]["keypoololdest"]);
result.pushKV("keypoolsize", batch[ID_WALLETINFO]["result"]["keypoolsize"]);
if (!batch[ID_WALLETINFO]["result"]["unlocked_until"].isNull()) {
result.pushKV("unlocked_until", batch[ID_WALLETINFO]["result"]["unlocked_until"]);
}
result.pushKV("paytxfee", batch[ID_WALLETINFO]["result"]["paytxfee"]);
}
result.pushKV("relayfee", batch[ID_NETWORKINFO]["result"]["relayfee"]);
result.pushKV("warnings", batch[ID_NETWORKINFO]["result"]["warnings"]);
return JSONRPCReplyObj(result, NullUniValue, 1);
}
};
/** Process default single requests */
class DefaultRequestHandler: public BaseRequestHandler {
public:
UniValue PrepareRequest(const std::string& method, const std::vector<std::string>& args) override
{
UniValue params;
if(gArgs.GetBoolArg("-named", DEFAULT_NAMED)) {
params = RPCConvertNamedValues(method, args);
} else {
params = RPCConvertValues(method, args);
}
return JSONRPCRequestObj(method, params, 1);
}
UniValue ProcessReply(const UniValue &reply) override
{
return reply.get_obj();
}
};
static UniValue CallRPC(BaseRequestHandler *rh, const std::string& strMethod, const std::vector<std::string>& args)
{
std::string host;
// In preference order, we choose the following for the port:
// 1. -rpcport
// 2. port in -rpcconnect (ie following : in ipv4 or ]: in ipv6)
// 3. default port for chain
int port = BaseParams().RPCPort();
SplitHostPort(gArgs.GetArg("-rpcconnect", DEFAULT_RPCCONNECT), port, host);
port = gArgs.GetArg("-rpcport", port);
// Obtain event base
raii_event_base base = obtain_event_base();
// Synchronously look up hostname
raii_evhttp_connection evcon = obtain_evhttp_connection_base(base.get(), host, port);
evhttp_connection_set_timeout(evcon.get(), gArgs.GetArg("-rpcclienttimeout", DEFAULT_HTTP_CLIENT_TIMEOUT));
HTTPReply response;
raii_evhttp_request req = obtain_evhttp_request(http_request_done, (void*)&response);
if (req == nullptr)
throw std::runtime_error("create http request failed");
#if LIBEVENT_VERSION_NUMBER >= 0x02010300
evhttp_request_set_error_cb(req.get(), http_error_cb);
#endif
// Get credentials
std::string strRPCUserColonPass;
bool failedToGetAuthCookie = false;
if (gArgs.GetArg("-rpcpassword", "") == "") {
// Try fall back to cookie-based authentication if no password is provided
if (!GetAuthCookie(&strRPCUserColonPass)) {
failedToGetAuthCookie = true;
}
} else {
strRPCUserColonPass = gArgs.GetArg("-rpcuser", "") + ":" + gArgs.GetArg("-rpcpassword", "");
}
struct evkeyvalq* output_headers = evhttp_request_get_output_headers(req.get());
assert(output_headers);
evhttp_add_header(output_headers, "Host", host.c_str());
evhttp_add_header(output_headers, "Connection", "close");
evhttp_add_header(output_headers, "Authorization", (std::string("Basic ") + EncodeBase64(strRPCUserColonPass)).c_str());
// Attach request data
std::string strRequest = rh->PrepareRequest(strMethod, args).write() + "\n";
struct evbuffer* output_buffer = evhttp_request_get_output_buffer(req.get());
assert(output_buffer);
evbuffer_add(output_buffer, strRequest.data(), strRequest.size());
// check if we should use a special wallet endpoint
std::string endpoint = "/";
if (!gArgs.GetArgs("-rpcwallet").empty()) {
std::string walletName = gArgs.GetArg("-rpcwallet", "");
char *encodedURI = evhttp_uriencode(walletName.c_str(), walletName.size(), false);
if (encodedURI) {
endpoint = "/wallet/"+ std::string(encodedURI);
free(encodedURI);
}
else {
throw CConnectionFailed("uri-encode failed");
}
}
int r = evhttp_make_request(evcon.get(), req.get(), EVHTTP_REQ_POST, endpoint.c_str());
req.release(); // ownership moved to evcon in above call
if (r != 0) {
throw CConnectionFailed("send http request failed");
}
event_base_dispatch(base.get());
if (response.status == 0) {
std::string responseErrorMessage;
if (response.error != -1) {
responseErrorMessage = strprintf(" (error code %d - \"%s\")", response.error, http_errorstring(response.error));
}
throw CConnectionFailed(strprintf("Could not connect to the server %s:%d%s\n\nMake sure the buildcoinsd server is running and that you are connecting to the correct RPC port.", host, port, responseErrorMessage));
} else if (response.status == HTTP_UNAUTHORIZED) {
if (failedToGetAuthCookie) {
throw std::runtime_error(strprintf(
"Could not locate RPC credentials. No authentication cookie could be found, and RPC password is not set. See -rpcpassword and -stdinrpcpass. Configuration file: (%s)",
GetConfigFile(gArgs.GetArg("-conf", BITCOIN_CONF_FILENAME)).string().c_str()));
} else {
throw std::runtime_error("Authorization failed: Incorrect rpcuser or rpcpassword");
}
} else if (response.status >= 400 && response.status != HTTP_BAD_REQUEST && response.status != HTTP_NOT_FOUND && response.status != HTTP_INTERNAL_SERVER_ERROR)
throw std::runtime_error(strprintf("server returned HTTP error %d", response.status));
else if (response.body.empty())
throw std::runtime_error("no response from server");
// Parse reply
UniValue valReply(UniValue::VSTR);
if (!valReply.read(response.body))
throw std::runtime_error("couldn't parse reply from server");
const UniValue reply = rh->ProcessReply(valReply);
if (reply.empty())
throw std::runtime_error("expected reply to have result, error and id properties");
return reply;
}
static int CommandLineRPC(int argc, char *argv[])
{
std::string strPrint;
int nRet = 0;
try {
// Skip switches
while (argc > 1 && IsSwitchChar(argv[1][0])) {
argc--;
argv++;
}
std::string rpcPass;
if (gArgs.GetBoolArg("-stdinrpcpass", false)) {
if (!std::getline(std::cin, rpcPass)) {
throw std::runtime_error("-stdinrpcpass specified but failed to read from standard input");
}
gArgs.ForceSetArg("-rpcpassword", rpcPass);
}
std::vector<std::string> args = std::vector<std::string>(&argv[1], &argv[argc]);
if (gArgs.GetBoolArg("-stdin", false)) {
// Read one arg per line from stdin and append
std::string line;
while (std::getline(std::cin, line)) {
args.push_back(line);
}
}
std::unique_ptr<BaseRequestHandler> rh;
std::string method;
if (gArgs.GetBoolArg("-getinfo", false)) {
rh.reset(new GetinfoRequestHandler());
method = "";
} else {
rh.reset(new DefaultRequestHandler());
if (args.size() < 1) {
throw std::runtime_error("too few parameters (need at least command)");
}
method = args[0];
args.erase(args.begin()); // Remove trailing method name from arguments vector
}
// Execute and handle connection failures with -rpcwait
const bool fWait = gArgs.GetBoolArg("-rpcwait", false);
do {
try {
const UniValue reply = CallRPC(rh.get(), method, args);
// Parse reply
const UniValue& result = find_value(reply, "result");
const UniValue& error = find_value(reply, "error");
if (!error.isNull()) {
// Error
int code = error["code"].get_int();
if (fWait && code == RPC_IN_WARMUP)
throw CConnectionFailed("server in warmup");
strPrint = "error: " + error.write();
nRet = abs(code);
if (error.isObject())
{
UniValue errCode = find_value(error, "code");
UniValue errMsg = find_value(error, "message");
strPrint = errCode.isNull() ? "" : "error code: "+errCode.getValStr()+"\n";
if (errMsg.isStr())
strPrint += "error message:\n"+errMsg.get_str();
if (errCode.isNum() && errCode.get_int() == RPC_WALLET_NOT_SPECIFIED) {
strPrint += "\nTry adding \"-rpcwallet=<filename>\" option to buildcoins-cli command line.";
}
}
} else {
// Result
if (result.isNull())
strPrint = "";
else if (result.isStr())
strPrint = result.get_str();
else
strPrint = result.write(2);
}
// Connection succeeded, no need to retry.
break;
}
catch (const CConnectionFailed&) {
if (fWait)
MilliSleep(1000);
else
throw;
}
} while (fWait);
}
catch (const std::exception& e) {
strPrint = std::string("error: ") + e.what();
nRet = EXIT_FAILURE;
}
catch (...) {
PrintExceptionContinue(nullptr, "CommandLineRPC()");
throw;
}
if (strPrint != "") {
tfm::format(nRet == 0 ? std::cout : std::cerr, "%s\n", strPrint.c_str());
}
return nRet;
}
int main(int argc, char* argv[])
{
#ifdef WIN32
util::WinCmdLineArgs winArgs;
std::tie(argc, argv) = winArgs.get();
#endif
SetupEnvironment();
if (!SetupNetworking()) {
tfm::format(std::cerr, "Error: Initializing networking failed\n");
return EXIT_FAILURE;
}
event_set_log_callback(&libevent_log_cb);
try {
int ret = AppInitRPC(argc, argv);
if (ret != CONTINUE_EXECUTION)
return ret;
}
catch (const std::exception& e) {
PrintExceptionContinue(&e, "AppInitRPC()");
return EXIT_FAILURE;
} catch (...) {
PrintExceptionContinue(nullptr, "AppInitRPC()");
return EXIT_FAILURE;
}
int ret = EXIT_FAILURE;
try {
ret = CommandLineRPC(argc, argv);
}
catch (const std::exception& e) {
PrintExceptionContinue(&e, "CommandLineRPC()");
} catch (...) {
PrintExceptionContinue(nullptr, "CommandLineRPC()");
}
return ret;
}
| [
"[email protected]"
] | |
d2b532e53f8290bec8e452fcdfeb2b7034decf3e | f3a316a2f25b37793e1741295d7e932e3d8e7c09 | /source/test/intltest/ucharstrietest.cpp | ebb026df31505e3769ae443a039987b4157040e0 | [
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"NAIST-2003",
"BSD-3-Clause",
"LicenseRef-scancode-unicode",
"ICU",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | CdTCzech/ICU | 3cb59891b9efcbcfa5fb6e75d394d666561650a3 | 4c9b8dfefd9a26096f7642c556fa3b4bd887317e | refs/heads/master | 2023-03-01T19:23:09.347544 | 2021-02-09T13:01:11 | 2021-02-09T13:01:11 | 257,857,185 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 43,170 | cpp | // © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
* Copyright (C) 2010-2014, International Business Machines
* Corporation and others. All Rights Reserved.
*******************************************************************************
* file name: ucharstrietest.cpp
* encoding: UTF-8
* tab size: 8 (not used)
* indentation:4
*
* created on: 2010nov16
* created by: Markus W. Scherer
*/
#include <string.h>
#include "unicode/utypes.h"
#include "unicode/appendable.h"
#include "unicode/localpointer.h"
#include "unicode/ucharstrie.h"
#include "unicode/ucharstriebuilder.h"
#include "unicode/uniset.h"
#include "unicode/unistr.h"
#include "unicode/utf16.h"
#include "intltest.h"
#include "cmemory.h"
struct StringAndValue {
const char *s;
int32_t value;
};
class UCharsTrieTest : public IntlTest {
public:
UCharsTrieTest();
virtual ~UCharsTrieTest();
void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par=NULL);
void TestBuilder();
void TestEmpty();
void Test_a();
void Test_a_ab();
void TestShortestBranch();
void TestBranches();
void TestLongSequence();
void TestLongBranch();
void TestValuesForState();
void TestCompact();
void TestFirstForCodePoint();
void TestNextForCodePoint();
UCharsTrie *buildLargeTrie(int32_t numUniqueFirst);
void TestLargeTrie();
UCharsTrie *buildMonthsTrie(UStringTrieBuildOption buildOption);
void TestHasUniqueValue();
void TestGetNextUChars();
void TestIteratorFromBranch();
void TestIteratorFromLinearMatch();
void TestTruncatingIteratorFromRoot();
void TestTruncatingIteratorFromLinearMatchShort();
void TestTruncatingIteratorFromLinearMatchLong();
void TestIteratorFromUChars();
void checkData(const StringAndValue data[], int32_t dataLength);
void checkData(const StringAndValue data[], int32_t dataLength, UStringTrieBuildOption buildOption);
UCharsTrie *buildTrie(const StringAndValue data[], int32_t dataLength,
UStringTrieBuildOption buildOption);
void checkFirst(UCharsTrie &trie, const StringAndValue data[], int32_t dataLength);
void checkNext(UCharsTrie &trie, const StringAndValue data[], int32_t dataLength);
void checkNextWithState(UCharsTrie &trie, const StringAndValue data[], int32_t dataLength);
void checkNextWithState64(UCharsTrie &trie, const StringAndValue data[], int32_t dataLength);
void checkNextString(UCharsTrie &trie, const StringAndValue data[], int32_t dataLength);
void checkIterator(UCharsTrie &trie, const StringAndValue data[], int32_t dataLength);
void checkIterator(UCharsTrie::Iterator &iter, const StringAndValue data[], int32_t dataLength);
private:
UCharsTrieBuilder *builder_;
};
extern IntlTest *createUCharsTrieTest() {
return new UCharsTrieTest();
}
UCharsTrieTest::UCharsTrieTest() : builder_(NULL) {
IcuTestErrorCode errorCode(*this, "UCharsTrieTest()");
builder_=new UCharsTrieBuilder(errorCode);
}
UCharsTrieTest::~UCharsTrieTest() {
delete builder_;
}
void UCharsTrieTest::runIndexedTest(int32_t index, UBool exec, const char *&name, char * /*par*/) {
if(exec) {
logln("TestSuite UCharsTrieTest: ");
}
TESTCASE_AUTO_BEGIN;
TESTCASE_AUTO(TestBuilder);
TESTCASE_AUTO(TestEmpty);
TESTCASE_AUTO(Test_a);
TESTCASE_AUTO(Test_a_ab);
TESTCASE_AUTO(TestShortestBranch);
TESTCASE_AUTO(TestBranches);
TESTCASE_AUTO(TestLongSequence);
TESTCASE_AUTO(TestLongBranch);
TESTCASE_AUTO(TestValuesForState);
TESTCASE_AUTO(TestCompact);
TESTCASE_AUTO(TestFirstForCodePoint);
TESTCASE_AUTO(TestNextForCodePoint);
TESTCASE_AUTO(TestLargeTrie);
TESTCASE_AUTO(TestHasUniqueValue);
TESTCASE_AUTO(TestGetNextUChars);
TESTCASE_AUTO(TestIteratorFromBranch);
TESTCASE_AUTO(TestIteratorFromLinearMatch);
TESTCASE_AUTO(TestTruncatingIteratorFromRoot);
TESTCASE_AUTO(TestTruncatingIteratorFromLinearMatchShort);
TESTCASE_AUTO(TestTruncatingIteratorFromLinearMatchLong);
TESTCASE_AUTO(TestIteratorFromUChars);
TESTCASE_AUTO_END;
}
void UCharsTrieTest::TestBuilder() {
IcuTestErrorCode errorCode(*this, "TestBuilder()");
delete builder_->build(USTRINGTRIE_BUILD_FAST, errorCode);
if(errorCode.reset()!=U_INDEX_OUTOFBOUNDS_ERROR) {
errln("UCharsTrieBuilder().build() did not set U_INDEX_OUTOFBOUNDS_ERROR");
return;
}
// TODO: remove .build(...) once add() checks for duplicates.
builder_->add("=", 0, errorCode).add("=", 1, errorCode).build(USTRINGTRIE_BUILD_FAST, errorCode);
if(errorCode.reset()!=U_ILLEGAL_ARGUMENT_ERROR) {
errln("UCharsTrieBuilder.add() did not detect duplicates");
return;
}
}
void UCharsTrieTest::TestEmpty() {
static const StringAndValue data[]={
{ "", 0 }
};
checkData(data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::Test_a() {
static const StringAndValue data[]={
{ "a", 1 }
};
checkData(data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::Test_a_ab() {
static const StringAndValue data[]={
{ "a", 1 },
{ "ab", 100 }
};
checkData(data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::TestShortestBranch() {
static const StringAndValue data[]={
{ "a", 1000 },
{ "b", 2000 }
};
checkData(data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::TestBranches() {
static const StringAndValue data[]={
{ "a", 0x10 },
{ "cc", 0x40 },
{ "e", 0x100 },
{ "ggg", 0x400 },
{ "i", 0x1000 },
{ "kkkk", 0x4000 },
{ "n", 0x10000 },
{ "ppppp", 0x40000 },
{ "r", 0x100000 },
{ "sss", 0x200000 },
{ "t", 0x400000 },
{ "uu", 0x800000 },
{ "vv", 0x7fffffff },
{ "zz", (int32_t)0x80000000 }
};
for(int32_t length=2; length<=UPRV_LENGTHOF(data); ++length) {
logln("TestBranches length=%d", (int)length);
checkData(data, length);
}
}
void UCharsTrieTest::TestLongSequence() {
static const StringAndValue data[]={
{ "a", -1 },
// sequence of linear-match nodes
{ "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", -2 },
// more than 256 units
{ "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", -3 }
};
checkData(data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::TestLongBranch() {
// Split-branch and interesting compact-integer values.
static const StringAndValue data[]={
{ "a", -2 },
{ "b", -1 },
{ "c", 0 },
{ "d2", 1 },
{ "f", 0x3f },
{ "g", 0x40 },
{ "h", 0x41 },
{ "j23", 0x1900 },
{ "j24", 0x19ff },
{ "j25", 0x1a00 },
{ "k2", 0x1a80 },
{ "k3", 0x1aff },
{ "l234567890", 0x1b00 },
{ "l234567890123", 0x1b01 },
{ "nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn", 0x10ffff },
{ "oooooooooooooooooooooooooooooooooooooooooooooooooooooo", 0x110000 },
{ "pppppppppppppppppppppppppppppppppppppppppppppppppppppp", 0x120000 },
{ "r", 0x333333 },
{ "s2345", 0x4444444 },
{ "t234567890", 0x77777777 },
{ "z", (int32_t)0x80000001 }
};
checkData(data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::TestValuesForState() {
// Check that saveState() and resetToState() interact properly
// with next() and current().
static const StringAndValue data[]={
{ "a", -1 },
{ "ab", -2 },
{ "abc", -3 },
{ "abcd", -4 },
{ "abcde", -5 },
{ "abcdef", -6 }
};
checkData(data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::TestCompact() {
// Duplicate trailing strings and values provide opportunities for compacting.
static const StringAndValue data[]={
{ "+", 0 },
{ "+august", 8 },
{ "+december", 12 },
{ "+july", 7 },
{ "+june", 6 },
{ "+november", 11 },
{ "+october", 10 },
{ "+september", 9 },
{ "-", 0 },
{ "-august", 8 },
{ "-december", 12 },
{ "-july", 7 },
{ "-june", 6 },
{ "-november", 11 },
{ "-october", 10 },
{ "-september", 9 },
// The l+n branch (with its sub-nodes) is a duplicate but will be written
// both times because each time it follows a different linear-match node.
{ "xjuly", 7 },
{ "xjune", 6 }
};
checkData(data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::TestFirstForCodePoint() {
static const StringAndValue data[]={
{ "a", 1 },
{ "a\\ud800", 2 },
{ "a\\U00010000", 3 },
{ "\\ud840", 4 },
{ "\\U00020000\\udbff", 5 },
{ "\\U00020000\\U0010ffff", 6 },
{ "\\U00020000\\U0010ffffz", 7 },
{ "\\U00050000xy", 8 },
{ "\\U00050000xyz", 9 }
};
checkData(data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::TestNextForCodePoint() {
static const StringAndValue data[]={
{ "\\u4dff\\U00010000\\u9999\\U00020000\\udfff\\U0010ffff", 2000000000 },
{ "\\u4dff\\U00010000\\u9999\\U00020002", 44444 },
{ "\\u4dff\\U000103ff", 99999 }
};
LocalPointer<UCharsTrie> trie(buildTrie(data, UPRV_LENGTHOF(data), USTRINGTRIE_BUILD_FAST));
if(trie.isNull()) {
return; // buildTrie() reported an error
}
UStringTrieResult result;
if( (result=trie->nextForCodePoint(0x4dff))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
(result=trie->nextForCodePoint(0x10000))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
(result=trie->nextForCodePoint(0x9999))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
(result=trie->nextForCodePoint(0x20000))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
(result=trie->nextForCodePoint(0xdfff))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
(result=trie->nextForCodePoint(0x10ffff))!=USTRINGTRIE_FINAL_VALUE || result!=trie->current() ||
trie->getValue()!=2000000000
) {
errln("UCharsTrie.nextForCodePoint() fails for %s", data[0].s);
}
if( (result=trie->firstForCodePoint(0x4dff))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
(result=trie->nextForCodePoint(0x10000))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
(result=trie->nextForCodePoint(0x9999))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
(result=trie->nextForCodePoint(0x20002))!=USTRINGTRIE_FINAL_VALUE || result!=trie->current() ||
trie->getValue()!=44444
) {
errln("UCharsTrie.nextForCodePoint() fails for %s", data[1].s);
}
if( (result=trie->reset().nextForCodePoint(0x4dff))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
(result=trie->nextForCodePoint(0x10000))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
(result=trie->nextForCodePoint(0x9999))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
(result=trie->nextForCodePoint(0x20222))!=USTRINGTRIE_NO_MATCH || result!=trie->current() // no match for trail surrogate
) {
errln("UCharsTrie.nextForCodePoint() fails for \\u4dff\\U00010000\\u9999\\U00020222");
}
if( (result=trie->reset().nextForCodePoint(0x4dff))!=USTRINGTRIE_NO_VALUE || result!=trie->current() ||
(result=trie->nextForCodePoint(0x103ff))!=USTRINGTRIE_FINAL_VALUE || result!=trie->current() ||
trie->getValue()!=99999
) {
errln("UCharsTrie.nextForCodePoint() fails for %s", data[2].s);
}
}
// Definitions in the anonymous namespace are invisible outside this file.
namespace {
// Generate (string, value) pairs.
// The first string (before next()) will be empty.
class Generator {
public:
Generator() : value(4711), num(0) {}
void next() {
UChar c;
s.truncate(0);
s.append(c=(UChar)(value>>16));
s.append((UChar)(value>>4));
if(value&1) {
s.append((UChar)value);
}
set.add(c);
value+=((value>>5)&0x7ff)*3+1;
++num;
}
const UnicodeString &getString() const { return s; }
int32_t getValue() const { return value; }
int32_t countUniqueFirstChars() const { return set.size(); }
int32_t getIndex() const { return num; }
private:
UnicodeString s;
UnicodeSet set;
int32_t value;
int32_t num;
};
} // end namespace
UCharsTrie *UCharsTrieTest::buildLargeTrie(int32_t numUniqueFirst) {
IcuTestErrorCode errorCode(*this, "buildLargeTrie()");
Generator gen;
builder_->clear();
while(gen.countUniqueFirstChars()<numUniqueFirst) {
builder_->add(gen.getString(), gen.getValue(), errorCode);
gen.next();
}
logln("buildLargeTrie(%ld) added %ld strings", (long)numUniqueFirst, (long)gen.getIndex());
UnicodeString trieUChars;
builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode);
logln("serialized trie size: %ld UChars\n", (long)trieUChars.length());
return new UCharsTrie(trieUChars.getBuffer());
}
// Exercise a large branch node.
void UCharsTrieTest::TestLargeTrie() {
LocalPointer<UCharsTrie> trie(buildLargeTrie(1111));
if(trie.isNull()) {
return; // buildTrie() reported an error
}
Generator gen;
while(gen.countUniqueFirstChars()<1111) {
UnicodeString x(gen.getString());
int32_t value=gen.getValue();
if(!x.isEmpty()) {
if(trie->first(x[0])==USTRINGTRIE_NO_MATCH) {
errln("first(first char U+%04X)=USTRINGTRIE_NO_MATCH for string %ld\n",
x[0], (long)gen.getIndex());
break;
}
x.remove(0, 1);
}
UStringTrieResult result=trie->next(x.getBuffer(), x.length());
if(!USTRINGTRIE_HAS_VALUE(result) || result!=trie->current() || value!=trie->getValue()) {
errln("next(%d chars U+%04X U+%04X)!=hasValue or "
"next()!=current() or getValue() wrong "
"for string %ld\n", (int)x.length(), x[0], x[1], (long)gen.getIndex());
break;
}
gen.next();
}
}
enum {
u_a=0x61,
u_b=0x62,
u_c=0x63,
u_j=0x6a,
u_n=0x6e,
u_r=0x72,
u_u=0x75,
u_y=0x79
};
UCharsTrie *UCharsTrieTest::buildMonthsTrie(UStringTrieBuildOption buildOption) {
// All types of nodes leading to the same value,
// for code coverage of recursive functions.
// In particular, we need a lot of branches on some single level
// to exercise a split-branch node.
static const StringAndValue data[]={
{ "august", 8 },
{ "jan", 1 },
{ "jan.", 1 },
{ "jana", 1 },
{ "janbb", 1 },
{ "janc", 1 },
{ "janddd", 1 },
{ "janee", 1 },
{ "janef", 1 },
{ "janf", 1 },
{ "jangg", 1 },
{ "janh", 1 },
{ "janiiii", 1 },
{ "janj", 1 },
{ "jankk", 1 },
{ "jankl", 1 },
{ "jankmm", 1 },
{ "janl", 1 },
{ "janm", 1 },
{ "jannnnnnnnnnnnnnnnnnnnnnnnnnnnn", 1 },
{ "jano", 1 },
{ "janpp", 1 },
{ "janqqq", 1 },
{ "janr", 1 },
{ "januar", 1 },
{ "january", 1 },
{ "july", 7 },
{ "jun", 6 },
{ "jun.", 6 },
{ "june", 6 }
};
return buildTrie(data, UPRV_LENGTHOF(data), buildOption);
}
void UCharsTrieTest::TestHasUniqueValue() {
LocalPointer<UCharsTrie> trie(buildMonthsTrie(USTRINGTRIE_BUILD_FAST));
if(trie.isNull()) {
return; // buildTrie() reported an error
}
int32_t uniqueValue;
if(trie->hasUniqueValue(uniqueValue)) {
errln("unique value at root");
}
trie->next(u_j);
trie->next(u_a);
trie->next(u_n);
// hasUniqueValue() directly after next()
if(!trie->hasUniqueValue(uniqueValue) || uniqueValue!=1) {
errln("not unique value 1 after \"jan\"");
}
trie->first(u_j);
trie->next(u_u);
if(trie->hasUniqueValue(uniqueValue)) {
errln("unique value after \"ju\"");
}
if(trie->next(u_n)!=USTRINGTRIE_INTERMEDIATE_VALUE || 6!=trie->getValue()) {
errln("not normal value 6 after \"jun\"");
}
// hasUniqueValue() after getValue()
if(!trie->hasUniqueValue(uniqueValue) || uniqueValue!=6) {
errln("not unique value 6 after \"jun\"");
}
// hasUniqueValue() from within a linear-match node
trie->first(u_a);
trie->next(u_u);
if(!trie->hasUniqueValue(uniqueValue) || uniqueValue!=8) {
errln("not unique value 8 after \"au\"");
}
}
void UCharsTrieTest::TestGetNextUChars() {
LocalPointer<UCharsTrie> trie(buildMonthsTrie(USTRINGTRIE_BUILD_SMALL));
if(trie.isNull()) {
return; // buildTrie() reported an error
}
UnicodeString buffer;
UnicodeStringAppendable app(buffer);
int32_t count=trie->getNextUChars(app);
if(count!=2 || buffer.length()!=2 || buffer[0]!=u_a || buffer[1]!=u_j) {
errln("months getNextUChars()!=[aj] at root");
}
trie->next(u_j);
trie->next(u_a);
trie->next(u_n);
// getNextUChars() directly after next()
buffer.remove();
count=trie->getNextUChars(app);
if(count!=20 || buffer!=UNICODE_STRING_SIMPLE(".abcdefghijklmnopqru")) {
errln("months getNextUChars()!=[.abcdefghijklmnopqru] after \"jan\"");
}
// getNextUChars() after getValue()
trie->getValue(); // next() had returned USTRINGTRIE_INTERMEDIATE_VALUE.
buffer.remove();
count=trie->getNextUChars(app);
if(count!=20 || buffer!=UNICODE_STRING_SIMPLE(".abcdefghijklmnopqru")) {
errln("months getNextUChars()!=[.abcdefghijklmnopqru] after \"jan\"+getValue()");
}
// getNextUChars() from a linear-match node
trie->next(u_u);
buffer.remove();
count=trie->getNextUChars(app);
if(count!=1 || buffer.length()!=1 || buffer[0]!=u_a) {
errln("months getNextUChars()!=[a] after \"janu\"");
}
trie->next(u_a);
buffer.remove();
count=trie->getNextUChars(app);
if(count!=1 || buffer.length()!=1 || buffer[0]!=u_r) {
errln("months getNextUChars()!=[r] after \"janua\"");
}
trie->next(u_r);
trie->next(u_y);
// getNextUChars() after a final match
buffer.remove();
count=trie->getNextUChars(app);
if(count!=0 || buffer.length()!=0) {
errln("months getNextUChars()!=[] after \"january\"");
}
}
void UCharsTrieTest::TestIteratorFromBranch() {
LocalPointer<UCharsTrie> trie(buildMonthsTrie(USTRINGTRIE_BUILD_FAST));
if(trie.isNull()) {
return; // buildTrie() reported an error
}
// Go to a branch node.
trie->next(u_j);
trie->next(u_a);
trie->next(u_n);
IcuTestErrorCode errorCode(*this, "TestIteratorFromBranch()");
UCharsTrie::Iterator iter(*trie, 0, errorCode);
if(errorCode.errIfFailureAndReset("UCharsTrie::Iterator(trie) constructor")) {
return;
}
// Expected data: Same as in buildMonthsTrie(), except only the suffixes
// following "jan".
static const StringAndValue data[]={
{ "", 1 },
{ ".", 1 },
{ "a", 1 },
{ "bb", 1 },
{ "c", 1 },
{ "ddd", 1 },
{ "ee", 1 },
{ "ef", 1 },
{ "f", 1 },
{ "gg", 1 },
{ "h", 1 },
{ "iiii", 1 },
{ "j", 1 },
{ "kk", 1 },
{ "kl", 1 },
{ "kmm", 1 },
{ "l", 1 },
{ "m", 1 },
{ "nnnnnnnnnnnnnnnnnnnnnnnnnnnn", 1 },
{ "o", 1 },
{ "pp", 1 },
{ "qqq", 1 },
{ "r", 1 },
{ "uar", 1 },
{ "uary", 1 }
};
checkIterator(iter, data, UPRV_LENGTHOF(data));
// Reset, and we should get the same result.
logln("after iter.reset()");
checkIterator(iter.reset(), data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::TestIteratorFromLinearMatch() {
LocalPointer<UCharsTrie> trie(buildMonthsTrie(USTRINGTRIE_BUILD_SMALL));
if(trie.isNull()) {
return; // buildTrie() reported an error
}
// Go into a linear-match node.
trie->next(u_j);
trie->next(u_a);
trie->next(u_n);
trie->next(u_u);
trie->next(u_a);
IcuTestErrorCode errorCode(*this, "TestIteratorFromLinearMatch()");
UCharsTrie::Iterator iter(*trie, 0, errorCode);
if(errorCode.errIfFailureAndReset("UCharsTrie::Iterator(trie) constructor")) {
return;
}
// Expected data: Same as in buildMonthsTrie(), except only the suffixes
// following "janua".
static const StringAndValue data[]={
{ "r", 1 },
{ "ry", 1 }
};
checkIterator(iter, data, UPRV_LENGTHOF(data));
// Reset, and we should get the same result.
logln("after iter.reset()");
checkIterator(iter.reset(), data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::TestTruncatingIteratorFromRoot() {
LocalPointer<UCharsTrie> trie(buildMonthsTrie(USTRINGTRIE_BUILD_FAST));
if(trie.isNull()) {
return; // buildTrie() reported an error
}
IcuTestErrorCode errorCode(*this, "TestTruncatingIteratorFromRoot()");
UCharsTrie::Iterator iter(*trie, 4, errorCode);
if(errorCode.errIfFailureAndReset("UCharsTrie::Iterator(trie) constructor")) {
return;
}
// Expected data: Same as in buildMonthsTrie(), except only the first 4 characters
// of each string, and no string duplicates from the truncation.
static const StringAndValue data[]={
{ "augu", -1 },
{ "jan", 1 },
{ "jan.", 1 },
{ "jana", 1 },
{ "janb", -1 },
{ "janc", 1 },
{ "jand", -1 },
{ "jane", -1 },
{ "janf", 1 },
{ "jang", -1 },
{ "janh", 1 },
{ "jani", -1 },
{ "janj", 1 },
{ "jank", -1 },
{ "janl", 1 },
{ "janm", 1 },
{ "jann", -1 },
{ "jano", 1 },
{ "janp", -1 },
{ "janq", -1 },
{ "janr", 1 },
{ "janu", -1 },
{ "july", 7 },
{ "jun", 6 },
{ "jun.", 6 },
{ "june", 6 }
};
checkIterator(iter, data, UPRV_LENGTHOF(data));
// Reset, and we should get the same result.
logln("after iter.reset()");
checkIterator(iter.reset(), data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::TestTruncatingIteratorFromLinearMatchShort() {
static const StringAndValue data[]={
{ "abcdef", 10 },
{ "abcdepq", 200 },
{ "abcdeyz", 3000 }
};
LocalPointer<UCharsTrie> trie(buildTrie(data, UPRV_LENGTHOF(data), USTRINGTRIE_BUILD_FAST));
if(trie.isNull()) {
return; // buildTrie() reported an error
}
// Go into a linear-match node.
trie->next(u_a);
trie->next(u_b);
IcuTestErrorCode errorCode(*this, "TestTruncatingIteratorFromLinearMatchShort()");
// Truncate within the linear-match node.
UCharsTrie::Iterator iter(*trie, 2, errorCode);
if(errorCode.errIfFailureAndReset("UCharsTrie::Iterator(trie) constructor")) {
return;
}
static const StringAndValue expected[]={
{ "cd", -1 }
};
checkIterator(iter, expected, UPRV_LENGTHOF(expected));
// Reset, and we should get the same result.
logln("after iter.reset()");
checkIterator(iter.reset(), expected, UPRV_LENGTHOF(expected));
}
void UCharsTrieTest::TestTruncatingIteratorFromLinearMatchLong() {
static const StringAndValue data[]={
{ "abcdef", 10 },
{ "abcdepq", 200 },
{ "abcdeyz", 3000 }
};
LocalPointer<UCharsTrie> trie(buildTrie(data, UPRV_LENGTHOF(data), USTRINGTRIE_BUILD_FAST));
if(trie.isNull()) {
return; // buildTrie() reported an error
}
// Go into a linear-match node.
trie->next(u_a);
trie->next(u_b);
trie->next(u_c);
IcuTestErrorCode errorCode(*this, "TestTruncatingIteratorFromLinearMatchLong()");
// Truncate after the linear-match node.
UCharsTrie::Iterator iter(*trie, 3, errorCode);
if(errorCode.errIfFailureAndReset("UCharsTrie::Iterator(trie) constructor")) {
return;
}
static const StringAndValue expected[]={
{ "def", 10 },
{ "dep", -1 },
{ "dey", -1 }
};
checkIterator(iter, expected, UPRV_LENGTHOF(expected));
// Reset, and we should get the same result.
logln("after iter.reset()");
checkIterator(iter.reset(), expected, UPRV_LENGTHOF(expected));
}
void UCharsTrieTest::TestIteratorFromUChars() {
static const StringAndValue data[]={
{ "mm", 3 },
{ "mmm", 33 },
{ "mmnop", 333 }
};
builder_->clear();
IcuTestErrorCode errorCode(*this, "TestIteratorFromUChars()");
for(int32_t i=0; i<UPRV_LENGTHOF(data); ++i) {
builder_->add(data[i].s, data[i].value, errorCode);
}
UnicodeString trieUChars;
builder_->buildUnicodeString(USTRINGTRIE_BUILD_FAST, trieUChars, errorCode);
UCharsTrie::Iterator iter(trieUChars.getBuffer(), 0, errorCode);
checkIterator(iter, data, UPRV_LENGTHOF(data));
}
void UCharsTrieTest::checkData(const StringAndValue data[], int32_t dataLength) {
logln("checkData(dataLength=%d, fast)", (int)dataLength);
checkData(data, dataLength, USTRINGTRIE_BUILD_FAST);
logln("checkData(dataLength=%d, small)", (int)dataLength);
checkData(data, dataLength, USTRINGTRIE_BUILD_SMALL);
}
void UCharsTrieTest::checkData(const StringAndValue data[], int32_t dataLength, UStringTrieBuildOption buildOption) {
LocalPointer<UCharsTrie> trie(buildTrie(data, dataLength, buildOption));
if(trie.isNull()) {
return; // buildTrie() reported an error
}
checkFirst(*trie, data, dataLength);
checkNext(*trie, data, dataLength);
checkNextWithState(*trie, data, dataLength);
checkNextWithState64(*trie, data, dataLength);
checkNextString(*trie, data, dataLength);
checkIterator(*trie, data, dataLength);
}
UCharsTrie *UCharsTrieTest::buildTrie(const StringAndValue data[], int32_t dataLength,
UStringTrieBuildOption buildOption) {
IcuTestErrorCode errorCode(*this, "buildTrie()");
// Add the items to the trie builder in an interesting (not trivial, not random) order.
int32_t index, step;
if(dataLength&1) {
// Odd number of items.
index=dataLength/2;
step=2;
} else if((dataLength%3)!=0) {
// Not a multiple of 3.
index=dataLength/5;
step=3;
} else {
index=dataLength-1;
step=-1;
}
builder_->clear();
for(int32_t i=0; i<dataLength; ++i) {
builder_->add(UnicodeString(data[index].s, -1, US_INV).unescape(),
data[index].value, errorCode);
index=(index+step)%dataLength;
}
UnicodeString trieUChars;
builder_->buildUnicodeString(buildOption, trieUChars, errorCode);
LocalPointer<UCharsTrie> trie(builder_->build(buildOption, errorCode));
if(!errorCode.errIfFailureAndReset("add()/build()")) {
builder_->add("zzz", 999, errorCode);
if(errorCode.reset()!=U_NO_WRITE_PERMISSION) {
errln("builder.build().add(zzz) did not set U_NO_WRITE_PERMISSION");
}
}
logln("serialized trie size: %ld UChars\n", (long)trieUChars.length());
UnicodeString trieUChars2;
builder_->buildUnicodeString(buildOption, trieUChars2, errorCode);
if(trieUChars.getBuffer()==trieUChars2.getBuffer()) {
errln("builder.buildUnicodeString() before & after build() returned same array");
}
if(errorCode.isFailure()) {
return NULL;
}
// Tries from either build() method should be identical but
// UCharsTrie does not implement equals().
// We just return either one.
if((dataLength&1)!=0) {
return trie.orphan();
} else {
return new UCharsTrie(trieUChars2.getBuffer());
}
}
void UCharsTrieTest::checkFirst(UCharsTrie &trie,
const StringAndValue data[], int32_t dataLength) {
for(int32_t i=0; i<dataLength; ++i) {
if(*data[i].s==0) {
continue; // skip empty string
}
UnicodeString expectedString=UnicodeString(data[i].s, -1, US_INV).unescape();
UChar32 c=expectedString[0];
UChar32 nextCp=expectedString.length()>1 ? expectedString[1] : 0;
UStringTrieResult firstResult=trie.first(c);
int32_t firstValue=USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1;
UStringTrieResult nextResult=trie.next(nextCp);
if(firstResult!=trie.reset().next(c) ||
firstResult!=trie.current() ||
firstValue!=(USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1) ||
nextResult!=trie.next(nextCp)
) {
errln("trie.first(U+%04X)!=trie.reset().next(same) for %s",
c, data[i].s);
}
c=expectedString.char32At(0);
int32_t cLength=U16_LENGTH(c);
nextCp=expectedString.length()>cLength ? expectedString.char32At(cLength) : 0;
firstResult=trie.firstForCodePoint(c);
firstValue=USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1;
nextResult=trie.nextForCodePoint(nextCp);
if(firstResult!=trie.reset().nextForCodePoint(c) ||
firstResult!=trie.current() ||
firstValue!=(USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1) ||
nextResult!=trie.nextForCodePoint(nextCp)
) {
errln("trie.firstForCodePoint(U+%04X)!=trie.reset().nextForCodePoint(same) for %s",
c, data[i].s);
}
}
trie.reset();
}
void UCharsTrieTest::checkNext(UCharsTrie &trie,
const StringAndValue data[], int32_t dataLength) {
UCharsTrie::State state;
for(int32_t i=0; i<dataLength; ++i) {
UnicodeString expectedString=UnicodeString(data[i].s, -1, US_INV).unescape();
int32_t stringLength= (i&1) ? -1 : expectedString.length();
UStringTrieResult result;
if( !USTRINGTRIE_HAS_VALUE(
result=trie.next(expectedString.getTerminatedBuffer(), stringLength)) ||
result!=trie.current()
) {
errln("trie does not seem to contain %s", data[i].s);
} else if(trie.getValue()!=data[i].value) {
errln("trie value for %s is %ld=0x%lx instead of expected %ld=0x%lx",
data[i].s,
(long)trie.getValue(), (long)trie.getValue(),
(long)data[i].value, (long)data[i].value);
} else if(result!=trie.current() || trie.getValue()!=data[i].value) {
errln("trie value for %s changes when repeating current()/getValue()", data[i].s);
}
trie.reset();
stringLength=expectedString.length();
result=trie.current();
for(int32_t j=0; j<stringLength; ++j) {
if(!USTRINGTRIE_HAS_NEXT(result)) {
errln("trie.current()!=hasNext before end of %s (at index %d)", data[i].s, j);
break;
}
if(result==USTRINGTRIE_INTERMEDIATE_VALUE) {
trie.getValue();
if(trie.current()!=USTRINGTRIE_INTERMEDIATE_VALUE) {
errln("trie.getValue().current()!=USTRINGTRIE_INTERMEDIATE_VALUE before end of %s (at index %d)", data[i].s, j);
break;
}
}
result=trie.next(expectedString[j]);
if(!USTRINGTRIE_MATCHES(result)) {
errln("trie.next()=USTRINGTRIE_NO_MATCH before end of %s (at index %d)", data[i].s, j);
break;
}
if(result!=trie.current()) {
errln("trie.next()!=following current() before end of %s (at index %d)", data[i].s, j);
break;
}
}
if(!USTRINGTRIE_HAS_VALUE(result)) {
errln("trie.next()!=hasValue at the end of %s", data[i].s);
continue;
}
trie.getValue();
if(result!=trie.current()) {
errln("trie.current() != current()+getValue()+current() after end of %s",
data[i].s);
}
// Compare the final current() with whether next() can actually continue.
trie.saveState(state);
UBool nextContinues=FALSE;
for(int32_t c=0x20; c<0xe000; ++c) {
if(c==0x80) {
c=0xd800; // Check for ASCII and surrogates but not all of the BMP.
}
if(trie.resetToState(state).next(c)) {
nextContinues=TRUE;
break;
}
}
if((result==USTRINGTRIE_INTERMEDIATE_VALUE)!=nextContinues) {
errln("(trie.current()==USTRINGTRIE_INTERMEDIATE_VALUE) contradicts "
"(trie.next(some UChar)!=USTRINGTRIE_NO_MATCH) after end of %s", data[i].s);
}
trie.reset();
}
}
void UCharsTrieTest::checkNextWithState(UCharsTrie &trie,
const StringAndValue data[], int32_t dataLength) {
UCharsTrie::State noState, state;
for(int32_t i=0; i<dataLength; ++i) {
if((i&1)==0) {
// This should have no effect.
trie.resetToState(noState);
}
UnicodeString expectedString=UnicodeString(data[i].s, -1, US_INV).unescape();
int32_t stringLength=expectedString.length();
int32_t partialLength=stringLength/3;
for(int32_t j=0; j<partialLength; ++j) {
if(!USTRINGTRIE_MATCHES(trie.next(expectedString[j]))) {
errln("trie.next()=USTRINGTRIE_NO_MATCH for a prefix of %s", data[i].s);
return;
}
}
trie.saveState(state);
UStringTrieResult resultAtState=trie.current();
UStringTrieResult result;
int32_t valueAtState=-99;
if(USTRINGTRIE_HAS_VALUE(resultAtState)) {
valueAtState=trie.getValue();
}
result=trie.next(0); // mismatch
if(result!=USTRINGTRIE_NO_MATCH || result!=trie.current()) {
errln("trie.next(0) matched after part of %s", data[i].s);
}
if( resultAtState!=trie.resetToState(state).current() ||
(USTRINGTRIE_HAS_VALUE(resultAtState) && valueAtState!=trie.getValue())
) {
errln("trie.next(part of %s) changes current()/getValue() after "
"saveState/next(0)/resetToState",
data[i].s);
} else if(!USTRINGTRIE_HAS_VALUE(
result=trie.next(expectedString.getTerminatedBuffer()+partialLength,
stringLength-partialLength)) ||
result!=trie.current()) {
errln("trie.next(rest of %s) does not seem to contain %s after "
"saveState/next(0)/resetToState",
data[i].s, data[i].s);
} else if(!USTRINGTRIE_HAS_VALUE(
result=trie.resetToState(state).
next(expectedString.getTerminatedBuffer()+partialLength,
stringLength-partialLength)) ||
result!=trie.current()) {
errln("trie does not seem to contain %s after saveState/next(rest)/resetToState",
data[i].s);
} else if(trie.getValue()!=data[i].value) {
errln("trie value for %s is %ld=0x%lx instead of expected %ld=0x%lx",
data[i].s,
(long)trie.getValue(), (long)trie.getValue(),
(long)data[i].value, (long)data[i].value);
}
trie.reset();
}
}
void UCharsTrieTest::checkNextWithState64(UCharsTrie &trie,
const StringAndValue data[], int32_t dataLength) {
assertTrue("trie(initial state).getState64()!=0", trie.getState64() != 0);
for(int32_t i=0; i<dataLength; ++i) {
UnicodeString expectedString=UnicodeString(data[i].s, -1, US_INV).unescape();
int32_t stringLength=expectedString.length();
int32_t partialLength = stringLength / 3;
for(int32_t j=0; j<partialLength; ++j) {
if(!USTRINGTRIE_MATCHES(trie.next(expectedString[j]))) {
errln("trie.next()=USTRINGTRIE_NO_MATCH for a prefix of %s", data[i].s);
return;
}
}
uint64_t state = trie.getState64();
assertTrue("trie.getState64()!=0", state != 0);
UStringTrieResult resultAtState=trie.current();
UStringTrieResult result;
int32_t valueAtState=-99;
if(USTRINGTRIE_HAS_VALUE(resultAtState)) {
valueAtState=trie.getValue();
}
result=trie.next(0); // mismatch
if(result!=USTRINGTRIE_NO_MATCH || result!=trie.current()) {
errln("trie.next(0) matched after part of %s", data[i].s);
}
if( resultAtState!=trie.resetToState64(state).current() ||
(USTRINGTRIE_HAS_VALUE(resultAtState) && valueAtState!=trie.getValue())
) {
errln("trie.next(part of %s) changes current()/getValue() after "
"getState64/next(0)/resetToState64",
data[i].s);
} else if(!USTRINGTRIE_HAS_VALUE(
result=trie.next(expectedString.getTerminatedBuffer()+partialLength,
stringLength-partialLength)) ||
result!=trie.current()) {
errln("trie.next(rest of %s) does not seem to contain %s after "
"getState64/next(0)/resetToState64",
data[i].s, data[i].s);
} else if(!USTRINGTRIE_HAS_VALUE(
result=trie.resetToState64(state).
next(expectedString.getTerminatedBuffer()+partialLength,
stringLength-partialLength)) ||
result!=trie.current()) {
errln("trie does not seem to contain %s after getState64/next(rest)/resetToState64",
data[i].s);
} else if(trie.getValue()!=data[i].value) {
errln("trie value for %s is %ld=0x%lx instead of expected %ld=0x%lx",
data[i].s,
(long)trie.getValue(), (long)trie.getValue(),
(long)data[i].value, (long)data[i].value);
}
trie.reset();
}
}
// next(string) is also tested in other functions,
// but here we try to go partway through the string, and then beyond it.
void UCharsTrieTest::checkNextString(UCharsTrie &trie,
const StringAndValue data[], int32_t dataLength) {
for(int32_t i=0; i<dataLength; ++i) {
UnicodeString expectedString=UnicodeString(data[i].s, -1, US_INV).unescape();
int32_t stringLength=expectedString.length();
if(!trie.next(expectedString.getTerminatedBuffer(), stringLength/2)) {
errln("trie.next(up to middle of string)=USTRINGTRIE_NO_MATCH for %s", data[i].s);
continue;
}
// Test that we stop properly at the end of the string.
if(trie.next(expectedString.getTerminatedBuffer()+stringLength/2,
stringLength+1-stringLength/2)) {
errln("trie.next(string+NUL)!=USTRINGTRIE_NO_MATCH for %s", data[i].s);
}
trie.reset();
}
}
void UCharsTrieTest::checkIterator(UCharsTrie &trie,
const StringAndValue data[], int32_t dataLength) {
IcuTestErrorCode errorCode(*this, "checkIterator()");
UCharsTrie::Iterator iter(trie, 0, errorCode);
if(errorCode.errIfFailureAndReset("UCharsTrie::Iterator(trieUChars) constructor")) {
return;
}
checkIterator(iter, data, dataLength);
}
void UCharsTrieTest::checkIterator(UCharsTrie::Iterator &iter,
const StringAndValue data[], int32_t dataLength) {
IcuTestErrorCode errorCode(*this, "checkIterator()");
for(int32_t i=0; i<dataLength; ++i) {
if(!iter.hasNext()) {
errln("trie iterator hasNext()=FALSE for item %d: %s", (int)i, data[i].s);
break;
}
UBool hasNext=iter.next(errorCode);
if(errorCode.errIfFailureAndReset("trie iterator next() for item %d: %s", (int)i, data[i].s)) {
break;
}
if(!hasNext) {
errln("trie iterator next()=FALSE for item %d: %s", (int)i, data[i].s);
break;
}
UnicodeString expectedString=UnicodeString(data[i].s, -1, US_INV).unescape();
if(iter.getString()!=expectedString) {
char buffer[1000];
UnicodeString invString(prettify(iter.getString()));
invString.extract(0, invString.length(), buffer, UPRV_LENGTHOF(buffer), US_INV);
errln("trie iterator next().getString()=%s but expected %s for item %d",
buffer, data[i].s, (int)i);
}
if(iter.getValue()!=data[i].value) {
errln("trie iterator next().getValue()=%ld=0x%lx but expected %ld=0x%lx for item %d: %s",
(long)iter.getValue(), (long)iter.getValue(),
(long)data[i].value, (long)data[i].value,
(int)i, data[i].s);
}
}
if(iter.hasNext()) {
errln("trie iterator hasNext()=TRUE after all items");
}
UBool hasNext=iter.next(errorCode);
errorCode.errIfFailureAndReset("trie iterator next() after all items");
if(hasNext) {
errln("trie iterator next()=TRUE after all items");
}
}
| [
"[email protected]"
] | |
8f36a199e85f602c965f5bb0d489c2c98d96998e | 0c2970cb04e9e3736fb27e2b8aa7adf4b9904a0b | /final/onlineimg/Classes/Native/GenericMethods2.cpp | df01bd86b6094042bc5aa7ad5a0bebb10034fafb | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Chibikuri/sdp | 65a2b0f3bcd9422be1317e26ab56b1f753c4cabb | 5b1382a5c8a075e4fb9b0c626f090df2a7b48536 | refs/heads/master | 2020-06-19T17:54:24.349288 | 2019-07-14T08:38:59 | 2019-07-14T08:38:59 | 196,810,177 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,594,956 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R, typename T1>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
// MS.Internal.Xml.Cache.XPathNodeInfoAtom
struct XPathNodeInfoAtom_t1760358141;
// MS.Internal.Xml.Cache.XPathNode[]
struct XPathNodeU5BU5D_t47339301;
// Mono.AppleTls.SslStatus[]
struct SslStatusU5BU5D_t3256112573;
// Mono.Net.Security.AsyncProtocolRequest
struct AsyncProtocolRequest_t4184368197;
// Mono.Net.Security.MobileAuthenticatedStream
struct MobileAuthenticatedStream_t3383979266;
// System.Action
struct Action_t1264377477;
// System.Action`1<System.Object>
struct Action_1_t3252573759;
// System.ArgumentException
struct ArgumentException_t132251570;
// System.ArgumentNullException
struct ArgumentNullException_t1615371798;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t777629997;
// System.AsyncCallback
struct AsyncCallback_t3962456242;
// System.Attribute
struct Attribute_t861562559;
// System.Boolean[]
struct BooleanU5BU5D_t2897418192;
// System.Byte[]
struct ByteU5BU5D_t4116647657;
// System.Char[]
struct CharU5BU5D_t3528271667;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>
struct Dictionary_2_t2075988643;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_t2059959053;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>
struct IList_1_t2103185493;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>
struct IList_1_t243502644;
// System.Collections.Generic.IReadOnlyDictionary`2<System.Object,System.Object>
struct IReadOnlyDictionary_2_t548514548;
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_t2069718811;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t257213610;
// System.Collections.Generic.List`1<UnityEngine.Color>
struct List_1_t4027761066;
// System.Collections.Generic.List`1<UnityEngine.Vector2>
struct List_1_t3628304265;
// System.Collections.Generic.List`1<UnityEngine.Vector3>
struct List_1_t899420910;
// System.Collections.IDictionary
struct IDictionary_t1363984059;
// System.Converter`2<System.Object,System.Object>
struct Converter_2_t2442480487;
// System.DateTimeOffset[]
struct DateTimeOffsetU5BU5D_t3473357058;
// System.DateTime[]
struct DateTimeU5BU5D_t1184652292;
// System.Decimal[]
struct DecimalU5BU5D_t1145110141;
// System.DelegateData
struct DelegateData_t1677132599;
// System.Delegate[]
struct DelegateU5BU5D_t1703627840;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t1169129676;
// System.Double[]
struct DoubleU5BU5D_t3413330114;
// System.Exception
struct Exception_t;
// System.Func`1<System.Object>
struct Func_1_t2509852811;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties>
struct Func_1_t1600215562;
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t3759279471;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Boolean>>
struct Func_2_t1314258023;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Int32>>
struct Func_2_t4167915811;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>>
struct Func_2_t1595510597;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Object>>
struct Func_2_t2108926;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>>
struct Func_2_t3833558637;
// System.IAsyncResult
struct IAsyncResult_t767004451;
// System.IO.Stream
struct Stream_t1273022909;
// System.IO.TextReader
struct TextReader_t283511965;
// System.Int16[]
struct Int16U5BU5D_t3686840178;
// System.Int32[]
struct Int32U5BU5D_t385246372;
// System.Int64[]
struct Int64U5BU5D_t2559172825;
// System.IntPtr[]
struct IntPtrU5BU5D_t4013366056;
// System.InvalidOperationException
struct InvalidOperationException_t56020091;
// System.Net.Cache.RequestCachePolicy
struct RequestCachePolicy_t2923596909;
// System.Net.ICredentials
struct ICredentials_t725721261;
// System.Net.IWebProxy
struct IWebProxy_t688979836;
// System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES[]
struct Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057;
// System.Net.WebRequest
struct WebRequest_t1939381076;
// System.Object[]
struct ObjectU5BU5D_t2843939325;
// System.Predicate`1<System.Object>
struct Predicate_1_t3905400288;
// System.Predicate`1<System.Threading.Tasks.Task>
struct Predicate_1_t4012569436;
// System.Reflection.Assembly
struct Assembly_t;
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_t2120639521;
// System.Reflection.Binder
struct Binder_t2999457153;
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t5769829;
// System.Reflection.CustomAttributeData/LazyCAttrData
struct LazyCAttrData_t3989247807;
// System.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_t3710464795;
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t1465843424;
// System.Reflection.Emit.ILExceptionBlock[]
struct ILExceptionBlockU5BU5D_t2996808915;
// System.Reflection.MemberFilter
struct MemberFilter_t426314064;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.CompilerServices.AsyncMethodBuilderCore/MoveNextRunner
struct MoveNextRunner_t4042132640;
// System.Runtime.CompilerServices.IAsyncStateMachine
struct IAsyncStateMachine_t923100567;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t2481557153;
// System.SByte[]
struct SByteU5BU5D_t2651576203;
// System.Security.Cryptography.CryptoStream
struct CryptoStream_t2702504504;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t386037858;
// System.Security.Cryptography.X509Certificates.X509Certificate
struct X509Certificate_t713131622;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
struct X509CertificateCollection_t3399372417;
// System.Security.PermissionSet
struct PermissionSet_t223948603;
// System.Security.Policy.Evidence
struct Evidence_t2008144148;
// System.Single[]
struct SingleU5BU5D_t1444911251;
// System.String
struct String_t;
// System.Text.Decoder
struct Decoder_t2204182725;
// System.Text.Encoding
struct Encoding_t1523322056;
// System.Text.RegularExpressions.RegexOptions[]
struct RegexOptionsU5BU5D_t160358170;
// System.Threading.CancellationCallbackInfo
struct CancellationCallbackInfo_t322720759;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_t540272775;
// System.Threading.ContextCallback
struct ContextCallback_t3823316192;
// System.Threading.ExecutionContext
struct ExecutionContext_t1748372627;
// System.Threading.ManualResetEvent
struct ManualResetEvent_t451242010;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t2974092902;
// System.Threading.SemaphoreSlim/TaskNode
struct TaskNode_t3317994743;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t2750080073;
// System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayFragment_1_t4161250538;
// System.Threading.SynchronizationContext
struct SynchronizationContext_t2326897723;
// System.Threading.Tasks.StackGuard
struct StackGuard_t1472778820;
// System.Threading.Tasks.Task
struct Task_t3187275312;
// System.Threading.Tasks.Task/ContingentProperties
struct ContingentProperties_t2170468915;
// System.Threading.Tasks.TaskFactory
struct TaskFactory_t2660013028;
// System.Threading.Tasks.TaskFactory`1<System.Boolean>
struct TaskFactory_1_t156716511;
// System.Threading.Tasks.TaskFactory`1<System.Int32>
struct TaskFactory_1_t3010374299;
// System.Threading.Tasks.TaskFactory`1<System.Nullable`1<System.Int32>>
struct TaskFactory_1_t437969085;
// System.Threading.Tasks.TaskFactory`1<System.Object>
struct TaskFactory_1_t3139534710;
// System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>
struct TaskFactory_1_t2676017125;
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t1196198384;
// System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult>
struct Task_1_t493370259;
// System.Threading.Tasks.Task`1<System.Boolean>
struct Task_1_t1502828140;
// System.Threading.Tasks.Task`1<System.IO.Stream>
struct Task_1_t2678563084;
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t61518632;
// System.Threading.Tasks.Task`1<System.Net.WebResponse>
struct Task_1_t1635462814;
// System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>
struct Task_1_t1784080714;
// System.Threading.Tasks.Task`1<System.Object>
struct Task_1_t190679043;
// System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>
struct Task_1_t297848191;
// System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>
struct Task_1_t4022128754;
// System.Threading.Thread
struct Thread_t2300836069;
// System.TimeSpan[]
struct TimeSpanU5BU5D_t4291357516;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t3940880105;
// System.UInt16[]
struct UInt16U5BU5D_t3326319531;
// System.UInt32[]
struct UInt32U5BU5D_t2770800703;
// System.UInt64[]
struct UInt64U5BU5D_t1659327989;
// System.Uri
struct Uri_t100236324;
// System.Void
struct Void_t1185182177;
// System.Xml.IDtdEntityInfo
struct IDtdEntityInfo_t3492232514;
// System.Xml.IXmlNamespaceResolver
struct IXmlNamespaceResolver_t535375154;
// System.Xml.Schema.BitSet
struct BitSet_t1154229585;
// System.Xml.Schema.RangePositionInfo[]
struct RangePositionInfoU5BU5D_t242328633;
// System.Xml.Schema.SequenceNode
struct SequenceNode_t3837141573;
// System.Xml.Schema.SequenceNode/SequenceConstructPosContext[]
struct SequenceConstructPosContextU5BU5D_t615009946;
// System.Xml.Schema.XmlListConverter
struct XmlListConverter_t3889069996;
// System.Xml.Schema.XmlSchemaObject
struct XmlSchemaObject_t1315720168;
// System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry[]
struct XmlSchemaObjectEntryU5BU5D_t1655208330;
// System.Xml.Schema.XmlSchemaType
struct XmlSchemaType_t2033747345;
// System.Xml.Schema.XmlValueConverter
struct XmlValueConverter_t585560190;
// System.Xml.XmlDownloadManager
struct XmlDownloadManager_t2540579765;
// System.Xml.XmlQualifiedName
struct XmlQualifiedName_t2760654312;
// System.Xml.XmlUrlResolver
struct XmlUrlResolver_t817895037;
// UnityEngine.BeforeRenderHelper/OrderBlock[]
struct OrderBlockU5BU5D_t2389202590;
// UnityEngine.Camera
struct Camera_t4157153871;
// UnityEngine.Color[]
struct ColorU5BU5D_t941916413;
// UnityEngine.Component
struct Component_t1923634451;
// UnityEngine.DisallowMultipleComponent[]
struct DisallowMultipleComponentU5BU5D_t3936143868;
// UnityEngine.Events.UnityAction
struct UnityAction_t3245792599;
// UnityEngine.ExecuteInEditMode[]
struct ExecuteInEditModeU5BU5D_t3239458680;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem/UpdateFunction
struct UpdateFunction_t377278577;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem[]
struct PlayerLoopSystemU5BU5D_t1150299252;
// UnityEngine.GameObject
struct GameObject_t1113636619;
// UnityEngine.Mesh
struct Mesh_t3648964284;
// UnityEngine.Object
struct Object_t631007953;
// UnityEngine.Playables.PlayableBinding/CreateOutputMethod
struct CreateOutputMethod_t2301811773;
// UnityEngine.Playables.PlayableBinding[]
struct PlayableBindingU5BU5D_t829358056;
// UnityEngine.RequireComponent[]
struct RequireComponentU5BU5D_t2245623724;
// UnityEngine.ScriptableObject
struct ScriptableObject_t2528358522;
// UnityEngine.UICharInfo[]
struct UICharInfoU5BU5D_t928762055;
// UnityEngine.UILineInfo[]
struct UILineInfoU5BU5D_t1655937503;
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_t1981460040;
// UnityEngine.UnitySynchronizationContext/WorkRequest[]
struct WorkRequestU5BU5D_t3723878365;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_t1457185986;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_t1718750761;
extern RuntimeClass* ArgumentException_t132251570_il2cpp_TypeInfo_var;
extern RuntimeClass* ArgumentNullException_t1615371798_il2cpp_TypeInfo_var;
extern RuntimeClass* ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var;
extern RuntimeClass* Assert_t2203240047_il2cpp_TypeInfo_var;
extern RuntimeClass* Debug_t3317548046_il2cpp_TypeInfo_var;
extern RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
extern RuntimeClass* ExecutionContext_t1748372627_il2cpp_TypeInfo_var;
extern RuntimeClass* IAsyncStateMachine_t923100567_il2cpp_TypeInfo_var;
extern RuntimeClass* ICollection_t3904884886_il2cpp_TypeInfo_var;
extern RuntimeClass* ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var;
extern RuntimeClass* IDisposable_t3640265483_il2cpp_TypeInfo_var;
extern RuntimeClass* IEnumerable_t1941168011_il2cpp_TypeInfo_var;
extern RuntimeClass* IEnumerator_t1853284238_il2cpp_TypeInfo_var;
extern RuntimeClass* IList_t2094931216_il2cpp_TypeInfo_var;
extern RuntimeClass* INotifyCompletion_t4057888895_il2cpp_TypeInfo_var;
extern RuntimeClass* InvalidOperationException_t56020091_il2cpp_TypeInfo_var;
extern RuntimeClass* Marshal_t1757017490_il2cpp_TypeInfo_var;
extern RuntimeClass* Math_t1671470975_il2cpp_TypeInfo_var;
extern RuntimeClass* ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var;
extern RuntimeClass* Object_t631007953_il2cpp_TypeInfo_var;
extern RuntimeClass* TaskWrapperAsyncResult_t2316075138_il2cpp_TypeInfo_var;
extern RuntimeClass* Type_t_il2cpp_TypeInfo_var;
extern String_t* _stringLiteral1474202693;
extern String_t* _stringLiteral2654205466;
extern String_t* _stringLiteral273595399;
extern String_t* _stringLiteral2957729587;
extern String_t* _stringLiteral3941128596;
extern String_t* _stringLiteral4007973390;
extern String_t* _stringLiteral4028015502;
extern String_t* _stringLiteral4294193667;
extern String_t* _stringLiteral461028519;
extern String_t* _stringLiteral797640427;
extern String_t* _stringLiteral879148213;
extern const RuntimeMethod* Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m2417852296_RuntimeMethod_var;
extern const RuntimeMethod* Array_FindAll_TisRuntimeObject_m3566631088_RuntimeMethod_var;
extern const RuntimeMethod* Array_FindLast_TisRuntimeObject_m1088586648_RuntimeMethod_var;
extern const RuntimeMethod* Array_Find_TisRuntimeObject_m2705709394_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisArraySegment_1_t283560987_m2631689033_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisAttributeEntry_t1001010863_m2433260216_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisBinaryTypeEnum_t3485436454_m2524012928_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisBoolean_t97287965_m3931972236_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisByte_t1134296376_m52050332_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisCancellationTokenRegistration_t2813424904_m3256868132_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisChar_t3634460470_m2897818763_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisCipherSuiteCode_t732562211_m413910606_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisColor_t2555686324_m3258096367_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint_t3758755253_m3263054153_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeNamedArgument_t287865710_m3643599440_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeTypedArgument_t2723150157_m2041074378_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisDS_t2232270370_m1966464765_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisDateTimeOffset_t3229287507_m4127887284_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisDateTime_t3738529785_m2109834484_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisDecimal_t2948259380_m1768711179_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisDictionaryEntry_t3123975638_m1693155781_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisDouble_t594665363_m293013457_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEKeyCode_t3426821747_m478162586_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1472554943_m3517137150_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1618249229_m1870777781_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1747409640_m792786254_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2089797520_m2183796930_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2391274283_m296252669_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2873432162_m3407232146_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3059558737_m3944143255_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3444579954_m3351441300_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3583683983_m1034998604_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3743988185_m4195594381_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisEphemeron_t1602596362_m2752481302_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisFormatParam_t4194474082_m778275290_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisGCHandle_t3351438187_m1164941286_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisGcAchievementData_t675222246_m3424767744_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisGcScoreData_t2125309831_m2549008178_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisGuid_t_m115284017_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisHS_t3339773016_m688644066_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisHeaderVariantInfo_t1935685601_m1464107077_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisHitInfo_t3229609740_m2347572902_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisILExceptionBlock_t3961874966_m3018764391_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisILExceptionInfo_t237856010_m2165621442_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisILTokenInfo_t2325775114_m2504809207_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInt16_t2552820387_m3455259345_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInt32_t2950945753_m2955156918_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInt64_t3736567304_m3745337766_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisIntPtr_t_m3415458056_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInternalCodePageDataItem_t2575532933_m3430335884_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInternalEncodingDataItem_t3158859817_m3389551860_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisInternalPrimitiveTypeE_t4093048977_m3031033319_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyInfo_t3485824945_m2528830481_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2255362622_m1833548490_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t231828568_m2879642492_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2401056908_m1189709003_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2530217319_m1384700832_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2872605199_m4164356502_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3174081962_m3674368018_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3656239841_m3348438394_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3842366416_m4146411760_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t4227387633_m2483581075_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t71524366_m4016347629_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t870930286_m2030090946_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisKeyframe_t4206410242_m786456066_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisLabelData_t360167391_m180970407_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisLabelFixup_t858502054_m361705503_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisLabel_t2281661643_m1835167839_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisLowerCaseMapping_t2910317575_m1939279452_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisMap_t1331044427_m1914648151_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisMonoResource_t4103430009_m3254626270_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisMonoWin32Resource_t1904229483_m2691624008_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisNamespaceDeclaration_t4162609575_m83553861_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisNamespace_t2218256516_m2182830534_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisOp_t2046805169_m2952875830_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisOrderBlock_t1585977831_m1366047841_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisParameterModifier_t1461694466_m707097487_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisParsingState_t1780334922_m3921860095_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisPlayableBinding_t354260709_m3109707054_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisPlayerLoopSystem_t105772105_m2448027111_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisPointerEvent_t2369854343_m3128329489_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisRangePositionInfo_t589968936_m2988414250_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit2D_t2279581989_m2320360185_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit_t1056001966_m3880161389_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisRecognizedAttribute_t632074220_m3891904990_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisRefEmitPermissionSet_t484390987_m896245899_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisRegexOptions_t92845595_m4058415748_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisResourceLocator_t3723970807_m1432084740_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisRfcChar_t2905409930_m25858722_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisRuntimeObject_m885578954_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSByte_t1669577662_m3057015409_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSequenceConstructPosContext_t2054380699_m617148699_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSingle_t1397266774_m70177781_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSslCipherSuite_t3309122048_m3223465059_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSslStatus_t191981556_m3434633658_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisState_t1792539347_m2676812677_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisState_t1890458201_m652646140_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisSwitchValueState_t2805251467_m4292384751_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisTableRange_t3332867892_m3510947664_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisTagInfo_t3526638417_m869294536_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisTermInfoStrings_t290279955_m1412835473_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpanToken_t993347374_m417465067_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpan_t881159249_m3641977509_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisTypeCode_t2987224087_m4252651165_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_t75501106_m2335664289_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t4195266810_m1189106026_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t4057497605_m1280704486_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUInt16_t2177724958_m170984066_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUInt32_t2560061978_m4042992197_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisUInt64_t4134040092_m367691764_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisVector2_t2156229523_m182881471_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisVector3_t3722313464_m321227951_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisVirtualAttribute_t3578083907_m2284702182_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisWSABUF_t1998059390_m157911457_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisWebCamDevice_t1322781432_m2214000996_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m173440720_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t1354518612_m3429665912_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisX509ChainStatus_t133602714_m2017440555_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXPathNodeRef_t3498189018_m3445190082_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXPathNode_t2208072876_m1346231604_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXPathResultType_t2828988488_m1937342502_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXmlSchemaObjectEntry_t3344676971_m1539839124_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_TisXmlTypeCode_t2623622950_m3393562866_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_Tisbucket_t758131704_m1787544783_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__IReadOnlyList_get_Item_Tisunitytls_ciphersuite_t1735159395_m1702130907_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisArraySegment_1_t283560987_m1350465735_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisAttributeEntry_t1001010863_m4202499280_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisBinaryTypeEnum_t3485436454_m3360978510_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisBoolean_t97287965_m1407010309_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisByte_t1134296376_m3566214066_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisCancellationTokenRegistration_t2813424904_m2142154713_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisChar_t3634460470_m324132692_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisCipherSuiteCode_t732562211_m2728361914_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisColor_t2555686324_m2985413820_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisContactPoint_t3758755253_m2489897608_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t287865710_m2282658220_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t2723150157_m2639399822_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisDS_t2232270370_m2278453804_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisDateTimeOffset_t3229287507_m3151184010_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisDateTime_t3738529785_m623181444_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisDecimal_t2948259380_m3511003792_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisDictionaryEntry_t3123975638_m479537688_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisDouble_t594665363_m850827605_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisEKeyCode_t3426821747_m1525599116_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t1472554943_m3291951811_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t1618249229_m3861900101_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t1747409640_m3464191153_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t2089797520_m1132164774_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t2391274283_m3380666605_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t2873432162_m1203860870_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t3059558737_m1704861703_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t3444579954_m4176629715_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t3583683983_m3144194517_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisEntry_t3743988185_m1647887093_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisEphemeron_t1602596362_m3414138311_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisFormatParam_t4194474082_m3932866330_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisGCHandle_t3351438187_m2988626184_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisGcAchievementData_t675222246_m2680268485_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisGcScoreData_t2125309831_m174676143_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisGuid_t_m1070280558_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisHS_t3339773016_m2892490585_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisHeaderVariantInfo_t1935685601_m1179665612_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisHitInfo_t3229609740_m2260995172_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisILExceptionBlock_t3961874966_m2494387566_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisILExceptionInfo_t237856010_m2897424567_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisILTokenInfo_t2325775114_m3110830457_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisInt16_t2552820387_m76930473_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisInt32_t2950945753_m714868479_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisInt64_t3736567304_m3562990826_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisIntPtr_t_m784054003_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisInternalCodePageDataItem_t2575532933_m3080794928_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisInternalEncodingDataItem_t3158859817_m2045986783_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisInternalPrimitiveTypeE_t4093048977_m4177222142_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyInfo_t3485824945_m643477008_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t2255362622_m4208123644_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t231828568_m3371689832_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t2401056908_m3647027688_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t2530217319_m2886833132_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t2872605199_m1944609151_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t3174081962_m577574333_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t3656239841_m546960297_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t3842366416_m3937535230_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t4227387633_m619225145_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t71524366_m252172060_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyValuePair_2_t870930286_m3753401719_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisKeyframe_t4206410242_m27698365_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisLabelData_t360167391_m1054702781_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisLabelFixup_t858502054_m3276643490_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisLabel_t2281661643_m2294767982_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisLowerCaseMapping_t2910317575_m205488600_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisMap_t1331044427_m4105631356_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisMonoResource_t4103430009_m2937222811_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisMonoWin32Resource_t1904229483_m513901999_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisNamespaceDeclaration_t4162609575_m1348130386_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisNamespace_t2218256516_m2008107504_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisOp_t2046805169_m59814001_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisOrderBlock_t1585977831_m2406385050_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisParameterModifier_t1461694466_m29553316_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisParsingState_t1780334922_m3999670455_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisPlayableBinding_t354260709_m3837494573_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisPlayerLoopSystem_t105772105_m3446275388_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisPointerEvent_t2369854343_m617897172_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisRangePositionInfo_t589968936_m2283679269_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisRaycastHit2D_t2279581989_m2440275162_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisRaycastHit_t1056001966_m3352067444_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisRecognizedAttribute_t632074220_m1177274028_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisRefEmitPermissionSet_t484390987_m1505876205_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisRegexOptions_t92845595_m2632136756_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisResourceLocator_t3723970807_m646947975_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisRfcChar_t2905409930_m403695898_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisRuntimeObject_m3347010206_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisSByte_t1669577662_m2349608172_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisSequenceConstructPosContext_t2054380699_m4103555436_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisSingle_t1397266774_m1672589487_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisSslCipherSuite_t3309122048_m3781380041_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisSslStatus_t191981556_m3439607195_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisState_t1792539347_m600062346_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisState_t1890458201_m602492398_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisSwitchValueState_t2805251467_m3737663818_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisTableRange_t3332867892_m1483480711_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisTagInfo_t3526638417_m2185294994_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisTermInfoStrings_t290279955_m1174084225_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisTimeSpanToken_t993347374_m416874441_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisTimeSpan_t881159249_m1885583191_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisTypeCode_t2987224087_m3502052715_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisUICharInfo_t75501106_m1797321427_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisUILineInfo_t4195266810_m1305614921_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisUIVertex_t4057497605_m289307453_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisUInt16_t2177724958_m3601205466_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisUInt32_t2560061978_m1955195035_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisUInt64_t4134040092_m129291315_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisVector2_t2156229523_m2502961026_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisVector3_t3722313464_m2720091419_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisVirtualAttribute_t3578083907_m1997001517_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisWSABUF_t1998059390_m3512644153_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisWebCamDevice_t1322781432_m2046557297_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m3266165909_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisWorkRequest_t1354518612_m2694410850_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisX509ChainStatus_t133602714_m2237651489_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisXPathNodeRef_t3498189018_m643695098_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisXPathNode_t2208072876_m340421508_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisXPathResultType_t2828988488_m305960836_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisXmlSchemaObjectEntry_t3344676971_m3918926412_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_TisXmlTypeCode_t2623622950_m3445961961_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_Tisbucket_t758131704_m3062903822_RuntimeMethod_var;
extern const RuntimeMethod* Array_InternalArray__get_Item_Tisunitytls_ciphersuite_t1735159395_m1653212152_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisRuntimeObject_m599998781_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m489318611_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m2777383802_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t257820306_m914106883_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_t2872199449_m2455768402_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m3472039230_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t3218468820_m1026746075_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t1428438294_m2135626379_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1288598359_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisRuntimeObject_m3900118536_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_t2443470766_m907883981_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__47_t649267051_m273123348_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t1753638225_m2915125460_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m4215946051_RuntimeMethod_var;
extern const RuntimeMethod* BaseInvokableCall_ThrowOnInvalidArg_TisBoolean_t97287965_m3019671566_RuntimeMethod_var;
extern const RuntimeMethod* BaseInvokableCall_ThrowOnInvalidArg_TisInt32_t2950945753_m635860201_RuntimeMethod_var;
extern const RuntimeMethod* BaseInvokableCall_ThrowOnInvalidArg_TisRuntimeObject_m2266633109_RuntimeMethod_var;
extern const RuntimeMethod* BaseInvokableCall_ThrowOnInvalidArg_TisSingle_t1397266774_m3110598205_RuntimeMethod_var;
extern const RuntimeMethod* CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m1327842210_RuntimeMethod_var;
extern const RuntimeMethod* Enumerable_SingleOrDefault_TisRuntimeObject_m555175825_RuntimeMethod_var;
extern const RuntimeMethod* LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m3224443177_RuntimeMethod_var;
extern const RuntimeType* Object_t631007953_0_0_0_var;
extern const uint32_t Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m2417852296_MetadataUsageId;
extern const uint32_t Array_FindAll_TisRuntimeObject_m3566631088_MetadataUsageId;
extern const uint32_t Array_FindLast_TisRuntimeObject_m1088586648_MetadataUsageId;
extern const uint32_t Array_Find_TisRuntimeObject_m2705709394_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisArraySegment_1_t283560987_m2631689033_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisAttributeEntry_t1001010863_m2433260216_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisBinaryTypeEnum_t3485436454_m2524012928_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisBoolean_t97287965_m3931972236_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisByte_t1134296376_m52050332_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisCancellationTokenRegistration_t2813424904_m3256868132_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisChar_t3634460470_m2897818763_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisCipherSuiteCode_t732562211_m413910606_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisColor_t2555686324_m3258096367_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint_t3758755253_m3263054153_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeNamedArgument_t287865710_m3643599440_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeTypedArgument_t2723150157_m2041074378_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisDS_t2232270370_m1966464765_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisDateTimeOffset_t3229287507_m4127887284_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisDateTime_t3738529785_m2109834484_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisDecimal_t2948259380_m1768711179_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisDictionaryEntry_t3123975638_m1693155781_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisDouble_t594665363_m293013457_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEKeyCode_t3426821747_m478162586_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1472554943_m3517137150_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1618249229_m1870777781_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1747409640_m792786254_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2089797520_m2183796930_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2391274283_m296252669_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2873432162_m3407232146_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3059558737_m3944143255_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3444579954_m3351441300_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3583683983_m1034998604_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3743988185_m4195594381_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisEphemeron_t1602596362_m2752481302_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisFormatParam_t4194474082_m778275290_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisGCHandle_t3351438187_m1164941286_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisGcAchievementData_t675222246_m3424767744_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisGcScoreData_t2125309831_m2549008178_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisGuid_t_m115284017_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisHS_t3339773016_m688644066_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisHeaderVariantInfo_t1935685601_m1464107077_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisHitInfo_t3229609740_m2347572902_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisILExceptionBlock_t3961874966_m3018764391_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisILExceptionInfo_t237856010_m2165621442_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisILTokenInfo_t2325775114_m2504809207_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInt16_t2552820387_m3455259345_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInt32_t2950945753_m2955156918_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInt64_t3736567304_m3745337766_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisIntPtr_t_m3415458056_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInternalCodePageDataItem_t2575532933_m3430335884_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInternalEncodingDataItem_t3158859817_m3389551860_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisInternalPrimitiveTypeE_t4093048977_m3031033319_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyInfo_t3485824945_m2528830481_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2255362622_m1833548490_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t231828568_m2879642492_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2401056908_m1189709003_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2530217319_m1384700832_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2872605199_m4164356502_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3174081962_m3674368018_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3656239841_m3348438394_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3842366416_m4146411760_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t4227387633_m2483581075_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t71524366_m4016347629_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t870930286_m2030090946_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisKeyframe_t4206410242_m786456066_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisLabelData_t360167391_m180970407_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisLabelFixup_t858502054_m361705503_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisLabel_t2281661643_m1835167839_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisLowerCaseMapping_t2910317575_m1939279452_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisMap_t1331044427_m1914648151_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisMonoResource_t4103430009_m3254626270_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisMonoWin32Resource_t1904229483_m2691624008_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisNamespaceDeclaration_t4162609575_m83553861_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisNamespace_t2218256516_m2182830534_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisOp_t2046805169_m2952875830_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisOrderBlock_t1585977831_m1366047841_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisParameterModifier_t1461694466_m707097487_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisParsingState_t1780334922_m3921860095_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisPlayableBinding_t354260709_m3109707054_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisPlayerLoopSystem_t105772105_m2448027111_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisPointerEvent_t2369854343_m3128329489_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisRangePositionInfo_t589968936_m2988414250_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit2D_t2279581989_m2320360185_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit_t1056001966_m3880161389_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisRecognizedAttribute_t632074220_m3891904990_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisRefEmitPermissionSet_t484390987_m896245899_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisRegexOptions_t92845595_m4058415748_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisResourceLocator_t3723970807_m1432084740_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisRfcChar_t2905409930_m25858722_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisRuntimeObject_m885578954_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSByte_t1669577662_m3057015409_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSequenceConstructPosContext_t2054380699_m617148699_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSingle_t1397266774_m70177781_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSslCipherSuite_t3309122048_m3223465059_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSslStatus_t191981556_m3434633658_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisState_t1792539347_m2676812677_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisState_t1890458201_m652646140_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisSwitchValueState_t2805251467_m4292384751_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisTableRange_t3332867892_m3510947664_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisTagInfo_t3526638417_m869294536_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisTermInfoStrings_t290279955_m1412835473_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpanToken_t993347374_m417465067_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpan_t881159249_m3641977509_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisTypeCode_t2987224087_m4252651165_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_t75501106_m2335664289_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t4195266810_m1189106026_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t4057497605_m1280704486_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt16_t2177724958_m170984066_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt32_t2560061978_m4042992197_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt64_t4134040092_m367691764_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisVector2_t2156229523_m182881471_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisVector3_t3722313464_m321227951_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisVirtualAttribute_t3578083907_m2284702182_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisWSABUF_t1998059390_m157911457_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisWebCamDevice_t1322781432_m2214000996_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m173440720_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t1354518612_m3429665912_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisX509ChainStatus_t133602714_m2017440555_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXPathNodeRef_t3498189018_m3445190082_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXPathNode_t2208072876_m1346231604_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXPathResultType_t2828988488_m1937342502_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXmlSchemaObjectEntry_t3344676971_m1539839124_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisXmlTypeCode_t2623622950_m3393562866_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_Tisbucket_t758131704_m1787544783_MetadataUsageId;
extern const uint32_t Array_InternalArray__IReadOnlyList_get_Item_Tisunitytls_ciphersuite_t1735159395_m1702130907_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisArraySegment_1_t283560987_m1350465735_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisAttributeEntry_t1001010863_m4202499280_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisBinaryTypeEnum_t3485436454_m3360978510_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisBoolean_t97287965_m1407010309_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisByte_t1134296376_m3566214066_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisCancellationTokenRegistration_t2813424904_m2142154713_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisChar_t3634460470_m324132692_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisCipherSuiteCode_t732562211_m2728361914_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisColor_t2555686324_m2985413820_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisContactPoint_t3758755253_m2489897608_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t287865710_m2282658220_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t2723150157_m2639399822_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisDS_t2232270370_m2278453804_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisDateTimeOffset_t3229287507_m3151184010_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisDateTime_t3738529785_m623181444_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisDecimal_t2948259380_m3511003792_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisDictionaryEntry_t3123975638_m479537688_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisDouble_t594665363_m850827605_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisEKeyCode_t3426821747_m1525599116_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisEntry_t1472554943_m3291951811_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisEntry_t1618249229_m3861900101_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisEntry_t1747409640_m3464191153_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisEntry_t2089797520_m1132164774_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisEntry_t2391274283_m3380666605_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisEntry_t2873432162_m1203860870_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisEntry_t3059558737_m1704861703_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisEntry_t3444579954_m4176629715_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisEntry_t3583683983_m3144194517_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisEntry_t3743988185_m1647887093_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisEphemeron_t1602596362_m3414138311_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisFormatParam_t4194474082_m3932866330_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisGCHandle_t3351438187_m2988626184_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisGcAchievementData_t675222246_m2680268485_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisGcScoreData_t2125309831_m174676143_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisGuid_t_m1070280558_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisHS_t3339773016_m2892490585_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisHeaderVariantInfo_t1935685601_m1179665612_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisHitInfo_t3229609740_m2260995172_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisILExceptionBlock_t3961874966_m2494387566_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisILExceptionInfo_t237856010_m2897424567_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisILTokenInfo_t2325775114_m3110830457_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisInt16_t2552820387_m76930473_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisInt32_t2950945753_m714868479_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisInt64_t3736567304_m3562990826_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisIntPtr_t_m784054003_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisInternalCodePageDataItem_t2575532933_m3080794928_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisInternalEncodingDataItem_t3158859817_m2045986783_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisInternalPrimitiveTypeE_t4093048977_m4177222142_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyInfo_t3485824945_m643477008_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t2255362622_m4208123644_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t231828568_m3371689832_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t2401056908_m3647027688_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t2530217319_m2886833132_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t2872605199_m1944609151_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t3174081962_m577574333_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t3656239841_m546960297_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t3842366416_m3937535230_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t4227387633_m619225145_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t71524366_m252172060_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyValuePair_2_t870930286_m3753401719_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisKeyframe_t4206410242_m27698365_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisLabelData_t360167391_m1054702781_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisLabelFixup_t858502054_m3276643490_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisLabel_t2281661643_m2294767982_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisLowerCaseMapping_t2910317575_m205488600_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisMap_t1331044427_m4105631356_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisMonoResource_t4103430009_m2937222811_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisMonoWin32Resource_t1904229483_m513901999_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisNamespaceDeclaration_t4162609575_m1348130386_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisNamespace_t2218256516_m2008107504_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisOp_t2046805169_m59814001_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisOrderBlock_t1585977831_m2406385050_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisParameterModifier_t1461694466_m29553316_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisParsingState_t1780334922_m3999670455_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisPlayableBinding_t354260709_m3837494573_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisPlayerLoopSystem_t105772105_m3446275388_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisPointerEvent_t2369854343_m617897172_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisRangePositionInfo_t589968936_m2283679269_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisRaycastHit2D_t2279581989_m2440275162_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisRaycastHit_t1056001966_m3352067444_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisRecognizedAttribute_t632074220_m1177274028_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisRefEmitPermissionSet_t484390987_m1505876205_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisRegexOptions_t92845595_m2632136756_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisResourceLocator_t3723970807_m646947975_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisRfcChar_t2905409930_m403695898_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisRuntimeObject_m3347010206_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisSByte_t1669577662_m2349608172_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisSequenceConstructPosContext_t2054380699_m4103555436_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisSingle_t1397266774_m1672589487_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisSslCipherSuite_t3309122048_m3781380041_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisSslStatus_t191981556_m3439607195_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisState_t1792539347_m600062346_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisState_t1890458201_m602492398_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisSwitchValueState_t2805251467_m3737663818_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisTableRange_t3332867892_m1483480711_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisTagInfo_t3526638417_m2185294994_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisTermInfoStrings_t290279955_m1174084225_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisTimeSpanToken_t993347374_m416874441_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisTimeSpan_t881159249_m1885583191_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisTypeCode_t2987224087_m3502052715_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisUICharInfo_t75501106_m1797321427_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisUILineInfo_t4195266810_m1305614921_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisUIVertex_t4057497605_m289307453_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisUInt16_t2177724958_m3601205466_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisUInt32_t2560061978_m1955195035_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisUInt64_t4134040092_m129291315_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisVector2_t2156229523_m2502961026_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisVector3_t3722313464_m2720091419_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisVirtualAttribute_t3578083907_m1997001517_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisWSABUF_t1998059390_m3512644153_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisWebCamDevice_t1322781432_m2046557297_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m3266165909_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisWorkRequest_t1354518612_m2694410850_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisX509ChainStatus_t133602714_m2237651489_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisXPathNodeRef_t3498189018_m643695098_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisXPathNode_t2208072876_m340421508_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisXPathResultType_t2828988488_m305960836_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisXmlSchemaObjectEntry_t3344676971_m3918926412_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_TisXmlTypeCode_t2623622950_m3445961961_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_Tisbucket_t758131704_m3062903822_MetadataUsageId;
extern const uint32_t Array_InternalArray__get_Item_Tisunitytls_ciphersuite_t1735159395_m1653212152_MetadataUsageId;
extern const uint32_t Assert_IsNotNull_TisRuntimeObject_m2961693865_MetadataUsageId;
extern const uint32_t Assert_IsNotNull_TisRuntimeObject_m3408507457_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m1831514697_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1125588378_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m2353068914_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m726731279_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m3096584839_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m1126327911_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3394220291_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CStartOperationU3Ed__58_t1428438294_m656889163_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1323318437_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1419788950_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1703736389_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m3029995541_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__25_t257820306_m2465036347_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__66_t2872199449_m3184057887_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2314495281_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m1607225569_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m254633483_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2915554355_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CStartOperationU3Ed__23_t3218468820_m3480897621_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1039663495_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m2409927442_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m808550706_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_Start_TisRuntimeObject_m599998781_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m489318611_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_Start_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m2777383802_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t257820306_m914106883_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_t2872199449_m2455768402_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_Start_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m3472039230_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t3218468820_m1026746075_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t1428438294_m2135626379_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_1_Start_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1288598359_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_Start_TisRuntimeObject_m3900118536_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_t2443470766_m907883981_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__47_t649267051_m273123348_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t1753638225_m2915125460_MetadataUsageId;
extern const uint32_t AsyncTaskMethodBuilder_Start_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m4215946051_MetadataUsageId;
extern const uint32_t AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m429013101_MetadataUsageId;
extern const uint32_t BaseInvokableCall_ThrowOnInvalidArg_TisBoolean_t97287965_m3019671566_MetadataUsageId;
extern const uint32_t BaseInvokableCall_ThrowOnInvalidArg_TisInt32_t2950945753_m635860201_MetadataUsageId;
extern const uint32_t BaseInvokableCall_ThrowOnInvalidArg_TisRuntimeObject_m2266633109_MetadataUsageId;
extern const uint32_t BaseInvokableCall_ThrowOnInvalidArg_TisSingle_t1397266774_m3110598205_MetadataUsageId;
extern const uint32_t CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m1327842210_MetadataUsageId;
extern const uint32_t Component_GetComponent_TisRuntimeObject_m2906321015_MetadataUsageId;
extern const uint32_t CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_m3561972549_MetadataUsageId;
extern const uint32_t Enumerable_SingleOrDefault_TisRuntimeObject_m555175825_MetadataUsageId;
extern const uint32_t GameObject_AddComponent_TisRuntimeObject_m4182444790_MetadataUsageId;
extern const uint32_t GameObject_GetComponents_TisRuntimeObject_m1550324888_MetadataUsageId;
extern const uint32_t LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m3224443177_MetadataUsageId;
extern const uint32_t Marshal_PtrToStructure_TisRuntimeObject_m1794837406_MetadataUsageId;
extern const uint32_t Marshal_PtrToStructure_TisWin32_FIXED_INFO_t1299345856_m4277728215_MetadataUsageId;
extern const uint32_t Marshal_PtrToStructure_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m266777785_MetadataUsageId;
extern const uint32_t Marshal_StructureToPtr_TisRuntimeObject_m1356651879_MetadataUsageId;
extern const uint32_t Marshal_StructureToPtr_TisSecItemImportExportKeyParameters_t2289706800_m4276210949_MetadataUsageId;
extern const uint32_t Mesh_SetUvsImpl_TisRuntimeObject_m2275316106_MetadataUsageId;
extern const uint32_t Mesh_SetUvsImpl_TisVector2_t2156229523_m3009194955_MetadataUsageId;
extern const uint32_t ScriptableObject_CreateInstance_TisRuntimeObject_m1552711675_MetadataUsageId;
extern const uint32_t TaskToApm_End_TisInt32_t2950945753_m2874764222_MetadataUsageId;
extern const uint32_t TaskToApm_End_TisRuntimeObject_m300046032_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisBoolean_t97287965_m1681726772_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisByte_t1134296376_m25630657_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisDateTimeOffset_t3229287507_m829729751_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisDateTime_t3738529785_m3434455802_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisDecimal_t2948259380_m2798570278_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisDouble_t594665363_m3193001621_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisInt16_t2552820387_m2616720600_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisInt32_t2950945753_m360094630_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisInt64_t3736567304_m4217099738_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisRuntimeObject_m1751379490_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisSByte_t1669577662_m4254332645_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisSingle_t1397266774_m1102130495_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisTimeSpan_t881159249_m2972605057_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisUInt16_t2177724958_m2035470571_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisUInt32_t2560061978_m2615763131_MetadataUsageId;
extern const uint32_t XmlListConverter_ToArray_TisUInt64_t4134040092_m3140071152_MetadataUsageId;
struct Decimal_t2948259380 ;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct ILExceptionBlock_t3961874966_marshaled_com;
struct ILExceptionBlock_t3961874966_marshaled_pinvoke;
struct Object_t631007953_marshaled_com;
struct PlayerLoopSystem_t105772105_marshaled_com;
struct PlayerLoopSystem_t105772105_marshaled_pinvoke;
struct XPathNode_t2208072876_marshaled_com;
struct XPathNode_t2208072876_marshaled_pinvoke;
struct SslStatusU5BU5D_t3256112573;
struct BooleanU5BU5D_t2897418192;
struct ByteU5BU5D_t4116647657;
struct CharU5BU5D_t3528271667;
struct KeyValuePair_2U5BU5D_t2069718811;
struct DateTimeOffsetU5BU5D_t3473357058;
struct DateTimeU5BU5D_t1184652292;
struct DecimalU5BU5D_t1145110141;
struct DoubleU5BU5D_t3413330114;
struct Int16U5BU5D_t3686840178;
struct Int32U5BU5D_t385246372;
struct Int64U5BU5D_t2559172825;
struct Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057;
struct ObjectU5BU5D_t2843939325;
struct CustomAttributeNamedArgumentU5BU5D_t3710464795;
struct CustomAttributeTypedArgumentU5BU5D_t1465843424;
struct SByteU5BU5D_t2651576203;
struct SingleU5BU5D_t1444911251;
struct RegexOptionsU5BU5D_t160358170;
struct TimeSpanU5BU5D_t4291357516;
struct UInt16U5BU5D_t3326319531;
struct UInt32U5BU5D_t2770800703;
struct UInt64U5BU5D_t1659327989;
struct RangePositionInfoU5BU5D_t242328633;
struct SequenceConstructPosContextU5BU5D_t615009946;
struct XmlSchemaObjectEntryU5BU5D_t1655208330;
struct OrderBlockU5BU5D_t2389202590;
struct ColorU5BU5D_t941916413;
struct UICharInfoU5BU5D_t928762055;
struct UILineInfoU5BU5D_t1655937503;
struct UIVertexU5BU5D_t1981460040;
struct WorkRequestU5BU5D_t3723878365;
struct Vector2U5BU5D_t1457185986;
struct Vector3U5BU5D_t1718750761;
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
struct Il2CppArrayBounds;
#ifndef RUNTIMEARRAY_H
#define RUNTIMEARRAY_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Array
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEARRAY_H
#ifndef ATTRIBUTE_T861562559_H
#define ATTRIBUTE_T861562559_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Attribute
struct Attribute_t861562559 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTE_T861562559_H
#ifndef COLLECTIONEXTENSIONS_T4236879312_H
#define COLLECTIONEXTENSIONS_T4236879312_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.CollectionExtensions
struct CollectionExtensions_t4236879312 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLLECTIONEXTENSIONS_T4236879312_H
#ifndef LIST_1_T1569362707_H
#define LIST_1_T1569362707_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Boolean>
struct List_1_t1569362707 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
BooleanU5BU5D_t2897418192* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1569362707, ____items_1)); }
inline BooleanU5BU5D_t2897418192* get__items_1() const { return ____items_1; }
inline BooleanU5BU5D_t2897418192** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(BooleanU5BU5D_t2897418192* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1569362707, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1569362707, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1569362707, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t1569362707_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
BooleanU5BU5D_t2897418192* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1569362707_StaticFields, ____emptyArray_5)); }
inline BooleanU5BU5D_t2897418192* get__emptyArray_5() const { return ____emptyArray_5; }
inline BooleanU5BU5D_t2897418192** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(BooleanU5BU5D_t2897418192* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T1569362707_H
#ifndef LIST_1_T2606371118_H
#define LIST_1_T2606371118_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Byte>
struct List_1_t2606371118 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ByteU5BU5D_t4116647657* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2606371118, ____items_1)); }
inline ByteU5BU5D_t4116647657* get__items_1() const { return ____items_1; }
inline ByteU5BU5D_t4116647657** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ByteU5BU5D_t4116647657* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2606371118, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2606371118, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2606371118, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t2606371118_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ByteU5BU5D_t4116647657* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2606371118_StaticFields, ____emptyArray_5)); }
inline ByteU5BU5D_t4116647657* get__emptyArray_5() const { return ____emptyArray_5; }
inline ByteU5BU5D_t4116647657** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ByteU5BU5D_t4116647657* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T2606371118_H
#ifndef LIST_1_T915637231_H
#define LIST_1_T915637231_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.DateTime>
struct List_1_t915637231 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
DateTimeU5BU5D_t1184652292* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t915637231, ____items_1)); }
inline DateTimeU5BU5D_t1184652292* get__items_1() const { return ____items_1; }
inline DateTimeU5BU5D_t1184652292** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(DateTimeU5BU5D_t1184652292* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t915637231, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t915637231, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t915637231, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t915637231_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
DateTimeU5BU5D_t1184652292* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t915637231_StaticFields, ____emptyArray_5)); }
inline DateTimeU5BU5D_t1184652292* get__emptyArray_5() const { return ____emptyArray_5; }
inline DateTimeU5BU5D_t1184652292** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(DateTimeU5BU5D_t1184652292* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T915637231_H
#ifndef LIST_1_T406394953_H
#define LIST_1_T406394953_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.DateTimeOffset>
struct List_1_t406394953 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
DateTimeOffsetU5BU5D_t3473357058* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t406394953, ____items_1)); }
inline DateTimeOffsetU5BU5D_t3473357058* get__items_1() const { return ____items_1; }
inline DateTimeOffsetU5BU5D_t3473357058** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(DateTimeOffsetU5BU5D_t3473357058* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t406394953, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t406394953, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t406394953, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t406394953_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
DateTimeOffsetU5BU5D_t3473357058* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t406394953_StaticFields, ____emptyArray_5)); }
inline DateTimeOffsetU5BU5D_t3473357058* get__emptyArray_5() const { return ____emptyArray_5; }
inline DateTimeOffsetU5BU5D_t3473357058** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(DateTimeOffsetU5BU5D_t3473357058* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T406394953_H
#ifndef LIST_1_T125366826_H
#define LIST_1_T125366826_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Decimal>
struct List_1_t125366826 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
DecimalU5BU5D_t1145110141* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t125366826, ____items_1)); }
inline DecimalU5BU5D_t1145110141* get__items_1() const { return ____items_1; }
inline DecimalU5BU5D_t1145110141** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(DecimalU5BU5D_t1145110141* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t125366826, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t125366826, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t125366826, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t125366826_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
DecimalU5BU5D_t1145110141* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t125366826_StaticFields, ____emptyArray_5)); }
inline DecimalU5BU5D_t1145110141* get__emptyArray_5() const { return ____emptyArray_5; }
inline DecimalU5BU5D_t1145110141** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(DecimalU5BU5D_t1145110141* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T125366826_H
#ifndef LIST_1_T2066740105_H
#define LIST_1_T2066740105_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Double>
struct List_1_t2066740105 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
DoubleU5BU5D_t3413330114* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2066740105, ____items_1)); }
inline DoubleU5BU5D_t3413330114* get__items_1() const { return ____items_1; }
inline DoubleU5BU5D_t3413330114** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(DoubleU5BU5D_t3413330114* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2066740105, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2066740105, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2066740105, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t2066740105_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
DoubleU5BU5D_t3413330114* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2066740105_StaticFields, ____emptyArray_5)); }
inline DoubleU5BU5D_t3413330114* get__emptyArray_5() const { return ____emptyArray_5; }
inline DoubleU5BU5D_t3413330114** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(DoubleU5BU5D_t3413330114* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T2066740105_H
#ifndef LIST_1_T4024895129_H
#define LIST_1_T4024895129_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Int16>
struct List_1_t4024895129 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Int16U5BU5D_t3686840178* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4024895129, ____items_1)); }
inline Int16U5BU5D_t3686840178* get__items_1() const { return ____items_1; }
inline Int16U5BU5D_t3686840178** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Int16U5BU5D_t3686840178* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4024895129, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4024895129, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4024895129, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t4024895129_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Int16U5BU5D_t3686840178* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4024895129_StaticFields, ____emptyArray_5)); }
inline Int16U5BU5D_t3686840178* get__emptyArray_5() const { return ____emptyArray_5; }
inline Int16U5BU5D_t3686840178** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Int16U5BU5D_t3686840178* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T4024895129_H
#ifndef LIST_1_T128053199_H
#define LIST_1_T128053199_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t128053199 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Int32U5BU5D_t385246372* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t128053199, ____items_1)); }
inline Int32U5BU5D_t385246372* get__items_1() const { return ____items_1; }
inline Int32U5BU5D_t385246372** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Int32U5BU5D_t385246372* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t128053199, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t128053199, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t128053199, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t128053199_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Int32U5BU5D_t385246372* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t128053199_StaticFields, ____emptyArray_5)); }
inline Int32U5BU5D_t385246372* get__emptyArray_5() const { return ____emptyArray_5; }
inline Int32U5BU5D_t385246372** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Int32U5BU5D_t385246372* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T128053199_H
#ifndef LIST_1_T913674750_H
#define LIST_1_T913674750_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Int64>
struct List_1_t913674750 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Int64U5BU5D_t2559172825* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t913674750, ____items_1)); }
inline Int64U5BU5D_t2559172825* get__items_1() const { return ____items_1; }
inline Int64U5BU5D_t2559172825** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Int64U5BU5D_t2559172825* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t913674750, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t913674750, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t913674750, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t913674750_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Int64U5BU5D_t2559172825* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t913674750_StaticFields, ____emptyArray_5)); }
inline Int64U5BU5D_t2559172825* get__emptyArray_5() const { return ____emptyArray_5; }
inline Int64U5BU5D_t2559172825** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Int64U5BU5D_t2559172825* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T913674750_H
#ifndef LIST_1_T257213610_H
#define LIST_1_T257213610_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Object>
struct List_1_t257213610 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t2843939325* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____items_1)); }
inline ObjectU5BU5D_t2843939325* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_t2843939325** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_t2843939325* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t257213610, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t257213610_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_t2843939325* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t257213610_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_t2843939325* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_t2843939325** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_t2843939325* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T257213610_H
#ifndef LIST_1_T3141652404_H
#define LIST_1_T3141652404_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.SByte>
struct List_1_t3141652404 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
SByteU5BU5D_t2651576203* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3141652404, ____items_1)); }
inline SByteU5BU5D_t2651576203* get__items_1() const { return ____items_1; }
inline SByteU5BU5D_t2651576203** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(SByteU5BU5D_t2651576203* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3141652404, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3141652404, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3141652404, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t3141652404_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
SByteU5BU5D_t2651576203* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3141652404_StaticFields, ____emptyArray_5)); }
inline SByteU5BU5D_t2651576203* get__emptyArray_5() const { return ____emptyArray_5; }
inline SByteU5BU5D_t2651576203** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(SByteU5BU5D_t2651576203* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T3141652404_H
#ifndef LIST_1_T2869341516_H
#define LIST_1_T2869341516_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Single>
struct List_1_t2869341516 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
SingleU5BU5D_t1444911251* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2869341516, ____items_1)); }
inline SingleU5BU5D_t1444911251* get__items_1() const { return ____items_1; }
inline SingleU5BU5D_t1444911251** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(SingleU5BU5D_t1444911251* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2869341516, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2869341516, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2869341516, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t2869341516_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
SingleU5BU5D_t1444911251* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2869341516_StaticFields, ____emptyArray_5)); }
inline SingleU5BU5D_t1444911251* get__emptyArray_5() const { return ____emptyArray_5; }
inline SingleU5BU5D_t1444911251** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(SingleU5BU5D_t1444911251* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T2869341516_H
#ifndef LIST_1_T2353233991_H
#define LIST_1_T2353233991_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.TimeSpan>
struct List_1_t2353233991 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
TimeSpanU5BU5D_t4291357516* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2353233991, ____items_1)); }
inline TimeSpanU5BU5D_t4291357516* get__items_1() const { return ____items_1; }
inline TimeSpanU5BU5D_t4291357516** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(TimeSpanU5BU5D_t4291357516* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2353233991, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t2353233991, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2353233991, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t2353233991_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
TimeSpanU5BU5D_t4291357516* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2353233991_StaticFields, ____emptyArray_5)); }
inline TimeSpanU5BU5D_t4291357516* get__emptyArray_5() const { return ____emptyArray_5; }
inline TimeSpanU5BU5D_t4291357516** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(TimeSpanU5BU5D_t4291357516* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T2353233991_H
#ifndef LIST_1_T3649799700_H
#define LIST_1_T3649799700_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.UInt16>
struct List_1_t3649799700 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
UInt16U5BU5D_t3326319531* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3649799700, ____items_1)); }
inline UInt16U5BU5D_t3326319531* get__items_1() const { return ____items_1; }
inline UInt16U5BU5D_t3326319531** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(UInt16U5BU5D_t3326319531* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3649799700, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3649799700, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3649799700, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t3649799700_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
UInt16U5BU5D_t3326319531* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3649799700_StaticFields, ____emptyArray_5)); }
inline UInt16U5BU5D_t3326319531* get__emptyArray_5() const { return ____emptyArray_5; }
inline UInt16U5BU5D_t3326319531** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(UInt16U5BU5D_t3326319531* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T3649799700_H
#ifndef LIST_1_T4032136720_H
#define LIST_1_T4032136720_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.UInt32>
struct List_1_t4032136720 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
UInt32U5BU5D_t2770800703* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4032136720, ____items_1)); }
inline UInt32U5BU5D_t2770800703* get__items_1() const { return ____items_1; }
inline UInt32U5BU5D_t2770800703** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(UInt32U5BU5D_t2770800703* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4032136720, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4032136720, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4032136720, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t4032136720_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
UInt32U5BU5D_t2770800703* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4032136720_StaticFields, ____emptyArray_5)); }
inline UInt32U5BU5D_t2770800703* get__emptyArray_5() const { return ____emptyArray_5; }
inline UInt32U5BU5D_t2770800703** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(UInt32U5BU5D_t2770800703* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T4032136720_H
#ifndef LIST_1_T1311147538_H
#define LIST_1_T1311147538_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.UInt64>
struct List_1_t1311147538 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
UInt64U5BU5D_t1659327989* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1311147538, ____items_1)); }
inline UInt64U5BU5D_t1659327989* get__items_1() const { return ____items_1; }
inline UInt64U5BU5D_t1659327989** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(UInt64U5BU5D_t1659327989* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1311147538, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1311147538, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1311147538, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t1311147538_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
UInt64U5BU5D_t1659327989* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1311147538_StaticFields, ____emptyArray_5)); }
inline UInt64U5BU5D_t1659327989* get__emptyArray_5() const { return ____emptyArray_5; }
inline UInt64U5BU5D_t1659327989** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(UInt64U5BU5D_t1659327989* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T1311147538_H
#ifndef LIST_1_T4027761066_H
#define LIST_1_T4027761066_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<UnityEngine.Color>
struct List_1_t4027761066 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ColorU5BU5D_t941916413* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4027761066, ____items_1)); }
inline ColorU5BU5D_t941916413* get__items_1() const { return ____items_1; }
inline ColorU5BU5D_t941916413** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ColorU5BU5D_t941916413* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4027761066, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4027761066, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4027761066, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t4027761066_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ColorU5BU5D_t941916413* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4027761066_StaticFields, ____emptyArray_5)); }
inline ColorU5BU5D_t941916413* get__emptyArray_5() const { return ____emptyArray_5; }
inline ColorU5BU5D_t941916413** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ColorU5BU5D_t941916413* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T4027761066_H
#ifndef LIST_1_T3628304265_H
#define LIST_1_T3628304265_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<UnityEngine.Vector2>
struct List_1_t3628304265 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Vector2U5BU5D_t1457185986* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3628304265, ____items_1)); }
inline Vector2U5BU5D_t1457185986* get__items_1() const { return ____items_1; }
inline Vector2U5BU5D_t1457185986** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Vector2U5BU5D_t1457185986* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3628304265, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3628304265, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3628304265, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t3628304265_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Vector2U5BU5D_t1457185986* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3628304265_StaticFields, ____emptyArray_5)); }
inline Vector2U5BU5D_t1457185986* get__emptyArray_5() const { return ____emptyArray_5; }
inline Vector2U5BU5D_t1457185986** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Vector2U5BU5D_t1457185986* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T3628304265_H
#ifndef LIST_1_T899420910_H
#define LIST_1_T899420910_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<UnityEngine.Vector3>
struct List_1_t899420910 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Vector3U5BU5D_t1718750761* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t899420910, ____items_1)); }
inline Vector3U5BU5D_t1718750761* get__items_1() const { return ____items_1; }
inline Vector3U5BU5D_t1718750761** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Vector3U5BU5D_t1718750761* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((&____items_1), value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t899420910, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t899420910, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t899420910, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_4), value);
}
};
struct List_1_t899420910_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Vector3U5BU5D_t1718750761* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t899420910_StaticFields, ____emptyArray_5)); }
inline Vector3U5BU5D_t1718750761* get__emptyArray_5() const { return ____emptyArray_5; }
inline Vector3U5BU5D_t1718750761** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Vector3U5BU5D_t1718750761* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((&____emptyArray_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIST_1_T899420910_H
#ifndef EMPTYARRAY_1_T576342003_H
#define EMPTYARRAY_1_T576342003_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.EmptyArray`1<Mono.AppleTls.SslStatus>
struct EmptyArray_1_t576342003 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t576342003_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
SslStatusU5BU5D_t3256112573* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t576342003_StaticFields, ___Value_0)); }
inline SslStatusU5BU5D_t3256112573* get_Value_0() const { return ___Value_0; }
inline SslStatusU5BU5D_t3256112573** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(SslStatusU5BU5D_t3256112573* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((&___Value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYARRAY_1_T576342003_H
#ifndef EMPTYARRAY_1_T4018820917_H
#define EMPTYARRAY_1_T4018820917_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.EmptyArray`1<System.Char>
struct EmptyArray_1_t4018820917 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t4018820917_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
CharU5BU5D_t3528271667* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t4018820917_StaticFields, ___Value_0)); }
inline CharU5BU5D_t3528271667* get_Value_0() const { return ___Value_0; }
inline CharU5BU5D_t3528271667** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(CharU5BU5D_t3528271667* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((&___Value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYARRAY_1_T4018820917_H
#ifndef EMPTYARRAY_1_T3464466611_H
#define EMPTYARRAY_1_T3464466611_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_t3464466611 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t3464466611_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_t2843939325* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t3464466611_StaticFields, ___Value_0)); }
inline ObjectU5BU5D_t2843939325* get_Value_0() const { return ___Value_0; }
inline ObjectU5BU5D_t2843939325** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ObjectU5BU5D_t2843939325* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((&___Value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYARRAY_1_T3464466611_H
#ifndef EMPTYARRAY_1_T2438741146_H
#define EMPTYARRAY_1_T2438741146_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.EmptyArray`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>
struct EmptyArray_1_t2438741146 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t2438741146_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
SequenceConstructPosContextU5BU5D_t615009946* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t2438741146_StaticFields, ___Value_0)); }
inline SequenceConstructPosContextU5BU5D_t615009946* get_Value_0() const { return ___Value_0; }
inline SequenceConstructPosContextU5BU5D_t615009946** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(SequenceConstructPosContextU5BU5D_t615009946* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((&___Value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYARRAY_1_T2438741146_H
#ifndef EMPTYARRAY_1_T1738879059_H
#define EMPTYARRAY_1_T1738879059_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.EmptyArray`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct EmptyArray_1_t1738879059 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t1738879059_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
WorkRequestU5BU5D_t3723878365* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t1738879059_StaticFields, ___Value_0)); }
inline WorkRequestU5BU5D_t3723878365* get_Value_0() const { return ___Value_0; }
inline WorkRequestU5BU5D_t3723878365** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(WorkRequestU5BU5D_t3723878365* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((&___Value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EMPTYARRAY_1_T1738879059_H
#ifndef EXCEPTION_T_H
#define EXCEPTION_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_t2481557153 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t1169129676* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4013366056* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((&____className_1), value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((&____message_2), value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((&____data_3), value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((&____innerException_4), value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((&____helpURL_5), value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((&____stackTrace_6), value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((&____stackTraceString_7), value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_8), value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((&____dynamicMethods_10), value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((&____source_12), value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t2481557153 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t2481557153 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t2481557153 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((&____safeSerializationManager_13), value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t1169129676* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t1169129676** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t1169129676* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((&___captured_traces_14), value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4013366056* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4013366056** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4013366056* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((&___native_trace_ips_15), value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((&___s_EDILock_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t2481557153 * ____safeSerializationManager_13;
StackTraceU5BU5D_t1169129676* ___captured_traces_14;
intptr_t* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t2481557153 * ____safeSerializationManager_13;
StackTraceU5BU5D_t1169129676* ___captured_traces_14;
intptr_t* ___native_trace_ips_15;
};
#endif // EXCEPTION_T_H
#ifndef ENUMERABLE_T538148348_H
#define ENUMERABLE_T538148348_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Linq.Enumerable
struct Enumerable_t538148348 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERABLE_T538148348_H
#ifndef CUSTOMATTRIBUTEDATA_T1084486650_H
#define CUSTOMATTRIBUTEDATA_T1084486650_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.CustomAttributeData
struct CustomAttributeData_t1084486650 : public RuntimeObject
{
public:
// System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::ctorInfo
ConstructorInfo_t5769829 * ___ctorInfo_0;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument> System.Reflection.CustomAttributeData::ctorArgs
RuntimeObject* ___ctorArgs_1;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument> System.Reflection.CustomAttributeData::namedArgs
RuntimeObject* ___namedArgs_2;
// System.Reflection.CustomAttributeData/LazyCAttrData System.Reflection.CustomAttributeData::lazyData
LazyCAttrData_t3989247807 * ___lazyData_3;
public:
inline static int32_t get_offset_of_ctorInfo_0() { return static_cast<int32_t>(offsetof(CustomAttributeData_t1084486650, ___ctorInfo_0)); }
inline ConstructorInfo_t5769829 * get_ctorInfo_0() const { return ___ctorInfo_0; }
inline ConstructorInfo_t5769829 ** get_address_of_ctorInfo_0() { return &___ctorInfo_0; }
inline void set_ctorInfo_0(ConstructorInfo_t5769829 * value)
{
___ctorInfo_0 = value;
Il2CppCodeGenWriteBarrier((&___ctorInfo_0), value);
}
inline static int32_t get_offset_of_ctorArgs_1() { return static_cast<int32_t>(offsetof(CustomAttributeData_t1084486650, ___ctorArgs_1)); }
inline RuntimeObject* get_ctorArgs_1() const { return ___ctorArgs_1; }
inline RuntimeObject** get_address_of_ctorArgs_1() { return &___ctorArgs_1; }
inline void set_ctorArgs_1(RuntimeObject* value)
{
___ctorArgs_1 = value;
Il2CppCodeGenWriteBarrier((&___ctorArgs_1), value);
}
inline static int32_t get_offset_of_namedArgs_2() { return static_cast<int32_t>(offsetof(CustomAttributeData_t1084486650, ___namedArgs_2)); }
inline RuntimeObject* get_namedArgs_2() const { return ___namedArgs_2; }
inline RuntimeObject** get_address_of_namedArgs_2() { return &___namedArgs_2; }
inline void set_namedArgs_2(RuntimeObject* value)
{
___namedArgs_2 = value;
Il2CppCodeGenWriteBarrier((&___namedArgs_2), value);
}
inline static int32_t get_offset_of_lazyData_3() { return static_cast<int32_t>(offsetof(CustomAttributeData_t1084486650, ___lazyData_3)); }
inline LazyCAttrData_t3989247807 * get_lazyData_3() const { return ___lazyData_3; }
inline LazyCAttrData_t3989247807 ** get_address_of_lazyData_3() { return &___lazyData_3; }
inline void set_lazyData_3(LazyCAttrData_t3989247807 * value)
{
___lazyData_3 = value;
Il2CppCodeGenWriteBarrier((&___lazyData_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CUSTOMATTRIBUTEDATA_T1084486650_H
#ifndef CUSTOMATTRIBUTEEXTENSIONS_T4268647790_H
#define CUSTOMATTRIBUTEEXTENSIONS_T4268647790_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.CustomAttributeExtensions
struct CustomAttributeExtensions_t4268647790 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CUSTOMATTRIBUTEEXTENSIONS_T4268647790_H
#ifndef MEMBERINFO_T_H
#define MEMBERINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERINFO_T_H
#ifndef MOVENEXTRUNNER_T4042132640_H
#define MOVENEXTRUNNER_T4042132640_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncMethodBuilderCore/MoveNextRunner
struct MoveNextRunner_t4042132640 : public RuntimeObject
{
public:
// System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncMethodBuilderCore/MoveNextRunner::m_context
ExecutionContext_t1748372627 * ___m_context_0;
// System.Runtime.CompilerServices.IAsyncStateMachine System.Runtime.CompilerServices.AsyncMethodBuilderCore/MoveNextRunner::m_stateMachine
RuntimeObject* ___m_stateMachine_1;
public:
inline static int32_t get_offset_of_m_context_0() { return static_cast<int32_t>(offsetof(MoveNextRunner_t4042132640, ___m_context_0)); }
inline ExecutionContext_t1748372627 * get_m_context_0() const { return ___m_context_0; }
inline ExecutionContext_t1748372627 ** get_address_of_m_context_0() { return &___m_context_0; }
inline void set_m_context_0(ExecutionContext_t1748372627 * value)
{
___m_context_0 = value;
Il2CppCodeGenWriteBarrier((&___m_context_0), value);
}
inline static int32_t get_offset_of_m_stateMachine_1() { return static_cast<int32_t>(offsetof(MoveNextRunner_t4042132640, ___m_stateMachine_1)); }
inline RuntimeObject* get_m_stateMachine_1() const { return ___m_stateMachine_1; }
inline RuntimeObject** get_address_of_m_stateMachine_1() { return &___m_stateMachine_1; }
inline void set_m_stateMachine_1(RuntimeObject* value)
{
___m_stateMachine_1 = value;
Il2CppCodeGenWriteBarrier((&___m_stateMachine_1), value);
}
};
struct MoveNextRunner_t4042132640_StaticFields
{
public:
// System.Threading.ContextCallback System.Runtime.CompilerServices.AsyncMethodBuilderCore/MoveNextRunner::s_invokeMoveNext
ContextCallback_t3823316192 * ___s_invokeMoveNext_2;
public:
inline static int32_t get_offset_of_s_invokeMoveNext_2() { return static_cast<int32_t>(offsetof(MoveNextRunner_t4042132640_StaticFields, ___s_invokeMoveNext_2)); }
inline ContextCallback_t3823316192 * get_s_invokeMoveNext_2() const { return ___s_invokeMoveNext_2; }
inline ContextCallback_t3823316192 ** get_address_of_s_invokeMoveNext_2() { return &___s_invokeMoveNext_2; }
inline void set_s_invokeMoveNext_2(ContextCallback_t3823316192 * value)
{
___s_invokeMoveNext_2 = value;
Il2CppCodeGenWriteBarrier((&___s_invokeMoveNext_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MOVENEXTRUNNER_T4042132640_H
#ifndef JITHELPERS_T1212693971_H
#define JITHELPERS_T1212693971_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.JitHelpers
struct JitHelpers_t1212693971 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // JITHELPERS_T1212693971_H
#ifndef MARSHAL_T1757017490_H
#define MARSHAL_T1757017490_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.Marshal
struct Marshal_t1757017490 : public RuntimeObject
{
public:
public:
};
struct Marshal_t1757017490_StaticFields
{
public:
// System.Int32 System.Runtime.InteropServices.Marshal::SystemMaxDBCSCharSize
int32_t ___SystemMaxDBCSCharSize_0;
// System.Int32 System.Runtime.InteropServices.Marshal::SystemDefaultCharSize
int32_t ___SystemDefaultCharSize_1;
// System.Boolean System.Runtime.InteropServices.Marshal::SetErrorInfoNotAvailable
bool ___SetErrorInfoNotAvailable_2;
// System.Boolean System.Runtime.InteropServices.Marshal::GetErrorInfoNotAvailable
bool ___GetErrorInfoNotAvailable_3;
public:
inline static int32_t get_offset_of_SystemMaxDBCSCharSize_0() { return static_cast<int32_t>(offsetof(Marshal_t1757017490_StaticFields, ___SystemMaxDBCSCharSize_0)); }
inline int32_t get_SystemMaxDBCSCharSize_0() const { return ___SystemMaxDBCSCharSize_0; }
inline int32_t* get_address_of_SystemMaxDBCSCharSize_0() { return &___SystemMaxDBCSCharSize_0; }
inline void set_SystemMaxDBCSCharSize_0(int32_t value)
{
___SystemMaxDBCSCharSize_0 = value;
}
inline static int32_t get_offset_of_SystemDefaultCharSize_1() { return static_cast<int32_t>(offsetof(Marshal_t1757017490_StaticFields, ___SystemDefaultCharSize_1)); }
inline int32_t get_SystemDefaultCharSize_1() const { return ___SystemDefaultCharSize_1; }
inline int32_t* get_address_of_SystemDefaultCharSize_1() { return &___SystemDefaultCharSize_1; }
inline void set_SystemDefaultCharSize_1(int32_t value)
{
___SystemDefaultCharSize_1 = value;
}
inline static int32_t get_offset_of_SetErrorInfoNotAvailable_2() { return static_cast<int32_t>(offsetof(Marshal_t1757017490_StaticFields, ___SetErrorInfoNotAvailable_2)); }
inline bool get_SetErrorInfoNotAvailable_2() const { return ___SetErrorInfoNotAvailable_2; }
inline bool* get_address_of_SetErrorInfoNotAvailable_2() { return &___SetErrorInfoNotAvailable_2; }
inline void set_SetErrorInfoNotAvailable_2(bool value)
{
___SetErrorInfoNotAvailable_2 = value;
}
inline static int32_t get_offset_of_GetErrorInfoNotAvailable_3() { return static_cast<int32_t>(offsetof(Marshal_t1757017490_StaticFields, ___GetErrorInfoNotAvailable_3)); }
inline bool get_GetErrorInfoNotAvailable_3() const { return ___GetErrorInfoNotAvailable_3; }
inline bool* get_address_of_GetErrorInfoNotAvailable_3() { return &___GetErrorInfoNotAvailable_3; }
inline void set_GetErrorInfoNotAvailable_3(bool value)
{
___GetErrorInfoNotAvailable_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MARSHAL_T1757017490_H
#ifndef STRING_T_H
#define STRING_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((&___Empty_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRING_T_H
#ifndef INTERLOCKED_T2273387594_H
#define INTERLOCKED_T2273387594_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Interlocked
struct Interlocked_t2273387594 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERLOCKED_T2273387594_H
#ifndef LAZYINITIALIZER_T767351689_H
#define LAZYINITIALIZER_T767351689_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.LazyInitializer
struct LazyInitializer_t767351689 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LAZYINITIALIZER_T767351689_H
#ifndef SYNCHRONIZATIONCONTEXT_T2326897723_H
#define SYNCHRONIZATIONCONTEXT_T2326897723_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.SynchronizationContext
struct SynchronizationContext_t2326897723 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYNCHRONIZATIONCONTEXT_T2326897723_H
#ifndef TASKTOAPM_T1739674311_H
#define TASKTOAPM_T1739674311_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskToApm
struct TaskToApm_t1739674311 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKTOAPM_T1739674311_H
#ifndef TASKWRAPPERASYNCRESULT_T2316075138_H
#define TASKWRAPPERASYNCRESULT_T2316075138_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.TaskToApm/TaskWrapperAsyncResult
struct TaskWrapperAsyncResult_t2316075138 : public RuntimeObject
{
public:
// System.Threading.Tasks.Task System.Threading.Tasks.TaskToApm/TaskWrapperAsyncResult::Task
Task_t3187275312 * ___Task_0;
// System.Object System.Threading.Tasks.TaskToApm/TaskWrapperAsyncResult::m_state
RuntimeObject * ___m_state_1;
// System.Boolean System.Threading.Tasks.TaskToApm/TaskWrapperAsyncResult::m_completedSynchronously
bool ___m_completedSynchronously_2;
public:
inline static int32_t get_offset_of_Task_0() { return static_cast<int32_t>(offsetof(TaskWrapperAsyncResult_t2316075138, ___Task_0)); }
inline Task_t3187275312 * get_Task_0() const { return ___Task_0; }
inline Task_t3187275312 ** get_address_of_Task_0() { return &___Task_0; }
inline void set_Task_0(Task_t3187275312 * value)
{
___Task_0 = value;
Il2CppCodeGenWriteBarrier((&___Task_0), value);
}
inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(TaskWrapperAsyncResult_t2316075138, ___m_state_1)); }
inline RuntimeObject * get_m_state_1() const { return ___m_state_1; }
inline RuntimeObject ** get_address_of_m_state_1() { return &___m_state_1; }
inline void set_m_state_1(RuntimeObject * value)
{
___m_state_1 = value;
Il2CppCodeGenWriteBarrier((&___m_state_1), value);
}
inline static int32_t get_offset_of_m_completedSynchronously_2() { return static_cast<int32_t>(offsetof(TaskWrapperAsyncResult_t2316075138, ___m_completedSynchronously_2)); }
inline bool get_m_completedSynchronously_2() const { return ___m_completedSynchronously_2; }
inline bool* get_address_of_m_completedSynchronously_2() { return &___m_completedSynchronously_2; }
inline void set_m_completedSynchronously_2(bool value)
{
___m_completedSynchronously_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKWRAPPERASYNCRESULT_T2316075138_H
#ifndef VOLATILE_T3391122269_H
#define VOLATILE_T3391122269_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Volatile
struct Volatile_t3391122269 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOLATILE_T3391122269_H
#ifndef THROWHELPER_T481305680_H
#define THROWHELPER_T481305680_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ThrowHelper
struct ThrowHelper_t481305680 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // THROWHELPER_T481305680_H
#ifndef VALUETYPE_T3640485471_H
#define VALUETYPE_T3640485471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t3640485471 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_com
{
};
#endif // VALUETYPE_T3640485471_H
#ifndef XMLVALUECONVERTER_T585560190_H
#define XMLVALUECONVERTER_T585560190_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.Schema.XmlValueConverter
struct XmlValueConverter_t585560190 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // XMLVALUECONVERTER_T585560190_H
#ifndef ASSERT_T2203240047_H
#define ASSERT_T2203240047_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Assertions.Assert
struct Assert_t2203240047 : public RuntimeObject
{
public:
public:
};
struct Assert_t2203240047_StaticFields
{
public:
// System.Boolean UnityEngine.Assertions.Assert::raiseExceptions
bool ___raiseExceptions_0;
public:
inline static int32_t get_offset_of_raiseExceptions_0() { return static_cast<int32_t>(offsetof(Assert_t2203240047_StaticFields, ___raiseExceptions_0)); }
inline bool get_raiseExceptions_0() const { return ___raiseExceptions_0; }
inline bool* get_address_of_raiseExceptions_0() { return &___raiseExceptions_0; }
inline void set_raiseExceptions_0(bool value)
{
___raiseExceptions_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSERT_T2203240047_H
#ifndef ATTRIBUTEHELPERENGINE_T2735742303_H
#define ATTRIBUTEHELPERENGINE_T2735742303_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.AttributeHelperEngine
struct AttributeHelperEngine_t2735742303 : public RuntimeObject
{
public:
public:
};
struct AttributeHelperEngine_t2735742303_StaticFields
{
public:
// UnityEngine.DisallowMultipleComponent[] UnityEngine.AttributeHelperEngine::_disallowMultipleComponentArray
DisallowMultipleComponentU5BU5D_t3936143868* ____disallowMultipleComponentArray_0;
// UnityEngine.ExecuteInEditMode[] UnityEngine.AttributeHelperEngine::_executeInEditModeArray
ExecuteInEditModeU5BU5D_t3239458680* ____executeInEditModeArray_1;
// UnityEngine.RequireComponent[] UnityEngine.AttributeHelperEngine::_requireComponentArray
RequireComponentU5BU5D_t2245623724* ____requireComponentArray_2;
public:
inline static int32_t get_offset_of__disallowMultipleComponentArray_0() { return static_cast<int32_t>(offsetof(AttributeHelperEngine_t2735742303_StaticFields, ____disallowMultipleComponentArray_0)); }
inline DisallowMultipleComponentU5BU5D_t3936143868* get__disallowMultipleComponentArray_0() const { return ____disallowMultipleComponentArray_0; }
inline DisallowMultipleComponentU5BU5D_t3936143868** get_address_of__disallowMultipleComponentArray_0() { return &____disallowMultipleComponentArray_0; }
inline void set__disallowMultipleComponentArray_0(DisallowMultipleComponentU5BU5D_t3936143868* value)
{
____disallowMultipleComponentArray_0 = value;
Il2CppCodeGenWriteBarrier((&____disallowMultipleComponentArray_0), value);
}
inline static int32_t get_offset_of__executeInEditModeArray_1() { return static_cast<int32_t>(offsetof(AttributeHelperEngine_t2735742303_StaticFields, ____executeInEditModeArray_1)); }
inline ExecuteInEditModeU5BU5D_t3239458680* get__executeInEditModeArray_1() const { return ____executeInEditModeArray_1; }
inline ExecuteInEditModeU5BU5D_t3239458680** get_address_of__executeInEditModeArray_1() { return &____executeInEditModeArray_1; }
inline void set__executeInEditModeArray_1(ExecuteInEditModeU5BU5D_t3239458680* value)
{
____executeInEditModeArray_1 = value;
Il2CppCodeGenWriteBarrier((&____executeInEditModeArray_1), value);
}
inline static int32_t get_offset_of__requireComponentArray_2() { return static_cast<int32_t>(offsetof(AttributeHelperEngine_t2735742303_StaticFields, ____requireComponentArray_2)); }
inline RequireComponentU5BU5D_t2245623724* get__requireComponentArray_2() const { return ____requireComponentArray_2; }
inline RequireComponentU5BU5D_t2245623724** get_address_of__requireComponentArray_2() { return &____requireComponentArray_2; }
inline void set__requireComponentArray_2(RequireComponentU5BU5D_t2245623724* value)
{
____requireComponentArray_2 = value;
Il2CppCodeGenWriteBarrier((&____requireComponentArray_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTEHELPERENGINE_T2735742303_H
#ifndef BASEINVOKABLECALL_T2703961024_H
#define BASEINVOKABLECALL_T2703961024_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.BaseInvokableCall
struct BaseInvokableCall_t2703961024 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BASEINVOKABLECALL_T2703961024_H
#ifndef XPATHNODE_T2208072876_H
#define XPATHNODE_T2208072876_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// MS.Internal.Xml.Cache.XPathNode
struct XPathNode_t2208072876
{
public:
// MS.Internal.Xml.Cache.XPathNodeInfoAtom MS.Internal.Xml.Cache.XPathNode::info
XPathNodeInfoAtom_t1760358141 * ___info_0;
// System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxSibling
uint16_t ___idxSibling_1;
// System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxParent
uint16_t ___idxParent_2;
// System.UInt16 MS.Internal.Xml.Cache.XPathNode::idxSimilar
uint16_t ___idxSimilar_3;
// System.UInt16 MS.Internal.Xml.Cache.XPathNode::posOffset
uint16_t ___posOffset_4;
// System.UInt32 MS.Internal.Xml.Cache.XPathNode::props
uint32_t ___props_5;
// System.String MS.Internal.Xml.Cache.XPathNode::value
String_t* ___value_6;
public:
inline static int32_t get_offset_of_info_0() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___info_0)); }
inline XPathNodeInfoAtom_t1760358141 * get_info_0() const { return ___info_0; }
inline XPathNodeInfoAtom_t1760358141 ** get_address_of_info_0() { return &___info_0; }
inline void set_info_0(XPathNodeInfoAtom_t1760358141 * value)
{
___info_0 = value;
Il2CppCodeGenWriteBarrier((&___info_0), value);
}
inline static int32_t get_offset_of_idxSibling_1() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___idxSibling_1)); }
inline uint16_t get_idxSibling_1() const { return ___idxSibling_1; }
inline uint16_t* get_address_of_idxSibling_1() { return &___idxSibling_1; }
inline void set_idxSibling_1(uint16_t value)
{
___idxSibling_1 = value;
}
inline static int32_t get_offset_of_idxParent_2() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___idxParent_2)); }
inline uint16_t get_idxParent_2() const { return ___idxParent_2; }
inline uint16_t* get_address_of_idxParent_2() { return &___idxParent_2; }
inline void set_idxParent_2(uint16_t value)
{
___idxParent_2 = value;
}
inline static int32_t get_offset_of_idxSimilar_3() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___idxSimilar_3)); }
inline uint16_t get_idxSimilar_3() const { return ___idxSimilar_3; }
inline uint16_t* get_address_of_idxSimilar_3() { return &___idxSimilar_3; }
inline void set_idxSimilar_3(uint16_t value)
{
___idxSimilar_3 = value;
}
inline static int32_t get_offset_of_posOffset_4() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___posOffset_4)); }
inline uint16_t get_posOffset_4() const { return ___posOffset_4; }
inline uint16_t* get_address_of_posOffset_4() { return &___posOffset_4; }
inline void set_posOffset_4(uint16_t value)
{
___posOffset_4 = value;
}
inline static int32_t get_offset_of_props_5() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___props_5)); }
inline uint32_t get_props_5() const { return ___props_5; }
inline uint32_t* get_address_of_props_5() { return &___props_5; }
inline void set_props_5(uint32_t value)
{
___props_5 = value;
}
inline static int32_t get_offset_of_value_6() { return static_cast<int32_t>(offsetof(XPathNode_t2208072876, ___value_6)); }
inline String_t* get_value_6() const { return ___value_6; }
inline String_t** get_address_of_value_6() { return &___value_6; }
inline void set_value_6(String_t* value)
{
___value_6 = value;
Il2CppCodeGenWriteBarrier((&___value_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNode
struct XPathNode_t2208072876_marshaled_pinvoke
{
XPathNodeInfoAtom_t1760358141 * ___info_0;
uint16_t ___idxSibling_1;
uint16_t ___idxParent_2;
uint16_t ___idxSimilar_3;
uint16_t ___posOffset_4;
uint32_t ___props_5;
char* ___value_6;
};
// Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNode
struct XPathNode_t2208072876_marshaled_com
{
XPathNodeInfoAtom_t1760358141 * ___info_0;
uint16_t ___idxSibling_1;
uint16_t ___idxParent_2;
uint16_t ___idxSimilar_3;
uint16_t ___posOffset_4;
uint32_t ___props_5;
Il2CppChar* ___value_6;
};
#endif // XPATHNODE_T2208072876_H
#ifndef XPATHNODEREF_T3498189018_H
#define XPATHNODEREF_T3498189018_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// MS.Internal.Xml.Cache.XPathNodeRef
struct XPathNodeRef_t3498189018
{
public:
// MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeRef::page
XPathNodeU5BU5D_t47339301* ___page_0;
// System.Int32 MS.Internal.Xml.Cache.XPathNodeRef::idx
int32_t ___idx_1;
public:
inline static int32_t get_offset_of_page_0() { return static_cast<int32_t>(offsetof(XPathNodeRef_t3498189018, ___page_0)); }
inline XPathNodeU5BU5D_t47339301* get_page_0() const { return ___page_0; }
inline XPathNodeU5BU5D_t47339301** get_address_of_page_0() { return &___page_0; }
inline void set_page_0(XPathNodeU5BU5D_t47339301* value)
{
___page_0 = value;
Il2CppCodeGenWriteBarrier((&___page_0), value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(XPathNodeRef_t3498189018, ___idx_1)); }
inline int32_t get_idx_1() const { return ___idx_1; }
inline int32_t* get_address_of_idx_1() { return &___idx_1; }
inline void set_idx_1(int32_t value)
{
___idx_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNodeRef
struct XPathNodeRef_t3498189018_marshaled_pinvoke
{
XPathNode_t2208072876_marshaled_pinvoke* ___page_0;
int32_t ___idx_1;
};
// Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNodeRef
struct XPathNodeRef_t3498189018_marshaled_com
{
XPathNode_t2208072876_marshaled_com* ___page_0;
int32_t ___idx_1;
};
#endif // XPATHNODEREF_T3498189018_H
#ifndef TABLERANGE_T3332867892_H
#define TABLERANGE_T3332867892_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Globalization.Unicode.CodePointIndexer/TableRange
struct TableRange_t3332867892
{
public:
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::Start
int32_t ___Start_0;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::End
int32_t ___End_1;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::Count
int32_t ___Count_2;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::IndexStart
int32_t ___IndexStart_3;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer/TableRange::IndexEnd
int32_t ___IndexEnd_4;
public:
inline static int32_t get_offset_of_Start_0() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___Start_0)); }
inline int32_t get_Start_0() const { return ___Start_0; }
inline int32_t* get_address_of_Start_0() { return &___Start_0; }
inline void set_Start_0(int32_t value)
{
___Start_0 = value;
}
inline static int32_t get_offset_of_End_1() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___End_1)); }
inline int32_t get_End_1() const { return ___End_1; }
inline int32_t* get_address_of_End_1() { return &___End_1; }
inline void set_End_1(int32_t value)
{
___End_1 = value;
}
inline static int32_t get_offset_of_Count_2() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___Count_2)); }
inline int32_t get_Count_2() const { return ___Count_2; }
inline int32_t* get_address_of_Count_2() { return &___Count_2; }
inline void set_Count_2(int32_t value)
{
___Count_2 = value;
}
inline static int32_t get_offset_of_IndexStart_3() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___IndexStart_3)); }
inline int32_t get_IndexStart_3() const { return ___IndexStart_3; }
inline int32_t* get_address_of_IndexStart_3() { return &___IndexStart_3; }
inline void set_IndexStart_3(int32_t value)
{
___IndexStart_3 = value;
}
inline static int32_t get_offset_of_IndexEnd_4() { return static_cast<int32_t>(offsetof(TableRange_t3332867892, ___IndexEnd_4)); }
inline int32_t get_IndexEnd_4() const { return ___IndexEnd_4; }
inline int32_t* get_address_of_IndexEnd_4() { return &___IndexEnd_4; }
inline void set_IndexEnd_4(int32_t value)
{
___IndexEnd_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TABLERANGE_T3332867892_H
#ifndef ARRAYSEGMENT_1_T283560987_H
#define ARRAYSEGMENT_1_T283560987_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArraySegment`1<System.Byte>
struct ArraySegment_1_t283560987
{
public:
// T[] System.ArraySegment`1::_array
ByteU5BU5D_t4116647657* ____array_0;
// System.Int32 System.ArraySegment`1::_offset
int32_t ____offset_1;
// System.Int32 System.ArraySegment`1::_count
int32_t ____count_2;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArraySegment_1_t283560987, ____array_0)); }
inline ByteU5BU5D_t4116647657* get__array_0() const { return ____array_0; }
inline ByteU5BU5D_t4116647657** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ByteU5BU5D_t4116647657* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((&____array_0), value);
}
inline static int32_t get_offset_of__offset_1() { return static_cast<int32_t>(offsetof(ArraySegment_1_t283560987, ____offset_1)); }
inline int32_t get__offset_1() const { return ____offset_1; }
inline int32_t* get_address_of__offset_1() { return &____offset_1; }
inline void set__offset_1(int32_t value)
{
____offset_1 = value;
}
inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ArraySegment_1_t283560987, ____count_2)); }
inline int32_t get__count_2() const { return ____count_2; }
inline int32_t* get_address_of__count_2() { return &____count_2; }
inline void set__count_2(int32_t value)
{
____count_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYSEGMENT_1_T283560987_H
#ifndef BOOLEAN_T97287965_H
#define BOOLEAN_T97287965_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean
struct Boolean_t97287965
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_t97287965_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((&___TrueString_5), value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((&___FalseString_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOOLEAN_T97287965_H
#ifndef BYTE_T1134296376_H
#define BYTE_T1134296376_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Byte
struct Byte_t1134296376
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_t1134296376, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BYTE_T1134296376_H
#ifndef CHAR_T3634460470_H
#define CHAR_T3634460470_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Char
struct Char_t3634460470
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_t3634460470, ___m_value_0)); }
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(Il2CppChar value)
{
___m_value_0 = value;
}
};
struct Char_t3634460470_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_t4116647657* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_t4116647657* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_t4116647657** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_t4116647657* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((&___categoryForLatin1_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CHAR_T3634460470_H
#ifndef DICTIONARYENTRY_T3123975638_H
#define DICTIONARYENTRY_T3123975638_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.DictionaryEntry
struct DictionaryEntry_t3123975638
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_t3123975638, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((&____key_0), value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_t3123975638, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((&____value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_t3123975638_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_t3123975638_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
#endif // DICTIONARYENTRY_T3123975638_H
#ifndef ENTRY_T3583683983_H
#define ENTRY_T3583683983_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>
struct Entry_t3583683983
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2/Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t3583683983, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t3583683983, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t3583683983, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t3583683983, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((&___value_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T3583683983_H
#ifndef ENTRY_T3059558737_H
#define ENTRY_T3059558737_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>
struct Entry_t3059558737
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2/Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
bool ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t3059558737, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t3059558737, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t3059558737, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((&___key_2), value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t3059558737, ___value_3)); }
inline bool get_value_3() const { return ___value_3; }
inline bool* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(bool value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T3059558737_H
#ifndef ENTRY_T1618249229_H
#define ENTRY_T1618249229_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>
struct Entry_t1618249229
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2/Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
int32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1618249229, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1618249229, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1618249229, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((&___key_2), value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1618249229, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T1618249229_H
#ifndef ENTRY_T1747409640_H
#define ENTRY_T1747409640_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>
struct Entry_t1747409640
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2/Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1747409640, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1747409640, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1747409640, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((&___key_2), value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1747409640, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((&___value_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T1747409640_H
#ifndef KEYVALUEPAIR_2_T71524366_H
#define KEYVALUEPAIR_2_T71524366_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>
struct KeyValuePair_2_t71524366
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t71524366, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t71524366, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T71524366_H
#ifndef KEYVALUEPAIR_2_T3842366416_H
#define KEYVALUEPAIR_2_T3842366416_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>
struct KeyValuePair_2_t3842366416
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
bool ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3842366416, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3842366416, ___value_1)); }
inline bool get_value_1() const { return ___value_1; }
inline bool* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(bool value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T3842366416_H
#ifndef KEYVALUEPAIR_2_T2401056908_H
#define KEYVALUEPAIR_2_T2401056908_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>
struct KeyValuePair_2_t2401056908
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2401056908, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2401056908, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T2401056908_H
#ifndef KEYVALUEPAIR_2_T2530217319_H
#define KEYVALUEPAIR_2_T2530217319_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_t2530217319
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2530217319, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2530217319, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T2530217319_H
#ifndef BUCKET_T758131704_H
#define BUCKET_T758131704_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Hashtable/bucket
struct bucket_t758131704
{
public:
// System.Object System.Collections.Hashtable/bucket::key
RuntimeObject * ___key_0;
// System.Object System.Collections.Hashtable/bucket::val
RuntimeObject * ___val_1;
// System.Int32 System.Collections.Hashtable/bucket::hash_coll
int32_t ___hash_coll_2;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(bucket_t758131704, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_val_1() { return static_cast<int32_t>(offsetof(bucket_t758131704, ___val_1)); }
inline RuntimeObject * get_val_1() const { return ___val_1; }
inline RuntimeObject ** get_address_of_val_1() { return &___val_1; }
inline void set_val_1(RuntimeObject * value)
{
___val_1 = value;
Il2CppCodeGenWriteBarrier((&___val_1), value);
}
inline static int32_t get_offset_of_hash_coll_2() { return static_cast<int32_t>(offsetof(bucket_t758131704, ___hash_coll_2)); }
inline int32_t get_hash_coll_2() const { return ___hash_coll_2; }
inline int32_t* get_address_of_hash_coll_2() { return &___hash_coll_2; }
inline void set_hash_coll_2(int32_t value)
{
___hash_coll_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Collections.Hashtable/bucket
struct bucket_t758131704_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___val_1;
int32_t ___hash_coll_2;
};
// Native definition for COM marshalling of System.Collections.Hashtable/bucket
struct bucket_t758131704_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___val_1;
int32_t ___hash_coll_2;
};
#endif // BUCKET_T758131704_H
#ifndef ATTRIBUTEENTRY_T1001010863_H
#define ATTRIBUTEENTRY_T1001010863_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.AttributeCollection/AttributeEntry
struct AttributeEntry_t1001010863
{
public:
// System.Type System.ComponentModel.AttributeCollection/AttributeEntry::type
Type_t * ___type_0;
// System.Int32 System.ComponentModel.AttributeCollection/AttributeEntry::index
int32_t ___index_1;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(AttributeEntry_t1001010863, ___type_0)); }
inline Type_t * get_type_0() const { return ___type_0; }
inline Type_t ** get_address_of_type_0() { return &___type_0; }
inline void set_type_0(Type_t * value)
{
___type_0 = value;
Il2CppCodeGenWriteBarrier((&___type_0), value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(AttributeEntry_t1001010863, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ComponentModel.AttributeCollection/AttributeEntry
struct AttributeEntry_t1001010863_marshaled_pinvoke
{
Type_t * ___type_0;
int32_t ___index_1;
};
// Native definition for COM marshalling of System.ComponentModel.AttributeCollection/AttributeEntry
struct AttributeEntry_t1001010863_marshaled_com
{
Type_t * ___type_0;
int32_t ___index_1;
};
#endif // ATTRIBUTEENTRY_T1001010863_H
#ifndef DATETIME_T3738529785_H
#define DATETIME_T3738529785_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.DateTime
struct DateTime_t3738529785
{
public:
// System.UInt64 System.DateTime::dateData
uint64_t ___dateData_44;
public:
inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t3738529785, ___dateData_44)); }
inline uint64_t get_dateData_44() const { return ___dateData_44; }
inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; }
inline void set_dateData_44(uint64_t value)
{
___dateData_44 = value;
}
};
struct DateTime_t3738529785_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t385246372* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t385246372* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_t3738529785 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_t3738529785 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t385246372* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t385246372** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t385246372* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((&___DaysToMonth365_29), value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t385246372* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t385246372** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t385246372* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((&___DaysToMonth366_30), value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MinValue_31)); }
inline DateTime_t3738529785 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_t3738529785 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_t3738529785 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MaxValue_32)); }
inline DateTime_t3738529785 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_t3738529785 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_t3738529785 value)
{
___MaxValue_32 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATETIME_T3738529785_H
#ifndef DECIMAL_T2948259380_H
#define DECIMAL_T2948259380_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Decimal
struct Decimal_t2948259380
{
public:
// System.Int32 System.Decimal::flags
int32_t ___flags_14;
// System.Int32 System.Decimal::hi
int32_t ___hi_15;
// System.Int32 System.Decimal::lo
int32_t ___lo_16;
// System.Int32 System.Decimal::mid
int32_t ___mid_17;
public:
inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___flags_14)); }
inline int32_t get_flags_14() const { return ___flags_14; }
inline int32_t* get_address_of_flags_14() { return &___flags_14; }
inline void set_flags_14(int32_t value)
{
___flags_14 = value;
}
inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___hi_15)); }
inline int32_t get_hi_15() const { return ___hi_15; }
inline int32_t* get_address_of_hi_15() { return &___hi_15; }
inline void set_hi_15(int32_t value)
{
___hi_15 = value;
}
inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___lo_16)); }
inline int32_t get_lo_16() const { return ___lo_16; }
inline int32_t* get_address_of_lo_16() { return &___lo_16; }
inline void set_lo_16(int32_t value)
{
___lo_16 = value;
}
inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___mid_17)); }
inline int32_t get_mid_17() const { return ___mid_17; }
inline int32_t* get_address_of_mid_17() { return &___mid_17; }
inline void set_mid_17(int32_t value)
{
___mid_17 = value;
}
};
struct Decimal_t2948259380_StaticFields
{
public:
// System.UInt32[] System.Decimal::Powers10
UInt32U5BU5D_t2770800703* ___Powers10_6;
// System.Decimal System.Decimal::Zero
Decimal_t2948259380 ___Zero_7;
// System.Decimal System.Decimal::One
Decimal_t2948259380 ___One_8;
// System.Decimal System.Decimal::MinusOne
Decimal_t2948259380 ___MinusOne_9;
// System.Decimal System.Decimal::MaxValue
Decimal_t2948259380 ___MaxValue_10;
// System.Decimal System.Decimal::MinValue
Decimal_t2948259380 ___MinValue_11;
// System.Decimal System.Decimal::NearNegativeZero
Decimal_t2948259380 ___NearNegativeZero_12;
// System.Decimal System.Decimal::NearPositiveZero
Decimal_t2948259380 ___NearPositiveZero_13;
public:
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___Powers10_6)); }
inline UInt32U5BU5D_t2770800703* get_Powers10_6() const { return ___Powers10_6; }
inline UInt32U5BU5D_t2770800703** get_address_of_Powers10_6() { return &___Powers10_6; }
inline void set_Powers10_6(UInt32U5BU5D_t2770800703* value)
{
___Powers10_6 = value;
Il2CppCodeGenWriteBarrier((&___Powers10_6), value);
}
inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___Zero_7)); }
inline Decimal_t2948259380 get_Zero_7() const { return ___Zero_7; }
inline Decimal_t2948259380 * get_address_of_Zero_7() { return &___Zero_7; }
inline void set_Zero_7(Decimal_t2948259380 value)
{
___Zero_7 = value;
}
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___One_8)); }
inline Decimal_t2948259380 get_One_8() const { return ___One_8; }
inline Decimal_t2948259380 * get_address_of_One_8() { return &___One_8; }
inline void set_One_8(Decimal_t2948259380 value)
{
___One_8 = value;
}
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinusOne_9)); }
inline Decimal_t2948259380 get_MinusOne_9() const { return ___MinusOne_9; }
inline Decimal_t2948259380 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
inline void set_MinusOne_9(Decimal_t2948259380 value)
{
___MinusOne_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MaxValue_10)); }
inline Decimal_t2948259380 get_MaxValue_10() const { return ___MaxValue_10; }
inline Decimal_t2948259380 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(Decimal_t2948259380 value)
{
___MaxValue_10 = value;
}
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinValue_11)); }
inline Decimal_t2948259380 get_MinValue_11() const { return ___MinValue_11; }
inline Decimal_t2948259380 * get_address_of_MinValue_11() { return &___MinValue_11; }
inline void set_MinValue_11(Decimal_t2948259380 value)
{
___MinValue_11 = value;
}
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___NearNegativeZero_12)); }
inline Decimal_t2948259380 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
inline Decimal_t2948259380 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
inline void set_NearNegativeZero_12(Decimal_t2948259380 value)
{
___NearNegativeZero_12 = value;
}
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___NearPositiveZero_13)); }
inline Decimal_t2948259380 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
inline Decimal_t2948259380 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
inline void set_NearPositiveZero_13(Decimal_t2948259380 value)
{
___NearPositiveZero_13 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DECIMAL_T2948259380_H
#ifndef DOUBLE_T594665363_H
#define DOUBLE_T594665363_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Double
struct Double_t594665363
{
public:
// System.Double System.Double::m_value
double ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t594665363, ___m_value_0)); }
inline double get_m_value_0() const { return ___m_value_0; }
inline double* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(double value)
{
___m_value_0 = value;
}
};
struct Double_t594665363_StaticFields
{
public:
// System.Double System.Double::NegativeZero
double ___NegativeZero_7;
public:
inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t594665363_StaticFields, ___NegativeZero_7)); }
inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
inline void set_NegativeZero_7(double value)
{
___NegativeZero_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DOUBLE_T594665363_H
#ifndef ENUM_T4135868527_H
#define ENUM_T4135868527_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Enum
struct Enum_t4135868527 : public ValueType_t3640485471
{
public:
public:
};
struct Enum_t4135868527_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t3528271667* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t3528271667* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t3528271667** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t3528271667* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((&___enumSeperatorCharArray_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t4135868527_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t4135868527_marshaled_com
{
};
#endif // ENUM_T4135868527_H
#ifndef INTERNALCODEPAGEDATAITEM_T2575532933_H
#define INTERNALCODEPAGEDATAITEM_T2575532933_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t2575532933
{
public:
// System.UInt16 System.Globalization.InternalCodePageDataItem::codePage
uint16_t ___codePage_0;
// System.UInt16 System.Globalization.InternalCodePageDataItem::uiFamilyCodePage
uint16_t ___uiFamilyCodePage_1;
// System.UInt32 System.Globalization.InternalCodePageDataItem::flags
uint32_t ___flags_2;
// System.String System.Globalization.InternalCodePageDataItem::Names
String_t* ___Names_3;
public:
inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t2575532933, ___codePage_0)); }
inline uint16_t get_codePage_0() const { return ___codePage_0; }
inline uint16_t* get_address_of_codePage_0() { return &___codePage_0; }
inline void set_codePage_0(uint16_t value)
{
___codePage_0 = value;
}
inline static int32_t get_offset_of_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t2575532933, ___uiFamilyCodePage_1)); }
inline uint16_t get_uiFamilyCodePage_1() const { return ___uiFamilyCodePage_1; }
inline uint16_t* get_address_of_uiFamilyCodePage_1() { return &___uiFamilyCodePage_1; }
inline void set_uiFamilyCodePage_1(uint16_t value)
{
___uiFamilyCodePage_1 = value;
}
inline static int32_t get_offset_of_flags_2() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t2575532933, ___flags_2)); }
inline uint32_t get_flags_2() const { return ___flags_2; }
inline uint32_t* get_address_of_flags_2() { return &___flags_2; }
inline void set_flags_2(uint32_t value)
{
___flags_2 = value;
}
inline static int32_t get_offset_of_Names_3() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t2575532933, ___Names_3)); }
inline String_t* get_Names_3() const { return ___Names_3; }
inline String_t** get_address_of_Names_3() { return &___Names_3; }
inline void set_Names_3(String_t* value)
{
___Names_3 = value;
Il2CppCodeGenWriteBarrier((&___Names_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t2575532933_marshaled_pinvoke
{
uint16_t ___codePage_0;
uint16_t ___uiFamilyCodePage_1;
uint32_t ___flags_2;
char* ___Names_3;
};
// Native definition for COM marshalling of System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t2575532933_marshaled_com
{
uint16_t ___codePage_0;
uint16_t ___uiFamilyCodePage_1;
uint32_t ___flags_2;
Il2CppChar* ___Names_3;
};
#endif // INTERNALCODEPAGEDATAITEM_T2575532933_H
#ifndef INTERNALENCODINGDATAITEM_T3158859817_H
#define INTERNALENCODINGDATAITEM_T3158859817_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t3158859817
{
public:
// System.String System.Globalization.InternalEncodingDataItem::webName
String_t* ___webName_0;
// System.UInt16 System.Globalization.InternalEncodingDataItem::codePage
uint16_t ___codePage_1;
public:
inline static int32_t get_offset_of_webName_0() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t3158859817, ___webName_0)); }
inline String_t* get_webName_0() const { return ___webName_0; }
inline String_t** get_address_of_webName_0() { return &___webName_0; }
inline void set_webName_0(String_t* value)
{
___webName_0 = value;
Il2CppCodeGenWriteBarrier((&___webName_0), value);
}
inline static int32_t get_offset_of_codePage_1() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t3158859817, ___codePage_1)); }
inline uint16_t get_codePage_1() const { return ___codePage_1; }
inline uint16_t* get_address_of_codePage_1() { return &___codePage_1; }
inline void set_codePage_1(uint16_t value)
{
___codePage_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t3158859817_marshaled_pinvoke
{
char* ___webName_0;
uint16_t ___codePage_1;
};
// Native definition for COM marshalling of System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t3158859817_marshaled_com
{
Il2CppChar* ___webName_0;
uint16_t ___codePage_1;
};
#endif // INTERNALENCODINGDATAITEM_T3158859817_H
#ifndef GUID_T_H
#define GUID_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t386037858 * ____rng_13;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
RandomNumberGenerator_t386037858 * ____fastRng_14;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((&____rngAccess_12), value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t386037858 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t386037858 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t386037858 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((&____rng_13), value);
}
inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); }
inline RandomNumberGenerator_t386037858 * get__fastRng_14() const { return ____fastRng_14; }
inline RandomNumberGenerator_t386037858 ** get_address_of__fastRng_14() { return &____fastRng_14; }
inline void set__fastRng_14(RandomNumberGenerator_t386037858 * value)
{
____fastRng_14 = value;
Il2CppCodeGenWriteBarrier((&____fastRng_14), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GUID_T_H
#ifndef INT16_T2552820387_H
#define INT16_T2552820387_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int16
struct Int16_t2552820387
{
public:
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t2552820387, ___m_value_0)); }
inline int16_t get_m_value_0() const { return ___m_value_0; }
inline int16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int16_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT16_T2552820387_H
#ifndef INT32_T2950945753_H
#define INT32_T2950945753_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32
struct Int32_t2950945753
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32_T2950945753_H
#ifndef INT64_T3736567304_H
#define INT64_T3736567304_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int64
struct Int64_t3736567304
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t3736567304, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT64_T3736567304_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef ALIGNMENTUNION_T208902285_H
#define ALIGNMENTUNION_T208902285_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.AlignmentUnion
struct AlignmentUnion_t208902285
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.UInt64 System.Net.NetworkInformation.AlignmentUnion::Alignment
uint64_t ___Alignment_0;
};
#pragma pack(pop, tp)
struct
{
uint64_t ___Alignment_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int32 System.Net.NetworkInformation.AlignmentUnion::Length
int32_t ___Length_1;
};
#pragma pack(pop, tp)
struct
{
int32_t ___Length_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___IfIndex_2_OffsetPadding[4];
// System.Int32 System.Net.NetworkInformation.AlignmentUnion::IfIndex
int32_t ___IfIndex_2;
};
#pragma pack(pop, tp)
struct
{
char ___IfIndex_2_OffsetPadding_forAlignmentOnly[4];
int32_t ___IfIndex_2_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_Alignment_0() { return static_cast<int32_t>(offsetof(AlignmentUnion_t208902285, ___Alignment_0)); }
inline uint64_t get_Alignment_0() const { return ___Alignment_0; }
inline uint64_t* get_address_of_Alignment_0() { return &___Alignment_0; }
inline void set_Alignment_0(uint64_t value)
{
___Alignment_0 = value;
}
inline static int32_t get_offset_of_Length_1() { return static_cast<int32_t>(offsetof(AlignmentUnion_t208902285, ___Length_1)); }
inline int32_t get_Length_1() const { return ___Length_1; }
inline int32_t* get_address_of_Length_1() { return &___Length_1; }
inline void set_Length_1(int32_t value)
{
___Length_1 = value;
}
inline static int32_t get_offset_of_IfIndex_2() { return static_cast<int32_t>(offsetof(AlignmentUnion_t208902285, ___IfIndex_2)); }
inline int32_t get_IfIndex_2() const { return ___IfIndex_2; }
inline int32_t* get_address_of_IfIndex_2() { return &___IfIndex_2; }
inline void set_IfIndex_2(int32_t value)
{
___IfIndex_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ALIGNMENTUNION_T208902285_H
#ifndef NULLABLE_1_T378540539_H
#define NULLABLE_1_T378540539_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Nullable`1<System.Int32>
struct Nullable_1_t378540539
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t378540539, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t378540539, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NULLABLE_1_T378540539_H
#ifndef FORMATPARAM_T4194474082_H
#define FORMATPARAM_T4194474082_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ParameterizedStrings/FormatParam
struct FormatParam_t4194474082
{
public:
// System.Int32 System.ParameterizedStrings/FormatParam::_int32
int32_t ____int32_0;
// System.String System.ParameterizedStrings/FormatParam::_string
String_t* ____string_1;
public:
inline static int32_t get_offset_of__int32_0() { return static_cast<int32_t>(offsetof(FormatParam_t4194474082, ____int32_0)); }
inline int32_t get__int32_0() const { return ____int32_0; }
inline int32_t* get_address_of__int32_0() { return &____int32_0; }
inline void set__int32_0(int32_t value)
{
____int32_0 = value;
}
inline static int32_t get_offset_of__string_1() { return static_cast<int32_t>(offsetof(FormatParam_t4194474082, ____string_1)); }
inline String_t* get__string_1() const { return ____string_1; }
inline String_t** get_address_of__string_1() { return &____string_1; }
inline void set__string_1(String_t* value)
{
____string_1 = value;
Il2CppCodeGenWriteBarrier((&____string_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_t4194474082_marshaled_pinvoke
{
int32_t ____int32_0;
char* ____string_1;
};
// Native definition for COM marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_t4194474082_marshaled_com
{
int32_t ____int32_0;
Il2CppChar* ____string_1;
};
#endif // FORMATPARAM_T4194474082_H
#ifndef CUSTOMATTRIBUTETYPEDARGUMENT_T2723150157_H
#define CUSTOMATTRIBUTETYPEDARGUMENT_T2723150157_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t2723150157
{
public:
// System.Type System.Reflection.CustomAttributeTypedArgument::argumentType
Type_t * ___argumentType_0;
// System.Object System.Reflection.CustomAttributeTypedArgument::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_argumentType_0() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t2723150157, ___argumentType_0)); }
inline Type_t * get_argumentType_0() const { return ___argumentType_0; }
inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; }
inline void set_argumentType_0(Type_t * value)
{
___argumentType_0 = value;
Il2CppCodeGenWriteBarrier((&___argumentType_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t2723150157, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t2723150157_marshaled_pinvoke
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t2723150157_marshaled_com
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
#endif // CUSTOMATTRIBUTETYPEDARGUMENT_T2723150157_H
#ifndef ILEXCEPTIONBLOCK_T3961874966_H
#define ILEXCEPTIONBLOCK_T3961874966_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ILExceptionBlock
struct ILExceptionBlock_t3961874966
{
public:
// System.Type System.Reflection.Emit.ILExceptionBlock::extype
Type_t * ___extype_5;
// System.Int32 System.Reflection.Emit.ILExceptionBlock::type
int32_t ___type_6;
// System.Int32 System.Reflection.Emit.ILExceptionBlock::start
int32_t ___start_7;
// System.Int32 System.Reflection.Emit.ILExceptionBlock::len
int32_t ___len_8;
// System.Int32 System.Reflection.Emit.ILExceptionBlock::filter_offset
int32_t ___filter_offset_9;
public:
inline static int32_t get_offset_of_extype_5() { return static_cast<int32_t>(offsetof(ILExceptionBlock_t3961874966, ___extype_5)); }
inline Type_t * get_extype_5() const { return ___extype_5; }
inline Type_t ** get_address_of_extype_5() { return &___extype_5; }
inline void set_extype_5(Type_t * value)
{
___extype_5 = value;
Il2CppCodeGenWriteBarrier((&___extype_5), value);
}
inline static int32_t get_offset_of_type_6() { return static_cast<int32_t>(offsetof(ILExceptionBlock_t3961874966, ___type_6)); }
inline int32_t get_type_6() const { return ___type_6; }
inline int32_t* get_address_of_type_6() { return &___type_6; }
inline void set_type_6(int32_t value)
{
___type_6 = value;
}
inline static int32_t get_offset_of_start_7() { return static_cast<int32_t>(offsetof(ILExceptionBlock_t3961874966, ___start_7)); }
inline int32_t get_start_7() const { return ___start_7; }
inline int32_t* get_address_of_start_7() { return &___start_7; }
inline void set_start_7(int32_t value)
{
___start_7 = value;
}
inline static int32_t get_offset_of_len_8() { return static_cast<int32_t>(offsetof(ILExceptionBlock_t3961874966, ___len_8)); }
inline int32_t get_len_8() const { return ___len_8; }
inline int32_t* get_address_of_len_8() { return &___len_8; }
inline void set_len_8(int32_t value)
{
___len_8 = value;
}
inline static int32_t get_offset_of_filter_offset_9() { return static_cast<int32_t>(offsetof(ILExceptionBlock_t3961874966, ___filter_offset_9)); }
inline int32_t get_filter_offset_9() const { return ___filter_offset_9; }
inline int32_t* get_address_of_filter_offset_9() { return &___filter_offset_9; }
inline void set_filter_offset_9(int32_t value)
{
___filter_offset_9 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.Emit.ILExceptionBlock
struct ILExceptionBlock_t3961874966_marshaled_pinvoke
{
Type_t * ___extype_5;
int32_t ___type_6;
int32_t ___start_7;
int32_t ___len_8;
int32_t ___filter_offset_9;
};
// Native definition for COM marshalling of System.Reflection.Emit.ILExceptionBlock
struct ILExceptionBlock_t3961874966_marshaled_com
{
Type_t * ___extype_5;
int32_t ___type_6;
int32_t ___start_7;
int32_t ___len_8;
int32_t ___filter_offset_9;
};
#endif // ILEXCEPTIONBLOCK_T3961874966_H
#ifndef LABELDATA_T360167391_H
#define LABELDATA_T360167391_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ILGenerator/LabelData
struct LabelData_t360167391
{
public:
// System.Int32 System.Reflection.Emit.ILGenerator/LabelData::addr
int32_t ___addr_0;
// System.Int32 System.Reflection.Emit.ILGenerator/LabelData::maxStack
int32_t ___maxStack_1;
public:
inline static int32_t get_offset_of_addr_0() { return static_cast<int32_t>(offsetof(LabelData_t360167391, ___addr_0)); }
inline int32_t get_addr_0() const { return ___addr_0; }
inline int32_t* get_address_of_addr_0() { return &___addr_0; }
inline void set_addr_0(int32_t value)
{
___addr_0 = value;
}
inline static int32_t get_offset_of_maxStack_1() { return static_cast<int32_t>(offsetof(LabelData_t360167391, ___maxStack_1)); }
inline int32_t get_maxStack_1() const { return ___maxStack_1; }
inline int32_t* get_address_of_maxStack_1() { return &___maxStack_1; }
inline void set_maxStack_1(int32_t value)
{
___maxStack_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LABELDATA_T360167391_H
#ifndef LABELFIXUP_T858502054_H
#define LABELFIXUP_T858502054_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ILGenerator/LabelFixup
struct LabelFixup_t858502054
{
public:
// System.Int32 System.Reflection.Emit.ILGenerator/LabelFixup::offset
int32_t ___offset_0;
// System.Int32 System.Reflection.Emit.ILGenerator/LabelFixup::pos
int32_t ___pos_1;
// System.Int32 System.Reflection.Emit.ILGenerator/LabelFixup::label_idx
int32_t ___label_idx_2;
public:
inline static int32_t get_offset_of_offset_0() { return static_cast<int32_t>(offsetof(LabelFixup_t858502054, ___offset_0)); }
inline int32_t get_offset_0() const { return ___offset_0; }
inline int32_t* get_address_of_offset_0() { return &___offset_0; }
inline void set_offset_0(int32_t value)
{
___offset_0 = value;
}
inline static int32_t get_offset_of_pos_1() { return static_cast<int32_t>(offsetof(LabelFixup_t858502054, ___pos_1)); }
inline int32_t get_pos_1() const { return ___pos_1; }
inline int32_t* get_address_of_pos_1() { return &___pos_1; }
inline void set_pos_1(int32_t value)
{
___pos_1 = value;
}
inline static int32_t get_offset_of_label_idx_2() { return static_cast<int32_t>(offsetof(LabelFixup_t858502054, ___label_idx_2)); }
inline int32_t get_label_idx_2() const { return ___label_idx_2; }
inline int32_t* get_address_of_label_idx_2() { return &___label_idx_2; }
inline void set_label_idx_2(int32_t value)
{
___label_idx_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LABELFIXUP_T858502054_H
#ifndef ILTOKENINFO_T2325775114_H
#define ILTOKENINFO_T2325775114_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ILTokenInfo
struct ILTokenInfo_t2325775114
{
public:
// System.Reflection.MemberInfo System.Reflection.Emit.ILTokenInfo::member
MemberInfo_t * ___member_0;
// System.Int32 System.Reflection.Emit.ILTokenInfo::code_pos
int32_t ___code_pos_1;
public:
inline static int32_t get_offset_of_member_0() { return static_cast<int32_t>(offsetof(ILTokenInfo_t2325775114, ___member_0)); }
inline MemberInfo_t * get_member_0() const { return ___member_0; }
inline MemberInfo_t ** get_address_of_member_0() { return &___member_0; }
inline void set_member_0(MemberInfo_t * value)
{
___member_0 = value;
Il2CppCodeGenWriteBarrier((&___member_0), value);
}
inline static int32_t get_offset_of_code_pos_1() { return static_cast<int32_t>(offsetof(ILTokenInfo_t2325775114, ___code_pos_1)); }
inline int32_t get_code_pos_1() const { return ___code_pos_1; }
inline int32_t* get_address_of_code_pos_1() { return &___code_pos_1; }
inline void set_code_pos_1(int32_t value)
{
___code_pos_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.Emit.ILTokenInfo
struct ILTokenInfo_t2325775114_marshaled_pinvoke
{
MemberInfo_t * ___member_0;
int32_t ___code_pos_1;
};
// Native definition for COM marshalling of System.Reflection.Emit.ILTokenInfo
struct ILTokenInfo_t2325775114_marshaled_com
{
MemberInfo_t * ___member_0;
int32_t ___code_pos_1;
};
#endif // ILTOKENINFO_T2325775114_H
#ifndef LABEL_T2281661643_H
#define LABEL_T2281661643_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.Label
struct Label_t2281661643
{
public:
// System.Int32 System.Reflection.Emit.Label::label
int32_t ___label_0;
public:
inline static int32_t get_offset_of_label_0() { return static_cast<int32_t>(offsetof(Label_t2281661643, ___label_0)); }
inline int32_t get_label_0() const { return ___label_0; }
inline int32_t* get_address_of_label_0() { return &___label_0; }
inline void set_label_0(int32_t value)
{
___label_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LABEL_T2281661643_H
#ifndef MONOWIN32RESOURCE_T1904229483_H
#define MONOWIN32RESOURCE_T1904229483_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.MonoWin32Resource
struct MonoWin32Resource_t1904229483
{
public:
// System.Int32 System.Reflection.Emit.MonoWin32Resource::res_type
int32_t ___res_type_0;
// System.Int32 System.Reflection.Emit.MonoWin32Resource::res_id
int32_t ___res_id_1;
// System.Int32 System.Reflection.Emit.MonoWin32Resource::lang_id
int32_t ___lang_id_2;
// System.Byte[] System.Reflection.Emit.MonoWin32Resource::data
ByteU5BU5D_t4116647657* ___data_3;
public:
inline static int32_t get_offset_of_res_type_0() { return static_cast<int32_t>(offsetof(MonoWin32Resource_t1904229483, ___res_type_0)); }
inline int32_t get_res_type_0() const { return ___res_type_0; }
inline int32_t* get_address_of_res_type_0() { return &___res_type_0; }
inline void set_res_type_0(int32_t value)
{
___res_type_0 = value;
}
inline static int32_t get_offset_of_res_id_1() { return static_cast<int32_t>(offsetof(MonoWin32Resource_t1904229483, ___res_id_1)); }
inline int32_t get_res_id_1() const { return ___res_id_1; }
inline int32_t* get_address_of_res_id_1() { return &___res_id_1; }
inline void set_res_id_1(int32_t value)
{
___res_id_1 = value;
}
inline static int32_t get_offset_of_lang_id_2() { return static_cast<int32_t>(offsetof(MonoWin32Resource_t1904229483, ___lang_id_2)); }
inline int32_t get_lang_id_2() const { return ___lang_id_2; }
inline int32_t* get_address_of_lang_id_2() { return &___lang_id_2; }
inline void set_lang_id_2(int32_t value)
{
___lang_id_2 = value;
}
inline static int32_t get_offset_of_data_3() { return static_cast<int32_t>(offsetof(MonoWin32Resource_t1904229483, ___data_3)); }
inline ByteU5BU5D_t4116647657* get_data_3() const { return ___data_3; }
inline ByteU5BU5D_t4116647657** get_address_of_data_3() { return &___data_3; }
inline void set_data_3(ByteU5BU5D_t4116647657* value)
{
___data_3 = value;
Il2CppCodeGenWriteBarrier((&___data_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.Emit.MonoWin32Resource
struct MonoWin32Resource_t1904229483_marshaled_pinvoke
{
int32_t ___res_type_0;
int32_t ___res_id_1;
int32_t ___lang_id_2;
uint8_t* ___data_3;
};
// Native definition for COM marshalling of System.Reflection.Emit.MonoWin32Resource
struct MonoWin32Resource_t1904229483_marshaled_com
{
int32_t ___res_type_0;
int32_t ___res_id_1;
int32_t ___lang_id_2;
uint8_t* ___data_3;
};
#endif // MONOWIN32RESOURCE_T1904229483_H
#ifndef PARAMETERMODIFIER_T1461694466_H
#define PARAMETERMODIFIER_T1461694466_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ParameterModifier
struct ParameterModifier_t1461694466
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
BooleanU5BU5D_t2897418192* ____byRef_0;
public:
inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t1461694466, ____byRef_0)); }
inline BooleanU5BU5D_t2897418192* get__byRef_0() const { return ____byRef_0; }
inline BooleanU5BU5D_t2897418192** get_address_of__byRef_0() { return &____byRef_0; }
inline void set__byRef_0(BooleanU5BU5D_t2897418192* value)
{
____byRef_0 = value;
Il2CppCodeGenWriteBarrier((&____byRef_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t1461694466_marshaled_pinvoke
{
int32_t* ____byRef_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t1461694466_marshaled_com
{
int32_t* ____byRef_0;
};
#endif // PARAMETERMODIFIER_T1461694466_H
#ifndef RESOURCELOCATOR_T3723970807_H
#define RESOURCELOCATOR_T3723970807_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Resources.ResourceLocator
struct ResourceLocator_t3723970807
{
public:
// System.Object System.Resources.ResourceLocator::_value
RuntimeObject * ____value_0;
// System.Int32 System.Resources.ResourceLocator::_dataPos
int32_t ____dataPos_1;
public:
inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t3723970807, ____value_0)); }
inline RuntimeObject * get__value_0() const { return ____value_0; }
inline RuntimeObject ** get_address_of__value_0() { return &____value_0; }
inline void set__value_0(RuntimeObject * value)
{
____value_0 = value;
Il2CppCodeGenWriteBarrier((&____value_0), value);
}
inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t3723970807, ____dataPos_1)); }
inline int32_t get__dataPos_1() const { return ____dataPos_1; }
inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; }
inline void set__dataPos_1(int32_t value)
{
____dataPos_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t3723970807_marshaled_pinvoke
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// Native definition for COM marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t3723970807_marshaled_com
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
#endif // RESOURCELOCATOR_T3723970807_H
#ifndef ASYNCMETHODBUILDERCORE_T2955600131_H
#define ASYNCMETHODBUILDERCORE_T2955600131_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_t2955600131
{
public:
// System.Runtime.CompilerServices.IAsyncStateMachine System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_stateMachine
RuntimeObject* ___m_stateMachine_0;
// System.Action System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_defaultContextAction
Action_t1264377477 * ___m_defaultContextAction_1;
public:
inline static int32_t get_offset_of_m_stateMachine_0() { return static_cast<int32_t>(offsetof(AsyncMethodBuilderCore_t2955600131, ___m_stateMachine_0)); }
inline RuntimeObject* get_m_stateMachine_0() const { return ___m_stateMachine_0; }
inline RuntimeObject** get_address_of_m_stateMachine_0() { return &___m_stateMachine_0; }
inline void set_m_stateMachine_0(RuntimeObject* value)
{
___m_stateMachine_0 = value;
Il2CppCodeGenWriteBarrier((&___m_stateMachine_0), value);
}
inline static int32_t get_offset_of_m_defaultContextAction_1() { return static_cast<int32_t>(offsetof(AsyncMethodBuilderCore_t2955600131, ___m_defaultContextAction_1)); }
inline Action_t1264377477 * get_m_defaultContextAction_1() const { return ___m_defaultContextAction_1; }
inline Action_t1264377477 ** get_address_of_m_defaultContextAction_1() { return &___m_defaultContextAction_1; }
inline void set_m_defaultContextAction_1(Action_t1264377477 * value)
{
___m_defaultContextAction_1 = value;
Il2CppCodeGenWriteBarrier((&___m_defaultContextAction_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_t2955600131_marshaled_pinvoke
{
RuntimeObject* ___m_stateMachine_0;
Il2CppMethodPointer ___m_defaultContextAction_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_t2955600131_marshaled_com
{
RuntimeObject* ___m_stateMachine_0;
Il2CppMethodPointer ___m_defaultContextAction_1;
};
#endif // ASYNCMETHODBUILDERCORE_T2955600131_H
#ifndef CONFIGUREDTASKAWAITER_T555647845_H
#define CONFIGUREDTASKAWAITER_T555647845_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter
struct ConfiguredTaskAwaiter_t555647845
{
public:
// System.Threading.Tasks.Task System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_task
Task_t3187275312 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t555647845, ___m_task_0)); }
inline Task_t3187275312 * get_m_task_0() const { return ___m_task_0; }
inline Task_t3187275312 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_t3187275312 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t555647845, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter
struct ConfiguredTaskAwaiter_t555647845_marshaled_pinvoke
{
Task_t3187275312 * ___m_task_0;
int32_t ___m_continueOnCapturedContext_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter
struct ConfiguredTaskAwaiter_t555647845_marshaled_com
{
Task_t3187275312 * ___m_task_0;
int32_t ___m_continueOnCapturedContext_1;
};
#endif // CONFIGUREDTASKAWAITER_T555647845_H
#ifndef CONFIGUREDTASKAWAITER_T410331069_H
#define CONFIGUREDTASKAWAITER_T410331069_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>
struct ConfiguredTaskAwaiter_t410331069
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t493370259 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t410331069, ___m_task_0)); }
inline Task_1_t493370259 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t493370259 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t493370259 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t410331069, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T410331069_H
#ifndef CONFIGUREDTASKAWAITER_T1419788950_H
#define CONFIGUREDTASKAWAITER_T1419788950_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>
struct ConfiguredTaskAwaiter_t1419788950
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t1502828140 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t1419788950, ___m_task_0)); }
inline Task_1_t1502828140 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t1502828140 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t1502828140 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t1419788950, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T1419788950_H
#ifndef CONFIGUREDTASKAWAITER_T2595523894_H
#define CONFIGUREDTASKAWAITER_T2595523894_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.IO.Stream>
struct ConfiguredTaskAwaiter_t2595523894
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t2678563084 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t2595523894, ___m_task_0)); }
inline Task_1_t2678563084 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t2678563084 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t2678563084 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t2595523894, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T2595523894_H
#ifndef CONFIGUREDTASKAWAITER_T4273446738_H
#define CONFIGUREDTASKAWAITER_T4273446738_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>
struct ConfiguredTaskAwaiter_t4273446738
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t61518632 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t4273446738, ___m_task_0)); }
inline Task_1_t61518632 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t61518632 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t61518632 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t4273446738, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T4273446738_H
#ifndef CONFIGUREDTASKAWAITER_T1552423624_H
#define CONFIGUREDTASKAWAITER_T1552423624_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Net.WebResponse>
struct ConfiguredTaskAwaiter_t1552423624
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t1635462814 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t1552423624, ___m_task_0)); }
inline Task_1_t1635462814 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t1635462814 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t1635462814 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t1552423624, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T1552423624_H
#ifndef CONFIGUREDTASKAWAITER_T1701041524_H
#define CONFIGUREDTASKAWAITER_T1701041524_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>
struct ConfiguredTaskAwaiter_t1701041524
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t1784080714 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t1701041524, ___m_task_0)); }
inline Task_1_t1784080714 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t1784080714 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t1784080714 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t1701041524, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T1701041524_H
#ifndef CONFIGUREDTASKAWAITER_T107639853_H
#define CONFIGUREDTASKAWAITER_T107639853_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>
struct ConfiguredTaskAwaiter_t107639853
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t190679043 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t107639853, ___m_task_0)); }
inline Task_1_t190679043 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t190679043 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t190679043 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t107639853, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T107639853_H
#ifndef CONFIGUREDTASKAWAITER_T214809001_H
#define CONFIGUREDTASKAWAITER_T214809001_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.Task>
struct ConfiguredTaskAwaiter_t214809001
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t297848191 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t214809001, ___m_task_0)); }
inline Task_1_t297848191 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t297848191 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t297848191 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t214809001, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T214809001_H
#ifndef EPHEMERON_T1602596362_H
#define EPHEMERON_T1602596362_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t1602596362
{
public:
// System.Object System.Runtime.CompilerServices.Ephemeron::key
RuntimeObject * ___key_0;
// System.Object System.Runtime.CompilerServices.Ephemeron::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Ephemeron_t1602596362, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Ephemeron_t1602596362, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t1602596362_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t1602596362_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
#endif // EPHEMERON_T1602596362_H
#ifndef TASKAWAITER_1_T1450460888_H
#define TASKAWAITER_1_T1450460888_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>
struct TaskAwaiter_1_t1450460888
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task
Task_1_t61518632 * ___m_task_0;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t1450460888, ___m_task_0)); }
inline Task_1_t61518632 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t61518632 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t61518632 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKAWAITER_1_T1450460888_H
#ifndef TASKAWAITER_1_T1579621299_H
#define TASKAWAITER_1_T1579621299_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>
struct TaskAwaiter_1_t1579621299
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task
Task_1_t190679043 * ___m_task_0;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t1579621299, ___m_task_0)); }
inline Task_1_t190679043 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t190679043 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t190679043 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASKAWAITER_1_T1579621299_H
#ifndef GCHANDLE_T3351438187_H
#define GCHANDLE_T3351438187_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.GCHandle
struct GCHandle_t3351438187
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandle::handle
int32_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t3351438187, ___handle_0)); }
inline int32_t get_handle_0() const { return ___handle_0; }
inline int32_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(int32_t value)
{
___handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GCHANDLE_T3351438187_H
#ifndef SBYTE_T1669577662_H
#define SBYTE_T1669577662_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SByte
struct SByte_t1669577662
{
public:
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t1669577662, ___m_value_0)); }
inline int8_t get_m_value_0() const { return ___m_value_0; }
inline int8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int8_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SBYTE_T1669577662_H
#ifndef HOPTOTHREADPOOLAWAITABLE_T810938849_H
#define HOPTOTHREADPOOLAWAITABLE_T810938849_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable
struct HopToThreadPoolAwaitable_t810938849
{
public:
union
{
struct
{
};
uint8_t HopToThreadPoolAwaitable_t810938849__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HOPTOTHREADPOOLAWAITABLE_T810938849_H
#ifndef SINGLE_T1397266774_H
#define SINGLE_T1397266774_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single
struct Single_t1397266774
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_t1397266774, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SINGLE_T1397266774_H
#ifndef SYSTEMEXCEPTION_T176217640_H
#define SYSTEMEXCEPTION_T176217640_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SystemException
struct SystemException_t176217640 : public Exception_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYSTEMEXCEPTION_T176217640_H
#ifndef LOWERCASEMAPPING_T2910317575_H
#define LOWERCASEMAPPING_T2910317575_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t2910317575
{
public:
// System.Char System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::_chMin
Il2CppChar ____chMin_0;
// System.Char System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::_chMax
Il2CppChar ____chMax_1;
// System.Int32 System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::_lcOp
int32_t ____lcOp_2;
// System.Int32 System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::_data
int32_t ____data_3;
public:
inline static int32_t get_offset_of__chMin_0() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t2910317575, ____chMin_0)); }
inline Il2CppChar get__chMin_0() const { return ____chMin_0; }
inline Il2CppChar* get_address_of__chMin_0() { return &____chMin_0; }
inline void set__chMin_0(Il2CppChar value)
{
____chMin_0 = value;
}
inline static int32_t get_offset_of__chMax_1() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t2910317575, ____chMax_1)); }
inline Il2CppChar get__chMax_1() const { return ____chMax_1; }
inline Il2CppChar* get_address_of__chMax_1() { return &____chMax_1; }
inline void set__chMax_1(Il2CppChar value)
{
____chMax_1 = value;
}
inline static int32_t get_offset_of__lcOp_2() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t2910317575, ____lcOp_2)); }
inline int32_t get__lcOp_2() const { return ____lcOp_2; }
inline int32_t* get_address_of__lcOp_2() { return &____lcOp_2; }
inline void set__lcOp_2(int32_t value)
{
____lcOp_2 = value;
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t2910317575, ____data_3)); }
inline int32_t get__data_3() const { return ____data_3; }
inline int32_t* get_address_of__data_3() { return &____data_3; }
inline void set__data_3(int32_t value)
{
____data_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t2910317575_marshaled_pinvoke
{
uint8_t ____chMin_0;
uint8_t ____chMax_1;
int32_t ____lcOp_2;
int32_t ____data_3;
};
// Native definition for COM marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t2910317575_marshaled_com
{
uint8_t ____chMin_0;
uint8_t ____chMax_1;
int32_t ____lcOp_2;
int32_t ____data_3;
};
#endif // LOWERCASEMAPPING_T2910317575_H
#ifndef CANCELLATIONTOKEN_T784455623_H
#define CANCELLATIONTOKEN_T784455623_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.CancellationToken
struct CancellationToken_t784455623
{
public:
// System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source
CancellationTokenSource_t540272775 * ___m_source_0;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(CancellationToken_t784455623, ___m_source_0)); }
inline CancellationTokenSource_t540272775 * get_m_source_0() const { return ___m_source_0; }
inline CancellationTokenSource_t540272775 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(CancellationTokenSource_t540272775 * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((&___m_source_0), value);
}
};
struct CancellationToken_t784455623_StaticFields
{
public:
// System.Action`1<System.Object> System.Threading.CancellationToken::s_ActionToActionObjShunt
Action_1_t3252573759 * ___s_ActionToActionObjShunt_1;
public:
inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast<int32_t>(offsetof(CancellationToken_t784455623_StaticFields, ___s_ActionToActionObjShunt_1)); }
inline Action_1_t3252573759 * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; }
inline Action_1_t3252573759 ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; }
inline void set_s_ActionToActionObjShunt_1(Action_1_t3252573759 * value)
{
___s_ActionToActionObjShunt_1 = value;
Il2CppCodeGenWriteBarrier((&___s_ActionToActionObjShunt_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Threading.CancellationToken
struct CancellationToken_t784455623_marshaled_pinvoke
{
CancellationTokenSource_t540272775 * ___m_source_0;
};
// Native definition for COM marshalling of System.Threading.CancellationToken
struct CancellationToken_t784455623_marshaled_com
{
CancellationTokenSource_t540272775 * ___m_source_0;
};
#endif // CANCELLATIONTOKEN_T784455623_H
#ifndef READER_T1133934476_H
#define READER_T1133934476_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.ExecutionContext/Reader
struct Reader_t1133934476
{
public:
// System.Threading.ExecutionContext System.Threading.ExecutionContext/Reader::m_ec
ExecutionContext_t1748372627 * ___m_ec_0;
public:
inline static int32_t get_offset_of_m_ec_0() { return static_cast<int32_t>(offsetof(Reader_t1133934476, ___m_ec_0)); }
inline ExecutionContext_t1748372627 * get_m_ec_0() const { return ___m_ec_0; }
inline ExecutionContext_t1748372627 ** get_address_of_m_ec_0() { return &___m_ec_0; }
inline void set_m_ec_0(ExecutionContext_t1748372627 * value)
{
___m_ec_0 = value;
Il2CppCodeGenWriteBarrier((&___m_ec_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Threading.ExecutionContext/Reader
struct Reader_t1133934476_marshaled_pinvoke
{
ExecutionContext_t1748372627 * ___m_ec_0;
};
// Native definition for COM marshalling of System.Threading.ExecutionContext/Reader
struct Reader_t1133934476_marshaled_com
{
ExecutionContext_t1748372627 * ___m_ec_0;
};
#endif // READER_T1133934476_H
#ifndef SPARSELYPOPULATEDARRAYADDINFO_1_T223515617_H
#define SPARSELYPOPULATEDARRAYADDINFO_1_T223515617_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayAddInfo_1_t223515617
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source
SparselyPopulatedArrayFragment_1_t4161250538 * ___m_source_0;
// System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index
int32_t ___m_index_1;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t223515617, ___m_source_0)); }
inline SparselyPopulatedArrayFragment_1_t4161250538 * get_m_source_0() const { return ___m_source_0; }
inline SparselyPopulatedArrayFragment_1_t4161250538 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(SparselyPopulatedArrayFragment_1_t4161250538 * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((&___m_source_0), value);
}
inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t223515617, ___m_index_1)); }
inline int32_t get_m_index_1() const { return ___m_index_1; }
inline int32_t* get_address_of_m_index_1() { return &___m_index_1; }
inline void set_m_index_1(int32_t value)
{
___m_index_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SPARSELYPOPULATEDARRAYADDINFO_1_T223515617_H
#ifndef VOIDTASKRESULT_T2616588579_H
#define VOIDTASKRESULT_T2616588579_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.VoidTaskResult
struct VoidTaskResult_t2616588579
{
public:
union
{
struct
{
};
uint8_t VoidTaskResult_t2616588579__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOIDTASKRESULT_T2616588579_H
#ifndef UINT16_T2177724958_H
#define UINT16_T2177724958_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt16
struct UInt16_t2177724958
{
public:
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_t2177724958, ___m_value_0)); }
inline uint16_t get_m_value_0() const { return ___m_value_0; }
inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint16_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT16_T2177724958_H
#ifndef UINT32_T2560061978_H
#define UINT32_T2560061978_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt32
struct UInt32_t2560061978
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t2560061978, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT32_T2560061978_H
#ifndef UINT64_T4134040092_H
#define UINT64_T4134040092_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt64
struct UInt64_t4134040092
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_t4134040092, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT64_T4134040092_H
#ifndef VOID_T1185182177_H
#define VOID_T1185182177_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void
struct Void_t1185182177
{
public:
union
{
struct
{
};
uint8_t Void_t1185182177__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOID_T1185182177_H
#ifndef MAP_T1331044427_H
#define MAP_T1331044427_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.Schema.FacetsChecker/FacetsCompiler/Map
struct Map_t1331044427
{
public:
// System.Char System.Xml.Schema.FacetsChecker/FacetsCompiler/Map::match
Il2CppChar ___match_0;
// System.String System.Xml.Schema.FacetsChecker/FacetsCompiler/Map::replacement
String_t* ___replacement_1;
public:
inline static int32_t get_offset_of_match_0() { return static_cast<int32_t>(offsetof(Map_t1331044427, ___match_0)); }
inline Il2CppChar get_match_0() const { return ___match_0; }
inline Il2CppChar* get_address_of_match_0() { return &___match_0; }
inline void set_match_0(Il2CppChar value)
{
___match_0 = value;
}
inline static int32_t get_offset_of_replacement_1() { return static_cast<int32_t>(offsetof(Map_t1331044427, ___replacement_1)); }
inline String_t* get_replacement_1() const { return ___replacement_1; }
inline String_t** get_address_of_replacement_1() { return &___replacement_1; }
inline void set_replacement_1(String_t* value)
{
___replacement_1 = value;
Il2CppCodeGenWriteBarrier((&___replacement_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.Schema.FacetsChecker/FacetsCompiler/Map
struct Map_t1331044427_marshaled_pinvoke
{
uint8_t ___match_0;
char* ___replacement_1;
};
// Native definition for COM marshalling of System.Xml.Schema.FacetsChecker/FacetsCompiler/Map
struct Map_t1331044427_marshaled_com
{
uint8_t ___match_0;
Il2CppChar* ___replacement_1;
};
#endif // MAP_T1331044427_H
#ifndef RANGEPOSITIONINFO_T589968936_H
#define RANGEPOSITIONINFO_T589968936_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.Schema.RangePositionInfo
struct RangePositionInfo_t589968936
{
public:
// System.Xml.Schema.BitSet System.Xml.Schema.RangePositionInfo::curpos
BitSet_t1154229585 * ___curpos_0;
// System.Decimal[] System.Xml.Schema.RangePositionInfo::rangeCounters
DecimalU5BU5D_t1145110141* ___rangeCounters_1;
public:
inline static int32_t get_offset_of_curpos_0() { return static_cast<int32_t>(offsetof(RangePositionInfo_t589968936, ___curpos_0)); }
inline BitSet_t1154229585 * get_curpos_0() const { return ___curpos_0; }
inline BitSet_t1154229585 ** get_address_of_curpos_0() { return &___curpos_0; }
inline void set_curpos_0(BitSet_t1154229585 * value)
{
___curpos_0 = value;
Il2CppCodeGenWriteBarrier((&___curpos_0), value);
}
inline static int32_t get_offset_of_rangeCounters_1() { return static_cast<int32_t>(offsetof(RangePositionInfo_t589968936, ___rangeCounters_1)); }
inline DecimalU5BU5D_t1145110141* get_rangeCounters_1() const { return ___rangeCounters_1; }
inline DecimalU5BU5D_t1145110141** get_address_of_rangeCounters_1() { return &___rangeCounters_1; }
inline void set_rangeCounters_1(DecimalU5BU5D_t1145110141* value)
{
___rangeCounters_1 = value;
Il2CppCodeGenWriteBarrier((&___rangeCounters_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.Schema.RangePositionInfo
struct RangePositionInfo_t589968936_marshaled_pinvoke
{
BitSet_t1154229585 * ___curpos_0;
Decimal_t2948259380 * ___rangeCounters_1;
};
// Native definition for COM marshalling of System.Xml.Schema.RangePositionInfo
struct RangePositionInfo_t589968936_marshaled_com
{
BitSet_t1154229585 * ___curpos_0;
Decimal_t2948259380 * ___rangeCounters_1;
};
#endif // RANGEPOSITIONINFO_T589968936_H
#ifndef SEQUENCECONSTRUCTPOSCONTEXT_T2054380699_H
#define SEQUENCECONSTRUCTPOSCONTEXT_T2054380699_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.Schema.SequenceNode/SequenceConstructPosContext
struct SequenceConstructPosContext_t2054380699
{
public:
// System.Xml.Schema.SequenceNode System.Xml.Schema.SequenceNode/SequenceConstructPosContext::this_
SequenceNode_t3837141573 * ___this__0;
// System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::firstpos
BitSet_t1154229585 * ___firstpos_1;
// System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::lastpos
BitSet_t1154229585 * ___lastpos_2;
// System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::lastposLeft
BitSet_t1154229585 * ___lastposLeft_3;
// System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::firstposRight
BitSet_t1154229585 * ___firstposRight_4;
public:
inline static int32_t get_offset_of_this__0() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t2054380699, ___this__0)); }
inline SequenceNode_t3837141573 * get_this__0() const { return ___this__0; }
inline SequenceNode_t3837141573 ** get_address_of_this__0() { return &___this__0; }
inline void set_this__0(SequenceNode_t3837141573 * value)
{
___this__0 = value;
Il2CppCodeGenWriteBarrier((&___this__0), value);
}
inline static int32_t get_offset_of_firstpos_1() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t2054380699, ___firstpos_1)); }
inline BitSet_t1154229585 * get_firstpos_1() const { return ___firstpos_1; }
inline BitSet_t1154229585 ** get_address_of_firstpos_1() { return &___firstpos_1; }
inline void set_firstpos_1(BitSet_t1154229585 * value)
{
___firstpos_1 = value;
Il2CppCodeGenWriteBarrier((&___firstpos_1), value);
}
inline static int32_t get_offset_of_lastpos_2() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t2054380699, ___lastpos_2)); }
inline BitSet_t1154229585 * get_lastpos_2() const { return ___lastpos_2; }
inline BitSet_t1154229585 ** get_address_of_lastpos_2() { return &___lastpos_2; }
inline void set_lastpos_2(BitSet_t1154229585 * value)
{
___lastpos_2 = value;
Il2CppCodeGenWriteBarrier((&___lastpos_2), value);
}
inline static int32_t get_offset_of_lastposLeft_3() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t2054380699, ___lastposLeft_3)); }
inline BitSet_t1154229585 * get_lastposLeft_3() const { return ___lastposLeft_3; }
inline BitSet_t1154229585 ** get_address_of_lastposLeft_3() { return &___lastposLeft_3; }
inline void set_lastposLeft_3(BitSet_t1154229585 * value)
{
___lastposLeft_3 = value;
Il2CppCodeGenWriteBarrier((&___lastposLeft_3), value);
}
inline static int32_t get_offset_of_firstposRight_4() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_t2054380699, ___firstposRight_4)); }
inline BitSet_t1154229585 * get_firstposRight_4() const { return ___firstposRight_4; }
inline BitSet_t1154229585 ** get_address_of_firstposRight_4() { return &___firstposRight_4; }
inline void set_firstposRight_4(BitSet_t1154229585 * value)
{
___firstposRight_4 = value;
Il2CppCodeGenWriteBarrier((&___firstposRight_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext
struct SequenceConstructPosContext_t2054380699_marshaled_pinvoke
{
SequenceNode_t3837141573 * ___this__0;
BitSet_t1154229585 * ___firstpos_1;
BitSet_t1154229585 * ___lastpos_2;
BitSet_t1154229585 * ___lastposLeft_3;
BitSet_t1154229585 * ___firstposRight_4;
};
// Native definition for COM marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext
struct SequenceConstructPosContext_t2054380699_marshaled_com
{
SequenceNode_t3837141573 * ___this__0;
BitSet_t1154229585 * ___firstpos_1;
BitSet_t1154229585 * ___lastpos_2;
BitSet_t1154229585 * ___lastposLeft_3;
BitSet_t1154229585 * ___firstposRight_4;
};
#endif // SEQUENCECONSTRUCTPOSCONTEXT_T2054380699_H
#ifndef XMLSCHEMAOBJECTENTRY_T3344676971_H
#define XMLSCHEMAOBJECTENTRY_T3344676971_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry
struct XmlSchemaObjectEntry_t3344676971
{
public:
// System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry::qname
XmlQualifiedName_t2760654312 * ___qname_0;
// System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry::xso
XmlSchemaObject_t1315720168 * ___xso_1;
public:
inline static int32_t get_offset_of_qname_0() { return static_cast<int32_t>(offsetof(XmlSchemaObjectEntry_t3344676971, ___qname_0)); }
inline XmlQualifiedName_t2760654312 * get_qname_0() const { return ___qname_0; }
inline XmlQualifiedName_t2760654312 ** get_address_of_qname_0() { return &___qname_0; }
inline void set_qname_0(XmlQualifiedName_t2760654312 * value)
{
___qname_0 = value;
Il2CppCodeGenWriteBarrier((&___qname_0), value);
}
inline static int32_t get_offset_of_xso_1() { return static_cast<int32_t>(offsetof(XmlSchemaObjectEntry_t3344676971, ___xso_1)); }
inline XmlSchemaObject_t1315720168 * get_xso_1() const { return ___xso_1; }
inline XmlSchemaObject_t1315720168 ** get_address_of_xso_1() { return &___xso_1; }
inline void set_xso_1(XmlSchemaObject_t1315720168 * value)
{
___xso_1 = value;
Il2CppCodeGenWriteBarrier((&___xso_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry
struct XmlSchemaObjectEntry_t3344676971_marshaled_pinvoke
{
XmlQualifiedName_t2760654312 * ___qname_0;
XmlSchemaObject_t1315720168 * ___xso_1;
};
// Native definition for COM marshalling of System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry
struct XmlSchemaObjectEntry_t3344676971_marshaled_com
{
XmlQualifiedName_t2760654312 * ___qname_0;
XmlSchemaObject_t1315720168 * ___xso_1;
};
#endif // XMLSCHEMAOBJECTENTRY_T3344676971_H
#ifndef NAMESPACEDECLARATION_T4162609575_H
#define NAMESPACEDECLARATION_T4162609575_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlNamespaceManager/NamespaceDeclaration
struct NamespaceDeclaration_t4162609575
{
public:
// System.String System.Xml.XmlNamespaceManager/NamespaceDeclaration::prefix
String_t* ___prefix_0;
// System.String System.Xml.XmlNamespaceManager/NamespaceDeclaration::uri
String_t* ___uri_1;
// System.Int32 System.Xml.XmlNamespaceManager/NamespaceDeclaration::scopeId
int32_t ___scopeId_2;
// System.Int32 System.Xml.XmlNamespaceManager/NamespaceDeclaration::previousNsIndex
int32_t ___previousNsIndex_3;
public:
inline static int32_t get_offset_of_prefix_0() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_t4162609575, ___prefix_0)); }
inline String_t* get_prefix_0() const { return ___prefix_0; }
inline String_t** get_address_of_prefix_0() { return &___prefix_0; }
inline void set_prefix_0(String_t* value)
{
___prefix_0 = value;
Il2CppCodeGenWriteBarrier((&___prefix_0), value);
}
inline static int32_t get_offset_of_uri_1() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_t4162609575, ___uri_1)); }
inline String_t* get_uri_1() const { return ___uri_1; }
inline String_t** get_address_of_uri_1() { return &___uri_1; }
inline void set_uri_1(String_t* value)
{
___uri_1 = value;
Il2CppCodeGenWriteBarrier((&___uri_1), value);
}
inline static int32_t get_offset_of_scopeId_2() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_t4162609575, ___scopeId_2)); }
inline int32_t get_scopeId_2() const { return ___scopeId_2; }
inline int32_t* get_address_of_scopeId_2() { return &___scopeId_2; }
inline void set_scopeId_2(int32_t value)
{
___scopeId_2 = value;
}
inline static int32_t get_offset_of_previousNsIndex_3() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_t4162609575, ___previousNsIndex_3)); }
inline int32_t get_previousNsIndex_3() const { return ___previousNsIndex_3; }
inline int32_t* get_address_of_previousNsIndex_3() { return &___previousNsIndex_3; }
inline void set_previousNsIndex_3(int32_t value)
{
___previousNsIndex_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.XmlNamespaceManager/NamespaceDeclaration
struct NamespaceDeclaration_t4162609575_marshaled_pinvoke
{
char* ___prefix_0;
char* ___uri_1;
int32_t ___scopeId_2;
int32_t ___previousNsIndex_3;
};
// Native definition for COM marshalling of System.Xml.XmlNamespaceManager/NamespaceDeclaration
struct NamespaceDeclaration_t4162609575_marshaled_com
{
Il2CppChar* ___prefix_0;
Il2CppChar* ___uri_1;
int32_t ___scopeId_2;
int32_t ___previousNsIndex_3;
};
#endif // NAMESPACEDECLARATION_T4162609575_H
#ifndef VIRTUALATTRIBUTE_T3578083907_H
#define VIRTUALATTRIBUTE_T3578083907_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlNodeReaderNavigator/VirtualAttribute
struct VirtualAttribute_t3578083907
{
public:
// System.String System.Xml.XmlNodeReaderNavigator/VirtualAttribute::name
String_t* ___name_0;
// System.String System.Xml.XmlNodeReaderNavigator/VirtualAttribute::value
String_t* ___value_1;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(VirtualAttribute_t3578083907, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(VirtualAttribute_t3578083907, ___value_1)); }
inline String_t* get_value_1() const { return ___value_1; }
inline String_t** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(String_t* value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.XmlNodeReaderNavigator/VirtualAttribute
struct VirtualAttribute_t3578083907_marshaled_pinvoke
{
char* ___name_0;
char* ___value_1;
};
// Native definition for COM marshalling of System.Xml.XmlNodeReaderNavigator/VirtualAttribute
struct VirtualAttribute_t3578083907_marshaled_com
{
Il2CppChar* ___name_0;
Il2CppChar* ___value_1;
};
#endif // VIRTUALATTRIBUTE_T3578083907_H
#ifndef PARSINGSTATE_T1780334922_H
#define PARSINGSTATE_T1780334922_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlTextReaderImpl/ParsingState
struct ParsingState_t1780334922
{
public:
// System.Char[] System.Xml.XmlTextReaderImpl/ParsingState::chars
CharU5BU5D_t3528271667* ___chars_0;
// System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::charPos
int32_t ___charPos_1;
// System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::charsUsed
int32_t ___charsUsed_2;
// System.Text.Encoding System.Xml.XmlTextReaderImpl/ParsingState::encoding
Encoding_t1523322056 * ___encoding_3;
// System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::appendMode
bool ___appendMode_4;
// System.IO.Stream System.Xml.XmlTextReaderImpl/ParsingState::stream
Stream_t1273022909 * ___stream_5;
// System.Text.Decoder System.Xml.XmlTextReaderImpl/ParsingState::decoder
Decoder_t2204182725 * ___decoder_6;
// System.Byte[] System.Xml.XmlTextReaderImpl/ParsingState::bytes
ByteU5BU5D_t4116647657* ___bytes_7;
// System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::bytePos
int32_t ___bytePos_8;
// System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::bytesUsed
int32_t ___bytesUsed_9;
// System.IO.TextReader System.Xml.XmlTextReaderImpl/ParsingState::textReader
TextReader_t283511965 * ___textReader_10;
// System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::lineNo
int32_t ___lineNo_11;
// System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::lineStartPos
int32_t ___lineStartPos_12;
// System.String System.Xml.XmlTextReaderImpl/ParsingState::baseUriStr
String_t* ___baseUriStr_13;
// System.Uri System.Xml.XmlTextReaderImpl/ParsingState::baseUri
Uri_t100236324 * ___baseUri_14;
// System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::isEof
bool ___isEof_15;
// System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::isStreamEof
bool ___isStreamEof_16;
// System.Xml.IDtdEntityInfo System.Xml.XmlTextReaderImpl/ParsingState::entity
RuntimeObject* ___entity_17;
// System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::entityId
int32_t ___entityId_18;
// System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::eolNormalized
bool ___eolNormalized_19;
// System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::entityResolvedManually
bool ___entityResolvedManually_20;
public:
inline static int32_t get_offset_of_chars_0() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___chars_0)); }
inline CharU5BU5D_t3528271667* get_chars_0() const { return ___chars_0; }
inline CharU5BU5D_t3528271667** get_address_of_chars_0() { return &___chars_0; }
inline void set_chars_0(CharU5BU5D_t3528271667* value)
{
___chars_0 = value;
Il2CppCodeGenWriteBarrier((&___chars_0), value);
}
inline static int32_t get_offset_of_charPos_1() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___charPos_1)); }
inline int32_t get_charPos_1() const { return ___charPos_1; }
inline int32_t* get_address_of_charPos_1() { return &___charPos_1; }
inline void set_charPos_1(int32_t value)
{
___charPos_1 = value;
}
inline static int32_t get_offset_of_charsUsed_2() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___charsUsed_2)); }
inline int32_t get_charsUsed_2() const { return ___charsUsed_2; }
inline int32_t* get_address_of_charsUsed_2() { return &___charsUsed_2; }
inline void set_charsUsed_2(int32_t value)
{
___charsUsed_2 = value;
}
inline static int32_t get_offset_of_encoding_3() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___encoding_3)); }
inline Encoding_t1523322056 * get_encoding_3() const { return ___encoding_3; }
inline Encoding_t1523322056 ** get_address_of_encoding_3() { return &___encoding_3; }
inline void set_encoding_3(Encoding_t1523322056 * value)
{
___encoding_3 = value;
Il2CppCodeGenWriteBarrier((&___encoding_3), value);
}
inline static int32_t get_offset_of_appendMode_4() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___appendMode_4)); }
inline bool get_appendMode_4() const { return ___appendMode_4; }
inline bool* get_address_of_appendMode_4() { return &___appendMode_4; }
inline void set_appendMode_4(bool value)
{
___appendMode_4 = value;
}
inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___stream_5)); }
inline Stream_t1273022909 * get_stream_5() const { return ___stream_5; }
inline Stream_t1273022909 ** get_address_of_stream_5() { return &___stream_5; }
inline void set_stream_5(Stream_t1273022909 * value)
{
___stream_5 = value;
Il2CppCodeGenWriteBarrier((&___stream_5), value);
}
inline static int32_t get_offset_of_decoder_6() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___decoder_6)); }
inline Decoder_t2204182725 * get_decoder_6() const { return ___decoder_6; }
inline Decoder_t2204182725 ** get_address_of_decoder_6() { return &___decoder_6; }
inline void set_decoder_6(Decoder_t2204182725 * value)
{
___decoder_6 = value;
Il2CppCodeGenWriteBarrier((&___decoder_6), value);
}
inline static int32_t get_offset_of_bytes_7() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___bytes_7)); }
inline ByteU5BU5D_t4116647657* get_bytes_7() const { return ___bytes_7; }
inline ByteU5BU5D_t4116647657** get_address_of_bytes_7() { return &___bytes_7; }
inline void set_bytes_7(ByteU5BU5D_t4116647657* value)
{
___bytes_7 = value;
Il2CppCodeGenWriteBarrier((&___bytes_7), value);
}
inline static int32_t get_offset_of_bytePos_8() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___bytePos_8)); }
inline int32_t get_bytePos_8() const { return ___bytePos_8; }
inline int32_t* get_address_of_bytePos_8() { return &___bytePos_8; }
inline void set_bytePos_8(int32_t value)
{
___bytePos_8 = value;
}
inline static int32_t get_offset_of_bytesUsed_9() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___bytesUsed_9)); }
inline int32_t get_bytesUsed_9() const { return ___bytesUsed_9; }
inline int32_t* get_address_of_bytesUsed_9() { return &___bytesUsed_9; }
inline void set_bytesUsed_9(int32_t value)
{
___bytesUsed_9 = value;
}
inline static int32_t get_offset_of_textReader_10() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___textReader_10)); }
inline TextReader_t283511965 * get_textReader_10() const { return ___textReader_10; }
inline TextReader_t283511965 ** get_address_of_textReader_10() { return &___textReader_10; }
inline void set_textReader_10(TextReader_t283511965 * value)
{
___textReader_10 = value;
Il2CppCodeGenWriteBarrier((&___textReader_10), value);
}
inline static int32_t get_offset_of_lineNo_11() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___lineNo_11)); }
inline int32_t get_lineNo_11() const { return ___lineNo_11; }
inline int32_t* get_address_of_lineNo_11() { return &___lineNo_11; }
inline void set_lineNo_11(int32_t value)
{
___lineNo_11 = value;
}
inline static int32_t get_offset_of_lineStartPos_12() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___lineStartPos_12)); }
inline int32_t get_lineStartPos_12() const { return ___lineStartPos_12; }
inline int32_t* get_address_of_lineStartPos_12() { return &___lineStartPos_12; }
inline void set_lineStartPos_12(int32_t value)
{
___lineStartPos_12 = value;
}
inline static int32_t get_offset_of_baseUriStr_13() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___baseUriStr_13)); }
inline String_t* get_baseUriStr_13() const { return ___baseUriStr_13; }
inline String_t** get_address_of_baseUriStr_13() { return &___baseUriStr_13; }
inline void set_baseUriStr_13(String_t* value)
{
___baseUriStr_13 = value;
Il2CppCodeGenWriteBarrier((&___baseUriStr_13), value);
}
inline static int32_t get_offset_of_baseUri_14() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___baseUri_14)); }
inline Uri_t100236324 * get_baseUri_14() const { return ___baseUri_14; }
inline Uri_t100236324 ** get_address_of_baseUri_14() { return &___baseUri_14; }
inline void set_baseUri_14(Uri_t100236324 * value)
{
___baseUri_14 = value;
Il2CppCodeGenWriteBarrier((&___baseUri_14), value);
}
inline static int32_t get_offset_of_isEof_15() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___isEof_15)); }
inline bool get_isEof_15() const { return ___isEof_15; }
inline bool* get_address_of_isEof_15() { return &___isEof_15; }
inline void set_isEof_15(bool value)
{
___isEof_15 = value;
}
inline static int32_t get_offset_of_isStreamEof_16() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___isStreamEof_16)); }
inline bool get_isStreamEof_16() const { return ___isStreamEof_16; }
inline bool* get_address_of_isStreamEof_16() { return &___isStreamEof_16; }
inline void set_isStreamEof_16(bool value)
{
___isStreamEof_16 = value;
}
inline static int32_t get_offset_of_entity_17() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___entity_17)); }
inline RuntimeObject* get_entity_17() const { return ___entity_17; }
inline RuntimeObject** get_address_of_entity_17() { return &___entity_17; }
inline void set_entity_17(RuntimeObject* value)
{
___entity_17 = value;
Il2CppCodeGenWriteBarrier((&___entity_17), value);
}
inline static int32_t get_offset_of_entityId_18() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___entityId_18)); }
inline int32_t get_entityId_18() const { return ___entityId_18; }
inline int32_t* get_address_of_entityId_18() { return &___entityId_18; }
inline void set_entityId_18(int32_t value)
{
___entityId_18 = value;
}
inline static int32_t get_offset_of_eolNormalized_19() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___eolNormalized_19)); }
inline bool get_eolNormalized_19() const { return ___eolNormalized_19; }
inline bool* get_address_of_eolNormalized_19() { return &___eolNormalized_19; }
inline void set_eolNormalized_19(bool value)
{
___eolNormalized_19 = value;
}
inline static int32_t get_offset_of_entityResolvedManually_20() { return static_cast<int32_t>(offsetof(ParsingState_t1780334922, ___entityResolvedManually_20)); }
inline bool get_entityResolvedManually_20() const { return ___entityResolvedManually_20; }
inline bool* get_address_of_entityResolvedManually_20() { return &___entityResolvedManually_20; }
inline void set_entityResolvedManually_20(bool value)
{
___entityResolvedManually_20 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.XmlTextReaderImpl/ParsingState
struct ParsingState_t1780334922_marshaled_pinvoke
{
uint8_t* ___chars_0;
int32_t ___charPos_1;
int32_t ___charsUsed_2;
Encoding_t1523322056 * ___encoding_3;
int32_t ___appendMode_4;
Stream_t1273022909 * ___stream_5;
Decoder_t2204182725 * ___decoder_6;
uint8_t* ___bytes_7;
int32_t ___bytePos_8;
int32_t ___bytesUsed_9;
TextReader_t283511965 * ___textReader_10;
int32_t ___lineNo_11;
int32_t ___lineStartPos_12;
char* ___baseUriStr_13;
Uri_t100236324 * ___baseUri_14;
int32_t ___isEof_15;
int32_t ___isStreamEof_16;
RuntimeObject* ___entity_17;
int32_t ___entityId_18;
int32_t ___eolNormalized_19;
int32_t ___entityResolvedManually_20;
};
// Native definition for COM marshalling of System.Xml.XmlTextReaderImpl/ParsingState
struct ParsingState_t1780334922_marshaled_com
{
uint8_t* ___chars_0;
int32_t ___charPos_1;
int32_t ___charsUsed_2;
Encoding_t1523322056 * ___encoding_3;
int32_t ___appendMode_4;
Stream_t1273022909 * ___stream_5;
Decoder_t2204182725 * ___decoder_6;
uint8_t* ___bytes_7;
int32_t ___bytePos_8;
int32_t ___bytesUsed_9;
TextReader_t283511965 * ___textReader_10;
int32_t ___lineNo_11;
int32_t ___lineStartPos_12;
Il2CppChar* ___baseUriStr_13;
Uri_t100236324 * ___baseUri_14;
int32_t ___isEof_15;
int32_t ___isStreamEof_16;
RuntimeObject* ___entity_17;
int32_t ___entityId_18;
int32_t ___eolNormalized_19;
int32_t ___entityResolvedManually_20;
};
#endif // PARSINGSTATE_T1780334922_H
#ifndef NAMESPACE_T2218256516_H
#define NAMESPACE_T2218256516_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlTextWriter/Namespace
struct Namespace_t2218256516
{
public:
// System.String System.Xml.XmlTextWriter/Namespace::prefix
String_t* ___prefix_0;
// System.String System.Xml.XmlTextWriter/Namespace::ns
String_t* ___ns_1;
// System.Boolean System.Xml.XmlTextWriter/Namespace::declared
bool ___declared_2;
// System.Int32 System.Xml.XmlTextWriter/Namespace::prevNsIndex
int32_t ___prevNsIndex_3;
public:
inline static int32_t get_offset_of_prefix_0() { return static_cast<int32_t>(offsetof(Namespace_t2218256516, ___prefix_0)); }
inline String_t* get_prefix_0() const { return ___prefix_0; }
inline String_t** get_address_of_prefix_0() { return &___prefix_0; }
inline void set_prefix_0(String_t* value)
{
___prefix_0 = value;
Il2CppCodeGenWriteBarrier((&___prefix_0), value);
}
inline static int32_t get_offset_of_ns_1() { return static_cast<int32_t>(offsetof(Namespace_t2218256516, ___ns_1)); }
inline String_t* get_ns_1() const { return ___ns_1; }
inline String_t** get_address_of_ns_1() { return &___ns_1; }
inline void set_ns_1(String_t* value)
{
___ns_1 = value;
Il2CppCodeGenWriteBarrier((&___ns_1), value);
}
inline static int32_t get_offset_of_declared_2() { return static_cast<int32_t>(offsetof(Namespace_t2218256516, ___declared_2)); }
inline bool get_declared_2() const { return ___declared_2; }
inline bool* get_address_of_declared_2() { return &___declared_2; }
inline void set_declared_2(bool value)
{
___declared_2 = value;
}
inline static int32_t get_offset_of_prevNsIndex_3() { return static_cast<int32_t>(offsetof(Namespace_t2218256516, ___prevNsIndex_3)); }
inline int32_t get_prevNsIndex_3() const { return ___prevNsIndex_3; }
inline int32_t* get_address_of_prevNsIndex_3() { return &___prevNsIndex_3; }
inline void set_prevNsIndex_3(int32_t value)
{
___prevNsIndex_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.XmlTextWriter/Namespace
struct Namespace_t2218256516_marshaled_pinvoke
{
char* ___prefix_0;
char* ___ns_1;
int32_t ___declared_2;
int32_t ___prevNsIndex_3;
};
// Native definition for COM marshalling of System.Xml.XmlTextWriter/Namespace
struct Namespace_t2218256516_marshaled_com
{
Il2CppChar* ___prefix_0;
Il2CppChar* ___ns_1;
int32_t ___declared_2;
int32_t ___prevNsIndex_3;
};
#endif // NAMESPACE_T2218256516_H
#ifndef ORDERBLOCK_T1585977831_H
#define ORDERBLOCK_T1585977831_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t1585977831
{
public:
// System.Int32 UnityEngine.BeforeRenderHelper/OrderBlock::order
int32_t ___order_0;
// UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper/OrderBlock::callback
UnityAction_t3245792599 * ___callback_1;
public:
inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t1585977831, ___order_0)); }
inline int32_t get_order_0() const { return ___order_0; }
inline int32_t* get_address_of_order_0() { return &___order_0; }
inline void set_order_0(int32_t value)
{
___order_0 = value;
}
inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t1585977831, ___callback_1)); }
inline UnityAction_t3245792599 * get_callback_1() const { return ___callback_1; }
inline UnityAction_t3245792599 ** get_address_of_callback_1() { return &___callback_1; }
inline void set_callback_1(UnityAction_t3245792599 * value)
{
___callback_1 = value;
Il2CppCodeGenWriteBarrier((&___callback_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t1585977831_marshaled_pinvoke
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t1585977831_marshaled_com
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
#endif // ORDERBLOCK_T1585977831_H
#ifndef COLOR_T2555686324_H
#define COLOR_T2555686324_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Color
struct Color_t2555686324
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLOR_T2555686324_H
#ifndef COLOR32_T2600501292_H
#define COLOR32_T2600501292_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Color32
struct Color32_t2600501292
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.Color32::rgba
int32_t ___rgba_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___rgba_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Byte UnityEngine.Color32::r
uint8_t ___r_1;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___r_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___g_2_OffsetPadding[1];
// System.Byte UnityEngine.Color32::g
uint8_t ___g_2;
};
#pragma pack(pop, tp)
struct
{
char ___g_2_OffsetPadding_forAlignmentOnly[1];
uint8_t ___g_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___b_3_OffsetPadding[2];
// System.Byte UnityEngine.Color32::b
uint8_t ___b_3;
};
#pragma pack(pop, tp)
struct
{
char ___b_3_OffsetPadding_forAlignmentOnly[2];
uint8_t ___b_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___a_4_OffsetPadding[3];
// System.Byte UnityEngine.Color32::a
uint8_t ___a_4;
};
#pragma pack(pop, tp)
struct
{
char ___a_4_OffsetPadding_forAlignmentOnly[3];
uint8_t ___a_4_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___rgba_0)); }
inline int32_t get_rgba_0() const { return ___rgba_0; }
inline int32_t* get_address_of_rgba_0() { return &___rgba_0; }
inline void set_rgba_0(int32_t value)
{
___rgba_0 = value;
}
inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___r_1)); }
inline uint8_t get_r_1() const { return ___r_1; }
inline uint8_t* get_address_of_r_1() { return &___r_1; }
inline void set_r_1(uint8_t value)
{
___r_1 = value;
}
inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___g_2)); }
inline uint8_t get_g_2() const { return ___g_2; }
inline uint8_t* get_address_of_g_2() { return &___g_2; }
inline void set_g_2(uint8_t value)
{
___g_2 = value;
}
inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___b_3)); }
inline uint8_t get_b_3() const { return ___b_3; }
inline uint8_t* get_address_of_b_3() { return &___b_3; }
inline void set_b_3(uint8_t value)
{
___b_3 = value;
}
inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___a_4)); }
inline uint8_t get_a_4() const { return ___a_4; }
inline uint8_t* get_address_of_a_4() { return &___a_4; }
inline void set_a_4(uint8_t value)
{
___a_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLOR32_T2600501292_H
#ifndef KEYFRAME_T4206410242_H
#define KEYFRAME_T4206410242_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Keyframe
struct Keyframe_t4206410242
{
public:
// System.Single UnityEngine.Keyframe::m_Time
float ___m_Time_0;
// System.Single UnityEngine.Keyframe::m_Value
float ___m_Value_1;
// System.Single UnityEngine.Keyframe::m_InTangent
float ___m_InTangent_2;
// System.Single UnityEngine.Keyframe::m_OutTangent
float ___m_OutTangent_3;
// System.Int32 UnityEngine.Keyframe::m_WeightedMode
int32_t ___m_WeightedMode_4;
// System.Single UnityEngine.Keyframe::m_InWeight
float ___m_InWeight_5;
// System.Single UnityEngine.Keyframe::m_OutWeight
float ___m_OutWeight_6;
public:
inline static int32_t get_offset_of_m_Time_0() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_Time_0)); }
inline float get_m_Time_0() const { return ___m_Time_0; }
inline float* get_address_of_m_Time_0() { return &___m_Time_0; }
inline void set_m_Time_0(float value)
{
___m_Time_0 = value;
}
inline static int32_t get_offset_of_m_Value_1() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_Value_1)); }
inline float get_m_Value_1() const { return ___m_Value_1; }
inline float* get_address_of_m_Value_1() { return &___m_Value_1; }
inline void set_m_Value_1(float value)
{
___m_Value_1 = value;
}
inline static int32_t get_offset_of_m_InTangent_2() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_InTangent_2)); }
inline float get_m_InTangent_2() const { return ___m_InTangent_2; }
inline float* get_address_of_m_InTangent_2() { return &___m_InTangent_2; }
inline void set_m_InTangent_2(float value)
{
___m_InTangent_2 = value;
}
inline static int32_t get_offset_of_m_OutTangent_3() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_OutTangent_3)); }
inline float get_m_OutTangent_3() const { return ___m_OutTangent_3; }
inline float* get_address_of_m_OutTangent_3() { return &___m_OutTangent_3; }
inline void set_m_OutTangent_3(float value)
{
___m_OutTangent_3 = value;
}
inline static int32_t get_offset_of_m_WeightedMode_4() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_WeightedMode_4)); }
inline int32_t get_m_WeightedMode_4() const { return ___m_WeightedMode_4; }
inline int32_t* get_address_of_m_WeightedMode_4() { return &___m_WeightedMode_4; }
inline void set_m_WeightedMode_4(int32_t value)
{
___m_WeightedMode_4 = value;
}
inline static int32_t get_offset_of_m_InWeight_5() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_InWeight_5)); }
inline float get_m_InWeight_5() const { return ___m_InWeight_5; }
inline float* get_address_of_m_InWeight_5() { return &___m_InWeight_5; }
inline void set_m_InWeight_5(float value)
{
___m_InWeight_5 = value;
}
inline static int32_t get_offset_of_m_OutWeight_6() { return static_cast<int32_t>(offsetof(Keyframe_t4206410242, ___m_OutWeight_6)); }
inline float get_m_OutWeight_6() const { return ___m_OutWeight_6; }
inline float* get_address_of_m_OutWeight_6() { return &___m_OutWeight_6; }
inline void set_m_OutWeight_6(float value)
{
___m_OutWeight_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYFRAME_T4206410242_H
#ifndef HITINFO_T3229609740_H
#define HITINFO_T3229609740_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t3229609740
{
public:
// UnityEngine.GameObject UnityEngine.SendMouseEvents/HitInfo::target
GameObject_t1113636619 * ___target_0;
// UnityEngine.Camera UnityEngine.SendMouseEvents/HitInfo::camera
Camera_t4157153871 * ___camera_1;
public:
inline static int32_t get_offset_of_target_0() { return static_cast<int32_t>(offsetof(HitInfo_t3229609740, ___target_0)); }
inline GameObject_t1113636619 * get_target_0() const { return ___target_0; }
inline GameObject_t1113636619 ** get_address_of_target_0() { return &___target_0; }
inline void set_target_0(GameObject_t1113636619 * value)
{
___target_0 = value;
Il2CppCodeGenWriteBarrier((&___target_0), value);
}
inline static int32_t get_offset_of_camera_1() { return static_cast<int32_t>(offsetof(HitInfo_t3229609740, ___camera_1)); }
inline Camera_t4157153871 * get_camera_1() const { return ___camera_1; }
inline Camera_t4157153871 ** get_address_of_camera_1() { return &___camera_1; }
inline void set_camera_1(Camera_t4157153871 * value)
{
___camera_1 = value;
Il2CppCodeGenWriteBarrier((&___camera_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t3229609740_marshaled_pinvoke
{
GameObject_t1113636619 * ___target_0;
Camera_t4157153871 * ___camera_1;
};
// Native definition for COM marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t3229609740_marshaled_com
{
GameObject_t1113636619 * ___target_0;
Camera_t4157153871 * ___camera_1;
};
#endif // HITINFO_T3229609740_H
#ifndef GCACHIEVEMENTDATA_T675222246_H
#define GCACHIEVEMENTDATA_T675222246_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t675222246
{
public:
// System.String UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Identifier
String_t* ___m_Identifier_0;
// System.Double UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_PercentCompleted
double ___m_PercentCompleted_1;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Completed
int32_t ___m_Completed_2;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_Hidden
int32_t ___m_Hidden_3;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcAchievementData::m_LastReportedDate
int32_t ___m_LastReportedDate_4;
public:
inline static int32_t get_offset_of_m_Identifier_0() { return static_cast<int32_t>(offsetof(GcAchievementData_t675222246, ___m_Identifier_0)); }
inline String_t* get_m_Identifier_0() const { return ___m_Identifier_0; }
inline String_t** get_address_of_m_Identifier_0() { return &___m_Identifier_0; }
inline void set_m_Identifier_0(String_t* value)
{
___m_Identifier_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Identifier_0), value);
}
inline static int32_t get_offset_of_m_PercentCompleted_1() { return static_cast<int32_t>(offsetof(GcAchievementData_t675222246, ___m_PercentCompleted_1)); }
inline double get_m_PercentCompleted_1() const { return ___m_PercentCompleted_1; }
inline double* get_address_of_m_PercentCompleted_1() { return &___m_PercentCompleted_1; }
inline void set_m_PercentCompleted_1(double value)
{
___m_PercentCompleted_1 = value;
}
inline static int32_t get_offset_of_m_Completed_2() { return static_cast<int32_t>(offsetof(GcAchievementData_t675222246, ___m_Completed_2)); }
inline int32_t get_m_Completed_2() const { return ___m_Completed_2; }
inline int32_t* get_address_of_m_Completed_2() { return &___m_Completed_2; }
inline void set_m_Completed_2(int32_t value)
{
___m_Completed_2 = value;
}
inline static int32_t get_offset_of_m_Hidden_3() { return static_cast<int32_t>(offsetof(GcAchievementData_t675222246, ___m_Hidden_3)); }
inline int32_t get_m_Hidden_3() const { return ___m_Hidden_3; }
inline int32_t* get_address_of_m_Hidden_3() { return &___m_Hidden_3; }
inline void set_m_Hidden_3(int32_t value)
{
___m_Hidden_3 = value;
}
inline static int32_t get_offset_of_m_LastReportedDate_4() { return static_cast<int32_t>(offsetof(GcAchievementData_t675222246, ___m_LastReportedDate_4)); }
inline int32_t get_m_LastReportedDate_4() const { return ___m_LastReportedDate_4; }
inline int32_t* get_address_of_m_LastReportedDate_4() { return &___m_LastReportedDate_4; }
inline void set_m_LastReportedDate_4(int32_t value)
{
___m_LastReportedDate_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t675222246_marshaled_pinvoke
{
char* ___m_Identifier_0;
double ___m_PercentCompleted_1;
int32_t ___m_Completed_2;
int32_t ___m_Hidden_3;
int32_t ___m_LastReportedDate_4;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcAchievementData
struct GcAchievementData_t675222246_marshaled_com
{
Il2CppChar* ___m_Identifier_0;
double ___m_PercentCompleted_1;
int32_t ___m_Completed_2;
int32_t ___m_Hidden_3;
int32_t ___m_LastReportedDate_4;
};
#endif // GCACHIEVEMENTDATA_T675222246_H
#ifndef GCSCOREDATA_T2125309831_H
#define GCSCOREDATA_T2125309831_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t2125309831
{
public:
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Category
String_t* ___m_Category_0;
// System.UInt32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueLow
uint32_t ___m_ValueLow_1;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_ValueHigh
int32_t ___m_ValueHigh_2;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Date
int32_t ___m_Date_3;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_FormattedValue
String_t* ___m_FormattedValue_4;
// System.String UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_PlayerID
String_t* ___m_PlayerID_5;
// System.Int32 UnityEngine.SocialPlatforms.GameCenter.GcScoreData::m_Rank
int32_t ___m_Rank_6;
public:
inline static int32_t get_offset_of_m_Category_0() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_Category_0)); }
inline String_t* get_m_Category_0() const { return ___m_Category_0; }
inline String_t** get_address_of_m_Category_0() { return &___m_Category_0; }
inline void set_m_Category_0(String_t* value)
{
___m_Category_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Category_0), value);
}
inline static int32_t get_offset_of_m_ValueLow_1() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_ValueLow_1)); }
inline uint32_t get_m_ValueLow_1() const { return ___m_ValueLow_1; }
inline uint32_t* get_address_of_m_ValueLow_1() { return &___m_ValueLow_1; }
inline void set_m_ValueLow_1(uint32_t value)
{
___m_ValueLow_1 = value;
}
inline static int32_t get_offset_of_m_ValueHigh_2() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_ValueHigh_2)); }
inline int32_t get_m_ValueHigh_2() const { return ___m_ValueHigh_2; }
inline int32_t* get_address_of_m_ValueHigh_2() { return &___m_ValueHigh_2; }
inline void set_m_ValueHigh_2(int32_t value)
{
___m_ValueHigh_2 = value;
}
inline static int32_t get_offset_of_m_Date_3() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_Date_3)); }
inline int32_t get_m_Date_3() const { return ___m_Date_3; }
inline int32_t* get_address_of_m_Date_3() { return &___m_Date_3; }
inline void set_m_Date_3(int32_t value)
{
___m_Date_3 = value;
}
inline static int32_t get_offset_of_m_FormattedValue_4() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_FormattedValue_4)); }
inline String_t* get_m_FormattedValue_4() const { return ___m_FormattedValue_4; }
inline String_t** get_address_of_m_FormattedValue_4() { return &___m_FormattedValue_4; }
inline void set_m_FormattedValue_4(String_t* value)
{
___m_FormattedValue_4 = value;
Il2CppCodeGenWriteBarrier((&___m_FormattedValue_4), value);
}
inline static int32_t get_offset_of_m_PlayerID_5() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_PlayerID_5)); }
inline String_t* get_m_PlayerID_5() const { return ___m_PlayerID_5; }
inline String_t** get_address_of_m_PlayerID_5() { return &___m_PlayerID_5; }
inline void set_m_PlayerID_5(String_t* value)
{
___m_PlayerID_5 = value;
Il2CppCodeGenWriteBarrier((&___m_PlayerID_5), value);
}
inline static int32_t get_offset_of_m_Rank_6() { return static_cast<int32_t>(offsetof(GcScoreData_t2125309831, ___m_Rank_6)); }
inline int32_t get_m_Rank_6() const { return ___m_Rank_6; }
inline int32_t* get_address_of_m_Rank_6() { return &___m_Rank_6; }
inline void set_m_Rank_6(int32_t value)
{
___m_Rank_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t2125309831_marshaled_pinvoke
{
char* ___m_Category_0;
uint32_t ___m_ValueLow_1;
int32_t ___m_ValueHigh_2;
int32_t ___m_Date_3;
char* ___m_FormattedValue_4;
char* ___m_PlayerID_5;
int32_t ___m_Rank_6;
};
// Native definition for COM marshalling of UnityEngine.SocialPlatforms.GameCenter.GcScoreData
struct GcScoreData_t2125309831_marshaled_com
{
Il2CppChar* ___m_Category_0;
uint32_t ___m_ValueLow_1;
int32_t ___m_ValueHigh_2;
int32_t ___m_Date_3;
Il2CppChar* ___m_FormattedValue_4;
Il2CppChar* ___m_PlayerID_5;
int32_t ___m_Rank_6;
};
#endif // GCSCOREDATA_T2125309831_H
#ifndef UILINEINFO_T4195266810_H
#define UILINEINFO_T4195266810_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UILineInfo
struct UILineInfo_t4195266810
{
public:
// System.Int32 UnityEngine.UILineInfo::startCharIdx
int32_t ___startCharIdx_0;
// System.Int32 UnityEngine.UILineInfo::height
int32_t ___height_1;
// System.Single UnityEngine.UILineInfo::topY
float ___topY_2;
// System.Single UnityEngine.UILineInfo::leading
float ___leading_3;
public:
inline static int32_t get_offset_of_startCharIdx_0() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___startCharIdx_0)); }
inline int32_t get_startCharIdx_0() const { return ___startCharIdx_0; }
inline int32_t* get_address_of_startCharIdx_0() { return &___startCharIdx_0; }
inline void set_startCharIdx_0(int32_t value)
{
___startCharIdx_0 = value;
}
inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___height_1)); }
inline int32_t get_height_1() const { return ___height_1; }
inline int32_t* get_address_of_height_1() { return &___height_1; }
inline void set_height_1(int32_t value)
{
___height_1 = value;
}
inline static int32_t get_offset_of_topY_2() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___topY_2)); }
inline float get_topY_2() const { return ___topY_2; }
inline float* get_address_of_topY_2() { return &___topY_2; }
inline void set_topY_2(float value)
{
___topY_2 = value;
}
inline static int32_t get_offset_of_leading_3() { return static_cast<int32_t>(offsetof(UILineInfo_t4195266810, ___leading_3)); }
inline float get_leading_3() const { return ___leading_3; }
inline float* get_address_of_leading_3() { return &___leading_3; }
inline void set_leading_3(float value)
{
___leading_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UILINEINFO_T4195266810_H
#ifndef WORKREQUEST_T1354518612_H
#define WORKREQUEST_T1354518612_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t1354518612
{
public:
// System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateCallback
SendOrPostCallback_t2750080073 * ___m_DelagateCallback_0;
// System.Object UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateState
RuntimeObject * ___m_DelagateState_1;
// System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext/WorkRequest::m_WaitHandle
ManualResetEvent_t451242010 * ___m_WaitHandle_2;
public:
inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_t1354518612, ___m_DelagateCallback_0)); }
inline SendOrPostCallback_t2750080073 * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; }
inline SendOrPostCallback_t2750080073 ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; }
inline void set_m_DelagateCallback_0(SendOrPostCallback_t2750080073 * value)
{
___m_DelagateCallback_0 = value;
Il2CppCodeGenWriteBarrier((&___m_DelagateCallback_0), value);
}
inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_t1354518612, ___m_DelagateState_1)); }
inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; }
inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; }
inline void set_m_DelagateState_1(RuntimeObject * value)
{
___m_DelagateState_1 = value;
Il2CppCodeGenWriteBarrier((&___m_DelagateState_1), value);
}
inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_t1354518612, ___m_WaitHandle_2)); }
inline ManualResetEvent_t451242010 * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; }
inline ManualResetEvent_t451242010 ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; }
inline void set_m_WaitHandle_2(ManualResetEvent_t451242010 * value)
{
___m_WaitHandle_2 = value;
Il2CppCodeGenWriteBarrier((&___m_WaitHandle_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t1354518612_marshaled_pinvoke
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_t451242010 * ___m_WaitHandle_2;
};
// Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t1354518612_marshaled_com
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_t451242010 * ___m_WaitHandle_2;
};
#endif // WORKREQUEST_T1354518612_H
#ifndef VECTOR2_T2156229523_H
#define VECTOR2_T2156229523_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector2
struct Vector2_t2156229523
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_t2156229523_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_t2156229523 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_t2156229523 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_t2156229523 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_t2156229523 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_t2156229523 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_t2156229523 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_t2156229523 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_t2156229523 ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___zeroVector_2)); }
inline Vector2_t2156229523 get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_t2156229523 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_t2156229523 value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___oneVector_3)); }
inline Vector2_t2156229523 get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_t2156229523 * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_t2156229523 value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___upVector_4)); }
inline Vector2_t2156229523 get_upVector_4() const { return ___upVector_4; }
inline Vector2_t2156229523 * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_t2156229523 value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___downVector_5)); }
inline Vector2_t2156229523 get_downVector_5() const { return ___downVector_5; }
inline Vector2_t2156229523 * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_t2156229523 value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___leftVector_6)); }
inline Vector2_t2156229523 get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_t2156229523 * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_t2156229523 value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___rightVector_7)); }
inline Vector2_t2156229523 get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_t2156229523 * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_t2156229523 value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_t2156229523 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_t2156229523 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_t2156229523 value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_t2156229523 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_t2156229523 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_t2156229523 value)
{
___negativeInfinityVector_9 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR2_T2156229523_H
#ifndef VECTOR3_T3722313464_H
#define VECTOR3_T3722313464_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector3
struct Vector3_t3722313464
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
public:
inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___x_2)); }
inline float get_x_2() const { return ___x_2; }
inline float* get_address_of_x_2() { return &___x_2; }
inline void set_x_2(float value)
{
___x_2 = value;
}
inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___y_3)); }
inline float get_y_3() const { return ___y_3; }
inline float* get_address_of_y_3() { return &___y_3; }
inline void set_y_3(float value)
{
___y_3 = value;
}
inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___z_4)); }
inline float get_z_4() const { return ___z_4; }
inline float* get_address_of_z_4() { return &___z_4; }
inline void set_z_4(float value)
{
___z_4 = value;
}
};
struct Vector3_t3722313464_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t3722313464 ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t3722313464 ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t3722313464 ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t3722313464 ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t3722313464 ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t3722313464 ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t3722313464 ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t3722313464 ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t3722313464 ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t3722313464 ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___zeroVector_5)); }
inline Vector3_t3722313464 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_t3722313464 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_t3722313464 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___oneVector_6)); }
inline Vector3_t3722313464 get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_t3722313464 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_t3722313464 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___upVector_7)); }
inline Vector3_t3722313464 get_upVector_7() const { return ___upVector_7; }
inline Vector3_t3722313464 * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_t3722313464 value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___downVector_8)); }
inline Vector3_t3722313464 get_downVector_8() const { return ___downVector_8; }
inline Vector3_t3722313464 * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_t3722313464 value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___leftVector_9)); }
inline Vector3_t3722313464 get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_t3722313464 * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_t3722313464 value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___rightVector_10)); }
inline Vector3_t3722313464 get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_t3722313464 * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_t3722313464 value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___forwardVector_11)); }
inline Vector3_t3722313464 get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_t3722313464 * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_t3722313464 value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___backVector_12)); }
inline Vector3_t3722313464 get_backVector_12() const { return ___backVector_12; }
inline Vector3_t3722313464 * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_t3722313464 value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_t3722313464 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_t3722313464 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_t3722313464 value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_t3722313464 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_t3722313464 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_t3722313464 value)
{
___negativeInfinityVector_14 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR3_T3722313464_H
#ifndef VECTOR4_T3319028937_H
#define VECTOR4_T3319028937_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector4
struct Vector4_t3319028937
{
public:
// System.Single UnityEngine.Vector4::x
float ___x_1;
// System.Single UnityEngine.Vector4::y
float ___y_2;
// System.Single UnityEngine.Vector4::z
float ___z_3;
// System.Single UnityEngine.Vector4::w
float ___w_4;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___w_4)); }
inline float get_w_4() const { return ___w_4; }
inline float* get_address_of_w_4() { return &___w_4; }
inline void set_w_4(float value)
{
___w_4 = value;
}
};
struct Vector4_t3319028937_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_t3319028937 ___zeroVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_t3319028937 ___oneVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_t3319028937 ___positiveInfinityVector_7;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_t3319028937 ___negativeInfinityVector_8;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___zeroVector_5)); }
inline Vector4_t3319028937 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector4_t3319028937 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector4_t3319028937 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___oneVector_6)); }
inline Vector4_t3319028937 get_oneVector_6() const { return ___oneVector_6; }
inline Vector4_t3319028937 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector4_t3319028937 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___positiveInfinityVector_7)); }
inline Vector4_t3319028937 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; }
inline Vector4_t3319028937 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; }
inline void set_positiveInfinityVector_7(Vector4_t3319028937 value)
{
___positiveInfinityVector_7 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___negativeInfinityVector_8)); }
inline Vector4_t3319028937 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; }
inline Vector4_t3319028937 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; }
inline void set_negativeInfinityVector_8(Vector4_t3319028937 value)
{
___negativeInfinityVector_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR4_T3319028937_H
#ifndef WEBCAMDEVICE_T1322781432_H
#define WEBCAMDEVICE_T1322781432_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.WebCamDevice
struct WebCamDevice_t1322781432
{
public:
// System.String UnityEngine.WebCamDevice::m_Name
String_t* ___m_Name_0;
// System.Int32 UnityEngine.WebCamDevice::m_Flags
int32_t ___m_Flags_1;
public:
inline static int32_t get_offset_of_m_Name_0() { return static_cast<int32_t>(offsetof(WebCamDevice_t1322781432, ___m_Name_0)); }
inline String_t* get_m_Name_0() const { return ___m_Name_0; }
inline String_t** get_address_of_m_Name_0() { return &___m_Name_0; }
inline void set_m_Name_0(String_t* value)
{
___m_Name_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Name_0), value);
}
inline static int32_t get_offset_of_m_Flags_1() { return static_cast<int32_t>(offsetof(WebCamDevice_t1322781432, ___m_Flags_1)); }
inline int32_t get_m_Flags_1() const { return ___m_Flags_1; }
inline int32_t* get_address_of_m_Flags_1() { return &___m_Flags_1; }
inline void set_m_Flags_1(int32_t value)
{
___m_Flags_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.WebCamDevice
struct WebCamDevice_t1322781432_marshaled_pinvoke
{
char* ___m_Name_0;
int32_t ___m_Flags_1;
};
// Native definition for COM marshalling of UnityEngine.WebCamDevice
struct WebCamDevice_t1322781432_marshaled_com
{
Il2CppChar* ___m_Name_0;
int32_t ___m_Flags_1;
};
#endif // WEBCAMDEVICE_T1322781432_H
#ifndef EKEYCODE_T3426821747_H
#define EKEYCODE_T3426821747_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// GameCanvas.EKeyCode
struct EKeyCode_t3426821747
{
public:
// System.Int32 GameCanvas.EKeyCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EKeyCode_t3426821747, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EKEYCODE_T3426821747_H
#ifndef ESTATE_T2928707481_H
#define ESTATE_T2928707481_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// GameCanvas.Input.Keyboard/EState
struct EState_t2928707481
{
public:
// System.Int32 GameCanvas.Input.Keyboard/EState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EState_t2928707481, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ESTATE_T2928707481_H
#ifndef EPHASE_T3819498602_H
#define EPHASE_T3819498602_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// GameCanvas.PointerEvent/EPhase
struct EPhase_t3819498602
{
public:
// System.Int32 GameCanvas.PointerEvent/EPhase::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EPhase_t3819498602, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EPHASE_T3819498602_H
#ifndef ETYPE_T2243668679_H
#define ETYPE_T2243668679_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// GameCanvas.PointerEvent/EType
struct EType_t2243668679
{
public:
// System.Int32 GameCanvas.PointerEvent/EType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EType_t2243668679, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ETYPE_T2243668679_H
#ifndef OP_T2046805169_H
#define OP_T2046805169_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// MS.Internal.Xml.XPath.Operator/Op
struct Op_t2046805169
{
public:
// System.Int32 MS.Internal.Xml.XPath.Operator/Op::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Op_t2046805169, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OP_T2046805169_H
#ifndef SECITEMIMPORTEXPORTKEYPARAMETERS_T2289706800_H
#define SECITEMIMPORTEXPORTKEYPARAMETERS_T2289706800_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.AppleTls.SecImportExport/SecItemImportExportKeyParameters
struct SecItemImportExportKeyParameters_t2289706800
{
public:
// System.Int32 Mono.AppleTls.SecImportExport/SecItemImportExportKeyParameters::version
int32_t ___version_0;
// System.Int32 Mono.AppleTls.SecImportExport/SecItemImportExportKeyParameters::flags
int32_t ___flags_1;
// System.IntPtr Mono.AppleTls.SecImportExport/SecItemImportExportKeyParameters::passphrase
intptr_t ___passphrase_2;
// System.IntPtr Mono.AppleTls.SecImportExport/SecItemImportExportKeyParameters::alertTitle
intptr_t ___alertTitle_3;
// System.IntPtr Mono.AppleTls.SecImportExport/SecItemImportExportKeyParameters::alertPrompt
intptr_t ___alertPrompt_4;
// System.IntPtr Mono.AppleTls.SecImportExport/SecItemImportExportKeyParameters::accessRef
intptr_t ___accessRef_5;
// System.IntPtr Mono.AppleTls.SecImportExport/SecItemImportExportKeyParameters::keyUsage
intptr_t ___keyUsage_6;
// System.IntPtr Mono.AppleTls.SecImportExport/SecItemImportExportKeyParameters::keyAttributes
intptr_t ___keyAttributes_7;
public:
inline static int32_t get_offset_of_version_0() { return static_cast<int32_t>(offsetof(SecItemImportExportKeyParameters_t2289706800, ___version_0)); }
inline int32_t get_version_0() const { return ___version_0; }
inline int32_t* get_address_of_version_0() { return &___version_0; }
inline void set_version_0(int32_t value)
{
___version_0 = value;
}
inline static int32_t get_offset_of_flags_1() { return static_cast<int32_t>(offsetof(SecItemImportExportKeyParameters_t2289706800, ___flags_1)); }
inline int32_t get_flags_1() const { return ___flags_1; }
inline int32_t* get_address_of_flags_1() { return &___flags_1; }
inline void set_flags_1(int32_t value)
{
___flags_1 = value;
}
inline static int32_t get_offset_of_passphrase_2() { return static_cast<int32_t>(offsetof(SecItemImportExportKeyParameters_t2289706800, ___passphrase_2)); }
inline intptr_t get_passphrase_2() const { return ___passphrase_2; }
inline intptr_t* get_address_of_passphrase_2() { return &___passphrase_2; }
inline void set_passphrase_2(intptr_t value)
{
___passphrase_2 = value;
}
inline static int32_t get_offset_of_alertTitle_3() { return static_cast<int32_t>(offsetof(SecItemImportExportKeyParameters_t2289706800, ___alertTitle_3)); }
inline intptr_t get_alertTitle_3() const { return ___alertTitle_3; }
inline intptr_t* get_address_of_alertTitle_3() { return &___alertTitle_3; }
inline void set_alertTitle_3(intptr_t value)
{
___alertTitle_3 = value;
}
inline static int32_t get_offset_of_alertPrompt_4() { return static_cast<int32_t>(offsetof(SecItemImportExportKeyParameters_t2289706800, ___alertPrompt_4)); }
inline intptr_t get_alertPrompt_4() const { return ___alertPrompt_4; }
inline intptr_t* get_address_of_alertPrompt_4() { return &___alertPrompt_4; }
inline void set_alertPrompt_4(intptr_t value)
{
___alertPrompt_4 = value;
}
inline static int32_t get_offset_of_accessRef_5() { return static_cast<int32_t>(offsetof(SecItemImportExportKeyParameters_t2289706800, ___accessRef_5)); }
inline intptr_t get_accessRef_5() const { return ___accessRef_5; }
inline intptr_t* get_address_of_accessRef_5() { return &___accessRef_5; }
inline void set_accessRef_5(intptr_t value)
{
___accessRef_5 = value;
}
inline static int32_t get_offset_of_keyUsage_6() { return static_cast<int32_t>(offsetof(SecItemImportExportKeyParameters_t2289706800, ___keyUsage_6)); }
inline intptr_t get_keyUsage_6() const { return ___keyUsage_6; }
inline intptr_t* get_address_of_keyUsage_6() { return &___keyUsage_6; }
inline void set_keyUsage_6(intptr_t value)
{
___keyUsage_6 = value;
}
inline static int32_t get_offset_of_keyAttributes_7() { return static_cast<int32_t>(offsetof(SecItemImportExportKeyParameters_t2289706800, ___keyAttributes_7)); }
inline intptr_t get_keyAttributes_7() const { return ___keyAttributes_7; }
inline intptr_t* get_address_of_keyAttributes_7() { return &___keyAttributes_7; }
inline void set_keyAttributes_7(intptr_t value)
{
___keyAttributes_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SECITEMIMPORTEXPORTKEYPARAMETERS_T2289706800_H
#ifndef SSLCIPHERSUITE_T3309122048_H
#define SSLCIPHERSUITE_T3309122048_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.AppleTls.SslCipherSuite
struct SslCipherSuite_t3309122048
{
public:
// System.UInt16 Mono.AppleTls.SslCipherSuite::value__
uint16_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SslCipherSuite_t3309122048, ___value___2)); }
inline uint16_t get_value___2() const { return ___value___2; }
inline uint16_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint16_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SSLCIPHERSUITE_T3309122048_H
#ifndef SSLSTATUS_T191981556_H
#define SSLSTATUS_T191981556_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.AppleTls.SslStatus
struct SslStatus_t191981556
{
public:
// System.Int32 Mono.AppleTls.SslStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SslStatus_t191981556, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SSLSTATUS_T191981556_H
#ifndef ASYNCOPERATIONSTATUS_T2187364345_H
#define ASYNCOPERATIONSTATUS_T2187364345_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncOperationStatus
struct AsyncOperationStatus_t2187364345
{
public:
// System.Int32 Mono.Net.Security.AsyncOperationStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AsyncOperationStatus_t2187364345, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCOPERATIONSTATUS_T2187364345_H
#ifndef OPERATIONTYPE_T993417619_H
#define OPERATIONTYPE_T993417619_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileAuthenticatedStream/OperationType
struct OperationType_t993417619
{
public:
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/OperationType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(OperationType_t993417619, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OPERATIONTYPE_T993417619_H
#ifndef CIPHERSUITECODE_T732562211_H
#define CIPHERSUITECODE_T732562211_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Interface.CipherSuiteCode
struct CipherSuiteCode_t732562211
{
public:
// System.UInt16 Mono.Security.Interface.CipherSuiteCode::value__
uint16_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CipherSuiteCode_t732562211, ___value___2)); }
inline uint16_t get_value___2() const { return ___value___2; }
inline uint16_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint16_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CIPHERSUITECODE_T732562211_H
#ifndef UNITYTLS_CIPHERSUITE_T1735159395_H
#define UNITYTLS_CIPHERSUITE_T1735159395_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_ciphersuite
struct unitytls_ciphersuite_t1735159395
{
public:
// System.UInt32 Mono.Unity.UnityTls/unitytls_ciphersuite::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(unitytls_ciphersuite_t1735159395, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_CIPHERSUITE_T1735159395_H
#ifndef SWITCHVALUESTATE_T2805251467_H
#define SWITCHVALUESTATE_T2805251467_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AppContext/SwitchValueState
struct SwitchValueState_t2805251467
{
public:
// System.Int32 System.AppContext/SwitchValueState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SwitchValueState_t2805251467, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SWITCHVALUESTATE_T2805251467_H
#ifndef ARGUMENTEXCEPTION_T132251570_H
#define ARGUMENTEXCEPTION_T132251570_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentException
struct ArgumentException_t132251570 : public SystemException_t176217640
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_t132251570, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((&___m_paramName_17), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTEXCEPTION_T132251570_H
#ifndef ENTRY_T2089797520_H
#define ENTRY_T2089797520_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>
struct Entry_t2089797520
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2/Entry::key
XPathNodeRef_t3498189018 ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
XPathNodeRef_t3498189018 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t2089797520, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t2089797520, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t2089797520, ___key_2)); }
inline XPathNodeRef_t3498189018 get_key_2() const { return ___key_2; }
inline XPathNodeRef_t3498189018 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(XPathNodeRef_t3498189018 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t2089797520, ___value_3)); }
inline XPathNodeRef_t3498189018 get_value_3() const { return ___value_3; }
inline XPathNodeRef_t3498189018 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(XPathNodeRef_t3498189018 value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T2089797520_H
#ifndef ENTRY_T3743988185_H
#define ENTRY_T3743988185_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>
struct Entry_t3743988185
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2/Entry::key
Guid_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t3743988185, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t3743988185, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t3743988185, ___key_2)); }
inline Guid_t get_key_2() const { return ___key_2; }
inline Guid_t * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Guid_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t3743988185, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((&___value_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T3743988185_H
#ifndef ENTRY_T2391274283_H
#define ENTRY_T2391274283_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>
struct Entry_t2391274283
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2/Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
ResourceLocator_t3723970807 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t2391274283, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t2391274283, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t2391274283, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((&___key_2), value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t2391274283, ___value_3)); }
inline ResourceLocator_t3723970807 get_value_3() const { return ___value_3; }
inline ResourceLocator_t3723970807 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ResourceLocator_t3723970807 value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T2391274283_H
#ifndef KEYVALUEPAIR_2_T2872605199_H
#define KEYVALUEPAIR_2_T2872605199_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>
struct KeyValuePair_2_t2872605199
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
XPathNodeRef_t3498189018 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
XPathNodeRef_t3498189018 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2872605199, ___key_0)); }
inline XPathNodeRef_t3498189018 get_key_0() const { return ___key_0; }
inline XPathNodeRef_t3498189018 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(XPathNodeRef_t3498189018 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2872605199, ___value_1)); }
inline XPathNodeRef_t3498189018 get_value_1() const { return ___value_1; }
inline XPathNodeRef_t3498189018 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(XPathNodeRef_t3498189018 value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T2872605199_H
#ifndef KEYVALUEPAIR_2_T870930286_H
#define KEYVALUEPAIR_2_T870930286_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>
struct KeyValuePair_2_t870930286
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
DateTime_t3738529785 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t870930286, ___key_0)); }
inline DateTime_t3738529785 get_key_0() const { return ___key_0; }
inline DateTime_t3738529785 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(DateTime_t3738529785 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t870930286, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T870930286_H
#ifndef KEYVALUEPAIR_2_T231828568_H
#define KEYVALUEPAIR_2_T231828568_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>
struct KeyValuePair_2_t231828568
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t231828568, ___key_0)); }
inline Guid_t get_key_0() const { return ___key_0; }
inline Guid_t * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Guid_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t231828568, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T231828568_H
#ifndef KEYVALUEPAIR_2_T3174081962_H
#define KEYVALUEPAIR_2_T3174081962_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>
struct KeyValuePair_2_t3174081962
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ResourceLocator_t3723970807 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3174081962, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3174081962, ___value_1)); }
inline ResourceLocator_t3723970807 get_value_1() const { return ___value_1; }
inline ResourceLocator_t3723970807 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ResourceLocator_t3723970807 value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T3174081962_H
#ifndef DATETIMEOFFSET_T3229287507_H
#define DATETIMEOFFSET_T3229287507_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.DateTimeOffset
struct DateTimeOffset_t3229287507
{
public:
// System.DateTime System.DateTimeOffset::m_dateTime
DateTime_t3738529785 ___m_dateTime_7;
// System.Int16 System.DateTimeOffset::m_offsetMinutes
int16_t ___m_offsetMinutes_8;
public:
inline static int32_t get_offset_of_m_dateTime_7() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507, ___m_dateTime_7)); }
inline DateTime_t3738529785 get_m_dateTime_7() const { return ___m_dateTime_7; }
inline DateTime_t3738529785 * get_address_of_m_dateTime_7() { return &___m_dateTime_7; }
inline void set_m_dateTime_7(DateTime_t3738529785 value)
{
___m_dateTime_7 = value;
}
inline static int32_t get_offset_of_m_offsetMinutes_8() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507, ___m_offsetMinutes_8)); }
inline int16_t get_m_offsetMinutes_8() const { return ___m_offsetMinutes_8; }
inline int16_t* get_address_of_m_offsetMinutes_8() { return &___m_offsetMinutes_8; }
inline void set_m_offsetMinutes_8(int16_t value)
{
___m_offsetMinutes_8 = value;
}
};
struct DateTimeOffset_t3229287507_StaticFields
{
public:
// System.DateTimeOffset System.DateTimeOffset::MinValue
DateTimeOffset_t3229287507 ___MinValue_5;
// System.DateTimeOffset System.DateTimeOffset::MaxValue
DateTimeOffset_t3229287507 ___MaxValue_6;
public:
inline static int32_t get_offset_of_MinValue_5() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507_StaticFields, ___MinValue_5)); }
inline DateTimeOffset_t3229287507 get_MinValue_5() const { return ___MinValue_5; }
inline DateTimeOffset_t3229287507 * get_address_of_MinValue_5() { return &___MinValue_5; }
inline void set_MinValue_5(DateTimeOffset_t3229287507 value)
{
___MinValue_5 = value;
}
inline static int32_t get_offset_of_MaxValue_6() { return static_cast<int32_t>(offsetof(DateTimeOffset_t3229287507_StaticFields, ___MaxValue_6)); }
inline DateTimeOffset_t3229287507 get_MaxValue_6() const { return ___MaxValue_6; }
inline DateTimeOffset_t3229287507 * get_address_of_MaxValue_6() { return &___MaxValue_6; }
inline void set_MaxValue_6(DateTimeOffset_t3229287507 value)
{
___MaxValue_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATETIMEOFFSET_T3229287507_H
#ifndef DS_T2232270370_H
#define DS_T2232270370_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.DateTimeParse/DS
struct DS_t2232270370
{
public:
// System.Int32 System.DateTimeParse/DS::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DS_t2232270370, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DS_T2232270370_H
#ifndef DELEGATE_T1188392813_H
#define DELEGATE_T1188392813_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Delegate
struct Delegate_t1188392813 : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1677132599 * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((&___m_target_2), value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((&___method_info_7), value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((&___original_method_info_8), value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_9)); }
inline DelegateData_t1677132599 * get_data_9() const { return ___data_9; }
inline DelegateData_t1677132599 ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1677132599 * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((&___data_9), value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t1188392813_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1677132599 * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t1188392813_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1677132599 * ___data_9;
int32_t ___method_is_virtual_10;
};
#endif // DELEGATE_T1188392813_H
#ifndef EXCEPTIONARGUMENT_T2411851266_H
#define EXCEPTIONARGUMENT_T2411851266_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ExceptionArgument
struct ExceptionArgument_t2411851266
{
public:
// System.Int32 System.ExceptionArgument::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionArgument_t2411851266, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXCEPTIONARGUMENT_T2411851266_H
#ifndef HS_T3339773016_H
#define HS_T3339773016_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.HebrewNumber/HS
struct HS_t3339773016
{
public:
// System.Int32 System.Globalization.HebrewNumber/HS::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HS_t3339773016, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HS_T3339773016_H
#ifndef TTT_T2628677491_H
#define TTT_T2628677491_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.TimeSpanParse/TTT
struct TTT_t2628677491
{
public:
// System.Int32 System.Globalization.TimeSpanParse/TTT::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TTT_t2628677491, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TTT_T2628677491_H
#ifndef INVALIDOPERATIONEXCEPTION_T56020091_H
#define INVALIDOPERATIONEXCEPTION_T56020091_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.InvalidOperationException
struct InvalidOperationException_t56020091 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVALIDOPERATIONEXCEPTION_T56020091_H
#ifndef COOKIETOKEN_T385055808_H
#define COOKIETOKEN_T385055808_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.CookieToken
struct CookieToken_t385055808
{
public:
// System.Int32 System.Net.CookieToken::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CookieToken_t385055808, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COOKIETOKEN_T385055808_H
#ifndef COOKIEVARIANT_T1245073431_H
#define COOKIEVARIANT_T1245073431_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.CookieVariant
struct CookieVariant_t1245073431
{
public:
// System.Int32 System.Net.CookieVariant::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CookieVariant_t1245073431, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COOKIEVARIANT_T1245073431_H
#ifndef NETBIOSNODETYPE_T3568904212_H
#define NETBIOSNODETYPE_T3568904212_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.NetBiosNodeType
struct NetBiosNodeType_t3568904212
{
public:
// System.Int32 System.Net.NetworkInformation.NetBiosNodeType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NetBiosNodeType_t3568904212, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NETBIOSNODETYPE_T3568904212_H
#ifndef NETWORKINTERFACETYPE_T616418749_H
#define NETWORKINTERFACETYPE_T616418749_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.NetworkInterfaceType
struct NetworkInterfaceType_t616418749
{
public:
// System.Int32 System.Net.NetworkInformation.NetworkInterfaceType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NetworkInterfaceType_t616418749, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NETWORKINTERFACETYPE_T616418749_H
#ifndef OPERATIONALSTATUS_T2709089529_H
#define OPERATIONALSTATUS_T2709089529_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.OperationalStatus
struct OperationalStatus_t2709089529
{
public:
// System.Int32 System.Net.NetworkInformation.OperationalStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(OperationalStatus_t2709089529, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OPERATIONALSTATUS_T2709089529_H
#ifndef WIN32_IP_ADDR_STRING_T1213417184_H
#define WIN32_IP_ADDR_STRING_T1213417184_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.Win32_IP_ADDR_STRING
struct Win32_IP_ADDR_STRING_t1213417184
{
public:
// System.IntPtr System.Net.NetworkInformation.Win32_IP_ADDR_STRING::Next
intptr_t ___Next_0;
// System.String System.Net.NetworkInformation.Win32_IP_ADDR_STRING::IpAddress
String_t* ___IpAddress_1;
// System.String System.Net.NetworkInformation.Win32_IP_ADDR_STRING::IpMask
String_t* ___IpMask_2;
// System.UInt32 System.Net.NetworkInformation.Win32_IP_ADDR_STRING::Context
uint32_t ___Context_3;
public:
inline static int32_t get_offset_of_Next_0() { return static_cast<int32_t>(offsetof(Win32_IP_ADDR_STRING_t1213417184, ___Next_0)); }
inline intptr_t get_Next_0() const { return ___Next_0; }
inline intptr_t* get_address_of_Next_0() { return &___Next_0; }
inline void set_Next_0(intptr_t value)
{
___Next_0 = value;
}
inline static int32_t get_offset_of_IpAddress_1() { return static_cast<int32_t>(offsetof(Win32_IP_ADDR_STRING_t1213417184, ___IpAddress_1)); }
inline String_t* get_IpAddress_1() const { return ___IpAddress_1; }
inline String_t** get_address_of_IpAddress_1() { return &___IpAddress_1; }
inline void set_IpAddress_1(String_t* value)
{
___IpAddress_1 = value;
Il2CppCodeGenWriteBarrier((&___IpAddress_1), value);
}
inline static int32_t get_offset_of_IpMask_2() { return static_cast<int32_t>(offsetof(Win32_IP_ADDR_STRING_t1213417184, ___IpMask_2)); }
inline String_t* get_IpMask_2() const { return ___IpMask_2; }
inline String_t** get_address_of_IpMask_2() { return &___IpMask_2; }
inline void set_IpMask_2(String_t* value)
{
___IpMask_2 = value;
Il2CppCodeGenWriteBarrier((&___IpMask_2), value);
}
inline static int32_t get_offset_of_Context_3() { return static_cast<int32_t>(offsetof(Win32_IP_ADDR_STRING_t1213417184, ___Context_3)); }
inline uint32_t get_Context_3() const { return ___Context_3; }
inline uint32_t* get_address_of_Context_3() { return &___Context_3; }
inline void set_Context_3(uint32_t value)
{
___Context_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.NetworkInformation.Win32_IP_ADDR_STRING
struct Win32_IP_ADDR_STRING_t1213417184_marshaled_pinvoke
{
intptr_t ___Next_0;
char ___IpAddress_1[16];
char ___IpMask_2[16];
uint32_t ___Context_3;
};
// Native definition for COM marshalling of System.Net.NetworkInformation.Win32_IP_ADDR_STRING
struct Win32_IP_ADDR_STRING_t1213417184_marshaled_com
{
intptr_t ___Next_0;
char ___IpAddress_1[16];
char ___IpMask_2[16];
uint32_t ___Context_3;
};
#endif // WIN32_IP_ADDR_STRING_T1213417184_H
#ifndef WSABUF_T1998059390_H
#define WSABUF_T1998059390_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.Socket/WSABUF
struct WSABUF_t1998059390
{
public:
// System.Int32 System.Net.Sockets.Socket/WSABUF::len
int32_t ___len_0;
// System.IntPtr System.Net.Sockets.Socket/WSABUF::buf
intptr_t ___buf_1;
public:
inline static int32_t get_offset_of_len_0() { return static_cast<int32_t>(offsetof(WSABUF_t1998059390, ___len_0)); }
inline int32_t get_len_0() const { return ___len_0; }
inline int32_t* get_address_of_len_0() { return &___len_0; }
inline void set_len_0(int32_t value)
{
___len_0 = value;
}
inline static int32_t get_offset_of_buf_1() { return static_cast<int32_t>(offsetof(WSABUF_t1998059390, ___buf_1)); }
inline intptr_t get_buf_1() const { return ___buf_1; }
inline intptr_t* get_address_of_buf_1() { return &___buf_1; }
inline void set_buf_1(intptr_t value)
{
___buf_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WSABUF_T1998059390_H
#ifndef RFCCHAR_T2905409930_H
#define RFCCHAR_T2905409930_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.WebHeaderCollection/RfcChar
struct RfcChar_t2905409930
{
public:
// System.Byte System.Net.WebHeaderCollection/RfcChar::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RfcChar_t2905409930, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RFCCHAR_T2905409930_H
#ifndef ASSEMBLY_T_H
#define ASSEMBLY_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Assembly
struct Assembly_t : public RuntimeObject
{
public:
// System.IntPtr System.Reflection.Assembly::_mono_assembly
intptr_t ____mono_assembly_0;
// System.Reflection.Assembly/ResolveEventHolder System.Reflection.Assembly::resolve_event_holder
ResolveEventHolder_t2120639521 * ___resolve_event_holder_1;
// System.Security.Policy.Evidence System.Reflection.Assembly::_evidence
Evidence_t2008144148 * ____evidence_2;
// System.Security.PermissionSet System.Reflection.Assembly::_minimum
PermissionSet_t223948603 * ____minimum_3;
// System.Security.PermissionSet System.Reflection.Assembly::_optional
PermissionSet_t223948603 * ____optional_4;
// System.Security.PermissionSet System.Reflection.Assembly::_refuse
PermissionSet_t223948603 * ____refuse_5;
// System.Security.PermissionSet System.Reflection.Assembly::_granted
PermissionSet_t223948603 * ____granted_6;
// System.Security.PermissionSet System.Reflection.Assembly::_denied
PermissionSet_t223948603 * ____denied_7;
// System.Boolean System.Reflection.Assembly::fromByteArray
bool ___fromByteArray_8;
// System.String System.Reflection.Assembly::assemblyName
String_t* ___assemblyName_9;
public:
inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); }
inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; }
inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; }
inline void set__mono_assembly_0(intptr_t value)
{
____mono_assembly_0 = value;
}
inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); }
inline ResolveEventHolder_t2120639521 * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; }
inline ResolveEventHolder_t2120639521 ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; }
inline void set_resolve_event_holder_1(ResolveEventHolder_t2120639521 * value)
{
___resolve_event_holder_1 = value;
Il2CppCodeGenWriteBarrier((&___resolve_event_holder_1), value);
}
inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); }
inline Evidence_t2008144148 * get__evidence_2() const { return ____evidence_2; }
inline Evidence_t2008144148 ** get_address_of__evidence_2() { return &____evidence_2; }
inline void set__evidence_2(Evidence_t2008144148 * value)
{
____evidence_2 = value;
Il2CppCodeGenWriteBarrier((&____evidence_2), value);
}
inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); }
inline PermissionSet_t223948603 * get__minimum_3() const { return ____minimum_3; }
inline PermissionSet_t223948603 ** get_address_of__minimum_3() { return &____minimum_3; }
inline void set__minimum_3(PermissionSet_t223948603 * value)
{
____minimum_3 = value;
Il2CppCodeGenWriteBarrier((&____minimum_3), value);
}
inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); }
inline PermissionSet_t223948603 * get__optional_4() const { return ____optional_4; }
inline PermissionSet_t223948603 ** get_address_of__optional_4() { return &____optional_4; }
inline void set__optional_4(PermissionSet_t223948603 * value)
{
____optional_4 = value;
Il2CppCodeGenWriteBarrier((&____optional_4), value);
}
inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); }
inline PermissionSet_t223948603 * get__refuse_5() const { return ____refuse_5; }
inline PermissionSet_t223948603 ** get_address_of__refuse_5() { return &____refuse_5; }
inline void set__refuse_5(PermissionSet_t223948603 * value)
{
____refuse_5 = value;
Il2CppCodeGenWriteBarrier((&____refuse_5), value);
}
inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); }
inline PermissionSet_t223948603 * get__granted_6() const { return ____granted_6; }
inline PermissionSet_t223948603 ** get_address_of__granted_6() { return &____granted_6; }
inline void set__granted_6(PermissionSet_t223948603 * value)
{
____granted_6 = value;
Il2CppCodeGenWriteBarrier((&____granted_6), value);
}
inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); }
inline PermissionSet_t223948603 * get__denied_7() const { return ____denied_7; }
inline PermissionSet_t223948603 ** get_address_of__denied_7() { return &____denied_7; }
inline void set__denied_7(PermissionSet_t223948603 * value)
{
____denied_7 = value;
Il2CppCodeGenWriteBarrier((&____denied_7), value);
}
inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); }
inline bool get_fromByteArray_8() const { return ___fromByteArray_8; }
inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; }
inline void set_fromByteArray_8(bool value)
{
___fromByteArray_8 = value;
}
inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); }
inline String_t* get_assemblyName_9() const { return ___assemblyName_9; }
inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; }
inline void set_assemblyName_9(String_t* value)
{
___assemblyName_9 = value;
Il2CppCodeGenWriteBarrier((&___assemblyName_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_pinvoke
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t2120639521 * ___resolve_event_holder_1;
Evidence_t2008144148 * ____evidence_2;
PermissionSet_t223948603 * ____minimum_3;
PermissionSet_t223948603 * ____optional_4;
PermissionSet_t223948603 * ____refuse_5;
PermissionSet_t223948603 * ____granted_6;
PermissionSet_t223948603 * ____denied_7;
int32_t ___fromByteArray_8;
char* ___assemblyName_9;
};
// Native definition for COM marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_com
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t2120639521 * ___resolve_event_holder_1;
Evidence_t2008144148 * ____evidence_2;
PermissionSet_t223948603 * ____minimum_3;
PermissionSet_t223948603 * ____optional_4;
PermissionSet_t223948603 * ____refuse_5;
PermissionSet_t223948603 * ____granted_6;
PermissionSet_t223948603 * ____denied_7;
int32_t ___fromByteArray_8;
Il2CppChar* ___assemblyName_9;
};
#endif // ASSEMBLY_T_H
#ifndef BINDINGFLAGS_T2721792723_H
#define BINDINGFLAGS_T2721792723_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.BindingFlags
struct BindingFlags_t2721792723
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_t2721792723, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BINDINGFLAGS_T2721792723_H
#ifndef CUSTOMATTRIBUTENAMEDARGUMENT_T287865710_H
#define CUSTOMATTRIBUTENAMEDARGUMENT_T287865710_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t287865710
{
public:
// System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument
CustomAttributeTypedArgument_t2723150157 ___typedArgument_0;
// System.Reflection.MemberInfo System.Reflection.CustomAttributeNamedArgument::memberInfo
MemberInfo_t * ___memberInfo_1;
public:
inline static int32_t get_offset_of_typedArgument_0() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t287865710, ___typedArgument_0)); }
inline CustomAttributeTypedArgument_t2723150157 get_typedArgument_0() const { return ___typedArgument_0; }
inline CustomAttributeTypedArgument_t2723150157 * get_address_of_typedArgument_0() { return &___typedArgument_0; }
inline void set_typedArgument_0(CustomAttributeTypedArgument_t2723150157 value)
{
___typedArgument_0 = value;
}
inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t287865710, ___memberInfo_1)); }
inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; }
inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; }
inline void set_memberInfo_1(MemberInfo_t * value)
{
___memberInfo_1 = value;
Il2CppCodeGenWriteBarrier((&___memberInfo_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t287865710_marshaled_pinvoke
{
CustomAttributeTypedArgument_t2723150157_marshaled_pinvoke ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t287865710_marshaled_com
{
CustomAttributeTypedArgument_t2723150157_marshaled_com ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
#endif // CUSTOMATTRIBUTENAMEDARGUMENT_T287865710_H
#ifndef ILEXCEPTIONINFO_T237856010_H
#define ILEXCEPTIONINFO_T237856010_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ILExceptionInfo
struct ILExceptionInfo_t237856010
{
public:
// System.Reflection.Emit.ILExceptionBlock[] System.Reflection.Emit.ILExceptionInfo::handlers
ILExceptionBlockU5BU5D_t2996808915* ___handlers_0;
// System.Int32 System.Reflection.Emit.ILExceptionInfo::start
int32_t ___start_1;
// System.Int32 System.Reflection.Emit.ILExceptionInfo::len
int32_t ___len_2;
// System.Reflection.Emit.Label System.Reflection.Emit.ILExceptionInfo::end
Label_t2281661643 ___end_3;
public:
inline static int32_t get_offset_of_handlers_0() { return static_cast<int32_t>(offsetof(ILExceptionInfo_t237856010, ___handlers_0)); }
inline ILExceptionBlockU5BU5D_t2996808915* get_handlers_0() const { return ___handlers_0; }
inline ILExceptionBlockU5BU5D_t2996808915** get_address_of_handlers_0() { return &___handlers_0; }
inline void set_handlers_0(ILExceptionBlockU5BU5D_t2996808915* value)
{
___handlers_0 = value;
Il2CppCodeGenWriteBarrier((&___handlers_0), value);
}
inline static int32_t get_offset_of_start_1() { return static_cast<int32_t>(offsetof(ILExceptionInfo_t237856010, ___start_1)); }
inline int32_t get_start_1() const { return ___start_1; }
inline int32_t* get_address_of_start_1() { return &___start_1; }
inline void set_start_1(int32_t value)
{
___start_1 = value;
}
inline static int32_t get_offset_of_len_2() { return static_cast<int32_t>(offsetof(ILExceptionInfo_t237856010, ___len_2)); }
inline int32_t get_len_2() const { return ___len_2; }
inline int32_t* get_address_of_len_2() { return &___len_2; }
inline void set_len_2(int32_t value)
{
___len_2 = value;
}
inline static int32_t get_offset_of_end_3() { return static_cast<int32_t>(offsetof(ILExceptionInfo_t237856010, ___end_3)); }
inline Label_t2281661643 get_end_3() const { return ___end_3; }
inline Label_t2281661643 * get_address_of_end_3() { return &___end_3; }
inline void set_end_3(Label_t2281661643 value)
{
___end_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.Emit.ILExceptionInfo
struct ILExceptionInfo_t237856010_marshaled_pinvoke
{
ILExceptionBlock_t3961874966_marshaled_pinvoke* ___handlers_0;
int32_t ___start_1;
int32_t ___len_2;
Label_t2281661643 ___end_3;
};
// Native definition for COM marshalling of System.Reflection.Emit.ILExceptionInfo
struct ILExceptionInfo_t237856010_marshaled_com
{
ILExceptionBlock_t3961874966_marshaled_com* ___handlers_0;
int32_t ___start_1;
int32_t ___len_2;
Label_t2281661643 ___end_3;
};
#endif // ILEXCEPTIONINFO_T237856010_H
#ifndef RESOURCEATTRIBUTES_T3997964906_H
#define RESOURCEATTRIBUTES_T3997964906_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ResourceAttributes
struct ResourceAttributes_t3997964906
{
public:
// System.Int32 System.Reflection.ResourceAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ResourceAttributes_t3997964906, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RESOURCEATTRIBUTES_T3997964906_H
#ifndef ASYNCTASKMETHODBUILDER_1_T1408804594_H
#define ASYNCTASKMETHODBUILDER_1_T1408804594_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>
struct AsyncTaskMethodBuilder_1_t1408804594
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t2955600131 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t493370259 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t1408804594, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t2955600131 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t2955600131 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t2955600131 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t1408804594, ___m_task_2)); }
inline Task_1_t493370259 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t493370259 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t493370259 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t1408804594_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t493370259 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t1408804594_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t493370259 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t493370259 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t493370259 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T1408804594_H
#ifndef ASYNCTASKMETHODBUILDER_1_T2418262475_H
#define ASYNCTASKMETHODBUILDER_1_T2418262475_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>
struct AsyncTaskMethodBuilder_1_t2418262475
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t2955600131 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t1502828140 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2418262475, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t2955600131 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t2955600131 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t2955600131 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2418262475, ___m_task_2)); }
inline Task_1_t1502828140 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t1502828140 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t1502828140 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t2418262475_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t1502828140 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2418262475_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t1502828140 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t1502828140 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t1502828140 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T2418262475_H
#ifndef ASYNCTASKMETHODBUILDER_1_T3593997419_H
#define ASYNCTASKMETHODBUILDER_1_T3593997419_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.IO.Stream>
struct AsyncTaskMethodBuilder_1_t3593997419
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t2955600131 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t2678563084 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t3593997419, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t2955600131 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t2955600131 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t2955600131 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t3593997419, ___m_task_2)); }
inline Task_1_t2678563084 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t2678563084 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t2678563084 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t3593997419_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t2678563084 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t3593997419_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t2678563084 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t2678563084 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t2678563084 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T3593997419_H
#ifndef ASYNCTASKMETHODBUILDER_1_T976952967_H
#define ASYNCTASKMETHODBUILDER_1_T976952967_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>
struct AsyncTaskMethodBuilder_1_t976952967
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t2955600131 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t61518632 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t976952967, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t2955600131 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t2955600131 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t2955600131 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t976952967, ___m_task_2)); }
inline Task_1_t61518632 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t61518632 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t61518632 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t976952967_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t61518632 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t976952967_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t61518632 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t61518632 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t61518632 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T976952967_H
#ifndef ASYNCTASKMETHODBUILDER_1_T2699515049_H
#define ASYNCTASKMETHODBUILDER_1_T2699515049_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>
struct AsyncTaskMethodBuilder_1_t2699515049
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t2955600131 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t1784080714 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2699515049, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t2955600131 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t2955600131 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t2955600131 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2699515049, ___m_task_2)); }
inline Task_1_t1784080714 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t1784080714 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t1784080714 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t2699515049_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t1784080714 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2699515049_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t1784080714 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t1784080714 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t1784080714 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T2699515049_H
#ifndef ASYNCTASKMETHODBUILDER_1_T1106113378_H
#define ASYNCTASKMETHODBUILDER_1_T1106113378_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>
struct AsyncTaskMethodBuilder_1_t1106113378
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t2955600131 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t190679043 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t1106113378, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t2955600131 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t2955600131 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t2955600131 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t1106113378, ___m_task_2)); }
inline Task_1_t190679043 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t190679043 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t190679043 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t1106113378_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t190679043 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t1106113378_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t190679043 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t190679043 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t190679043 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T1106113378_H
#ifndef ASYNCTASKMETHODBUILDER_1_T642595793_H
#define ASYNCTASKMETHODBUILDER_1_T642595793_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>
struct AsyncTaskMethodBuilder_1_t642595793
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t2955600131 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t4022128754 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t642595793, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t2955600131 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t2955600131 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t2955600131 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t642595793, ___m_task_2)); }
inline Task_1_t4022128754 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t4022128754 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t4022128754 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t642595793_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t4022128754 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t642595793_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t4022128754 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t4022128754 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t4022128754 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T642595793_H
#ifndef BINARYTYPEENUM_T3485436454_H
#define BINARYTYPEENUM_T3485436454_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum
struct BinaryTypeEnum_t3485436454
{
public:
// System.Int32 System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BinaryTypeEnum_t3485436454, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BINARYTYPEENUM_T3485436454_H
#ifndef INTERNALPRIMITIVETYPEE_T4093048977_H
#define INTERNALPRIMITIVETYPEE_T4093048977_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE
struct InternalPrimitiveTypeE_t4093048977
{
public:
// System.Int32 System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InternalPrimitiveTypeE_t4093048977, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERNALPRIMITIVETYPEE_T4093048977_H
#ifndef RUNTIMETYPEHANDLE_T3027515415_H
#define RUNTIMETYPEHANDLE_T3027515415_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t3027515415
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t3027515415, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMETYPEHANDLE_T3027515415_H
#ifndef SSLPROTOCOLS_T928472600_H
#define SSLPROTOCOLS_T928472600_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Authentication.SslProtocols
struct SslProtocols_t928472600
{
public:
// System.Int32 System.Security.Authentication.SslProtocols::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SslProtocols_t928472600, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SSLPROTOCOLS_T928472600_H
#ifndef X509CHAINSTATUSFLAGS_T1026973125_H
#define X509CHAINSTATUSFLAGS_T1026973125_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags
struct X509ChainStatusFlags_t1026973125
{
public:
// System.Int32 System.Security.Cryptography.X509Certificates.X509ChainStatusFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(X509ChainStatusFlags_t1026973125, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CHAINSTATUSFLAGS_T1026973125_H
#ifndef SECURITYACTION_T569814076_H
#define SECURITYACTION_T569814076_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Permissions.SecurityAction
struct SecurityAction_t569814076
{
public:
// System.Int32 System.Security.Permissions.SecurityAction::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SecurityAction_t569814076, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SECURITYACTION_T569814076_H
#ifndef TERMINFOSTRINGS_T290279955_H
#define TERMINFOSTRINGS_T290279955_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.TermInfoStrings
struct TermInfoStrings_t290279955
{
public:
// System.Int32 System.TermInfoStrings::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TermInfoStrings_t290279955, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TERMINFOSTRINGS_T290279955_H
#ifndef REGEXOPTIONS_T92845595_H
#define REGEXOPTIONS_T92845595_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.RegularExpressions.RegexOptions
struct RegexOptions_t92845595
{
public:
// System.Int32 System.Text.RegularExpressions.RegexOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RegexOptions_t92845595, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // REGEXOPTIONS_T92845595_H
#ifndef CANCELLATIONTOKENREGISTRATION_T2813424904_H
#define CANCELLATIONTOKENREGISTRATION_T2813424904_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_t2813424904
{
public:
// System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenRegistration::m_callbackInfo
CancellationCallbackInfo_t322720759 * ___m_callbackInfo_0;
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationTokenRegistration::m_registrationInfo
SparselyPopulatedArrayAddInfo_1_t223515617 ___m_registrationInfo_1;
public:
inline static int32_t get_offset_of_m_callbackInfo_0() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_t2813424904, ___m_callbackInfo_0)); }
inline CancellationCallbackInfo_t322720759 * get_m_callbackInfo_0() const { return ___m_callbackInfo_0; }
inline CancellationCallbackInfo_t322720759 ** get_address_of_m_callbackInfo_0() { return &___m_callbackInfo_0; }
inline void set_m_callbackInfo_0(CancellationCallbackInfo_t322720759 * value)
{
___m_callbackInfo_0 = value;
Il2CppCodeGenWriteBarrier((&___m_callbackInfo_0), value);
}
inline static int32_t get_offset_of_m_registrationInfo_1() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_t2813424904, ___m_registrationInfo_1)); }
inline SparselyPopulatedArrayAddInfo_1_t223515617 get_m_registrationInfo_1() const { return ___m_registrationInfo_1; }
inline SparselyPopulatedArrayAddInfo_1_t223515617 * get_address_of_m_registrationInfo_1() { return &___m_registrationInfo_1; }
inline void set_m_registrationInfo_1(SparselyPopulatedArrayAddInfo_1_t223515617 value)
{
___m_registrationInfo_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_t2813424904_marshaled_pinvoke
{
CancellationCallbackInfo_t322720759 * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t223515617 ___m_registrationInfo_1;
};
// Native definition for COM marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_t2813424904_marshaled_com
{
CancellationCallbackInfo_t322720759 * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t223515617 ___m_registrationInfo_1;
};
#endif // CANCELLATIONTOKENREGISTRATION_T2813424904_H
#ifndef EXECUTIONCONTEXTSWITCHER_T2326006776_H
#define EXECUTIONCONTEXTSWITCHER_T2326006776_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.ExecutionContextSwitcher
struct ExecutionContextSwitcher_t2326006776
{
public:
// System.Threading.ExecutionContext/Reader System.Threading.ExecutionContextSwitcher::outerEC
Reader_t1133934476 ___outerEC_0;
// System.Boolean System.Threading.ExecutionContextSwitcher::outerECBelongsToScope
bool ___outerECBelongsToScope_1;
// System.Object System.Threading.ExecutionContextSwitcher::hecsw
RuntimeObject * ___hecsw_2;
// System.Threading.Thread System.Threading.ExecutionContextSwitcher::thread
Thread_t2300836069 * ___thread_3;
public:
inline static int32_t get_offset_of_outerEC_0() { return static_cast<int32_t>(offsetof(ExecutionContextSwitcher_t2326006776, ___outerEC_0)); }
inline Reader_t1133934476 get_outerEC_0() const { return ___outerEC_0; }
inline Reader_t1133934476 * get_address_of_outerEC_0() { return &___outerEC_0; }
inline void set_outerEC_0(Reader_t1133934476 value)
{
___outerEC_0 = value;
}
inline static int32_t get_offset_of_outerECBelongsToScope_1() { return static_cast<int32_t>(offsetof(ExecutionContextSwitcher_t2326006776, ___outerECBelongsToScope_1)); }
inline bool get_outerECBelongsToScope_1() const { return ___outerECBelongsToScope_1; }
inline bool* get_address_of_outerECBelongsToScope_1() { return &___outerECBelongsToScope_1; }
inline void set_outerECBelongsToScope_1(bool value)
{
___outerECBelongsToScope_1 = value;
}
inline static int32_t get_offset_of_hecsw_2() { return static_cast<int32_t>(offsetof(ExecutionContextSwitcher_t2326006776, ___hecsw_2)); }
inline RuntimeObject * get_hecsw_2() const { return ___hecsw_2; }
inline RuntimeObject ** get_address_of_hecsw_2() { return &___hecsw_2; }
inline void set_hecsw_2(RuntimeObject * value)
{
___hecsw_2 = value;
Il2CppCodeGenWriteBarrier((&___hecsw_2), value);
}
inline static int32_t get_offset_of_thread_3() { return static_cast<int32_t>(offsetof(ExecutionContextSwitcher_t2326006776, ___thread_3)); }
inline Thread_t2300836069 * get_thread_3() const { return ___thread_3; }
inline Thread_t2300836069 ** get_address_of_thread_3() { return &___thread_3; }
inline void set_thread_3(Thread_t2300836069 * value)
{
___thread_3 = value;
Il2CppCodeGenWriteBarrier((&___thread_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Threading.ExecutionContextSwitcher
struct ExecutionContextSwitcher_t2326006776_marshaled_pinvoke
{
Reader_t1133934476_marshaled_pinvoke ___outerEC_0;
int32_t ___outerECBelongsToScope_1;
Il2CppIUnknown* ___hecsw_2;
Thread_t2300836069 * ___thread_3;
};
// Native definition for COM marshalling of System.Threading.ExecutionContextSwitcher
struct ExecutionContextSwitcher_t2326006776_marshaled_com
{
Reader_t1133934476_marshaled_com ___outerEC_0;
int32_t ___outerECBelongsToScope_1;
Il2CppIUnknown* ___hecsw_2;
Thread_t2300836069 * ___thread_3;
};
#endif // EXECUTIONCONTEXTSWITCHER_T2326006776_H
#ifndef TASK_T3187275312_H
#define TASK_T3187275312_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task
struct Task_t3187275312 : public RuntimeObject
{
public:
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId
int32_t ___m_taskId_4;
// System.Object System.Threading.Tasks.Task::m_action
RuntimeObject * ___m_action_5;
// System.Object System.Threading.Tasks.Task::m_stateObject
RuntimeObject * ___m_stateObject_6;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler
TaskScheduler_t1196198384 * ___m_taskScheduler_7;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent
Task_t3187275312 * ___m_parent_8;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags
int32_t ___m_stateFlags_9;
// System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject
RuntimeObject * ___m_continuationObject_10;
// System.Threading.Tasks.Task/ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties
ContingentProperties_t2170468915 * ___m_contingentProperties_15;
public:
inline static int32_t get_offset_of_m_taskId_4() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_taskId_4)); }
inline int32_t get_m_taskId_4() const { return ___m_taskId_4; }
inline int32_t* get_address_of_m_taskId_4() { return &___m_taskId_4; }
inline void set_m_taskId_4(int32_t value)
{
___m_taskId_4 = value;
}
inline static int32_t get_offset_of_m_action_5() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_action_5)); }
inline RuntimeObject * get_m_action_5() const { return ___m_action_5; }
inline RuntimeObject ** get_address_of_m_action_5() { return &___m_action_5; }
inline void set_m_action_5(RuntimeObject * value)
{
___m_action_5 = value;
Il2CppCodeGenWriteBarrier((&___m_action_5), value);
}
inline static int32_t get_offset_of_m_stateObject_6() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_stateObject_6)); }
inline RuntimeObject * get_m_stateObject_6() const { return ___m_stateObject_6; }
inline RuntimeObject ** get_address_of_m_stateObject_6() { return &___m_stateObject_6; }
inline void set_m_stateObject_6(RuntimeObject * value)
{
___m_stateObject_6 = value;
Il2CppCodeGenWriteBarrier((&___m_stateObject_6), value);
}
inline static int32_t get_offset_of_m_taskScheduler_7() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_taskScheduler_7)); }
inline TaskScheduler_t1196198384 * get_m_taskScheduler_7() const { return ___m_taskScheduler_7; }
inline TaskScheduler_t1196198384 ** get_address_of_m_taskScheduler_7() { return &___m_taskScheduler_7; }
inline void set_m_taskScheduler_7(TaskScheduler_t1196198384 * value)
{
___m_taskScheduler_7 = value;
Il2CppCodeGenWriteBarrier((&___m_taskScheduler_7), value);
}
inline static int32_t get_offset_of_m_parent_8() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_parent_8)); }
inline Task_t3187275312 * get_m_parent_8() const { return ___m_parent_8; }
inline Task_t3187275312 ** get_address_of_m_parent_8() { return &___m_parent_8; }
inline void set_m_parent_8(Task_t3187275312 * value)
{
___m_parent_8 = value;
Il2CppCodeGenWriteBarrier((&___m_parent_8), value);
}
inline static int32_t get_offset_of_m_stateFlags_9() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_stateFlags_9)); }
inline int32_t get_m_stateFlags_9() const { return ___m_stateFlags_9; }
inline int32_t* get_address_of_m_stateFlags_9() { return &___m_stateFlags_9; }
inline void set_m_stateFlags_9(int32_t value)
{
___m_stateFlags_9 = value;
}
inline static int32_t get_offset_of_m_continuationObject_10() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_continuationObject_10)); }
inline RuntimeObject * get_m_continuationObject_10() const { return ___m_continuationObject_10; }
inline RuntimeObject ** get_address_of_m_continuationObject_10() { return &___m_continuationObject_10; }
inline void set_m_continuationObject_10(RuntimeObject * value)
{
___m_continuationObject_10 = value;
Il2CppCodeGenWriteBarrier((&___m_continuationObject_10), value);
}
inline static int32_t get_offset_of_m_contingentProperties_15() { return static_cast<int32_t>(offsetof(Task_t3187275312, ___m_contingentProperties_15)); }
inline ContingentProperties_t2170468915 * get_m_contingentProperties_15() const { return ___m_contingentProperties_15; }
inline ContingentProperties_t2170468915 ** get_address_of_m_contingentProperties_15() { return &___m_contingentProperties_15; }
inline void set_m_contingentProperties_15(ContingentProperties_t2170468915 * value)
{
___m_contingentProperties_15 = value;
Il2CppCodeGenWriteBarrier((&___m_contingentProperties_15), value);
}
};
struct Task_t3187275312_StaticFields
{
public:
// System.Int32 System.Threading.Tasks.Task::s_taskIdCounter
int32_t ___s_taskIdCounter_2;
// System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::s_factory
TaskFactory_t2660013028 * ___s_factory_3;
// System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel
RuntimeObject * ___s_taskCompletionSentinel_11;
// System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled
bool ___s_asyncDebuggingEnabled_12;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_currentActiveTasks
Dictionary_2_t2075988643 * ___s_currentActiveTasks_13;
// System.Object System.Threading.Tasks.Task::s_activeTasksLock
RuntimeObject * ___s_activeTasksLock_14;
// System.Action`1<System.Object> System.Threading.Tasks.Task::s_taskCancelCallback
Action_1_t3252573759 * ___s_taskCancelCallback_16;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties> System.Threading.Tasks.Task::s_createContingentProperties
Func_1_t1600215562 * ___s_createContingentProperties_17;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::s_completedTask
Task_t3187275312 * ___s_completedTask_18;
// System.Predicate`1<System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate
Predicate_1_t4012569436 * ___s_IsExceptionObservedByParentPredicate_19;
// System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback
ContextCallback_t3823316192 * ___s_ecCallback_20;
// System.Predicate`1<System.Object> System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate
Predicate_1_t3905400288 * ___s_IsTaskContinuationNullPredicate_21;
public:
inline static int32_t get_offset_of_s_taskIdCounter_2() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_taskIdCounter_2)); }
inline int32_t get_s_taskIdCounter_2() const { return ___s_taskIdCounter_2; }
inline int32_t* get_address_of_s_taskIdCounter_2() { return &___s_taskIdCounter_2; }
inline void set_s_taskIdCounter_2(int32_t value)
{
___s_taskIdCounter_2 = value;
}
inline static int32_t get_offset_of_s_factory_3() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_factory_3)); }
inline TaskFactory_t2660013028 * get_s_factory_3() const { return ___s_factory_3; }
inline TaskFactory_t2660013028 ** get_address_of_s_factory_3() { return &___s_factory_3; }
inline void set_s_factory_3(TaskFactory_t2660013028 * value)
{
___s_factory_3 = value;
Il2CppCodeGenWriteBarrier((&___s_factory_3), value);
}
inline static int32_t get_offset_of_s_taskCompletionSentinel_11() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_taskCompletionSentinel_11)); }
inline RuntimeObject * get_s_taskCompletionSentinel_11() const { return ___s_taskCompletionSentinel_11; }
inline RuntimeObject ** get_address_of_s_taskCompletionSentinel_11() { return &___s_taskCompletionSentinel_11; }
inline void set_s_taskCompletionSentinel_11(RuntimeObject * value)
{
___s_taskCompletionSentinel_11 = value;
Il2CppCodeGenWriteBarrier((&___s_taskCompletionSentinel_11), value);
}
inline static int32_t get_offset_of_s_asyncDebuggingEnabled_12() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_asyncDebuggingEnabled_12)); }
inline bool get_s_asyncDebuggingEnabled_12() const { return ___s_asyncDebuggingEnabled_12; }
inline bool* get_address_of_s_asyncDebuggingEnabled_12() { return &___s_asyncDebuggingEnabled_12; }
inline void set_s_asyncDebuggingEnabled_12(bool value)
{
___s_asyncDebuggingEnabled_12 = value;
}
inline static int32_t get_offset_of_s_currentActiveTasks_13() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_currentActiveTasks_13)); }
inline Dictionary_2_t2075988643 * get_s_currentActiveTasks_13() const { return ___s_currentActiveTasks_13; }
inline Dictionary_2_t2075988643 ** get_address_of_s_currentActiveTasks_13() { return &___s_currentActiveTasks_13; }
inline void set_s_currentActiveTasks_13(Dictionary_2_t2075988643 * value)
{
___s_currentActiveTasks_13 = value;
Il2CppCodeGenWriteBarrier((&___s_currentActiveTasks_13), value);
}
inline static int32_t get_offset_of_s_activeTasksLock_14() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_activeTasksLock_14)); }
inline RuntimeObject * get_s_activeTasksLock_14() const { return ___s_activeTasksLock_14; }
inline RuntimeObject ** get_address_of_s_activeTasksLock_14() { return &___s_activeTasksLock_14; }
inline void set_s_activeTasksLock_14(RuntimeObject * value)
{
___s_activeTasksLock_14 = value;
Il2CppCodeGenWriteBarrier((&___s_activeTasksLock_14), value);
}
inline static int32_t get_offset_of_s_taskCancelCallback_16() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_taskCancelCallback_16)); }
inline Action_1_t3252573759 * get_s_taskCancelCallback_16() const { return ___s_taskCancelCallback_16; }
inline Action_1_t3252573759 ** get_address_of_s_taskCancelCallback_16() { return &___s_taskCancelCallback_16; }
inline void set_s_taskCancelCallback_16(Action_1_t3252573759 * value)
{
___s_taskCancelCallback_16 = value;
Il2CppCodeGenWriteBarrier((&___s_taskCancelCallback_16), value);
}
inline static int32_t get_offset_of_s_createContingentProperties_17() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_createContingentProperties_17)); }
inline Func_1_t1600215562 * get_s_createContingentProperties_17() const { return ___s_createContingentProperties_17; }
inline Func_1_t1600215562 ** get_address_of_s_createContingentProperties_17() { return &___s_createContingentProperties_17; }
inline void set_s_createContingentProperties_17(Func_1_t1600215562 * value)
{
___s_createContingentProperties_17 = value;
Il2CppCodeGenWriteBarrier((&___s_createContingentProperties_17), value);
}
inline static int32_t get_offset_of_s_completedTask_18() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_completedTask_18)); }
inline Task_t3187275312 * get_s_completedTask_18() const { return ___s_completedTask_18; }
inline Task_t3187275312 ** get_address_of_s_completedTask_18() { return &___s_completedTask_18; }
inline void set_s_completedTask_18(Task_t3187275312 * value)
{
___s_completedTask_18 = value;
Il2CppCodeGenWriteBarrier((&___s_completedTask_18), value);
}
inline static int32_t get_offset_of_s_IsExceptionObservedByParentPredicate_19() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_IsExceptionObservedByParentPredicate_19)); }
inline Predicate_1_t4012569436 * get_s_IsExceptionObservedByParentPredicate_19() const { return ___s_IsExceptionObservedByParentPredicate_19; }
inline Predicate_1_t4012569436 ** get_address_of_s_IsExceptionObservedByParentPredicate_19() { return &___s_IsExceptionObservedByParentPredicate_19; }
inline void set_s_IsExceptionObservedByParentPredicate_19(Predicate_1_t4012569436 * value)
{
___s_IsExceptionObservedByParentPredicate_19 = value;
Il2CppCodeGenWriteBarrier((&___s_IsExceptionObservedByParentPredicate_19), value);
}
inline static int32_t get_offset_of_s_ecCallback_20() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_ecCallback_20)); }
inline ContextCallback_t3823316192 * get_s_ecCallback_20() const { return ___s_ecCallback_20; }
inline ContextCallback_t3823316192 ** get_address_of_s_ecCallback_20() { return &___s_ecCallback_20; }
inline void set_s_ecCallback_20(ContextCallback_t3823316192 * value)
{
___s_ecCallback_20 = value;
Il2CppCodeGenWriteBarrier((&___s_ecCallback_20), value);
}
inline static int32_t get_offset_of_s_IsTaskContinuationNullPredicate_21() { return static_cast<int32_t>(offsetof(Task_t3187275312_StaticFields, ___s_IsTaskContinuationNullPredicate_21)); }
inline Predicate_1_t3905400288 * get_s_IsTaskContinuationNullPredicate_21() const { return ___s_IsTaskContinuationNullPredicate_21; }
inline Predicate_1_t3905400288 ** get_address_of_s_IsTaskContinuationNullPredicate_21() { return &___s_IsTaskContinuationNullPredicate_21; }
inline void set_s_IsTaskContinuationNullPredicate_21(Predicate_1_t3905400288 * value)
{
___s_IsTaskContinuationNullPredicate_21 = value;
Il2CppCodeGenWriteBarrier((&___s_IsTaskContinuationNullPredicate_21), value);
}
};
struct Task_t3187275312_ThreadStaticFields
{
public:
// System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask
Task_t3187275312 * ___t_currentTask_0;
// System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard
StackGuard_t1472778820 * ___t_stackGuard_1;
public:
inline static int32_t get_offset_of_t_currentTask_0() { return static_cast<int32_t>(offsetof(Task_t3187275312_ThreadStaticFields, ___t_currentTask_0)); }
inline Task_t3187275312 * get_t_currentTask_0() const { return ___t_currentTask_0; }
inline Task_t3187275312 ** get_address_of_t_currentTask_0() { return &___t_currentTask_0; }
inline void set_t_currentTask_0(Task_t3187275312 * value)
{
___t_currentTask_0 = value;
Il2CppCodeGenWriteBarrier((&___t_currentTask_0), value);
}
inline static int32_t get_offset_of_t_stackGuard_1() { return static_cast<int32_t>(offsetof(Task_t3187275312_ThreadStaticFields, ___t_stackGuard_1)); }
inline StackGuard_t1472778820 * get_t_stackGuard_1() const { return ___t_stackGuard_1; }
inline StackGuard_t1472778820 ** get_address_of_t_stackGuard_1() { return &___t_stackGuard_1; }
inline void set_t_stackGuard_1(StackGuard_t1472778820 * value)
{
___t_stackGuard_1 = value;
Il2CppCodeGenWriteBarrier((&___t_stackGuard_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_T3187275312_H
#ifndef TIMESPAN_T881159249_H
#define TIMESPAN_T881159249_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.TimeSpan
struct TimeSpan_t881159249
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_3;
public:
inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249, ____ticks_3)); }
inline int64_t get__ticks_3() const { return ____ticks_3; }
inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
inline void set__ticks_3(int64_t value)
{
____ticks_3 = value;
}
};
struct TimeSpan_t881159249_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t881159249 ___Zero_0;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t881159249 ___MaxValue_1;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t881159249 ___MinValue_2;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_4;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_5;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___Zero_0)); }
inline TimeSpan_t881159249 get_Zero_0() const { return ___Zero_0; }
inline TimeSpan_t881159249 * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(TimeSpan_t881159249 value)
{
___Zero_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MaxValue_1)); }
inline TimeSpan_t881159249 get_MaxValue_1() const { return ___MaxValue_1; }
inline TimeSpan_t881159249 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(TimeSpan_t881159249 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MinValue_2)); }
inline TimeSpan_t881159249 get_MinValue_2() const { return ___MinValue_2; }
inline TimeSpan_t881159249 * get_address_of_MinValue_2() { return &___MinValue_2; }
inline void set_MinValue_2(TimeSpan_t881159249 value)
{
___MinValue_2 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ____legacyConfigChecked_4)); }
inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; }
inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; }
inline void set__legacyConfigChecked_4(bool value)
{
____legacyConfigChecked_4 = value;
}
inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ____legacyMode_5)); }
inline bool get__legacyMode_5() const { return ____legacyMode_5; }
inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
inline void set__legacyMode_5(bool value)
{
____legacyMode_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TIMESPAN_T881159249_H
#ifndef TYPECODE_T2987224087_H
#define TYPECODE_T2987224087_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.TypeCode
struct TypeCode_t2987224087
{
public:
// System.Int32 System.TypeCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeCode_t2987224087, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPECODE_T2987224087_H
#ifndef XMLTYPECODE_T2623622950_H
#define XMLTYPECODE_T2623622950_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.Schema.XmlTypeCode
struct XmlTypeCode_t2623622950
{
public:
// System.Int32 System.Xml.Schema.XmlTypeCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XmlTypeCode_t2623622950, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // XMLTYPECODE_T2623622950_H
#ifndef STATE_T1890458201_H
#define STATE_T1890458201_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.Schema.XsdBuilder/State
struct State_t1890458201
{
public:
// System.Int32 System.Xml.Schema.XsdBuilder/State::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(State_t1890458201, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STATE_T1890458201_H
#ifndef XPATHRESULTTYPE_T2828988488_H
#define XPATHRESULTTYPE_T2828988488_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XPath.XPathResultType
struct XPathResultType_t2828988488
{
public:
// System.Int32 System.Xml.XPath.XPathResultType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XPathResultType_t2828988488, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // XPATHRESULTTYPE_T2828988488_H
#ifndef XMLSPACE_T3324193251_H
#define XMLSPACE_T3324193251_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlSpace
struct XmlSpace_t3324193251
{
public:
// System.Int32 System.Xml.XmlSpace::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XmlSpace_t3324193251, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // XMLSPACE_T3324193251_H
#ifndef NAMESPACESTATE_T853084585_H
#define NAMESPACESTATE_T853084585_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlTextWriter/NamespaceState
struct NamespaceState_t853084585
{
public:
// System.Int32 System.Xml.XmlTextWriter/NamespaceState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NamespaceState_t853084585, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NAMESPACESTATE_T853084585_H
#ifndef STATE_T1792539347_H
#define STATE_T1792539347_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlTextWriter/State
struct State_t1792539347
{
public:
// System.Int32 System.Xml.XmlTextWriter/State::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(State_t1792539347, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STATE_T1792539347_H
#ifndef CASTHELPER_1_T2613165452_H
#define CASTHELPER_1_T2613165452_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.CastHelper`1<System.Object>
struct CastHelper_1_t2613165452
{
public:
// T UnityEngine.CastHelper`1::t
RuntimeObject * ___t_0;
// System.IntPtr UnityEngine.CastHelper`1::onePointerFurtherThanT
intptr_t ___onePointerFurtherThanT_1;
public:
inline static int32_t get_offset_of_t_0() { return static_cast<int32_t>(offsetof(CastHelper_1_t2613165452, ___t_0)); }
inline RuntimeObject * get_t_0() const { return ___t_0; }
inline RuntimeObject ** get_address_of_t_0() { return &___t_0; }
inline void set_t_0(RuntimeObject * value)
{
___t_0 = value;
Il2CppCodeGenWriteBarrier((&___t_0), value);
}
inline static int32_t get_offset_of_onePointerFurtherThanT_1() { return static_cast<int32_t>(offsetof(CastHelper_1_t2613165452, ___onePointerFurtherThanT_1)); }
inline intptr_t get_onePointerFurtherThanT_1() const { return ___onePointerFurtherThanT_1; }
inline intptr_t* get_address_of_onePointerFurtherThanT_1() { return &___onePointerFurtherThanT_1; }
inline void set_onePointerFurtherThanT_1(intptr_t value)
{
___onePointerFurtherThanT_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CASTHELPER_1_T2613165452_H
#ifndef CONTACTPOINT_T3758755253_H
#define CONTACTPOINT_T3758755253_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.ContactPoint
struct ContactPoint_t3758755253
{
public:
// UnityEngine.Vector3 UnityEngine.ContactPoint::m_Point
Vector3_t3722313464 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.ContactPoint::m_Normal
Vector3_t3722313464 ___m_Normal_1;
// System.Int32 UnityEngine.ContactPoint::m_ThisColliderInstanceID
int32_t ___m_ThisColliderInstanceID_2;
// System.Int32 UnityEngine.ContactPoint::m_OtherColliderInstanceID
int32_t ___m_OtherColliderInstanceID_3;
// System.Single UnityEngine.ContactPoint::m_Separation
float ___m_Separation_4;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_Point_0)); }
inline Vector3_t3722313464 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_t3722313464 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_t3722313464 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_Normal_1)); }
inline Vector3_t3722313464 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_t3722313464 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_t3722313464 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_ThisColliderInstanceID_2() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_ThisColliderInstanceID_2)); }
inline int32_t get_m_ThisColliderInstanceID_2() const { return ___m_ThisColliderInstanceID_2; }
inline int32_t* get_address_of_m_ThisColliderInstanceID_2() { return &___m_ThisColliderInstanceID_2; }
inline void set_m_ThisColliderInstanceID_2(int32_t value)
{
___m_ThisColliderInstanceID_2 = value;
}
inline static int32_t get_offset_of_m_OtherColliderInstanceID_3() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_OtherColliderInstanceID_3)); }
inline int32_t get_m_OtherColliderInstanceID_3() const { return ___m_OtherColliderInstanceID_3; }
inline int32_t* get_address_of_m_OtherColliderInstanceID_3() { return &___m_OtherColliderInstanceID_3; }
inline void set_m_OtherColliderInstanceID_3(int32_t value)
{
___m_OtherColliderInstanceID_3 = value;
}
inline static int32_t get_offset_of_m_Separation_4() { return static_cast<int32_t>(offsetof(ContactPoint_t3758755253, ___m_Separation_4)); }
inline float get_m_Separation_4() const { return ___m_Separation_4; }
inline float* get_address_of_m_Separation_4() { return &___m_Separation_4; }
inline void set_m_Separation_4(float value)
{
___m_Separation_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONTACTPOINT_T3758755253_H
#ifndef PLAYERLOOPSYSTEM_T105772105_H
#define PLAYERLOOPSYSTEM_T105772105_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t105772105
{
public:
// System.Type UnityEngine.Experimental.LowLevel.PlayerLoopSystem::type
Type_t * ___type_0;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem[] UnityEngine.Experimental.LowLevel.PlayerLoopSystem::subSystemList
PlayerLoopSystemU5BU5D_t1150299252* ___subSystemList_1;
// UnityEngine.Experimental.LowLevel.PlayerLoopSystem/UpdateFunction UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateDelegate
UpdateFunction_t377278577 * ___updateDelegate_2;
// System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::updateFunction
intptr_t ___updateFunction_3;
// System.IntPtr UnityEngine.Experimental.LowLevel.PlayerLoopSystem::loopConditionFunction
intptr_t ___loopConditionFunction_4;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___type_0)); }
inline Type_t * get_type_0() const { return ___type_0; }
inline Type_t ** get_address_of_type_0() { return &___type_0; }
inline void set_type_0(Type_t * value)
{
___type_0 = value;
Il2CppCodeGenWriteBarrier((&___type_0), value);
}
inline static int32_t get_offset_of_subSystemList_1() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___subSystemList_1)); }
inline PlayerLoopSystemU5BU5D_t1150299252* get_subSystemList_1() const { return ___subSystemList_1; }
inline PlayerLoopSystemU5BU5D_t1150299252** get_address_of_subSystemList_1() { return &___subSystemList_1; }
inline void set_subSystemList_1(PlayerLoopSystemU5BU5D_t1150299252* value)
{
___subSystemList_1 = value;
Il2CppCodeGenWriteBarrier((&___subSystemList_1), value);
}
inline static int32_t get_offset_of_updateDelegate_2() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___updateDelegate_2)); }
inline UpdateFunction_t377278577 * get_updateDelegate_2() const { return ___updateDelegate_2; }
inline UpdateFunction_t377278577 ** get_address_of_updateDelegate_2() { return &___updateDelegate_2; }
inline void set_updateDelegate_2(UpdateFunction_t377278577 * value)
{
___updateDelegate_2 = value;
Il2CppCodeGenWriteBarrier((&___updateDelegate_2), value);
}
inline static int32_t get_offset_of_updateFunction_3() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___updateFunction_3)); }
inline intptr_t get_updateFunction_3() const { return ___updateFunction_3; }
inline intptr_t* get_address_of_updateFunction_3() { return &___updateFunction_3; }
inline void set_updateFunction_3(intptr_t value)
{
___updateFunction_3 = value;
}
inline static int32_t get_offset_of_loopConditionFunction_4() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t105772105, ___loopConditionFunction_4)); }
inline intptr_t get_loopConditionFunction_4() const { return ___loopConditionFunction_4; }
inline intptr_t* get_address_of_loopConditionFunction_4() { return &___loopConditionFunction_4; }
inline void set_loopConditionFunction_4(intptr_t value)
{
___loopConditionFunction_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t105772105_marshaled_pinvoke
{
Type_t * ___type_0;
PlayerLoopSystem_t105772105_marshaled_pinvoke* ___subSystemList_1;
Il2CppMethodPointer ___updateDelegate_2;
intptr_t ___updateFunction_3;
intptr_t ___loopConditionFunction_4;
};
// Native definition for COM marshalling of UnityEngine.Experimental.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t105772105_marshaled_com
{
Type_t * ___type_0;
PlayerLoopSystem_t105772105_marshaled_com* ___subSystemList_1;
Il2CppMethodPointer ___updateDelegate_2;
intptr_t ___updateFunction_3;
intptr_t ___loopConditionFunction_4;
};
#endif // PLAYERLOOPSYSTEM_T105772105_H
#ifndef INTERNALSHADERCHANNEL_T300897861_H
#define INTERNALSHADERCHANNEL_T300897861_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Mesh/InternalShaderChannel
struct InternalShaderChannel_t300897861
{
public:
// System.Int32 UnityEngine.Mesh/InternalShaderChannel::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InternalShaderChannel_t300897861, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERNALSHADERCHANNEL_T300897861_H
#ifndef INTERNALVERTEXCHANNELTYPE_T299736786_H
#define INTERNALVERTEXCHANNELTYPE_T299736786_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Mesh/InternalVertexChannelType
struct InternalVertexChannelType_t299736786
{
public:
// System.Int32 UnityEngine.Mesh/InternalVertexChannelType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InternalVertexChannelType_t299736786, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTERNALVERTEXCHANNELTYPE_T299736786_H
#ifndef OBJECT_T631007953_H
#define OBJECT_T631007953_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Object
struct Object_t631007953 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_t631007953, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_t631007953_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_t631007953_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_t631007953_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_t631007953_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
#endif // OBJECT_T631007953_H
#ifndef RAYCASTHIT_T1056001966_H
#define RAYCASTHIT_T1056001966_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.RaycastHit
struct RaycastHit_t1056001966
{
public:
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point
Vector3_t3722313464 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal
Vector3_t3722313464 ___m_Normal_1;
// System.UInt32 UnityEngine.RaycastHit::m_FaceID
uint32_t ___m_FaceID_2;
// System.Single UnityEngine.RaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV
Vector2_t2156229523 ___m_UV_4;
// System.Int32 UnityEngine.RaycastHit::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Point_0)); }
inline Vector3_t3722313464 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_t3722313464 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_t3722313464 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Normal_1)); }
inline Vector3_t3722313464 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_t3722313464 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_t3722313464 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_FaceID_2)); }
inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; }
inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; }
inline void set_m_FaceID_2(uint32_t value)
{
___m_FaceID_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_UV_4() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_UV_4)); }
inline Vector2_t2156229523 get_m_UV_4() const { return ___m_UV_4; }
inline Vector2_t2156229523 * get_address_of_m_UV_4() { return &___m_UV_4; }
inline void set_m_UV_4(Vector2_t2156229523 value)
{
___m_UV_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t1056001966, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RAYCASTHIT_T1056001966_H
#ifndef RAYCASTHIT2D_T2279581989_H
#define RAYCASTHIT2D_T2279581989_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.RaycastHit2D
struct RaycastHit2D_t2279581989
{
public:
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
Vector2_t2156229523 ___m_Centroid_0;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
Vector2_t2156229523 ___m_Point_1;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
Vector2_t2156229523 ___m_Normal_2;
// System.Single UnityEngine.RaycastHit2D::m_Distance
float ___m_Distance_3;
// System.Single UnityEngine.RaycastHit2D::m_Fraction
float ___m_Fraction_4;
// System.Int32 UnityEngine.RaycastHit2D::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Centroid_0)); }
inline Vector2_t2156229523 get_m_Centroid_0() const { return ___m_Centroid_0; }
inline Vector2_t2156229523 * get_address_of_m_Centroid_0() { return &___m_Centroid_0; }
inline void set_m_Centroid_0(Vector2_t2156229523 value)
{
___m_Centroid_0 = value;
}
inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Point_1)); }
inline Vector2_t2156229523 get_m_Point_1() const { return ___m_Point_1; }
inline Vector2_t2156229523 * get_address_of_m_Point_1() { return &___m_Point_1; }
inline void set_m_Point_1(Vector2_t2156229523 value)
{
___m_Point_1 = value;
}
inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Normal_2)); }
inline Vector2_t2156229523 get_m_Normal_2() const { return ___m_Normal_2; }
inline Vector2_t2156229523 * get_address_of_m_Normal_2() { return &___m_Normal_2; }
inline void set_m_Normal_2(Vector2_t2156229523 value)
{
___m_Normal_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Fraction_4)); }
inline float get_m_Fraction_4() const { return ___m_Fraction_4; }
inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; }
inline void set_m_Fraction_4(float value)
{
___m_Fraction_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t2279581989, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RAYCASTHIT2D_T2279581989_H
#ifndef UICHARINFO_T75501106_H
#define UICHARINFO_T75501106_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UICharInfo
struct UICharInfo_t75501106
{
public:
// UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos
Vector2_t2156229523 ___cursorPos_0;
// System.Single UnityEngine.UICharInfo::charWidth
float ___charWidth_1;
public:
inline static int32_t get_offset_of_cursorPos_0() { return static_cast<int32_t>(offsetof(UICharInfo_t75501106, ___cursorPos_0)); }
inline Vector2_t2156229523 get_cursorPos_0() const { return ___cursorPos_0; }
inline Vector2_t2156229523 * get_address_of_cursorPos_0() { return &___cursorPos_0; }
inline void set_cursorPos_0(Vector2_t2156229523 value)
{
___cursorPos_0 = value;
}
inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_t75501106, ___charWidth_1)); }
inline float get_charWidth_1() const { return ___charWidth_1; }
inline float* get_address_of_charWidth_1() { return &___charWidth_1; }
inline void set_charWidth_1(float value)
{
___charWidth_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UICHARINFO_T75501106_H
#ifndef UIVERTEX_T4057497605_H
#define UIVERTEX_T4057497605_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UIVertex
struct UIVertex_t4057497605
{
public:
// UnityEngine.Vector3 UnityEngine.UIVertex::position
Vector3_t3722313464 ___position_0;
// UnityEngine.Vector3 UnityEngine.UIVertex::normal
Vector3_t3722313464 ___normal_1;
// UnityEngine.Vector4 UnityEngine.UIVertex::tangent
Vector4_t3319028937 ___tangent_2;
// UnityEngine.Color32 UnityEngine.UIVertex::color
Color32_t2600501292 ___color_3;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv0
Vector2_t2156229523 ___uv0_4;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv1
Vector2_t2156229523 ___uv1_5;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv2
Vector2_t2156229523 ___uv2_6;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv3
Vector2_t2156229523 ___uv3_7;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___position_0)); }
inline Vector3_t3722313464 get_position_0() const { return ___position_0; }
inline Vector3_t3722313464 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_t3722313464 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___normal_1)); }
inline Vector3_t3722313464 get_normal_1() const { return ___normal_1; }
inline Vector3_t3722313464 * get_address_of_normal_1() { return &___normal_1; }
inline void set_normal_1(Vector3_t3722313464 value)
{
___normal_1 = value;
}
inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___tangent_2)); }
inline Vector4_t3319028937 get_tangent_2() const { return ___tangent_2; }
inline Vector4_t3319028937 * get_address_of_tangent_2() { return &___tangent_2; }
inline void set_tangent_2(Vector4_t3319028937 value)
{
___tangent_2 = value;
}
inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___color_3)); }
inline Color32_t2600501292 get_color_3() const { return ___color_3; }
inline Color32_t2600501292 * get_address_of_color_3() { return &___color_3; }
inline void set_color_3(Color32_t2600501292 value)
{
___color_3 = value;
}
inline static int32_t get_offset_of_uv0_4() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv0_4)); }
inline Vector2_t2156229523 get_uv0_4() const { return ___uv0_4; }
inline Vector2_t2156229523 * get_address_of_uv0_4() { return &___uv0_4; }
inline void set_uv0_4(Vector2_t2156229523 value)
{
___uv0_4 = value;
}
inline static int32_t get_offset_of_uv1_5() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv1_5)); }
inline Vector2_t2156229523 get_uv1_5() const { return ___uv1_5; }
inline Vector2_t2156229523 * get_address_of_uv1_5() { return &___uv1_5; }
inline void set_uv1_5(Vector2_t2156229523 value)
{
___uv1_5 = value;
}
inline static int32_t get_offset_of_uv2_6() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv2_6)); }
inline Vector2_t2156229523 get_uv2_6() const { return ___uv2_6; }
inline Vector2_t2156229523 * get_address_of_uv2_6() { return &___uv2_6; }
inline void set_uv2_6(Vector2_t2156229523 value)
{
___uv2_6 = value;
}
inline static int32_t get_offset_of_uv3_7() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605, ___uv3_7)); }
inline Vector2_t2156229523 get_uv3_7() const { return ___uv3_7; }
inline Vector2_t2156229523 * get_address_of_uv3_7() { return &___uv3_7; }
inline void set_uv3_7(Vector2_t2156229523 value)
{
___uv3_7 = value;
}
};
struct UIVertex_t4057497605_StaticFields
{
public:
// UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor
Color32_t2600501292 ___s_DefaultColor_8;
// UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent
Vector4_t3319028937 ___s_DefaultTangent_9;
// UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert
UIVertex_t4057497605 ___simpleVert_10;
public:
inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605_StaticFields, ___s_DefaultColor_8)); }
inline Color32_t2600501292 get_s_DefaultColor_8() const { return ___s_DefaultColor_8; }
inline Color32_t2600501292 * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; }
inline void set_s_DefaultColor_8(Color32_t2600501292 value)
{
___s_DefaultColor_8 = value;
}
inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605_StaticFields, ___s_DefaultTangent_9)); }
inline Vector4_t3319028937 get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; }
inline Vector4_t3319028937 * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; }
inline void set_s_DefaultTangent_9(Vector4_t3319028937 value)
{
___s_DefaultTangent_9 = value;
}
inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_t4057497605_StaticFields, ___simpleVert_10)); }
inline UIVertex_t4057497605 get_simpleVert_10() const { return ___simpleVert_10; }
inline UIVertex_t4057497605 * get_address_of_simpleVert_10() { return &___simpleVert_10; }
inline void set_simpleVert_10(UIVertex_t4057497605 value)
{
___simpleVert_10 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UIVERTEX_T4057497605_H
#ifndef KEYINFO_T3485824945_H
#define KEYINFO_T3485824945_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// GameCanvas.Input.Keyboard/KeyInfo
struct KeyInfo_t3485824945
{
public:
// GameCanvas.Input.Keyboard/EState GameCanvas.Input.Keyboard/KeyInfo::State
int32_t ___State_0;
// System.Int32 GameCanvas.Input.Keyboard/KeyInfo::FrameCount
int32_t ___FrameCount_1;
// System.Single GameCanvas.Input.Keyboard/KeyInfo::Duration
float ___Duration_2;
public:
inline static int32_t get_offset_of_State_0() { return static_cast<int32_t>(offsetof(KeyInfo_t3485824945, ___State_0)); }
inline int32_t get_State_0() const { return ___State_0; }
inline int32_t* get_address_of_State_0() { return &___State_0; }
inline void set_State_0(int32_t value)
{
___State_0 = value;
}
inline static int32_t get_offset_of_FrameCount_1() { return static_cast<int32_t>(offsetof(KeyInfo_t3485824945, ___FrameCount_1)); }
inline int32_t get_FrameCount_1() const { return ___FrameCount_1; }
inline int32_t* get_address_of_FrameCount_1() { return &___FrameCount_1; }
inline void set_FrameCount_1(int32_t value)
{
___FrameCount_1 = value;
}
inline static int32_t get_offset_of_Duration_2() { return static_cast<int32_t>(offsetof(KeyInfo_t3485824945, ___Duration_2)); }
inline float get_Duration_2() const { return ___Duration_2; }
inline float* get_address_of_Duration_2() { return &___Duration_2; }
inline void set_Duration_2(float value)
{
___Duration_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYINFO_T3485824945_H
#ifndef POINTEREVENT_T2369854343_H
#define POINTEREVENT_T2369854343_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// GameCanvas.PointerEvent
struct PointerEvent_t2369854343
{
public:
// System.Int32 GameCanvas.PointerEvent::Id
int32_t ___Id_0;
// System.Int32 GameCanvas.PointerEvent::ScreenX
int32_t ___ScreenX_1;
// System.Int32 GameCanvas.PointerEvent::ScreenY
int32_t ___ScreenY_2;
// GameCanvas.PointerEvent/EPhase GameCanvas.PointerEvent::Phase
int32_t ___Phase_3;
// GameCanvas.PointerEvent/EType GameCanvas.PointerEvent::Type
int32_t ___Type_4;
// System.Single GameCanvas.PointerEvent::Pressure
float ___Pressure_5;
// System.Single GameCanvas.PointerEvent::TiltX
float ___TiltX_6;
// System.Single GameCanvas.PointerEvent::TiltY
float ___TiltY_7;
// System.Int32 GameCanvas.PointerEvent::Frame
int32_t ___Frame_8;
// System.Single GameCanvas.PointerEvent::Time
float ___Time_9;
public:
inline static int32_t get_offset_of_Id_0() { return static_cast<int32_t>(offsetof(PointerEvent_t2369854343, ___Id_0)); }
inline int32_t get_Id_0() const { return ___Id_0; }
inline int32_t* get_address_of_Id_0() { return &___Id_0; }
inline void set_Id_0(int32_t value)
{
___Id_0 = value;
}
inline static int32_t get_offset_of_ScreenX_1() { return static_cast<int32_t>(offsetof(PointerEvent_t2369854343, ___ScreenX_1)); }
inline int32_t get_ScreenX_1() const { return ___ScreenX_1; }
inline int32_t* get_address_of_ScreenX_1() { return &___ScreenX_1; }
inline void set_ScreenX_1(int32_t value)
{
___ScreenX_1 = value;
}
inline static int32_t get_offset_of_ScreenY_2() { return static_cast<int32_t>(offsetof(PointerEvent_t2369854343, ___ScreenY_2)); }
inline int32_t get_ScreenY_2() const { return ___ScreenY_2; }
inline int32_t* get_address_of_ScreenY_2() { return &___ScreenY_2; }
inline void set_ScreenY_2(int32_t value)
{
___ScreenY_2 = value;
}
inline static int32_t get_offset_of_Phase_3() { return static_cast<int32_t>(offsetof(PointerEvent_t2369854343, ___Phase_3)); }
inline int32_t get_Phase_3() const { return ___Phase_3; }
inline int32_t* get_address_of_Phase_3() { return &___Phase_3; }
inline void set_Phase_3(int32_t value)
{
___Phase_3 = value;
}
inline static int32_t get_offset_of_Type_4() { return static_cast<int32_t>(offsetof(PointerEvent_t2369854343, ___Type_4)); }
inline int32_t get_Type_4() const { return ___Type_4; }
inline int32_t* get_address_of_Type_4() { return &___Type_4; }
inline void set_Type_4(int32_t value)
{
___Type_4 = value;
}
inline static int32_t get_offset_of_Pressure_5() { return static_cast<int32_t>(offsetof(PointerEvent_t2369854343, ___Pressure_5)); }
inline float get_Pressure_5() const { return ___Pressure_5; }
inline float* get_address_of_Pressure_5() { return &___Pressure_5; }
inline void set_Pressure_5(float value)
{
___Pressure_5 = value;
}
inline static int32_t get_offset_of_TiltX_6() { return static_cast<int32_t>(offsetof(PointerEvent_t2369854343, ___TiltX_6)); }
inline float get_TiltX_6() const { return ___TiltX_6; }
inline float* get_address_of_TiltX_6() { return &___TiltX_6; }
inline void set_TiltX_6(float value)
{
___TiltX_6 = value;
}
inline static int32_t get_offset_of_TiltY_7() { return static_cast<int32_t>(offsetof(PointerEvent_t2369854343, ___TiltY_7)); }
inline float get_TiltY_7() const { return ___TiltY_7; }
inline float* get_address_of_TiltY_7() { return &___TiltY_7; }
inline void set_TiltY_7(float value)
{
___TiltY_7 = value;
}
inline static int32_t get_offset_of_Frame_8() { return static_cast<int32_t>(offsetof(PointerEvent_t2369854343, ___Frame_8)); }
inline int32_t get_Frame_8() const { return ___Frame_8; }
inline int32_t* get_address_of_Frame_8() { return &___Frame_8; }
inline void set_Frame_8(int32_t value)
{
___Frame_8 = value;
}
inline static int32_t get_offset_of_Time_9() { return static_cast<int32_t>(offsetof(PointerEvent_t2369854343, ___Time_9)); }
inline float get_Time_9() const { return ___Time_9; }
inline float* get_address_of_Time_9() { return &___Time_9; }
inline void set_Time_9(float value)
{
___Time_9 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // POINTEREVENT_T2369854343_H
#ifndef U3CINNERREADU3ED__25_T257820306_H
#define U3CINNERREADU3ED__25_T257820306_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25
struct U3CInnerReadU3Ed__25_t257820306
{
public:
// System.Int32 Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>> Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<>t__builder
AsyncTaskMethodBuilder_1_t2699515049 ___U3CU3Et__builder_1;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<>4__this
AsyncProtocolRequest_t4184368197 * ___U3CU3E4__this_2;
// System.Threading.CancellationToken Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::cancellationToken
CancellationToken_t784455623 ___cancellationToken_3;
// System.Int32 Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<requestedSize>5__1
int32_t ___U3CrequestedSizeU3E5__1_4;
// System.Nullable`1<System.Int32> Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<totalRead>5__2
Nullable_1_t378540539 ___U3CtotalReadU3E5__2_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32> Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<>u__1
ConfiguredTaskAwaiter_t4273446738 ___U3CU3Eu__1_6;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_t257820306, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_t257820306, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_1_t2699515049 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_1_t2699515049 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t2699515049 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_t257820306, ___U3CU3E4__this_2)); }
inline AsyncProtocolRequest_t4184368197 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline AsyncProtocolRequest_t4184368197 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(AsyncProtocolRequest_t4184368197 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_2), value);
}
inline static int32_t get_offset_of_cancellationToken_3() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_t257820306, ___cancellationToken_3)); }
inline CancellationToken_t784455623 get_cancellationToken_3() const { return ___cancellationToken_3; }
inline CancellationToken_t784455623 * get_address_of_cancellationToken_3() { return &___cancellationToken_3; }
inline void set_cancellationToken_3(CancellationToken_t784455623 value)
{
___cancellationToken_3 = value;
}
inline static int32_t get_offset_of_U3CrequestedSizeU3E5__1_4() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_t257820306, ___U3CrequestedSizeU3E5__1_4)); }
inline int32_t get_U3CrequestedSizeU3E5__1_4() const { return ___U3CrequestedSizeU3E5__1_4; }
inline int32_t* get_address_of_U3CrequestedSizeU3E5__1_4() { return &___U3CrequestedSizeU3E5__1_4; }
inline void set_U3CrequestedSizeU3E5__1_4(int32_t value)
{
___U3CrequestedSizeU3E5__1_4 = value;
}
inline static int32_t get_offset_of_U3CtotalReadU3E5__2_5() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_t257820306, ___U3CtotalReadU3E5__2_5)); }
inline Nullable_1_t378540539 get_U3CtotalReadU3E5__2_5() const { return ___U3CtotalReadU3E5__2_5; }
inline Nullable_1_t378540539 * get_address_of_U3CtotalReadU3E5__2_5() { return &___U3CtotalReadU3E5__2_5; }
inline void set_U3CtotalReadU3E5__2_5(Nullable_1_t378540539 value)
{
___U3CtotalReadU3E5__2_5 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_6() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_t257820306, ___U3CU3Eu__1_6)); }
inline ConfiguredTaskAwaiter_t4273446738 get_U3CU3Eu__1_6() const { return ___U3CU3Eu__1_6; }
inline ConfiguredTaskAwaiter_t4273446738 * get_address_of_U3CU3Eu__1_6() { return &___U3CU3Eu__1_6; }
inline void set_U3CU3Eu__1_6(ConfiguredTaskAwaiter_t4273446738 value)
{
___U3CU3Eu__1_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CINNERREADU3ED__25_T257820306_H
#ifndef U3CSTARTOPERATIONU3ED__23_T3218468820_H
#define U3CSTARTOPERATIONU3ED__23_T3218468820_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23
struct U3CStartOperationU3Ed__23_t3218468820
{
public:
// System.Int32 Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult> Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::<>t__builder
AsyncTaskMethodBuilder_1_t1408804594 ___U3CU3Et__builder_1;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::<>4__this
AsyncProtocolRequest_t4184368197 * ___U3CU3E4__this_2;
// System.Threading.CancellationToken Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::cancellationToken
CancellationToken_t784455623 ___cancellationToken_3;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::<>u__1
ConfiguredTaskAwaiter_t555647845 ___U3CU3Eu__1_4;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__23_t3218468820, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__23_t3218468820, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_1_t1408804594 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_1_t1408804594 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t1408804594 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__23_t3218468820, ___U3CU3E4__this_2)); }
inline AsyncProtocolRequest_t4184368197 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline AsyncProtocolRequest_t4184368197 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(AsyncProtocolRequest_t4184368197 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_2), value);
}
inline static int32_t get_offset_of_cancellationToken_3() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__23_t3218468820, ___cancellationToken_3)); }
inline CancellationToken_t784455623 get_cancellationToken_3() const { return ___cancellationToken_3; }
inline CancellationToken_t784455623 * get_address_of_cancellationToken_3() { return &___cancellationToken_3; }
inline void set_cancellationToken_3(CancellationToken_t784455623 value)
{
___cancellationToken_3 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_4() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__23_t3218468820, ___U3CU3Eu__1_4)); }
inline ConfiguredTaskAwaiter_t555647845 get_U3CU3Eu__1_4() const { return ___U3CU3Eu__1_4; }
inline ConfiguredTaskAwaiter_t555647845 * get_address_of_U3CU3Eu__1_4() { return &___U3CU3Eu__1_4; }
inline void set_U3CU3Eu__1_4(ConfiguredTaskAwaiter_t555647845 value)
{
___U3CU3Eu__1_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CSTARTOPERATIONU3ED__23_T3218468820_H
#ifndef U3CINNERREADU3ED__66_T2872199449_H
#define U3CINNERREADU3ED__66_T2872199449_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66
struct U3CInnerReadU3Ed__66_t2872199449
{
public:
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::<>t__builder
AsyncTaskMethodBuilder_1_t976952967 ___U3CU3Et__builder_1;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::<>4__this
MobileAuthenticatedStream_t3383979266 * ___U3CU3E4__this_2;
// System.Threading.CancellationToken Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::cancellationToken
CancellationToken_t784455623 ___cancellationToken_3;
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::requestedSize
int32_t ___requestedSize_4;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::sync
bool ___sync_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32> Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::<>u__1
ConfiguredTaskAwaiter_t4273446738 ___U3CU3Eu__1_6;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_t2872199449, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_t2872199449, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_1_t976952967 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_1_t976952967 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t976952967 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_t2872199449, ___U3CU3E4__this_2)); }
inline MobileAuthenticatedStream_t3383979266 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline MobileAuthenticatedStream_t3383979266 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(MobileAuthenticatedStream_t3383979266 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_2), value);
}
inline static int32_t get_offset_of_cancellationToken_3() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_t2872199449, ___cancellationToken_3)); }
inline CancellationToken_t784455623 get_cancellationToken_3() const { return ___cancellationToken_3; }
inline CancellationToken_t784455623 * get_address_of_cancellationToken_3() { return &___cancellationToken_3; }
inline void set_cancellationToken_3(CancellationToken_t784455623 value)
{
___cancellationToken_3 = value;
}
inline static int32_t get_offset_of_requestedSize_4() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_t2872199449, ___requestedSize_4)); }
inline int32_t get_requestedSize_4() const { return ___requestedSize_4; }
inline int32_t* get_address_of_requestedSize_4() { return &___requestedSize_4; }
inline void set_requestedSize_4(int32_t value)
{
___requestedSize_4 = value;
}
inline static int32_t get_offset_of_sync_5() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_t2872199449, ___sync_5)); }
inline bool get_sync_5() const { return ___sync_5; }
inline bool* get_address_of_sync_5() { return &___sync_5; }
inline void set_sync_5(bool value)
{
___sync_5 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_6() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_t2872199449, ___U3CU3Eu__1_6)); }
inline ConfiguredTaskAwaiter_t4273446738 get_U3CU3Eu__1_6() const { return ___U3CU3Eu__1_6; }
inline ConfiguredTaskAwaiter_t4273446738 * get_address_of_U3CU3Eu__1_6() { return &___U3CU3Eu__1_6; }
inline void set_U3CU3Eu__1_6(ConfiguredTaskAwaiter_t4273446738 value)
{
___U3CU3Eu__1_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CINNERREADU3ED__66_T2872199449_H
#ifndef U3CSTARTOPERATIONU3ED__58_T1428438294_H
#define U3CSTARTOPERATIONU3ED__58_T1428438294_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58
struct U3CStartOperationU3Ed__58_t1428438294
{
public:
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::<>t__builder
AsyncTaskMethodBuilder_1_t976952967 ___U3CU3Et__builder_1;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::<>4__this
MobileAuthenticatedStream_t3383979266 * ___U3CU3E4__this_2;
// Mono.Net.Security.MobileAuthenticatedStream/OperationType Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::type
int32_t ___type_3;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::asyncRequest
AsyncProtocolRequest_t4184368197 * ___asyncRequest_4;
// System.Threading.CancellationToken Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::cancellationToken
CancellationToken_t784455623 ___cancellationToken_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult> Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::<>u__1
ConfiguredTaskAwaiter_t410331069 ___U3CU3Eu__1_6;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t1428438294, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t1428438294, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_1_t976952967 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_1_t976952967 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t976952967 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t1428438294, ___U3CU3E4__this_2)); }
inline MobileAuthenticatedStream_t3383979266 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline MobileAuthenticatedStream_t3383979266 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(MobileAuthenticatedStream_t3383979266 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_2), value);
}
inline static int32_t get_offset_of_type_3() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t1428438294, ___type_3)); }
inline int32_t get_type_3() const { return ___type_3; }
inline int32_t* get_address_of_type_3() { return &___type_3; }
inline void set_type_3(int32_t value)
{
___type_3 = value;
}
inline static int32_t get_offset_of_asyncRequest_4() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t1428438294, ___asyncRequest_4)); }
inline AsyncProtocolRequest_t4184368197 * get_asyncRequest_4() const { return ___asyncRequest_4; }
inline AsyncProtocolRequest_t4184368197 ** get_address_of_asyncRequest_4() { return &___asyncRequest_4; }
inline void set_asyncRequest_4(AsyncProtocolRequest_t4184368197 * value)
{
___asyncRequest_4 = value;
Il2CppCodeGenWriteBarrier((&___asyncRequest_4), value);
}
inline static int32_t get_offset_of_cancellationToken_5() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t1428438294, ___cancellationToken_5)); }
inline CancellationToken_t784455623 get_cancellationToken_5() const { return ___cancellationToken_5; }
inline CancellationToken_t784455623 * get_address_of_cancellationToken_5() { return &___cancellationToken_5; }
inline void set_cancellationToken_5(CancellationToken_t784455623 value)
{
___cancellationToken_5 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_6() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t1428438294, ___U3CU3Eu__1_6)); }
inline ConfiguredTaskAwaiter_t410331069 get_U3CU3Eu__1_6() const { return ___U3CU3Eu__1_6; }
inline ConfiguredTaskAwaiter_t410331069 * get_address_of_U3CU3Eu__1_6() { return &___U3CU3Eu__1_6; }
inline void set_U3CU3Eu__1_6(ConfiguredTaskAwaiter_t410331069 value)
{
___U3CU3Eu__1_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CSTARTOPERATIONU3ED__58_T1428438294_H
#ifndef ARGUMENTNULLEXCEPTION_T1615371798_H
#define ARGUMENTNULLEXCEPTION_T1615371798_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentNullException
struct ArgumentNullException_t1615371798 : public ArgumentException_t132251570
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTNULLEXCEPTION_T1615371798_H
#ifndef ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H
#define ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t777629997 : public ArgumentException_t132251570
{
public:
// System.Object System.ArgumentOutOfRangeException::m_actualValue
RuntimeObject * ___m_actualValue_19;
public:
inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t777629997, ___m_actualValue_19)); }
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
inline void set_m_actualValue_19(RuntimeObject * value)
{
___m_actualValue_19 = value;
Il2CppCodeGenWriteBarrier((&___m_actualValue_19), value);
}
};
struct ArgumentOutOfRangeException_t777629997_StaticFields
{
public:
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
String_t* ____rangeMessage_18;
public:
inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t777629997_StaticFields, ____rangeMessage_18)); }
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
inline void set__rangeMessage_18(String_t* value)
{
____rangeMessage_18 = value;
Il2CppCodeGenWriteBarrier((&____rangeMessage_18), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H
#ifndef ENTRY_T3444579954_H
#define ENTRY_T3444579954_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2/Entry<GameCanvas.EKeyCode,System.Int32>
struct Entry_t3444579954
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2/Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
int32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t3444579954, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t3444579954, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t3444579954, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t3444579954, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T3444579954_H
#ifndef ENTRY_T1472554943_H
#define ENTRY_T1472554943_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.AppContext/SwitchValueState>
struct Entry_t1472554943
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2/Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
int32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1472554943, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1472554943, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1472554943, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((&___key_2), value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1472554943, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T1472554943_H
#ifndef KEYVALUEPAIR_2_T4227387633_H
#define KEYVALUEPAIR_2_T4227387633_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<GameCanvas.EKeyCode,System.Int32>
struct KeyValuePair_2_t4227387633
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t4227387633, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t4227387633, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T4227387633_H
#ifndef KEYVALUEPAIR_2_T2255362622_H
#define KEYVALUEPAIR_2_T2255362622_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>
struct KeyValuePair_2_t2255362622
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2255362622, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2255362622, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T2255362622_H
#ifndef TIMESPANTOKEN_T993347374_H
#define TIMESPANTOKEN_T993347374_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.TimeSpanParse/TimeSpanToken
struct TimeSpanToken_t993347374
{
public:
// System.Globalization.TimeSpanParse/TTT System.Globalization.TimeSpanParse/TimeSpanToken::ttt
int32_t ___ttt_0;
// System.Int32 System.Globalization.TimeSpanParse/TimeSpanToken::num
int32_t ___num_1;
// System.Int32 System.Globalization.TimeSpanParse/TimeSpanToken::zeroes
int32_t ___zeroes_2;
// System.String System.Globalization.TimeSpanParse/TimeSpanToken::sep
String_t* ___sep_3;
public:
inline static int32_t get_offset_of_ttt_0() { return static_cast<int32_t>(offsetof(TimeSpanToken_t993347374, ___ttt_0)); }
inline int32_t get_ttt_0() const { return ___ttt_0; }
inline int32_t* get_address_of_ttt_0() { return &___ttt_0; }
inline void set_ttt_0(int32_t value)
{
___ttt_0 = value;
}
inline static int32_t get_offset_of_num_1() { return static_cast<int32_t>(offsetof(TimeSpanToken_t993347374, ___num_1)); }
inline int32_t get_num_1() const { return ___num_1; }
inline int32_t* get_address_of_num_1() { return &___num_1; }
inline void set_num_1(int32_t value)
{
___num_1 = value;
}
inline static int32_t get_offset_of_zeroes_2() { return static_cast<int32_t>(offsetof(TimeSpanToken_t993347374, ___zeroes_2)); }
inline int32_t get_zeroes_2() const { return ___zeroes_2; }
inline int32_t* get_address_of_zeroes_2() { return &___zeroes_2; }
inline void set_zeroes_2(int32_t value)
{
___zeroes_2 = value;
}
inline static int32_t get_offset_of_sep_3() { return static_cast<int32_t>(offsetof(TimeSpanToken_t993347374, ___sep_3)); }
inline String_t* get_sep_3() const { return ___sep_3; }
inline String_t** get_address_of_sep_3() { return &___sep_3; }
inline void set_sep_3(String_t* value)
{
___sep_3 = value;
Il2CppCodeGenWriteBarrier((&___sep_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Globalization.TimeSpanParse/TimeSpanToken
struct TimeSpanToken_t993347374_marshaled_pinvoke
{
int32_t ___ttt_0;
int32_t ___num_1;
int32_t ___zeroes_2;
char* ___sep_3;
};
// Native definition for COM marshalling of System.Globalization.TimeSpanParse/TimeSpanToken
struct TimeSpanToken_t993347374_marshaled_com
{
int32_t ___ttt_0;
int32_t ___num_1;
int32_t ___zeroes_2;
Il2CppChar* ___sep_3;
};
#endif // TIMESPANTOKEN_T993347374_H
#ifndef MULTICASTDELEGATE_T_H
#define MULTICASTDELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t1188392813
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_t1703627840* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_t1703627840* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_t1703627840** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_t1703627840* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((&___delegates_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t1188392813_marshaled_pinvoke
{
DelegateU5BU5D_t1703627840* ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t1188392813_marshaled_com
{
DelegateU5BU5D_t1703627840* ___delegates_11;
};
#endif // MULTICASTDELEGATE_T_H
#ifndef RECOGNIZEDATTRIBUTE_T632074220_H
#define RECOGNIZEDATTRIBUTE_T632074220_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.CookieTokenizer/RecognizedAttribute
struct RecognizedAttribute_t632074220
{
public:
// System.String System.Net.CookieTokenizer/RecognizedAttribute::m_name
String_t* ___m_name_0;
// System.Net.CookieToken System.Net.CookieTokenizer/RecognizedAttribute::m_token
int32_t ___m_token_1;
public:
inline static int32_t get_offset_of_m_name_0() { return static_cast<int32_t>(offsetof(RecognizedAttribute_t632074220, ___m_name_0)); }
inline String_t* get_m_name_0() const { return ___m_name_0; }
inline String_t** get_address_of_m_name_0() { return &___m_name_0; }
inline void set_m_name_0(String_t* value)
{
___m_name_0 = value;
Il2CppCodeGenWriteBarrier((&___m_name_0), value);
}
inline static int32_t get_offset_of_m_token_1() { return static_cast<int32_t>(offsetof(RecognizedAttribute_t632074220, ___m_token_1)); }
inline int32_t get_m_token_1() const { return ___m_token_1; }
inline int32_t* get_address_of_m_token_1() { return &___m_token_1; }
inline void set_m_token_1(int32_t value)
{
___m_token_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.CookieTokenizer/RecognizedAttribute
struct RecognizedAttribute_t632074220_marshaled_pinvoke
{
char* ___m_name_0;
int32_t ___m_token_1;
};
// Native definition for COM marshalling of System.Net.CookieTokenizer/RecognizedAttribute
struct RecognizedAttribute_t632074220_marshaled_com
{
Il2CppChar* ___m_name_0;
int32_t ___m_token_1;
};
#endif // RECOGNIZEDATTRIBUTE_T632074220_H
#ifndef HEADERVARIANTINFO_T1935685601_H
#define HEADERVARIANTINFO_T1935685601_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.HeaderVariantInfo
struct HeaderVariantInfo_t1935685601
{
public:
// System.String System.Net.HeaderVariantInfo::m_name
String_t* ___m_name_0;
// System.Net.CookieVariant System.Net.HeaderVariantInfo::m_variant
int32_t ___m_variant_1;
public:
inline static int32_t get_offset_of_m_name_0() { return static_cast<int32_t>(offsetof(HeaderVariantInfo_t1935685601, ___m_name_0)); }
inline String_t* get_m_name_0() const { return ___m_name_0; }
inline String_t** get_address_of_m_name_0() { return &___m_name_0; }
inline void set_m_name_0(String_t* value)
{
___m_name_0 = value;
Il2CppCodeGenWriteBarrier((&___m_name_0), value);
}
inline static int32_t get_offset_of_m_variant_1() { return static_cast<int32_t>(offsetof(HeaderVariantInfo_t1935685601, ___m_variant_1)); }
inline int32_t get_m_variant_1() const { return ___m_variant_1; }
inline int32_t* get_address_of_m_variant_1() { return &___m_variant_1; }
inline void set_m_variant_1(int32_t value)
{
___m_variant_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.HeaderVariantInfo
struct HeaderVariantInfo_t1935685601_marshaled_pinvoke
{
char* ___m_name_0;
int32_t ___m_variant_1;
};
// Native definition for COM marshalling of System.Net.HeaderVariantInfo
struct HeaderVariantInfo_t1935685601_marshaled_com
{
Il2CppChar* ___m_name_0;
int32_t ___m_variant_1;
};
#endif // HEADERVARIANTINFO_T1935685601_H
#ifndef WIN32_FIXED_INFO_T1299345856_H
#define WIN32_FIXED_INFO_T1299345856_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.Win32_FIXED_INFO
struct Win32_FIXED_INFO_t1299345856
{
public:
// System.String System.Net.NetworkInformation.Win32_FIXED_INFO::HostName
String_t* ___HostName_0;
// System.String System.Net.NetworkInformation.Win32_FIXED_INFO::DomainName
String_t* ___DomainName_1;
// System.IntPtr System.Net.NetworkInformation.Win32_FIXED_INFO::CurrentDnsServer
intptr_t ___CurrentDnsServer_2;
// System.Net.NetworkInformation.Win32_IP_ADDR_STRING System.Net.NetworkInformation.Win32_FIXED_INFO::DnsServerList
Win32_IP_ADDR_STRING_t1213417184 ___DnsServerList_3;
// System.Net.NetworkInformation.NetBiosNodeType System.Net.NetworkInformation.Win32_FIXED_INFO::NodeType
int32_t ___NodeType_4;
// System.String System.Net.NetworkInformation.Win32_FIXED_INFO::ScopeId
String_t* ___ScopeId_5;
// System.UInt32 System.Net.NetworkInformation.Win32_FIXED_INFO::EnableRouting
uint32_t ___EnableRouting_6;
// System.UInt32 System.Net.NetworkInformation.Win32_FIXED_INFO::EnableProxy
uint32_t ___EnableProxy_7;
// System.UInt32 System.Net.NetworkInformation.Win32_FIXED_INFO::EnableDns
uint32_t ___EnableDns_8;
public:
inline static int32_t get_offset_of_HostName_0() { return static_cast<int32_t>(offsetof(Win32_FIXED_INFO_t1299345856, ___HostName_0)); }
inline String_t* get_HostName_0() const { return ___HostName_0; }
inline String_t** get_address_of_HostName_0() { return &___HostName_0; }
inline void set_HostName_0(String_t* value)
{
___HostName_0 = value;
Il2CppCodeGenWriteBarrier((&___HostName_0), value);
}
inline static int32_t get_offset_of_DomainName_1() { return static_cast<int32_t>(offsetof(Win32_FIXED_INFO_t1299345856, ___DomainName_1)); }
inline String_t* get_DomainName_1() const { return ___DomainName_1; }
inline String_t** get_address_of_DomainName_1() { return &___DomainName_1; }
inline void set_DomainName_1(String_t* value)
{
___DomainName_1 = value;
Il2CppCodeGenWriteBarrier((&___DomainName_1), value);
}
inline static int32_t get_offset_of_CurrentDnsServer_2() { return static_cast<int32_t>(offsetof(Win32_FIXED_INFO_t1299345856, ___CurrentDnsServer_2)); }
inline intptr_t get_CurrentDnsServer_2() const { return ___CurrentDnsServer_2; }
inline intptr_t* get_address_of_CurrentDnsServer_2() { return &___CurrentDnsServer_2; }
inline void set_CurrentDnsServer_2(intptr_t value)
{
___CurrentDnsServer_2 = value;
}
inline static int32_t get_offset_of_DnsServerList_3() { return static_cast<int32_t>(offsetof(Win32_FIXED_INFO_t1299345856, ___DnsServerList_3)); }
inline Win32_IP_ADDR_STRING_t1213417184 get_DnsServerList_3() const { return ___DnsServerList_3; }
inline Win32_IP_ADDR_STRING_t1213417184 * get_address_of_DnsServerList_3() { return &___DnsServerList_3; }
inline void set_DnsServerList_3(Win32_IP_ADDR_STRING_t1213417184 value)
{
___DnsServerList_3 = value;
}
inline static int32_t get_offset_of_NodeType_4() { return static_cast<int32_t>(offsetof(Win32_FIXED_INFO_t1299345856, ___NodeType_4)); }
inline int32_t get_NodeType_4() const { return ___NodeType_4; }
inline int32_t* get_address_of_NodeType_4() { return &___NodeType_4; }
inline void set_NodeType_4(int32_t value)
{
___NodeType_4 = value;
}
inline static int32_t get_offset_of_ScopeId_5() { return static_cast<int32_t>(offsetof(Win32_FIXED_INFO_t1299345856, ___ScopeId_5)); }
inline String_t* get_ScopeId_5() const { return ___ScopeId_5; }
inline String_t** get_address_of_ScopeId_5() { return &___ScopeId_5; }
inline void set_ScopeId_5(String_t* value)
{
___ScopeId_5 = value;
Il2CppCodeGenWriteBarrier((&___ScopeId_5), value);
}
inline static int32_t get_offset_of_EnableRouting_6() { return static_cast<int32_t>(offsetof(Win32_FIXED_INFO_t1299345856, ___EnableRouting_6)); }
inline uint32_t get_EnableRouting_6() const { return ___EnableRouting_6; }
inline uint32_t* get_address_of_EnableRouting_6() { return &___EnableRouting_6; }
inline void set_EnableRouting_6(uint32_t value)
{
___EnableRouting_6 = value;
}
inline static int32_t get_offset_of_EnableProxy_7() { return static_cast<int32_t>(offsetof(Win32_FIXED_INFO_t1299345856, ___EnableProxy_7)); }
inline uint32_t get_EnableProxy_7() const { return ___EnableProxy_7; }
inline uint32_t* get_address_of_EnableProxy_7() { return &___EnableProxy_7; }
inline void set_EnableProxy_7(uint32_t value)
{
___EnableProxy_7 = value;
}
inline static int32_t get_offset_of_EnableDns_8() { return static_cast<int32_t>(offsetof(Win32_FIXED_INFO_t1299345856, ___EnableDns_8)); }
inline uint32_t get_EnableDns_8() const { return ___EnableDns_8; }
inline uint32_t* get_address_of_EnableDns_8() { return &___EnableDns_8; }
inline void set_EnableDns_8(uint32_t value)
{
___EnableDns_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.NetworkInformation.Win32_FIXED_INFO
struct Win32_FIXED_INFO_t1299345856_marshaled_pinvoke
{
char ___HostName_0[132];
char ___DomainName_1[132];
intptr_t ___CurrentDnsServer_2;
Win32_IP_ADDR_STRING_t1213417184_marshaled_pinvoke ___DnsServerList_3;
int32_t ___NodeType_4;
char ___ScopeId_5[260];
uint32_t ___EnableRouting_6;
uint32_t ___EnableProxy_7;
uint32_t ___EnableDns_8;
};
// Native definition for COM marshalling of System.Net.NetworkInformation.Win32_FIXED_INFO
struct Win32_FIXED_INFO_t1299345856_marshaled_com
{
char ___HostName_0[132];
char ___DomainName_1[132];
intptr_t ___CurrentDnsServer_2;
Win32_IP_ADDR_STRING_t1213417184_marshaled_com ___DnsServerList_3;
int32_t ___NodeType_4;
char ___ScopeId_5[260];
uint32_t ___EnableRouting_6;
uint32_t ___EnableProxy_7;
uint32_t ___EnableDns_8;
};
#endif // WIN32_FIXED_INFO_T1299345856_H
#ifndef WIN32_IP_ADAPTER_ADDRESSES_T3463526328_H
#define WIN32_IP_ADAPTER_ADDRESSES_T3463526328_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES
struct Win32_IP_ADAPTER_ADDRESSES_t3463526328
{
public:
// System.Net.NetworkInformation.AlignmentUnion System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Alignment
AlignmentUnion_t208902285 ___Alignment_0;
// System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Next
intptr_t ___Next_1;
// System.String System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::AdapterName
String_t* ___AdapterName_2;
// System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FirstUnicastAddress
intptr_t ___FirstUnicastAddress_3;
// System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FirstAnycastAddress
intptr_t ___FirstAnycastAddress_4;
// System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FirstMulticastAddress
intptr_t ___FirstMulticastAddress_5;
// System.IntPtr System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FirstDnsServerAddress
intptr_t ___FirstDnsServerAddress_6;
// System.String System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::DnsSuffix
String_t* ___DnsSuffix_7;
// System.String System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Description
String_t* ___Description_8;
// System.String System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::FriendlyName
String_t* ___FriendlyName_9;
// System.Byte[] System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::PhysicalAddress
ByteU5BU5D_t4116647657* ___PhysicalAddress_10;
// System.UInt32 System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::PhysicalAddressLength
uint32_t ___PhysicalAddressLength_11;
// System.UInt32 System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Flags
uint32_t ___Flags_12;
// System.UInt32 System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Mtu
uint32_t ___Mtu_13;
// System.Net.NetworkInformation.NetworkInterfaceType System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::IfType
int32_t ___IfType_14;
// System.Net.NetworkInformation.OperationalStatus System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::OperStatus
int32_t ___OperStatus_15;
// System.Int32 System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::Ipv6IfIndex
int32_t ___Ipv6IfIndex_16;
// System.UInt32[] System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES::ZoneIndices
UInt32U5BU5D_t2770800703* ___ZoneIndices_17;
public:
inline static int32_t get_offset_of_Alignment_0() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Alignment_0)); }
inline AlignmentUnion_t208902285 get_Alignment_0() const { return ___Alignment_0; }
inline AlignmentUnion_t208902285 * get_address_of_Alignment_0() { return &___Alignment_0; }
inline void set_Alignment_0(AlignmentUnion_t208902285 value)
{
___Alignment_0 = value;
}
inline static int32_t get_offset_of_Next_1() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Next_1)); }
inline intptr_t get_Next_1() const { return ___Next_1; }
inline intptr_t* get_address_of_Next_1() { return &___Next_1; }
inline void set_Next_1(intptr_t value)
{
___Next_1 = value;
}
inline static int32_t get_offset_of_AdapterName_2() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___AdapterName_2)); }
inline String_t* get_AdapterName_2() const { return ___AdapterName_2; }
inline String_t** get_address_of_AdapterName_2() { return &___AdapterName_2; }
inline void set_AdapterName_2(String_t* value)
{
___AdapterName_2 = value;
Il2CppCodeGenWriteBarrier((&___AdapterName_2), value);
}
inline static int32_t get_offset_of_FirstUnicastAddress_3() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FirstUnicastAddress_3)); }
inline intptr_t get_FirstUnicastAddress_3() const { return ___FirstUnicastAddress_3; }
inline intptr_t* get_address_of_FirstUnicastAddress_3() { return &___FirstUnicastAddress_3; }
inline void set_FirstUnicastAddress_3(intptr_t value)
{
___FirstUnicastAddress_3 = value;
}
inline static int32_t get_offset_of_FirstAnycastAddress_4() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FirstAnycastAddress_4)); }
inline intptr_t get_FirstAnycastAddress_4() const { return ___FirstAnycastAddress_4; }
inline intptr_t* get_address_of_FirstAnycastAddress_4() { return &___FirstAnycastAddress_4; }
inline void set_FirstAnycastAddress_4(intptr_t value)
{
___FirstAnycastAddress_4 = value;
}
inline static int32_t get_offset_of_FirstMulticastAddress_5() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FirstMulticastAddress_5)); }
inline intptr_t get_FirstMulticastAddress_5() const { return ___FirstMulticastAddress_5; }
inline intptr_t* get_address_of_FirstMulticastAddress_5() { return &___FirstMulticastAddress_5; }
inline void set_FirstMulticastAddress_5(intptr_t value)
{
___FirstMulticastAddress_5 = value;
}
inline static int32_t get_offset_of_FirstDnsServerAddress_6() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FirstDnsServerAddress_6)); }
inline intptr_t get_FirstDnsServerAddress_6() const { return ___FirstDnsServerAddress_6; }
inline intptr_t* get_address_of_FirstDnsServerAddress_6() { return &___FirstDnsServerAddress_6; }
inline void set_FirstDnsServerAddress_6(intptr_t value)
{
___FirstDnsServerAddress_6 = value;
}
inline static int32_t get_offset_of_DnsSuffix_7() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___DnsSuffix_7)); }
inline String_t* get_DnsSuffix_7() const { return ___DnsSuffix_7; }
inline String_t** get_address_of_DnsSuffix_7() { return &___DnsSuffix_7; }
inline void set_DnsSuffix_7(String_t* value)
{
___DnsSuffix_7 = value;
Il2CppCodeGenWriteBarrier((&___DnsSuffix_7), value);
}
inline static int32_t get_offset_of_Description_8() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Description_8)); }
inline String_t* get_Description_8() const { return ___Description_8; }
inline String_t** get_address_of_Description_8() { return &___Description_8; }
inline void set_Description_8(String_t* value)
{
___Description_8 = value;
Il2CppCodeGenWriteBarrier((&___Description_8), value);
}
inline static int32_t get_offset_of_FriendlyName_9() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___FriendlyName_9)); }
inline String_t* get_FriendlyName_9() const { return ___FriendlyName_9; }
inline String_t** get_address_of_FriendlyName_9() { return &___FriendlyName_9; }
inline void set_FriendlyName_9(String_t* value)
{
___FriendlyName_9 = value;
Il2CppCodeGenWriteBarrier((&___FriendlyName_9), value);
}
inline static int32_t get_offset_of_PhysicalAddress_10() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___PhysicalAddress_10)); }
inline ByteU5BU5D_t4116647657* get_PhysicalAddress_10() const { return ___PhysicalAddress_10; }
inline ByteU5BU5D_t4116647657** get_address_of_PhysicalAddress_10() { return &___PhysicalAddress_10; }
inline void set_PhysicalAddress_10(ByteU5BU5D_t4116647657* value)
{
___PhysicalAddress_10 = value;
Il2CppCodeGenWriteBarrier((&___PhysicalAddress_10), value);
}
inline static int32_t get_offset_of_PhysicalAddressLength_11() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___PhysicalAddressLength_11)); }
inline uint32_t get_PhysicalAddressLength_11() const { return ___PhysicalAddressLength_11; }
inline uint32_t* get_address_of_PhysicalAddressLength_11() { return &___PhysicalAddressLength_11; }
inline void set_PhysicalAddressLength_11(uint32_t value)
{
___PhysicalAddressLength_11 = value;
}
inline static int32_t get_offset_of_Flags_12() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Flags_12)); }
inline uint32_t get_Flags_12() const { return ___Flags_12; }
inline uint32_t* get_address_of_Flags_12() { return &___Flags_12; }
inline void set_Flags_12(uint32_t value)
{
___Flags_12 = value;
}
inline static int32_t get_offset_of_Mtu_13() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Mtu_13)); }
inline uint32_t get_Mtu_13() const { return ___Mtu_13; }
inline uint32_t* get_address_of_Mtu_13() { return &___Mtu_13; }
inline void set_Mtu_13(uint32_t value)
{
___Mtu_13 = value;
}
inline static int32_t get_offset_of_IfType_14() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___IfType_14)); }
inline int32_t get_IfType_14() const { return ___IfType_14; }
inline int32_t* get_address_of_IfType_14() { return &___IfType_14; }
inline void set_IfType_14(int32_t value)
{
___IfType_14 = value;
}
inline static int32_t get_offset_of_OperStatus_15() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___OperStatus_15)); }
inline int32_t get_OperStatus_15() const { return ___OperStatus_15; }
inline int32_t* get_address_of_OperStatus_15() { return &___OperStatus_15; }
inline void set_OperStatus_15(int32_t value)
{
___OperStatus_15 = value;
}
inline static int32_t get_offset_of_Ipv6IfIndex_16() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___Ipv6IfIndex_16)); }
inline int32_t get_Ipv6IfIndex_16() const { return ___Ipv6IfIndex_16; }
inline int32_t* get_address_of_Ipv6IfIndex_16() { return &___Ipv6IfIndex_16; }
inline void set_Ipv6IfIndex_16(int32_t value)
{
___Ipv6IfIndex_16 = value;
}
inline static int32_t get_offset_of_ZoneIndices_17() { return static_cast<int32_t>(offsetof(Win32_IP_ADAPTER_ADDRESSES_t3463526328, ___ZoneIndices_17)); }
inline UInt32U5BU5D_t2770800703* get_ZoneIndices_17() const { return ___ZoneIndices_17; }
inline UInt32U5BU5D_t2770800703** get_address_of_ZoneIndices_17() { return &___ZoneIndices_17; }
inline void set_ZoneIndices_17(UInt32U5BU5D_t2770800703* value)
{
___ZoneIndices_17 = value;
Il2CppCodeGenWriteBarrier((&___ZoneIndices_17), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES
struct Win32_IP_ADAPTER_ADDRESSES_t3463526328_marshaled_pinvoke
{
AlignmentUnion_t208902285 ___Alignment_0;
intptr_t ___Next_1;
char* ___AdapterName_2;
intptr_t ___FirstUnicastAddress_3;
intptr_t ___FirstAnycastAddress_4;
intptr_t ___FirstMulticastAddress_5;
intptr_t ___FirstDnsServerAddress_6;
Il2CppChar* ___DnsSuffix_7;
Il2CppChar* ___Description_8;
Il2CppChar* ___FriendlyName_9;
uint8_t ___PhysicalAddress_10[8];
uint32_t ___PhysicalAddressLength_11;
uint32_t ___Flags_12;
uint32_t ___Mtu_13;
int32_t ___IfType_14;
int32_t ___OperStatus_15;
int32_t ___Ipv6IfIndex_16;
uint32_t ___ZoneIndices_17[64];
};
// Native definition for COM marshalling of System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES
struct Win32_IP_ADAPTER_ADDRESSES_t3463526328_marshaled_com
{
AlignmentUnion_t208902285 ___Alignment_0;
intptr_t ___Next_1;
char* ___AdapterName_2;
intptr_t ___FirstUnicastAddress_3;
intptr_t ___FirstAnycastAddress_4;
intptr_t ___FirstMulticastAddress_5;
intptr_t ___FirstDnsServerAddress_6;
Il2CppChar* ___DnsSuffix_7;
Il2CppChar* ___Description_8;
Il2CppChar* ___FriendlyName_9;
uint8_t ___PhysicalAddress_10[8];
uint32_t ___PhysicalAddressLength_11;
uint32_t ___Flags_12;
uint32_t ___Mtu_13;
int32_t ___IfType_14;
int32_t ___OperStatus_15;
int32_t ___Ipv6IfIndex_16;
uint32_t ___ZoneIndices_17[64];
};
#endif // WIN32_IP_ADAPTER_ADDRESSES_T3463526328_H
#ifndef MONORESOURCE_T4103430009_H
#define MONORESOURCE_T4103430009_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.MonoResource
struct MonoResource_t4103430009
{
public:
// System.Byte[] System.Reflection.Emit.MonoResource::data
ByteU5BU5D_t4116647657* ___data_0;
// System.String System.Reflection.Emit.MonoResource::name
String_t* ___name_1;
// System.String System.Reflection.Emit.MonoResource::filename
String_t* ___filename_2;
// System.Reflection.ResourceAttributes System.Reflection.Emit.MonoResource::attrs
int32_t ___attrs_3;
// System.Int32 System.Reflection.Emit.MonoResource::offset
int32_t ___offset_4;
// System.IO.Stream System.Reflection.Emit.MonoResource::stream
Stream_t1273022909 * ___stream_5;
public:
inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___data_0)); }
inline ByteU5BU5D_t4116647657* get_data_0() const { return ___data_0; }
inline ByteU5BU5D_t4116647657** get_address_of_data_0() { return &___data_0; }
inline void set_data_0(ByteU5BU5D_t4116647657* value)
{
___data_0 = value;
Il2CppCodeGenWriteBarrier((&___data_0), value);
}
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___name_1)); }
inline String_t* get_name_1() const { return ___name_1; }
inline String_t** get_address_of_name_1() { return &___name_1; }
inline void set_name_1(String_t* value)
{
___name_1 = value;
Il2CppCodeGenWriteBarrier((&___name_1), value);
}
inline static int32_t get_offset_of_filename_2() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___filename_2)); }
inline String_t* get_filename_2() const { return ___filename_2; }
inline String_t** get_address_of_filename_2() { return &___filename_2; }
inline void set_filename_2(String_t* value)
{
___filename_2 = value;
Il2CppCodeGenWriteBarrier((&___filename_2), value);
}
inline static int32_t get_offset_of_attrs_3() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___attrs_3)); }
inline int32_t get_attrs_3() const { return ___attrs_3; }
inline int32_t* get_address_of_attrs_3() { return &___attrs_3; }
inline void set_attrs_3(int32_t value)
{
___attrs_3 = value;
}
inline static int32_t get_offset_of_offset_4() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___offset_4)); }
inline int32_t get_offset_4() const { return ___offset_4; }
inline int32_t* get_address_of_offset_4() { return &___offset_4; }
inline void set_offset_4(int32_t value)
{
___offset_4 = value;
}
inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___stream_5)); }
inline Stream_t1273022909 * get_stream_5() const { return ___stream_5; }
inline Stream_t1273022909 ** get_address_of_stream_5() { return &___stream_5; }
inline void set_stream_5(Stream_t1273022909 * value)
{
___stream_5 = value;
Il2CppCodeGenWriteBarrier((&___stream_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.Emit.MonoResource
struct MonoResource_t4103430009_marshaled_pinvoke
{
uint8_t* ___data_0;
char* ___name_1;
char* ___filename_2;
int32_t ___attrs_3;
int32_t ___offset_4;
Stream_t1273022909 * ___stream_5;
};
// Native definition for COM marshalling of System.Reflection.Emit.MonoResource
struct MonoResource_t4103430009_marshaled_com
{
uint8_t* ___data_0;
Il2CppChar* ___name_1;
Il2CppChar* ___filename_2;
int32_t ___attrs_3;
int32_t ___offset_4;
Stream_t1273022909 * ___stream_5;
};
#endif // MONORESOURCE_T4103430009_H
#ifndef REFEMITPERMISSIONSET_T484390987_H
#define REFEMITPERMISSIONSET_T484390987_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.RefEmitPermissionSet
struct RefEmitPermissionSet_t484390987
{
public:
// System.Security.Permissions.SecurityAction System.Reflection.Emit.RefEmitPermissionSet::action
int32_t ___action_0;
// System.String System.Reflection.Emit.RefEmitPermissionSet::pset
String_t* ___pset_1;
public:
inline static int32_t get_offset_of_action_0() { return static_cast<int32_t>(offsetof(RefEmitPermissionSet_t484390987, ___action_0)); }
inline int32_t get_action_0() const { return ___action_0; }
inline int32_t* get_address_of_action_0() { return &___action_0; }
inline void set_action_0(int32_t value)
{
___action_0 = value;
}
inline static int32_t get_offset_of_pset_1() { return static_cast<int32_t>(offsetof(RefEmitPermissionSet_t484390987, ___pset_1)); }
inline String_t* get_pset_1() const { return ___pset_1; }
inline String_t** get_address_of_pset_1() { return &___pset_1; }
inline void set_pset_1(String_t* value)
{
___pset_1 = value;
Il2CppCodeGenWriteBarrier((&___pset_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.Emit.RefEmitPermissionSet
struct RefEmitPermissionSet_t484390987_marshaled_pinvoke
{
int32_t ___action_0;
char* ___pset_1;
};
// Native definition for COM marshalling of System.Reflection.Emit.RefEmitPermissionSet
struct RefEmitPermissionSet_t484390987_marshaled_com
{
int32_t ___action_0;
Il2CppChar* ___pset_1;
};
#endif // REFEMITPERMISSIONSET_T484390987_H
#ifndef ASYNCTASKMETHODBUILDER_T3536885450_H
#define ASYNCTASKMETHODBUILDER_T3536885450_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder
struct AsyncTaskMethodBuilder_t3536885450
{
public:
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder::m_builder
AsyncTaskMethodBuilder_1_t642595793 ___m_builder_1;
public:
inline static int32_t get_offset_of_m_builder_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_t3536885450, ___m_builder_1)); }
inline AsyncTaskMethodBuilder_1_t642595793 get_m_builder_1() const { return ___m_builder_1; }
inline AsyncTaskMethodBuilder_1_t642595793 * get_address_of_m_builder_1() { return &___m_builder_1; }
inline void set_m_builder_1(AsyncTaskMethodBuilder_1_t642595793 value)
{
___m_builder_1 = value;
}
};
struct AsyncTaskMethodBuilder_t3536885450_StaticFields
{
public:
// System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder::s_cachedCompleted
Task_1_t4022128754 * ___s_cachedCompleted_0;
public:
inline static int32_t get_offset_of_s_cachedCompleted_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_t3536885450_StaticFields, ___s_cachedCompleted_0)); }
inline Task_1_t4022128754 * get_s_cachedCompleted_0() const { return ___s_cachedCompleted_0; }
inline Task_1_t4022128754 ** get_address_of_s_cachedCompleted_0() { return &___s_cachedCompleted_0; }
inline void set_s_cachedCompleted_0(Task_1_t4022128754 * value)
{
___s_cachedCompleted_0 = value;
Il2CppCodeGenWriteBarrier((&___s_cachedCompleted_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncTaskMethodBuilder
struct AsyncTaskMethodBuilder_t3536885450_marshaled_pinvoke
{
AsyncTaskMethodBuilder_1_t642595793 ___m_builder_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncTaskMethodBuilder
struct AsyncTaskMethodBuilder_t3536885450_marshaled_com
{
AsyncTaskMethodBuilder_1_t642595793 ___m_builder_1;
};
#endif // ASYNCTASKMETHODBUILDER_T3536885450_H
#ifndef U3CREADASYNCINTERNALU3ED__34_T2482231463_H
#define U3CREADASYNCINTERNALU3ED__34_T2482231463_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34
struct U3CReadAsyncInternalU3Ed__34_t2482231463
{
public:
// System.Int32 System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32> System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::<>t__builder
AsyncTaskMethodBuilder_1_t976952967 ___U3CU3Et__builder_1;
// System.Security.Cryptography.CryptoStream System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::<>4__this
CryptoStream_t2702504504 * ___U3CU3E4__this_2;
// System.Int32 System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::count
int32_t ___count_3;
// System.Int32 System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::offset
int32_t ___offset_4;
// System.Byte[] System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::buffer
ByteU5BU5D_t4116647657* ___buffer_5;
// System.Threading.CancellationToken System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::cancellationToken
CancellationToken_t784455623 ___cancellationToken_6;
// System.Byte[] System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::<tempInputBuffer>5__1
ByteU5BU5D_t4116647657* ___U3CtempInputBufferU3E5__1_7;
// System.Int32 System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::<currentOutputIndex>5__2
int32_t ___U3CcurrentOutputIndexU3E5__2_8;
// System.Int32 System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::<bytesToDeliver>5__3
int32_t ___U3CbytesToDeliverU3E5__3_9;
// System.Threading.SemaphoreSlim System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::<sem>5__4
SemaphoreSlim_t2974092902 * ___U3CsemU3E5__4_10;
// System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::<>u__1
HopToThreadPoolAwaitable_t810938849 ___U3CU3Eu__1_11;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::<>u__2
ConfiguredTaskAwaiter_t555647845 ___U3CU3Eu__2_12;
// System.Int32 System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::<>7__wrap1
int32_t ___U3CU3E7__wrap1_13;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32> System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::<>u__3
ConfiguredTaskAwaiter_t4273446738 ___U3CU3Eu__3_14;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_1_t976952967 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_1_t976952967 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t976952967 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___U3CU3E4__this_2)); }
inline CryptoStream_t2702504504 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline CryptoStream_t2702504504 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(CryptoStream_t2702504504 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_2), value);
}
inline static int32_t get_offset_of_count_3() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___count_3)); }
inline int32_t get_count_3() const { return ___count_3; }
inline int32_t* get_address_of_count_3() { return &___count_3; }
inline void set_count_3(int32_t value)
{
___count_3 = value;
}
inline static int32_t get_offset_of_offset_4() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___offset_4)); }
inline int32_t get_offset_4() const { return ___offset_4; }
inline int32_t* get_address_of_offset_4() { return &___offset_4; }
inline void set_offset_4(int32_t value)
{
___offset_4 = value;
}
inline static int32_t get_offset_of_buffer_5() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___buffer_5)); }
inline ByteU5BU5D_t4116647657* get_buffer_5() const { return ___buffer_5; }
inline ByteU5BU5D_t4116647657** get_address_of_buffer_5() { return &___buffer_5; }
inline void set_buffer_5(ByteU5BU5D_t4116647657* value)
{
___buffer_5 = value;
Il2CppCodeGenWriteBarrier((&___buffer_5), value);
}
inline static int32_t get_offset_of_cancellationToken_6() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___cancellationToken_6)); }
inline CancellationToken_t784455623 get_cancellationToken_6() const { return ___cancellationToken_6; }
inline CancellationToken_t784455623 * get_address_of_cancellationToken_6() { return &___cancellationToken_6; }
inline void set_cancellationToken_6(CancellationToken_t784455623 value)
{
___cancellationToken_6 = value;
}
inline static int32_t get_offset_of_U3CtempInputBufferU3E5__1_7() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___U3CtempInputBufferU3E5__1_7)); }
inline ByteU5BU5D_t4116647657* get_U3CtempInputBufferU3E5__1_7() const { return ___U3CtempInputBufferU3E5__1_7; }
inline ByteU5BU5D_t4116647657** get_address_of_U3CtempInputBufferU3E5__1_7() { return &___U3CtempInputBufferU3E5__1_7; }
inline void set_U3CtempInputBufferU3E5__1_7(ByteU5BU5D_t4116647657* value)
{
___U3CtempInputBufferU3E5__1_7 = value;
Il2CppCodeGenWriteBarrier((&___U3CtempInputBufferU3E5__1_7), value);
}
inline static int32_t get_offset_of_U3CcurrentOutputIndexU3E5__2_8() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___U3CcurrentOutputIndexU3E5__2_8)); }
inline int32_t get_U3CcurrentOutputIndexU3E5__2_8() const { return ___U3CcurrentOutputIndexU3E5__2_8; }
inline int32_t* get_address_of_U3CcurrentOutputIndexU3E5__2_8() { return &___U3CcurrentOutputIndexU3E5__2_8; }
inline void set_U3CcurrentOutputIndexU3E5__2_8(int32_t value)
{
___U3CcurrentOutputIndexU3E5__2_8 = value;
}
inline static int32_t get_offset_of_U3CbytesToDeliverU3E5__3_9() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___U3CbytesToDeliverU3E5__3_9)); }
inline int32_t get_U3CbytesToDeliverU3E5__3_9() const { return ___U3CbytesToDeliverU3E5__3_9; }
inline int32_t* get_address_of_U3CbytesToDeliverU3E5__3_9() { return &___U3CbytesToDeliverU3E5__3_9; }
inline void set_U3CbytesToDeliverU3E5__3_9(int32_t value)
{
___U3CbytesToDeliverU3E5__3_9 = value;
}
inline static int32_t get_offset_of_U3CsemU3E5__4_10() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___U3CsemU3E5__4_10)); }
inline SemaphoreSlim_t2974092902 * get_U3CsemU3E5__4_10() const { return ___U3CsemU3E5__4_10; }
inline SemaphoreSlim_t2974092902 ** get_address_of_U3CsemU3E5__4_10() { return &___U3CsemU3E5__4_10; }
inline void set_U3CsemU3E5__4_10(SemaphoreSlim_t2974092902 * value)
{
___U3CsemU3E5__4_10 = value;
Il2CppCodeGenWriteBarrier((&___U3CsemU3E5__4_10), value);
}
inline static int32_t get_offset_of_U3CU3Eu__1_11() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___U3CU3Eu__1_11)); }
inline HopToThreadPoolAwaitable_t810938849 get_U3CU3Eu__1_11() const { return ___U3CU3Eu__1_11; }
inline HopToThreadPoolAwaitable_t810938849 * get_address_of_U3CU3Eu__1_11() { return &___U3CU3Eu__1_11; }
inline void set_U3CU3Eu__1_11(HopToThreadPoolAwaitable_t810938849 value)
{
___U3CU3Eu__1_11 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__2_12() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___U3CU3Eu__2_12)); }
inline ConfiguredTaskAwaiter_t555647845 get_U3CU3Eu__2_12() const { return ___U3CU3Eu__2_12; }
inline ConfiguredTaskAwaiter_t555647845 * get_address_of_U3CU3Eu__2_12() { return &___U3CU3Eu__2_12; }
inline void set_U3CU3Eu__2_12(ConfiguredTaskAwaiter_t555647845 value)
{
___U3CU3Eu__2_12 = value;
}
inline static int32_t get_offset_of_U3CU3E7__wrap1_13() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___U3CU3E7__wrap1_13)); }
inline int32_t get_U3CU3E7__wrap1_13() const { return ___U3CU3E7__wrap1_13; }
inline int32_t* get_address_of_U3CU3E7__wrap1_13() { return &___U3CU3E7__wrap1_13; }
inline void set_U3CU3E7__wrap1_13(int32_t value)
{
___U3CU3E7__wrap1_13 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__3_14() { return static_cast<int32_t>(offsetof(U3CReadAsyncInternalU3Ed__34_t2482231463, ___U3CU3Eu__3_14)); }
inline ConfiguredTaskAwaiter_t4273446738 get_U3CU3Eu__3_14() const { return ___U3CU3Eu__3_14; }
inline ConfiguredTaskAwaiter_t4273446738 * get_address_of_U3CU3Eu__3_14() { return &___U3CU3Eu__3_14; }
inline void set_U3CU3Eu__3_14(ConfiguredTaskAwaiter_t4273446738 value)
{
___U3CU3Eu__3_14 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CREADASYNCINTERNALU3ED__34_T2482231463_H
#ifndef X509CHAINSTATUS_T133602714_H
#define X509CHAINSTATUS_T133602714_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509ChainStatus
struct X509ChainStatus_t133602714
{
public:
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags System.Security.Cryptography.X509Certificates.X509ChainStatus::status
int32_t ___status_0;
// System.String System.Security.Cryptography.X509Certificates.X509ChainStatus::info
String_t* ___info_1;
public:
inline static int32_t get_offset_of_status_0() { return static_cast<int32_t>(offsetof(X509ChainStatus_t133602714, ___status_0)); }
inline int32_t get_status_0() const { return ___status_0; }
inline int32_t* get_address_of_status_0() { return &___status_0; }
inline void set_status_0(int32_t value)
{
___status_0 = value;
}
inline static int32_t get_offset_of_info_1() { return static_cast<int32_t>(offsetof(X509ChainStatus_t133602714, ___info_1)); }
inline String_t* get_info_1() const { return ___info_1; }
inline String_t** get_address_of_info_1() { return &___info_1; }
inline void set_info_1(String_t* value)
{
___info_1 = value;
Il2CppCodeGenWriteBarrier((&___info_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus
struct X509ChainStatus_t133602714_marshaled_pinvoke
{
int32_t ___status_0;
char* ___info_1;
};
// Native definition for COM marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus
struct X509ChainStatus_t133602714_marshaled_com
{
int32_t ___status_0;
Il2CppChar* ___info_1;
};
#endif // X509CHAINSTATUS_T133602714_H
#ifndef U3CWAITUNTILCOUNTORTIMEOUTASYNCU3ED__31_T2346442134_H
#define U3CWAITUNTILCOUNTORTIMEOUTASYNCU3ED__31_T2346442134_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31
struct U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134
{
public:
// System.Int32 System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean> System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31::<>t__builder
AsyncTaskMethodBuilder_1_t2418262475 ___U3CU3Et__builder_1;
// System.Threading.CancellationToken System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31::cancellationToken
CancellationToken_t784455623 ___cancellationToken_2;
// System.Threading.SemaphoreSlim/TaskNode System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31::asyncWaiter
TaskNode_t3317994743 * ___asyncWaiter_3;
// System.Int32 System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31::millisecondsTimeout
int32_t ___millisecondsTimeout_4;
// System.Threading.CancellationTokenSource System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31::<cts>5__1
CancellationTokenSource_t540272775 * ___U3CctsU3E5__1_5;
// System.Threading.SemaphoreSlim System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31::<>4__this
SemaphoreSlim_t2974092902 * ___U3CU3E4__this_6;
// System.Object System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31::<>7__wrap1
RuntimeObject * ___U3CU3E7__wrap1_7;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.Task> System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31::<>u__1
ConfiguredTaskAwaiter_t214809001 ___U3CU3Eu__1_8;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean> System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31::<>u__2
ConfiguredTaskAwaiter_t1419788950 ___U3CU3Eu__2_9;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_1_t2418262475 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_1_t2418262475 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t2418262475 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_cancellationToken_2() { return static_cast<int32_t>(offsetof(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134, ___cancellationToken_2)); }
inline CancellationToken_t784455623 get_cancellationToken_2() const { return ___cancellationToken_2; }
inline CancellationToken_t784455623 * get_address_of_cancellationToken_2() { return &___cancellationToken_2; }
inline void set_cancellationToken_2(CancellationToken_t784455623 value)
{
___cancellationToken_2 = value;
}
inline static int32_t get_offset_of_asyncWaiter_3() { return static_cast<int32_t>(offsetof(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134, ___asyncWaiter_3)); }
inline TaskNode_t3317994743 * get_asyncWaiter_3() const { return ___asyncWaiter_3; }
inline TaskNode_t3317994743 ** get_address_of_asyncWaiter_3() { return &___asyncWaiter_3; }
inline void set_asyncWaiter_3(TaskNode_t3317994743 * value)
{
___asyncWaiter_3 = value;
Il2CppCodeGenWriteBarrier((&___asyncWaiter_3), value);
}
inline static int32_t get_offset_of_millisecondsTimeout_4() { return static_cast<int32_t>(offsetof(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134, ___millisecondsTimeout_4)); }
inline int32_t get_millisecondsTimeout_4() const { return ___millisecondsTimeout_4; }
inline int32_t* get_address_of_millisecondsTimeout_4() { return &___millisecondsTimeout_4; }
inline void set_millisecondsTimeout_4(int32_t value)
{
___millisecondsTimeout_4 = value;
}
inline static int32_t get_offset_of_U3CctsU3E5__1_5() { return static_cast<int32_t>(offsetof(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134, ___U3CctsU3E5__1_5)); }
inline CancellationTokenSource_t540272775 * get_U3CctsU3E5__1_5() const { return ___U3CctsU3E5__1_5; }
inline CancellationTokenSource_t540272775 ** get_address_of_U3CctsU3E5__1_5() { return &___U3CctsU3E5__1_5; }
inline void set_U3CctsU3E5__1_5(CancellationTokenSource_t540272775 * value)
{
___U3CctsU3E5__1_5 = value;
Il2CppCodeGenWriteBarrier((&___U3CctsU3E5__1_5), value);
}
inline static int32_t get_offset_of_U3CU3E4__this_6() { return static_cast<int32_t>(offsetof(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134, ___U3CU3E4__this_6)); }
inline SemaphoreSlim_t2974092902 * get_U3CU3E4__this_6() const { return ___U3CU3E4__this_6; }
inline SemaphoreSlim_t2974092902 ** get_address_of_U3CU3E4__this_6() { return &___U3CU3E4__this_6; }
inline void set_U3CU3E4__this_6(SemaphoreSlim_t2974092902 * value)
{
___U3CU3E4__this_6 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_6), value);
}
inline static int32_t get_offset_of_U3CU3E7__wrap1_7() { return static_cast<int32_t>(offsetof(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134, ___U3CU3E7__wrap1_7)); }
inline RuntimeObject * get_U3CU3E7__wrap1_7() const { return ___U3CU3E7__wrap1_7; }
inline RuntimeObject ** get_address_of_U3CU3E7__wrap1_7() { return &___U3CU3E7__wrap1_7; }
inline void set_U3CU3E7__wrap1_7(RuntimeObject * value)
{
___U3CU3E7__wrap1_7 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E7__wrap1_7), value);
}
inline static int32_t get_offset_of_U3CU3Eu__1_8() { return static_cast<int32_t>(offsetof(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134, ___U3CU3Eu__1_8)); }
inline ConfiguredTaskAwaiter_t214809001 get_U3CU3Eu__1_8() const { return ___U3CU3Eu__1_8; }
inline ConfiguredTaskAwaiter_t214809001 * get_address_of_U3CU3Eu__1_8() { return &___U3CU3Eu__1_8; }
inline void set_U3CU3Eu__1_8(ConfiguredTaskAwaiter_t214809001 value)
{
___U3CU3Eu__1_8 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__2_9() { return static_cast<int32_t>(offsetof(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134, ___U3CU3Eu__2_9)); }
inline ConfiguredTaskAwaiter_t1419788950 get_U3CU3Eu__2_9() const { return ___U3CU3Eu__2_9; }
inline ConfiguredTaskAwaiter_t1419788950 * get_address_of_U3CU3Eu__2_9() { return &___U3CU3Eu__2_9; }
inline void set_U3CU3Eu__2_9(ConfiguredTaskAwaiter_t1419788950 value)
{
___U3CU3Eu__2_9 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CWAITUNTILCOUNTORTIMEOUTASYNCU3ED__31_T2346442134_H
#ifndef TASK_1_T1502828140_H
#define TASK_1_T1502828140_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Boolean>
struct Task_1_t1502828140 : public Task_t3187275312
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
bool ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t1502828140, ___m_result_22)); }
inline bool get_m_result_22() const { return ___m_result_22; }
inline bool* get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(bool value)
{
___m_result_22 = value;
}
};
struct Task_1_t1502828140_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t156716511 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t1314258023 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t1502828140_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t156716511 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t156716511 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t156716511 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t1502828140_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t1314258023 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t1314258023 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t1314258023 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T1502828140_H
#ifndef TASK_1_T61518632_H
#define TASK_1_T61518632_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t61518632 : public Task_t3187275312
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
int32_t ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t61518632, ___m_result_22)); }
inline int32_t get_m_result_22() const { return ___m_result_22; }
inline int32_t* get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(int32_t value)
{
___m_result_22 = value;
}
};
struct Task_1_t61518632_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t3010374299 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t4167915811 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t61518632_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t3010374299 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t3010374299 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t3010374299 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t61518632_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t4167915811 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t4167915811 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t4167915811 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T61518632_H
#ifndef TASK_1_T1784080714_H
#define TASK_1_T1784080714_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>
struct Task_1_t1784080714 : public Task_t3187275312
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
Nullable_1_t378540539 ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t1784080714, ___m_result_22)); }
inline Nullable_1_t378540539 get_m_result_22() const { return ___m_result_22; }
inline Nullable_1_t378540539 * get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(Nullable_1_t378540539 value)
{
___m_result_22 = value;
}
};
struct Task_1_t1784080714_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t437969085 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t1595510597 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t1784080714_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t437969085 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t437969085 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t437969085 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t1784080714_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t1595510597 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t1595510597 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t1595510597 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T1784080714_H
#ifndef TASK_1_T190679043_H
#define TASK_1_T190679043_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Object>
struct Task_1_t190679043 : public Task_t3187275312
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
RuntimeObject * ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t190679043, ___m_result_22)); }
inline RuntimeObject * get_m_result_22() const { return ___m_result_22; }
inline RuntimeObject ** get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(RuntimeObject * value)
{
___m_result_22 = value;
Il2CppCodeGenWriteBarrier((&___m_result_22), value);
}
};
struct Task_1_t190679043_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t3139534710 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t2108926 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t190679043_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t3139534710 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t3139534710 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t3139534710 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t190679043_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t2108926 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t2108926 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t2108926 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T190679043_H
#ifndef TASK_1_T4022128754_H
#define TASK_1_T4022128754_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>
struct Task_1_t4022128754 : public Task_t3187275312
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
VoidTaskResult_t2616588579 ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t4022128754, ___m_result_22)); }
inline VoidTaskResult_t2616588579 get_m_result_22() const { return ___m_result_22; }
inline VoidTaskResult_t2616588579 * get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(VoidTaskResult_t2616588579 value)
{
___m_result_22 = value;
}
};
struct Task_1_t4022128754_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t2676017125 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t3833558637 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t4022128754_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t2676017125 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t2676017125 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t2676017125 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t4022128754_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t3833558637 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t3833558637 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t3833558637 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T4022128754_H
#ifndef TYPE_T_H
#define TYPE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t3027515415 ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t3027515415 get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t3027515415 * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t3027515415 value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t426314064 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t426314064 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t426314064 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t3940880105* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t2999457153 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t426314064 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t426314064 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t426314064 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((&___FilterAttribute_0), value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t426314064 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t426314064 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t426314064 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((&___FilterName_1), value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t426314064 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t426314064 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t426314064 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_2), value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((&___Missing_3), value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t3940880105* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t3940880105** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t3940880105* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((&___EmptyTypes_5), value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t2999457153 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t2999457153 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t2999457153 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((&___defaultBinder_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPE_T_H
#ifndef XMLBASECONVERTER_T885945787_H
#define XMLBASECONVERTER_T885945787_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.Schema.XmlBaseConverter
struct XmlBaseConverter_t885945787 : public XmlValueConverter_t585560190
{
public:
// System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlBaseConverter::schemaType
XmlSchemaType_t2033747345 * ___schemaType_0;
// System.Xml.Schema.XmlTypeCode System.Xml.Schema.XmlBaseConverter::typeCode
int32_t ___typeCode_1;
// System.Type System.Xml.Schema.XmlBaseConverter::clrTypeDefault
Type_t * ___clrTypeDefault_2;
public:
inline static int32_t get_offset_of_schemaType_0() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787, ___schemaType_0)); }
inline XmlSchemaType_t2033747345 * get_schemaType_0() const { return ___schemaType_0; }
inline XmlSchemaType_t2033747345 ** get_address_of_schemaType_0() { return &___schemaType_0; }
inline void set_schemaType_0(XmlSchemaType_t2033747345 * value)
{
___schemaType_0 = value;
Il2CppCodeGenWriteBarrier((&___schemaType_0), value);
}
inline static int32_t get_offset_of_typeCode_1() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787, ___typeCode_1)); }
inline int32_t get_typeCode_1() const { return ___typeCode_1; }
inline int32_t* get_address_of_typeCode_1() { return &___typeCode_1; }
inline void set_typeCode_1(int32_t value)
{
___typeCode_1 = value;
}
inline static int32_t get_offset_of_clrTypeDefault_2() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787, ___clrTypeDefault_2)); }
inline Type_t * get_clrTypeDefault_2() const { return ___clrTypeDefault_2; }
inline Type_t ** get_address_of_clrTypeDefault_2() { return &___clrTypeDefault_2; }
inline void set_clrTypeDefault_2(Type_t * value)
{
___clrTypeDefault_2 = value;
Il2CppCodeGenWriteBarrier((&___clrTypeDefault_2), value);
}
};
struct XmlBaseConverter_t885945787_StaticFields
{
public:
// System.Type System.Xml.Schema.XmlBaseConverter::ICollectionType
Type_t * ___ICollectionType_3;
// System.Type System.Xml.Schema.XmlBaseConverter::IEnumerableType
Type_t * ___IEnumerableType_4;
// System.Type System.Xml.Schema.XmlBaseConverter::IListType
Type_t * ___IListType_5;
// System.Type System.Xml.Schema.XmlBaseConverter::ObjectArrayType
Type_t * ___ObjectArrayType_6;
// System.Type System.Xml.Schema.XmlBaseConverter::StringArrayType
Type_t * ___StringArrayType_7;
// System.Type System.Xml.Schema.XmlBaseConverter::XmlAtomicValueArrayType
Type_t * ___XmlAtomicValueArrayType_8;
// System.Type System.Xml.Schema.XmlBaseConverter::DecimalType
Type_t * ___DecimalType_9;
// System.Type System.Xml.Schema.XmlBaseConverter::Int32Type
Type_t * ___Int32Type_10;
// System.Type System.Xml.Schema.XmlBaseConverter::Int64Type
Type_t * ___Int64Type_11;
// System.Type System.Xml.Schema.XmlBaseConverter::StringType
Type_t * ___StringType_12;
// System.Type System.Xml.Schema.XmlBaseConverter::XmlAtomicValueType
Type_t * ___XmlAtomicValueType_13;
// System.Type System.Xml.Schema.XmlBaseConverter::ObjectType
Type_t * ___ObjectType_14;
// System.Type System.Xml.Schema.XmlBaseConverter::ByteType
Type_t * ___ByteType_15;
// System.Type System.Xml.Schema.XmlBaseConverter::Int16Type
Type_t * ___Int16Type_16;
// System.Type System.Xml.Schema.XmlBaseConverter::SByteType
Type_t * ___SByteType_17;
// System.Type System.Xml.Schema.XmlBaseConverter::UInt16Type
Type_t * ___UInt16Type_18;
// System.Type System.Xml.Schema.XmlBaseConverter::UInt32Type
Type_t * ___UInt32Type_19;
// System.Type System.Xml.Schema.XmlBaseConverter::UInt64Type
Type_t * ___UInt64Type_20;
// System.Type System.Xml.Schema.XmlBaseConverter::XPathItemType
Type_t * ___XPathItemType_21;
// System.Type System.Xml.Schema.XmlBaseConverter::DoubleType
Type_t * ___DoubleType_22;
// System.Type System.Xml.Schema.XmlBaseConverter::SingleType
Type_t * ___SingleType_23;
// System.Type System.Xml.Schema.XmlBaseConverter::DateTimeType
Type_t * ___DateTimeType_24;
// System.Type System.Xml.Schema.XmlBaseConverter::DateTimeOffsetType
Type_t * ___DateTimeOffsetType_25;
// System.Type System.Xml.Schema.XmlBaseConverter::BooleanType
Type_t * ___BooleanType_26;
// System.Type System.Xml.Schema.XmlBaseConverter::ByteArrayType
Type_t * ___ByteArrayType_27;
// System.Type System.Xml.Schema.XmlBaseConverter::XmlQualifiedNameType
Type_t * ___XmlQualifiedNameType_28;
// System.Type System.Xml.Schema.XmlBaseConverter::UriType
Type_t * ___UriType_29;
// System.Type System.Xml.Schema.XmlBaseConverter::TimeSpanType
Type_t * ___TimeSpanType_30;
// System.Type System.Xml.Schema.XmlBaseConverter::XPathNavigatorType
Type_t * ___XPathNavigatorType_31;
public:
inline static int32_t get_offset_of_ICollectionType_3() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___ICollectionType_3)); }
inline Type_t * get_ICollectionType_3() const { return ___ICollectionType_3; }
inline Type_t ** get_address_of_ICollectionType_3() { return &___ICollectionType_3; }
inline void set_ICollectionType_3(Type_t * value)
{
___ICollectionType_3 = value;
Il2CppCodeGenWriteBarrier((&___ICollectionType_3), value);
}
inline static int32_t get_offset_of_IEnumerableType_4() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___IEnumerableType_4)); }
inline Type_t * get_IEnumerableType_4() const { return ___IEnumerableType_4; }
inline Type_t ** get_address_of_IEnumerableType_4() { return &___IEnumerableType_4; }
inline void set_IEnumerableType_4(Type_t * value)
{
___IEnumerableType_4 = value;
Il2CppCodeGenWriteBarrier((&___IEnumerableType_4), value);
}
inline static int32_t get_offset_of_IListType_5() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___IListType_5)); }
inline Type_t * get_IListType_5() const { return ___IListType_5; }
inline Type_t ** get_address_of_IListType_5() { return &___IListType_5; }
inline void set_IListType_5(Type_t * value)
{
___IListType_5 = value;
Il2CppCodeGenWriteBarrier((&___IListType_5), value);
}
inline static int32_t get_offset_of_ObjectArrayType_6() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___ObjectArrayType_6)); }
inline Type_t * get_ObjectArrayType_6() const { return ___ObjectArrayType_6; }
inline Type_t ** get_address_of_ObjectArrayType_6() { return &___ObjectArrayType_6; }
inline void set_ObjectArrayType_6(Type_t * value)
{
___ObjectArrayType_6 = value;
Il2CppCodeGenWriteBarrier((&___ObjectArrayType_6), value);
}
inline static int32_t get_offset_of_StringArrayType_7() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___StringArrayType_7)); }
inline Type_t * get_StringArrayType_7() const { return ___StringArrayType_7; }
inline Type_t ** get_address_of_StringArrayType_7() { return &___StringArrayType_7; }
inline void set_StringArrayType_7(Type_t * value)
{
___StringArrayType_7 = value;
Il2CppCodeGenWriteBarrier((&___StringArrayType_7), value);
}
inline static int32_t get_offset_of_XmlAtomicValueArrayType_8() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___XmlAtomicValueArrayType_8)); }
inline Type_t * get_XmlAtomicValueArrayType_8() const { return ___XmlAtomicValueArrayType_8; }
inline Type_t ** get_address_of_XmlAtomicValueArrayType_8() { return &___XmlAtomicValueArrayType_8; }
inline void set_XmlAtomicValueArrayType_8(Type_t * value)
{
___XmlAtomicValueArrayType_8 = value;
Il2CppCodeGenWriteBarrier((&___XmlAtomicValueArrayType_8), value);
}
inline static int32_t get_offset_of_DecimalType_9() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___DecimalType_9)); }
inline Type_t * get_DecimalType_9() const { return ___DecimalType_9; }
inline Type_t ** get_address_of_DecimalType_9() { return &___DecimalType_9; }
inline void set_DecimalType_9(Type_t * value)
{
___DecimalType_9 = value;
Il2CppCodeGenWriteBarrier((&___DecimalType_9), value);
}
inline static int32_t get_offset_of_Int32Type_10() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___Int32Type_10)); }
inline Type_t * get_Int32Type_10() const { return ___Int32Type_10; }
inline Type_t ** get_address_of_Int32Type_10() { return &___Int32Type_10; }
inline void set_Int32Type_10(Type_t * value)
{
___Int32Type_10 = value;
Il2CppCodeGenWriteBarrier((&___Int32Type_10), value);
}
inline static int32_t get_offset_of_Int64Type_11() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___Int64Type_11)); }
inline Type_t * get_Int64Type_11() const { return ___Int64Type_11; }
inline Type_t ** get_address_of_Int64Type_11() { return &___Int64Type_11; }
inline void set_Int64Type_11(Type_t * value)
{
___Int64Type_11 = value;
Il2CppCodeGenWriteBarrier((&___Int64Type_11), value);
}
inline static int32_t get_offset_of_StringType_12() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___StringType_12)); }
inline Type_t * get_StringType_12() const { return ___StringType_12; }
inline Type_t ** get_address_of_StringType_12() { return &___StringType_12; }
inline void set_StringType_12(Type_t * value)
{
___StringType_12 = value;
Il2CppCodeGenWriteBarrier((&___StringType_12), value);
}
inline static int32_t get_offset_of_XmlAtomicValueType_13() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___XmlAtomicValueType_13)); }
inline Type_t * get_XmlAtomicValueType_13() const { return ___XmlAtomicValueType_13; }
inline Type_t ** get_address_of_XmlAtomicValueType_13() { return &___XmlAtomicValueType_13; }
inline void set_XmlAtomicValueType_13(Type_t * value)
{
___XmlAtomicValueType_13 = value;
Il2CppCodeGenWriteBarrier((&___XmlAtomicValueType_13), value);
}
inline static int32_t get_offset_of_ObjectType_14() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___ObjectType_14)); }
inline Type_t * get_ObjectType_14() const { return ___ObjectType_14; }
inline Type_t ** get_address_of_ObjectType_14() { return &___ObjectType_14; }
inline void set_ObjectType_14(Type_t * value)
{
___ObjectType_14 = value;
Il2CppCodeGenWriteBarrier((&___ObjectType_14), value);
}
inline static int32_t get_offset_of_ByteType_15() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___ByteType_15)); }
inline Type_t * get_ByteType_15() const { return ___ByteType_15; }
inline Type_t ** get_address_of_ByteType_15() { return &___ByteType_15; }
inline void set_ByteType_15(Type_t * value)
{
___ByteType_15 = value;
Il2CppCodeGenWriteBarrier((&___ByteType_15), value);
}
inline static int32_t get_offset_of_Int16Type_16() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___Int16Type_16)); }
inline Type_t * get_Int16Type_16() const { return ___Int16Type_16; }
inline Type_t ** get_address_of_Int16Type_16() { return &___Int16Type_16; }
inline void set_Int16Type_16(Type_t * value)
{
___Int16Type_16 = value;
Il2CppCodeGenWriteBarrier((&___Int16Type_16), value);
}
inline static int32_t get_offset_of_SByteType_17() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___SByteType_17)); }
inline Type_t * get_SByteType_17() const { return ___SByteType_17; }
inline Type_t ** get_address_of_SByteType_17() { return &___SByteType_17; }
inline void set_SByteType_17(Type_t * value)
{
___SByteType_17 = value;
Il2CppCodeGenWriteBarrier((&___SByteType_17), value);
}
inline static int32_t get_offset_of_UInt16Type_18() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___UInt16Type_18)); }
inline Type_t * get_UInt16Type_18() const { return ___UInt16Type_18; }
inline Type_t ** get_address_of_UInt16Type_18() { return &___UInt16Type_18; }
inline void set_UInt16Type_18(Type_t * value)
{
___UInt16Type_18 = value;
Il2CppCodeGenWriteBarrier((&___UInt16Type_18), value);
}
inline static int32_t get_offset_of_UInt32Type_19() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___UInt32Type_19)); }
inline Type_t * get_UInt32Type_19() const { return ___UInt32Type_19; }
inline Type_t ** get_address_of_UInt32Type_19() { return &___UInt32Type_19; }
inline void set_UInt32Type_19(Type_t * value)
{
___UInt32Type_19 = value;
Il2CppCodeGenWriteBarrier((&___UInt32Type_19), value);
}
inline static int32_t get_offset_of_UInt64Type_20() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___UInt64Type_20)); }
inline Type_t * get_UInt64Type_20() const { return ___UInt64Type_20; }
inline Type_t ** get_address_of_UInt64Type_20() { return &___UInt64Type_20; }
inline void set_UInt64Type_20(Type_t * value)
{
___UInt64Type_20 = value;
Il2CppCodeGenWriteBarrier((&___UInt64Type_20), value);
}
inline static int32_t get_offset_of_XPathItemType_21() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___XPathItemType_21)); }
inline Type_t * get_XPathItemType_21() const { return ___XPathItemType_21; }
inline Type_t ** get_address_of_XPathItemType_21() { return &___XPathItemType_21; }
inline void set_XPathItemType_21(Type_t * value)
{
___XPathItemType_21 = value;
Il2CppCodeGenWriteBarrier((&___XPathItemType_21), value);
}
inline static int32_t get_offset_of_DoubleType_22() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___DoubleType_22)); }
inline Type_t * get_DoubleType_22() const { return ___DoubleType_22; }
inline Type_t ** get_address_of_DoubleType_22() { return &___DoubleType_22; }
inline void set_DoubleType_22(Type_t * value)
{
___DoubleType_22 = value;
Il2CppCodeGenWriteBarrier((&___DoubleType_22), value);
}
inline static int32_t get_offset_of_SingleType_23() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___SingleType_23)); }
inline Type_t * get_SingleType_23() const { return ___SingleType_23; }
inline Type_t ** get_address_of_SingleType_23() { return &___SingleType_23; }
inline void set_SingleType_23(Type_t * value)
{
___SingleType_23 = value;
Il2CppCodeGenWriteBarrier((&___SingleType_23), value);
}
inline static int32_t get_offset_of_DateTimeType_24() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___DateTimeType_24)); }
inline Type_t * get_DateTimeType_24() const { return ___DateTimeType_24; }
inline Type_t ** get_address_of_DateTimeType_24() { return &___DateTimeType_24; }
inline void set_DateTimeType_24(Type_t * value)
{
___DateTimeType_24 = value;
Il2CppCodeGenWriteBarrier((&___DateTimeType_24), value);
}
inline static int32_t get_offset_of_DateTimeOffsetType_25() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___DateTimeOffsetType_25)); }
inline Type_t * get_DateTimeOffsetType_25() const { return ___DateTimeOffsetType_25; }
inline Type_t ** get_address_of_DateTimeOffsetType_25() { return &___DateTimeOffsetType_25; }
inline void set_DateTimeOffsetType_25(Type_t * value)
{
___DateTimeOffsetType_25 = value;
Il2CppCodeGenWriteBarrier((&___DateTimeOffsetType_25), value);
}
inline static int32_t get_offset_of_BooleanType_26() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___BooleanType_26)); }
inline Type_t * get_BooleanType_26() const { return ___BooleanType_26; }
inline Type_t ** get_address_of_BooleanType_26() { return &___BooleanType_26; }
inline void set_BooleanType_26(Type_t * value)
{
___BooleanType_26 = value;
Il2CppCodeGenWriteBarrier((&___BooleanType_26), value);
}
inline static int32_t get_offset_of_ByteArrayType_27() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___ByteArrayType_27)); }
inline Type_t * get_ByteArrayType_27() const { return ___ByteArrayType_27; }
inline Type_t ** get_address_of_ByteArrayType_27() { return &___ByteArrayType_27; }
inline void set_ByteArrayType_27(Type_t * value)
{
___ByteArrayType_27 = value;
Il2CppCodeGenWriteBarrier((&___ByteArrayType_27), value);
}
inline static int32_t get_offset_of_XmlQualifiedNameType_28() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___XmlQualifiedNameType_28)); }
inline Type_t * get_XmlQualifiedNameType_28() const { return ___XmlQualifiedNameType_28; }
inline Type_t ** get_address_of_XmlQualifiedNameType_28() { return &___XmlQualifiedNameType_28; }
inline void set_XmlQualifiedNameType_28(Type_t * value)
{
___XmlQualifiedNameType_28 = value;
Il2CppCodeGenWriteBarrier((&___XmlQualifiedNameType_28), value);
}
inline static int32_t get_offset_of_UriType_29() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___UriType_29)); }
inline Type_t * get_UriType_29() const { return ___UriType_29; }
inline Type_t ** get_address_of_UriType_29() { return &___UriType_29; }
inline void set_UriType_29(Type_t * value)
{
___UriType_29 = value;
Il2CppCodeGenWriteBarrier((&___UriType_29), value);
}
inline static int32_t get_offset_of_TimeSpanType_30() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___TimeSpanType_30)); }
inline Type_t * get_TimeSpanType_30() const { return ___TimeSpanType_30; }
inline Type_t ** get_address_of_TimeSpanType_30() { return &___TimeSpanType_30; }
inline void set_TimeSpanType_30(Type_t * value)
{
___TimeSpanType_30 = value;
Il2CppCodeGenWriteBarrier((&___TimeSpanType_30), value);
}
inline static int32_t get_offset_of_XPathNavigatorType_31() { return static_cast<int32_t>(offsetof(XmlBaseConverter_t885945787_StaticFields, ___XPathNavigatorType_31)); }
inline Type_t * get_XPathNavigatorType_31() const { return ___XPathNavigatorType_31; }
inline Type_t ** get_address_of_XPathNavigatorType_31() { return &___XPathNavigatorType_31; }
inline void set_XPathNavigatorType_31(Type_t * value)
{
___XPathNavigatorType_31 = value;
Il2CppCodeGenWriteBarrier((&___XPathNavigatorType_31), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // XMLBASECONVERTER_T885945787_H
#ifndef U3CGETNONFILESTREAMASYNCU3ED__5_T2377854191_H
#define U3CGETNONFILESTREAMASYNCU3ED__5_T2377854191_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5
struct U3CGetNonFileStreamAsyncU3Ed__5_t2377854191
{
public:
// System.Int32 System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.IO.Stream> System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5::<>t__builder
AsyncTaskMethodBuilder_1_t3593997419 ___U3CU3Et__builder_1;
// System.Uri System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5::uri
Uri_t100236324 * ___uri_2;
// System.Net.ICredentials System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5::credentials
RuntimeObject* ___credentials_3;
// System.Net.IWebProxy System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5::proxy
RuntimeObject* ___proxy_4;
// System.Net.Cache.RequestCachePolicy System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5::cachePolicy
RequestCachePolicy_t2923596909 * ___cachePolicy_5;
// System.Net.WebRequest System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5::<req>5__1
WebRequest_t1939381076 * ___U3CreqU3E5__1_6;
// System.Xml.XmlDownloadManager System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5::<>4__this
XmlDownloadManager_t2540579765 * ___U3CU3E4__this_7;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Net.WebResponse> System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5::<>u__1
ConfiguredTaskAwaiter_t1552423624 ___U3CU3Eu__1_8;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t2377854191, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t2377854191, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_1_t3593997419 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_1_t3593997419 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t3593997419 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_uri_2() { return static_cast<int32_t>(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t2377854191, ___uri_2)); }
inline Uri_t100236324 * get_uri_2() const { return ___uri_2; }
inline Uri_t100236324 ** get_address_of_uri_2() { return &___uri_2; }
inline void set_uri_2(Uri_t100236324 * value)
{
___uri_2 = value;
Il2CppCodeGenWriteBarrier((&___uri_2), value);
}
inline static int32_t get_offset_of_credentials_3() { return static_cast<int32_t>(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t2377854191, ___credentials_3)); }
inline RuntimeObject* get_credentials_3() const { return ___credentials_3; }
inline RuntimeObject** get_address_of_credentials_3() { return &___credentials_3; }
inline void set_credentials_3(RuntimeObject* value)
{
___credentials_3 = value;
Il2CppCodeGenWriteBarrier((&___credentials_3), value);
}
inline static int32_t get_offset_of_proxy_4() { return static_cast<int32_t>(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t2377854191, ___proxy_4)); }
inline RuntimeObject* get_proxy_4() const { return ___proxy_4; }
inline RuntimeObject** get_address_of_proxy_4() { return &___proxy_4; }
inline void set_proxy_4(RuntimeObject* value)
{
___proxy_4 = value;
Il2CppCodeGenWriteBarrier((&___proxy_4), value);
}
inline static int32_t get_offset_of_cachePolicy_5() { return static_cast<int32_t>(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t2377854191, ___cachePolicy_5)); }
inline RequestCachePolicy_t2923596909 * get_cachePolicy_5() const { return ___cachePolicy_5; }
inline RequestCachePolicy_t2923596909 ** get_address_of_cachePolicy_5() { return &___cachePolicy_5; }
inline void set_cachePolicy_5(RequestCachePolicy_t2923596909 * value)
{
___cachePolicy_5 = value;
Il2CppCodeGenWriteBarrier((&___cachePolicy_5), value);
}
inline static int32_t get_offset_of_U3CreqU3E5__1_6() { return static_cast<int32_t>(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t2377854191, ___U3CreqU3E5__1_6)); }
inline WebRequest_t1939381076 * get_U3CreqU3E5__1_6() const { return ___U3CreqU3E5__1_6; }
inline WebRequest_t1939381076 ** get_address_of_U3CreqU3E5__1_6() { return &___U3CreqU3E5__1_6; }
inline void set_U3CreqU3E5__1_6(WebRequest_t1939381076 * value)
{
___U3CreqU3E5__1_6 = value;
Il2CppCodeGenWriteBarrier((&___U3CreqU3E5__1_6), value);
}
inline static int32_t get_offset_of_U3CU3E4__this_7() { return static_cast<int32_t>(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t2377854191, ___U3CU3E4__this_7)); }
inline XmlDownloadManager_t2540579765 * get_U3CU3E4__this_7() const { return ___U3CU3E4__this_7; }
inline XmlDownloadManager_t2540579765 ** get_address_of_U3CU3E4__this_7() { return &___U3CU3E4__this_7; }
inline void set_U3CU3E4__this_7(XmlDownloadManager_t2540579765 * value)
{
___U3CU3E4__this_7 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_7), value);
}
inline static int32_t get_offset_of_U3CU3Eu__1_8() { return static_cast<int32_t>(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t2377854191, ___U3CU3Eu__1_8)); }
inline ConfiguredTaskAwaiter_t1552423624 get_U3CU3Eu__1_8() const { return ___U3CU3Eu__1_8; }
inline ConfiguredTaskAwaiter_t1552423624 * get_address_of_U3CU3Eu__1_8() { return &___U3CU3Eu__1_8; }
inline void set_U3CU3Eu__1_8(ConfiguredTaskAwaiter_t1552423624 value)
{
___U3CU3Eu__1_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CGETNONFILESTREAMASYNCU3ED__5_T2377854191_H
#ifndef TAGINFO_T3526638417_H
#define TAGINFO_T3526638417_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlTextWriter/TagInfo
struct TagInfo_t3526638417
{
public:
// System.String System.Xml.XmlTextWriter/TagInfo::name
String_t* ___name_0;
// System.String System.Xml.XmlTextWriter/TagInfo::prefix
String_t* ___prefix_1;
// System.String System.Xml.XmlTextWriter/TagInfo::defaultNs
String_t* ___defaultNs_2;
// System.Xml.XmlTextWriter/NamespaceState System.Xml.XmlTextWriter/TagInfo::defaultNsState
int32_t ___defaultNsState_3;
// System.Xml.XmlSpace System.Xml.XmlTextWriter/TagInfo::xmlSpace
int32_t ___xmlSpace_4;
// System.String System.Xml.XmlTextWriter/TagInfo::xmlLang
String_t* ___xmlLang_5;
// System.Int32 System.Xml.XmlTextWriter/TagInfo::prevNsTop
int32_t ___prevNsTop_6;
// System.Int32 System.Xml.XmlTextWriter/TagInfo::prefixCount
int32_t ___prefixCount_7;
// System.Boolean System.Xml.XmlTextWriter/TagInfo::mixed
bool ___mixed_8;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
inline static int32_t get_offset_of_prefix_1() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___prefix_1)); }
inline String_t* get_prefix_1() const { return ___prefix_1; }
inline String_t** get_address_of_prefix_1() { return &___prefix_1; }
inline void set_prefix_1(String_t* value)
{
___prefix_1 = value;
Il2CppCodeGenWriteBarrier((&___prefix_1), value);
}
inline static int32_t get_offset_of_defaultNs_2() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___defaultNs_2)); }
inline String_t* get_defaultNs_2() const { return ___defaultNs_2; }
inline String_t** get_address_of_defaultNs_2() { return &___defaultNs_2; }
inline void set_defaultNs_2(String_t* value)
{
___defaultNs_2 = value;
Il2CppCodeGenWriteBarrier((&___defaultNs_2), value);
}
inline static int32_t get_offset_of_defaultNsState_3() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___defaultNsState_3)); }
inline int32_t get_defaultNsState_3() const { return ___defaultNsState_3; }
inline int32_t* get_address_of_defaultNsState_3() { return &___defaultNsState_3; }
inline void set_defaultNsState_3(int32_t value)
{
___defaultNsState_3 = value;
}
inline static int32_t get_offset_of_xmlSpace_4() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___xmlSpace_4)); }
inline int32_t get_xmlSpace_4() const { return ___xmlSpace_4; }
inline int32_t* get_address_of_xmlSpace_4() { return &___xmlSpace_4; }
inline void set_xmlSpace_4(int32_t value)
{
___xmlSpace_4 = value;
}
inline static int32_t get_offset_of_xmlLang_5() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___xmlLang_5)); }
inline String_t* get_xmlLang_5() const { return ___xmlLang_5; }
inline String_t** get_address_of_xmlLang_5() { return &___xmlLang_5; }
inline void set_xmlLang_5(String_t* value)
{
___xmlLang_5 = value;
Il2CppCodeGenWriteBarrier((&___xmlLang_5), value);
}
inline static int32_t get_offset_of_prevNsTop_6() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___prevNsTop_6)); }
inline int32_t get_prevNsTop_6() const { return ___prevNsTop_6; }
inline int32_t* get_address_of_prevNsTop_6() { return &___prevNsTop_6; }
inline void set_prevNsTop_6(int32_t value)
{
___prevNsTop_6 = value;
}
inline static int32_t get_offset_of_prefixCount_7() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___prefixCount_7)); }
inline int32_t get_prefixCount_7() const { return ___prefixCount_7; }
inline int32_t* get_address_of_prefixCount_7() { return &___prefixCount_7; }
inline void set_prefixCount_7(int32_t value)
{
___prefixCount_7 = value;
}
inline static int32_t get_offset_of_mixed_8() { return static_cast<int32_t>(offsetof(TagInfo_t3526638417, ___mixed_8)); }
inline bool get_mixed_8() const { return ___mixed_8; }
inline bool* get_address_of_mixed_8() { return &___mixed_8; }
inline void set_mixed_8(bool value)
{
___mixed_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Xml.XmlTextWriter/TagInfo
struct TagInfo_t3526638417_marshaled_pinvoke
{
char* ___name_0;
char* ___prefix_1;
char* ___defaultNs_2;
int32_t ___defaultNsState_3;
int32_t ___xmlSpace_4;
char* ___xmlLang_5;
int32_t ___prevNsTop_6;
int32_t ___prefixCount_7;
int32_t ___mixed_8;
};
// Native definition for COM marshalling of System.Xml.XmlTextWriter/TagInfo
struct TagInfo_t3526638417_marshaled_com
{
Il2CppChar* ___name_0;
Il2CppChar* ___prefix_1;
Il2CppChar* ___defaultNs_2;
int32_t ___defaultNsState_3;
int32_t ___xmlSpace_4;
Il2CppChar* ___xmlLang_5;
int32_t ___prevNsTop_6;
int32_t ___prefixCount_7;
int32_t ___mixed_8;
};
#endif // TAGINFO_T3526638417_H
#ifndef U3CGETENTITYASYNCU3ED__15_T1599719825_H
#define U3CGETENTITYASYNCU3ED__15_T1599719825_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlUrlResolver/<GetEntityAsync>d__15
struct U3CGetEntityAsyncU3Ed__15_t1599719825
{
public:
// System.Int32 System.Xml.XmlUrlResolver/<GetEntityAsync>d__15::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object> System.Xml.XmlUrlResolver/<GetEntityAsync>d__15::<>t__builder
AsyncTaskMethodBuilder_1_t1106113378 ___U3CU3Et__builder_1;
// System.Type System.Xml.XmlUrlResolver/<GetEntityAsync>d__15::ofObjectToReturn
Type_t * ___ofObjectToReturn_2;
// System.Uri System.Xml.XmlUrlResolver/<GetEntityAsync>d__15::absoluteUri
Uri_t100236324 * ___absoluteUri_3;
// System.Xml.XmlUrlResolver System.Xml.XmlUrlResolver/<GetEntityAsync>d__15::<>4__this
XmlUrlResolver_t817895037 * ___U3CU3E4__this_4;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.IO.Stream> System.Xml.XmlUrlResolver/<GetEntityAsync>d__15::<>u__1
ConfiguredTaskAwaiter_t2595523894 ___U3CU3Eu__1_5;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEntityAsyncU3Ed__15_t1599719825, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CGetEntityAsyncU3Ed__15_t1599719825, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_1_t1106113378 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_1_t1106113378 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t1106113378 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_ofObjectToReturn_2() { return static_cast<int32_t>(offsetof(U3CGetEntityAsyncU3Ed__15_t1599719825, ___ofObjectToReturn_2)); }
inline Type_t * get_ofObjectToReturn_2() const { return ___ofObjectToReturn_2; }
inline Type_t ** get_address_of_ofObjectToReturn_2() { return &___ofObjectToReturn_2; }
inline void set_ofObjectToReturn_2(Type_t * value)
{
___ofObjectToReturn_2 = value;
Il2CppCodeGenWriteBarrier((&___ofObjectToReturn_2), value);
}
inline static int32_t get_offset_of_absoluteUri_3() { return static_cast<int32_t>(offsetof(U3CGetEntityAsyncU3Ed__15_t1599719825, ___absoluteUri_3)); }
inline Uri_t100236324 * get_absoluteUri_3() const { return ___absoluteUri_3; }
inline Uri_t100236324 ** get_address_of_absoluteUri_3() { return &___absoluteUri_3; }
inline void set_absoluteUri_3(Uri_t100236324 * value)
{
___absoluteUri_3 = value;
Il2CppCodeGenWriteBarrier((&___absoluteUri_3), value);
}
inline static int32_t get_offset_of_U3CU3E4__this_4() { return static_cast<int32_t>(offsetof(U3CGetEntityAsyncU3Ed__15_t1599719825, ___U3CU3E4__this_4)); }
inline XmlUrlResolver_t817895037 * get_U3CU3E4__this_4() const { return ___U3CU3E4__this_4; }
inline XmlUrlResolver_t817895037 ** get_address_of_U3CU3E4__this_4() { return &___U3CU3E4__this_4; }
inline void set_U3CU3E4__this_4(XmlUrlResolver_t817895037 * value)
{
___U3CU3E4__this_4 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_4), value);
}
inline static int32_t get_offset_of_U3CU3Eu__1_5() { return static_cast<int32_t>(offsetof(U3CGetEntityAsyncU3Ed__15_t1599719825, ___U3CU3Eu__1_5)); }
inline ConfiguredTaskAwaiter_t2595523894 get_U3CU3Eu__1_5() const { return ___U3CU3Eu__1_5; }
inline ConfiguredTaskAwaiter_t2595523894 * get_address_of_U3CU3Eu__1_5() { return &___U3CU3Eu__1_5; }
inline void set_U3CU3Eu__1_5(ConfiguredTaskAwaiter_t2595523894 value)
{
___U3CU3Eu__1_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CGETENTITYASYNCU3ED__15_T1599719825_H
#ifndef COMPONENT_T1923634451_H
#define COMPONENT_T1923634451_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Component
struct Component_t1923634451 : public Object_t631007953
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMPONENT_T1923634451_H
#ifndef GAMEOBJECT_T1113636619_H
#define GAMEOBJECT_T1113636619_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.GameObject
struct GameObject_t1113636619 : public Object_t631007953
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GAMEOBJECT_T1113636619_H
#ifndef MESH_T3648964284_H
#define MESH_T3648964284_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Mesh
struct Mesh_t3648964284 : public Object_t631007953
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MESH_T3648964284_H
#ifndef PLAYABLEBINDING_T354260709_H
#define PLAYABLEBINDING_T354260709_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t354260709
{
public:
// System.String UnityEngine.Playables.PlayableBinding::m_StreamName
String_t* ___m_StreamName_0;
// UnityEngine.Object UnityEngine.Playables.PlayableBinding::m_SourceObject
Object_t631007953 * ___m_SourceObject_1;
// System.Type UnityEngine.Playables.PlayableBinding::m_SourceBindingType
Type_t * ___m_SourceBindingType_2;
// UnityEngine.Playables.PlayableBinding/CreateOutputMethod UnityEngine.Playables.PlayableBinding::m_CreateOutputMethod
CreateOutputMethod_t2301811773 * ___m_CreateOutputMethod_3;
public:
inline static int32_t get_offset_of_m_StreamName_0() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___m_StreamName_0)); }
inline String_t* get_m_StreamName_0() const { return ___m_StreamName_0; }
inline String_t** get_address_of_m_StreamName_0() { return &___m_StreamName_0; }
inline void set_m_StreamName_0(String_t* value)
{
___m_StreamName_0 = value;
Il2CppCodeGenWriteBarrier((&___m_StreamName_0), value);
}
inline static int32_t get_offset_of_m_SourceObject_1() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___m_SourceObject_1)); }
inline Object_t631007953 * get_m_SourceObject_1() const { return ___m_SourceObject_1; }
inline Object_t631007953 ** get_address_of_m_SourceObject_1() { return &___m_SourceObject_1; }
inline void set_m_SourceObject_1(Object_t631007953 * value)
{
___m_SourceObject_1 = value;
Il2CppCodeGenWriteBarrier((&___m_SourceObject_1), value);
}
inline static int32_t get_offset_of_m_SourceBindingType_2() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___m_SourceBindingType_2)); }
inline Type_t * get_m_SourceBindingType_2() const { return ___m_SourceBindingType_2; }
inline Type_t ** get_address_of_m_SourceBindingType_2() { return &___m_SourceBindingType_2; }
inline void set_m_SourceBindingType_2(Type_t * value)
{
___m_SourceBindingType_2 = value;
Il2CppCodeGenWriteBarrier((&___m_SourceBindingType_2), value);
}
inline static int32_t get_offset_of_m_CreateOutputMethod_3() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___m_CreateOutputMethod_3)); }
inline CreateOutputMethod_t2301811773 * get_m_CreateOutputMethod_3() const { return ___m_CreateOutputMethod_3; }
inline CreateOutputMethod_t2301811773 ** get_address_of_m_CreateOutputMethod_3() { return &___m_CreateOutputMethod_3; }
inline void set_m_CreateOutputMethod_3(CreateOutputMethod_t2301811773 * value)
{
___m_CreateOutputMethod_3 = value;
Il2CppCodeGenWriteBarrier((&___m_CreateOutputMethod_3), value);
}
};
struct PlayableBinding_t354260709_StaticFields
{
public:
// UnityEngine.Playables.PlayableBinding[] UnityEngine.Playables.PlayableBinding::None
PlayableBindingU5BU5D_t829358056* ___None_4;
// System.Double UnityEngine.Playables.PlayableBinding::DefaultDuration
double ___DefaultDuration_5;
public:
inline static int32_t get_offset_of_None_4() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709_StaticFields, ___None_4)); }
inline PlayableBindingU5BU5D_t829358056* get_None_4() const { return ___None_4; }
inline PlayableBindingU5BU5D_t829358056** get_address_of_None_4() { return &___None_4; }
inline void set_None_4(PlayableBindingU5BU5D_t829358056* value)
{
___None_4 = value;
Il2CppCodeGenWriteBarrier((&___None_4), value);
}
inline static int32_t get_offset_of_DefaultDuration_5() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709_StaticFields, ___DefaultDuration_5)); }
inline double get_DefaultDuration_5() const { return ___DefaultDuration_5; }
inline double* get_address_of_DefaultDuration_5() { return &___DefaultDuration_5; }
inline void set_DefaultDuration_5(double value)
{
___DefaultDuration_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t354260709_marshaled_pinvoke
{
char* ___m_StreamName_0;
Object_t631007953_marshaled_pinvoke ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
// Native definition for COM marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t354260709_marshaled_com
{
Il2CppChar* ___m_StreamName_0;
Object_t631007953_marshaled_com* ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
#endif // PLAYABLEBINDING_T354260709_H
#ifndef SCRIPTABLEOBJECT_T2528358522_H
#define SCRIPTABLEOBJECT_T2528358522_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.ScriptableObject
struct ScriptableObject_t2528358522 : public Object_t631007953
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_t2528358522_marshaled_pinvoke : public Object_t631007953_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_t2528358522_marshaled_com : public Object_t631007953_marshaled_com
{
};
#endif // SCRIPTABLEOBJECT_T2528358522_H
#ifndef U3CPROCESSOPERATIONU3ED__24_T1753638225_H
#define U3CPROCESSOPERATIONU3ED__24_T1753638225_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24
struct U3CProcessOperationU3Ed__24_t1753638225
{
public:
// System.Int32 Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>t__builder
AsyncTaskMethodBuilder_t3536885450 ___U3CU3Et__builder_1;
// System.Threading.CancellationToken Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::cancellationToken
CancellationToken_t784455623 ___cancellationToken_2;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>4__this
AsyncProtocolRequest_t4184368197 * ___U3CU3E4__this_3;
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<status>5__1
int32_t ___U3CstatusU3E5__1_4;
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<newStatus>5__2
int32_t ___U3CnewStatusU3E5__2_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>> Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>u__1
ConfiguredTaskAwaiter_t1701041524 ___U3CU3Eu__1_6;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>u__2
ConfiguredTaskAwaiter_t555647845 ___U3CU3Eu__2_7;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t1753638225, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t1753638225, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_t3536885450 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_t3536885450 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_t3536885450 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_cancellationToken_2() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t1753638225, ___cancellationToken_2)); }
inline CancellationToken_t784455623 get_cancellationToken_2() const { return ___cancellationToken_2; }
inline CancellationToken_t784455623 * get_address_of_cancellationToken_2() { return &___cancellationToken_2; }
inline void set_cancellationToken_2(CancellationToken_t784455623 value)
{
___cancellationToken_2 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t1753638225, ___U3CU3E4__this_3)); }
inline AsyncProtocolRequest_t4184368197 * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; }
inline AsyncProtocolRequest_t4184368197 ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; }
inline void set_U3CU3E4__this_3(AsyncProtocolRequest_t4184368197 * value)
{
___U3CU3E4__this_3 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_3), value);
}
inline static int32_t get_offset_of_U3CstatusU3E5__1_4() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t1753638225, ___U3CstatusU3E5__1_4)); }
inline int32_t get_U3CstatusU3E5__1_4() const { return ___U3CstatusU3E5__1_4; }
inline int32_t* get_address_of_U3CstatusU3E5__1_4() { return &___U3CstatusU3E5__1_4; }
inline void set_U3CstatusU3E5__1_4(int32_t value)
{
___U3CstatusU3E5__1_4 = value;
}
inline static int32_t get_offset_of_U3CnewStatusU3E5__2_5() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t1753638225, ___U3CnewStatusU3E5__2_5)); }
inline int32_t get_U3CnewStatusU3E5__2_5() const { return ___U3CnewStatusU3E5__2_5; }
inline int32_t* get_address_of_U3CnewStatusU3E5__2_5() { return &___U3CnewStatusU3E5__2_5; }
inline void set_U3CnewStatusU3E5__2_5(int32_t value)
{
___U3CnewStatusU3E5__2_5 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_6() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t1753638225, ___U3CU3Eu__1_6)); }
inline ConfiguredTaskAwaiter_t1701041524 get_U3CU3Eu__1_6() const { return ___U3CU3Eu__1_6; }
inline ConfiguredTaskAwaiter_t1701041524 * get_address_of_U3CU3Eu__1_6() { return &___U3CU3Eu__1_6; }
inline void set_U3CU3Eu__1_6(ConfiguredTaskAwaiter_t1701041524 value)
{
___U3CU3Eu__1_6 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__2_7() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t1753638225, ___U3CU3Eu__2_7)); }
inline ConfiguredTaskAwaiter_t555647845 get_U3CU3Eu__2_7() const { return ___U3CU3Eu__2_7; }
inline ConfiguredTaskAwaiter_t555647845 * get_address_of_U3CU3Eu__2_7() { return &___U3CU3Eu__2_7; }
inline void set_U3CU3Eu__2_7(ConfiguredTaskAwaiter_t555647845 value)
{
___U3CU3Eu__2_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CPROCESSOPERATIONU3ED__24_T1753638225_H
#ifndef U3CINNERWRITEU3ED__67_T2443470766_H
#define U3CINNERWRITEU3ED__67_T2443470766_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67
struct U3CInnerWriteU3Ed__67_t2443470766
{
public:
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::<>t__builder
AsyncTaskMethodBuilder_t3536885450 ___U3CU3Et__builder_1;
// System.Threading.CancellationToken Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::cancellationToken
CancellationToken_t784455623 ___cancellationToken_2;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::<>4__this
MobileAuthenticatedStream_t3383979266 * ___U3CU3E4__this_3;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::sync
bool ___sync_4;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::<>u__1
ConfiguredTaskAwaiter_t555647845 ___U3CU3Eu__1_5;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CInnerWriteU3Ed__67_t2443470766, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CInnerWriteU3Ed__67_t2443470766, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_t3536885450 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_t3536885450 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_t3536885450 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_cancellationToken_2() { return static_cast<int32_t>(offsetof(U3CInnerWriteU3Ed__67_t2443470766, ___cancellationToken_2)); }
inline CancellationToken_t784455623 get_cancellationToken_2() const { return ___cancellationToken_2; }
inline CancellationToken_t784455623 * get_address_of_cancellationToken_2() { return &___cancellationToken_2; }
inline void set_cancellationToken_2(CancellationToken_t784455623 value)
{
___cancellationToken_2 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CInnerWriteU3Ed__67_t2443470766, ___U3CU3E4__this_3)); }
inline MobileAuthenticatedStream_t3383979266 * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; }
inline MobileAuthenticatedStream_t3383979266 ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; }
inline void set_U3CU3E4__this_3(MobileAuthenticatedStream_t3383979266 * value)
{
___U3CU3E4__this_3 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_3), value);
}
inline static int32_t get_offset_of_sync_4() { return static_cast<int32_t>(offsetof(U3CInnerWriteU3Ed__67_t2443470766, ___sync_4)); }
inline bool get_sync_4() const { return ___sync_4; }
inline bool* get_address_of_sync_4() { return &___sync_4; }
inline void set_sync_4(bool value)
{
___sync_4 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_5() { return static_cast<int32_t>(offsetof(U3CInnerWriteU3Ed__67_t2443470766, ___U3CU3Eu__1_5)); }
inline ConfiguredTaskAwaiter_t555647845 get_U3CU3Eu__1_5() const { return ___U3CU3Eu__1_5; }
inline ConfiguredTaskAwaiter_t555647845 * get_address_of_U3CU3Eu__1_5() { return &___U3CU3Eu__1_5; }
inline void set_U3CU3Eu__1_5(ConfiguredTaskAwaiter_t555647845 value)
{
___U3CU3Eu__1_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CINNERWRITEU3ED__67_T2443470766_H
#ifndef U3CPROCESSAUTHENTICATIONU3ED__47_T649267051_H
#define U3CPROCESSAUTHENTICATIONU3ED__47_T649267051_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47
struct U3CProcessAuthenticationU3Ed__47_t649267051
{
public:
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47::<>t__builder
AsyncTaskMethodBuilder_t3536885450 ___U3CU3Et__builder_1;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47::serverMode
bool ___serverMode_2;
// System.Security.Cryptography.X509Certificates.X509Certificate Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47::serverCertificate
X509Certificate_t713131622 * ___serverCertificate_3;
// System.String Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47::targetHost
String_t* ___targetHost_4;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47::<>4__this
MobileAuthenticatedStream_t3383979266 * ___U3CU3E4__this_5;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47::runSynchronously
bool ___runSynchronously_6;
// System.Security.Authentication.SslProtocols Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47::enabledProtocols
int32_t ___enabledProtocols_7;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47::clientCertificates
X509CertificateCollection_t3399372417 * ___clientCertificates_8;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47::clientCertRequired
bool ___clientCertRequired_9;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult> Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47::<>u__1
ConfiguredTaskAwaiter_t410331069 ___U3CU3Eu__1_10;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CProcessAuthenticationU3Ed__47_t649267051, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CProcessAuthenticationU3Ed__47_t649267051, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_t3536885450 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_t3536885450 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_t3536885450 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_serverMode_2() { return static_cast<int32_t>(offsetof(U3CProcessAuthenticationU3Ed__47_t649267051, ___serverMode_2)); }
inline bool get_serverMode_2() const { return ___serverMode_2; }
inline bool* get_address_of_serverMode_2() { return &___serverMode_2; }
inline void set_serverMode_2(bool value)
{
___serverMode_2 = value;
}
inline static int32_t get_offset_of_serverCertificate_3() { return static_cast<int32_t>(offsetof(U3CProcessAuthenticationU3Ed__47_t649267051, ___serverCertificate_3)); }
inline X509Certificate_t713131622 * get_serverCertificate_3() const { return ___serverCertificate_3; }
inline X509Certificate_t713131622 ** get_address_of_serverCertificate_3() { return &___serverCertificate_3; }
inline void set_serverCertificate_3(X509Certificate_t713131622 * value)
{
___serverCertificate_3 = value;
Il2CppCodeGenWriteBarrier((&___serverCertificate_3), value);
}
inline static int32_t get_offset_of_targetHost_4() { return static_cast<int32_t>(offsetof(U3CProcessAuthenticationU3Ed__47_t649267051, ___targetHost_4)); }
inline String_t* get_targetHost_4() const { return ___targetHost_4; }
inline String_t** get_address_of_targetHost_4() { return &___targetHost_4; }
inline void set_targetHost_4(String_t* value)
{
___targetHost_4 = value;
Il2CppCodeGenWriteBarrier((&___targetHost_4), value);
}
inline static int32_t get_offset_of_U3CU3E4__this_5() { return static_cast<int32_t>(offsetof(U3CProcessAuthenticationU3Ed__47_t649267051, ___U3CU3E4__this_5)); }
inline MobileAuthenticatedStream_t3383979266 * get_U3CU3E4__this_5() const { return ___U3CU3E4__this_5; }
inline MobileAuthenticatedStream_t3383979266 ** get_address_of_U3CU3E4__this_5() { return &___U3CU3E4__this_5; }
inline void set_U3CU3E4__this_5(MobileAuthenticatedStream_t3383979266 * value)
{
___U3CU3E4__this_5 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_5), value);
}
inline static int32_t get_offset_of_runSynchronously_6() { return static_cast<int32_t>(offsetof(U3CProcessAuthenticationU3Ed__47_t649267051, ___runSynchronously_6)); }
inline bool get_runSynchronously_6() const { return ___runSynchronously_6; }
inline bool* get_address_of_runSynchronously_6() { return &___runSynchronously_6; }
inline void set_runSynchronously_6(bool value)
{
___runSynchronously_6 = value;
}
inline static int32_t get_offset_of_enabledProtocols_7() { return static_cast<int32_t>(offsetof(U3CProcessAuthenticationU3Ed__47_t649267051, ___enabledProtocols_7)); }
inline int32_t get_enabledProtocols_7() const { return ___enabledProtocols_7; }
inline int32_t* get_address_of_enabledProtocols_7() { return &___enabledProtocols_7; }
inline void set_enabledProtocols_7(int32_t value)
{
___enabledProtocols_7 = value;
}
inline static int32_t get_offset_of_clientCertificates_8() { return static_cast<int32_t>(offsetof(U3CProcessAuthenticationU3Ed__47_t649267051, ___clientCertificates_8)); }
inline X509CertificateCollection_t3399372417 * get_clientCertificates_8() const { return ___clientCertificates_8; }
inline X509CertificateCollection_t3399372417 ** get_address_of_clientCertificates_8() { return &___clientCertificates_8; }
inline void set_clientCertificates_8(X509CertificateCollection_t3399372417 * value)
{
___clientCertificates_8 = value;
Il2CppCodeGenWriteBarrier((&___clientCertificates_8), value);
}
inline static int32_t get_offset_of_clientCertRequired_9() { return static_cast<int32_t>(offsetof(U3CProcessAuthenticationU3Ed__47_t649267051, ___clientCertRequired_9)); }
inline bool get_clientCertRequired_9() const { return ___clientCertRequired_9; }
inline bool* get_address_of_clientCertRequired_9() { return &___clientCertRequired_9; }
inline void set_clientCertRequired_9(bool value)
{
___clientCertRequired_9 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_10() { return static_cast<int32_t>(offsetof(U3CProcessAuthenticationU3Ed__47_t649267051, ___U3CU3Eu__1_10)); }
inline ConfiguredTaskAwaiter_t410331069 get_U3CU3Eu__1_10() const { return ___U3CU3Eu__1_10; }
inline ConfiguredTaskAwaiter_t410331069 * get_address_of_U3CU3Eu__1_10() { return &___U3CU3Eu__1_10; }
inline void set_U3CU3Eu__1_10(ConfiguredTaskAwaiter_t410331069 value)
{
___U3CU3Eu__1_10 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CPROCESSAUTHENTICATIONU3ED__47_T649267051_H
#ifndef ACTION_T1264377477_H
#define ACTION_T1264377477_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Action
struct Action_t1264377477 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ACTION_T1264377477_H
#ifndef ENTRY_T2873432162_H
#define ENTRY_T2873432162_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,GameCanvas.PointerEvent>
struct Entry_t2873432162
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2/Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
PointerEvent_t2369854343 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t2873432162, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t2873432162, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t2873432162, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t2873432162, ___value_3)); }
inline PointerEvent_t2369854343 get_value_3() const { return ___value_3; }
inline PointerEvent_t2369854343 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(PointerEvent_t2369854343 value)
{
___value_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENTRY_T2873432162_H
#ifndef KEYVALUEPAIR_2_T3656239841_H
#define KEYVALUEPAIR_2_T3656239841_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Int32,GameCanvas.PointerEvent>
struct KeyValuePair_2_t3656239841
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
PointerEvent_t2369854343 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3656239841, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3656239841, ___value_1)); }
inline PointerEvent_t2369854343 get_value_1() const { return ___value_1; }
inline PointerEvent_t2369854343 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(PointerEvent_t2369854343 value)
{
___value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_T3656239841_H
#ifndef CONVERTER_2_T2442480487_H
#define CONVERTER_2_T2442480487_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Converter`2<System.Object,System.Object>
struct Converter_2_t2442480487 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONVERTER_2_T2442480487_H
#ifndef FUNC_1_T2509852811_H
#define FUNC_1_T2509852811_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`1<System.Object>
struct Func_1_t2509852811 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_1_T2509852811_H
#ifndef FUNC_2_T3759279471_H
#define FUNC_2_T3759279471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`2<System.Object,System.Boolean>
struct Func_2_t3759279471 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_2_T3759279471_H
#ifndef PREDICATE_1_T3905400288_H
#define PREDICATE_1_T3905400288_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Predicate`1<System.Object>
struct Predicate_1_t3905400288 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PREDICATE_1_T3905400288_H
#ifndef U3CWRITEASYNCINTERNALU3ED__37_T1756569490_H
#define U3CWRITEASYNCINTERNALU3ED__37_T1756569490_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37
struct U3CWriteAsyncInternalU3Ed__37_t1756569490
{
public:
// System.Int32 System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::<>t__builder
AsyncTaskMethodBuilder_t3536885450 ___U3CU3Et__builder_1;
// System.Security.Cryptography.CryptoStream System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::<>4__this
CryptoStream_t2702504504 * ___U3CU3E4__this_2;
// System.Int32 System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::count
int32_t ___count_3;
// System.Int32 System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::offset
int32_t ___offset_4;
// System.Byte[] System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::buffer
ByteU5BU5D_t4116647657* ___buffer_5;
// System.Threading.CancellationToken System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::cancellationToken
CancellationToken_t784455623 ___cancellationToken_6;
// System.Int32 System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::<bytesToWrite>5__1
int32_t ___U3CbytesToWriteU3E5__1_7;
// System.Int32 System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::<currentInputIndex>5__2
int32_t ___U3CcurrentInputIndexU3E5__2_8;
// System.Int32 System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::<numWholeBlocksInBytes>5__3
int32_t ___U3CnumWholeBlocksInBytesU3E5__3_9;
// System.Threading.SemaphoreSlim System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::<sem>5__4
SemaphoreSlim_t2974092902 * ___U3CsemU3E5__4_10;
// System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::<>u__1
HopToThreadPoolAwaitable_t810938849 ___U3CU3Eu__1_11;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::<>u__2
ConfiguredTaskAwaiter_t555647845 ___U3CU3Eu__2_12;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_t3536885450 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_t3536885450 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_t3536885450 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___U3CU3E4__this_2)); }
inline CryptoStream_t2702504504 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline CryptoStream_t2702504504 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(CryptoStream_t2702504504 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_2), value);
}
inline static int32_t get_offset_of_count_3() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___count_3)); }
inline int32_t get_count_3() const { return ___count_3; }
inline int32_t* get_address_of_count_3() { return &___count_3; }
inline void set_count_3(int32_t value)
{
___count_3 = value;
}
inline static int32_t get_offset_of_offset_4() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___offset_4)); }
inline int32_t get_offset_4() const { return ___offset_4; }
inline int32_t* get_address_of_offset_4() { return &___offset_4; }
inline void set_offset_4(int32_t value)
{
___offset_4 = value;
}
inline static int32_t get_offset_of_buffer_5() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___buffer_5)); }
inline ByteU5BU5D_t4116647657* get_buffer_5() const { return ___buffer_5; }
inline ByteU5BU5D_t4116647657** get_address_of_buffer_5() { return &___buffer_5; }
inline void set_buffer_5(ByteU5BU5D_t4116647657* value)
{
___buffer_5 = value;
Il2CppCodeGenWriteBarrier((&___buffer_5), value);
}
inline static int32_t get_offset_of_cancellationToken_6() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___cancellationToken_6)); }
inline CancellationToken_t784455623 get_cancellationToken_6() const { return ___cancellationToken_6; }
inline CancellationToken_t784455623 * get_address_of_cancellationToken_6() { return &___cancellationToken_6; }
inline void set_cancellationToken_6(CancellationToken_t784455623 value)
{
___cancellationToken_6 = value;
}
inline static int32_t get_offset_of_U3CbytesToWriteU3E5__1_7() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___U3CbytesToWriteU3E5__1_7)); }
inline int32_t get_U3CbytesToWriteU3E5__1_7() const { return ___U3CbytesToWriteU3E5__1_7; }
inline int32_t* get_address_of_U3CbytesToWriteU3E5__1_7() { return &___U3CbytesToWriteU3E5__1_7; }
inline void set_U3CbytesToWriteU3E5__1_7(int32_t value)
{
___U3CbytesToWriteU3E5__1_7 = value;
}
inline static int32_t get_offset_of_U3CcurrentInputIndexU3E5__2_8() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___U3CcurrentInputIndexU3E5__2_8)); }
inline int32_t get_U3CcurrentInputIndexU3E5__2_8() const { return ___U3CcurrentInputIndexU3E5__2_8; }
inline int32_t* get_address_of_U3CcurrentInputIndexU3E5__2_8() { return &___U3CcurrentInputIndexU3E5__2_8; }
inline void set_U3CcurrentInputIndexU3E5__2_8(int32_t value)
{
___U3CcurrentInputIndexU3E5__2_8 = value;
}
inline static int32_t get_offset_of_U3CnumWholeBlocksInBytesU3E5__3_9() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___U3CnumWholeBlocksInBytesU3E5__3_9)); }
inline int32_t get_U3CnumWholeBlocksInBytesU3E5__3_9() const { return ___U3CnumWholeBlocksInBytesU3E5__3_9; }
inline int32_t* get_address_of_U3CnumWholeBlocksInBytesU3E5__3_9() { return &___U3CnumWholeBlocksInBytesU3E5__3_9; }
inline void set_U3CnumWholeBlocksInBytesU3E5__3_9(int32_t value)
{
___U3CnumWholeBlocksInBytesU3E5__3_9 = value;
}
inline static int32_t get_offset_of_U3CsemU3E5__4_10() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___U3CsemU3E5__4_10)); }
inline SemaphoreSlim_t2974092902 * get_U3CsemU3E5__4_10() const { return ___U3CsemU3E5__4_10; }
inline SemaphoreSlim_t2974092902 ** get_address_of_U3CsemU3E5__4_10() { return &___U3CsemU3E5__4_10; }
inline void set_U3CsemU3E5__4_10(SemaphoreSlim_t2974092902 * value)
{
___U3CsemU3E5__4_10 = value;
Il2CppCodeGenWriteBarrier((&___U3CsemU3E5__4_10), value);
}
inline static int32_t get_offset_of_U3CU3Eu__1_11() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___U3CU3Eu__1_11)); }
inline HopToThreadPoolAwaitable_t810938849 get_U3CU3Eu__1_11() const { return ___U3CU3Eu__1_11; }
inline HopToThreadPoolAwaitable_t810938849 * get_address_of_U3CU3Eu__1_11() { return &___U3CU3Eu__1_11; }
inline void set_U3CU3Eu__1_11(HopToThreadPoolAwaitable_t810938849 value)
{
___U3CU3Eu__1_11 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__2_12() { return static_cast<int32_t>(offsetof(U3CWriteAsyncInternalU3Ed__37_t1756569490, ___U3CU3Eu__2_12)); }
inline ConfiguredTaskAwaiter_t555647845 get_U3CU3Eu__2_12() const { return ___U3CU3Eu__2_12; }
inline ConfiguredTaskAwaiter_t555647845 * get_address_of_U3CU3Eu__2_12() { return &___U3CU3Eu__2_12; }
inline void set_U3CU3Eu__2_12(ConfiguredTaskAwaiter_t555647845 value)
{
___U3CU3Eu__2_12 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CWRITEASYNCINTERNALU3ED__37_T1756569490_H
#ifndef XMLLISTCONVERTER_T3889069996_H
#define XMLLISTCONVERTER_T3889069996_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.Schema.XmlListConverter
struct XmlListConverter_t3889069996 : public XmlBaseConverter_t885945787
{
public:
// System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlListConverter::atomicConverter
XmlValueConverter_t585560190 * ___atomicConverter_32;
public:
inline static int32_t get_offset_of_atomicConverter_32() { return static_cast<int32_t>(offsetof(XmlListConverter_t3889069996, ___atomicConverter_32)); }
inline XmlValueConverter_t585560190 * get_atomicConverter_32() const { return ___atomicConverter_32; }
inline XmlValueConverter_t585560190 ** get_address_of_atomicConverter_32() { return &___atomicConverter_32; }
inline void set_atomicConverter_32(XmlValueConverter_t585560190 * value)
{
___atomicConverter_32 = value;
Il2CppCodeGenWriteBarrier((&___atomicConverter_32), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // XMLLISTCONVERTER_T3889069996_H
// System.Object[]
struct ObjectU5BU5D_t2843939325 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// UnityEngine.Color[]
struct ColorU5BU5D_t941916413 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Color_t2555686324 m_Items[1];
public:
inline Color_t2555686324 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Color_t2555686324 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Color_t2555686324 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Color_t2555686324 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Color_t2555686324 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Color_t2555686324 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector2[]
struct Vector2U5BU5D_t1457185986 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector2_t2156229523 m_Items[1];
public:
inline Vector2_t2156229523 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector2_t2156229523 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector2_t2156229523 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector2_t2156229523 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector2_t2156229523 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector2_t2156229523 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Vector3[]
struct Vector3U5BU5D_t1718750761 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector3_t3722313464 m_Items[1];
public:
inline Vector3_t3722313464 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector3_t3722313464 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector3_t3722313464 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector3_t3722313464 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector3_t3722313464 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3_t3722313464 value)
{
m_Items[index] = value;
}
};
// System.Boolean[]
struct BooleanU5BU5D_t2897418192 : public RuntimeArray
{
public:
ALIGN_FIELD (8) bool m_Items[1];
public:
inline bool GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bool* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, bool value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
{
m_Items[index] = value;
}
};
// System.Byte[]
struct ByteU5BU5D_t4116647657 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint8_t m_Items[1];
public:
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_t2069718811 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t870930286 m_Items[1];
public:
inline KeyValuePair_2_t870930286 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t870930286 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t870930286 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t870930286 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t870930286 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t870930286 value)
{
m_Items[index] = value;
}
};
// System.DateTime[]
struct DateTimeU5BU5D_t1184652292 : public RuntimeArray
{
public:
ALIGN_FIELD (8) DateTime_t3738529785 m_Items[1];
public:
inline DateTime_t3738529785 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DateTime_t3738529785 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, DateTime_t3738529785 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline DateTime_t3738529785 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DateTime_t3738529785 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DateTime_t3738529785 value)
{
m_Items[index] = value;
}
};
// System.DateTimeOffset[]
struct DateTimeOffsetU5BU5D_t3473357058 : public RuntimeArray
{
public:
ALIGN_FIELD (8) DateTimeOffset_t3229287507 m_Items[1];
public:
inline DateTimeOffset_t3229287507 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DateTimeOffset_t3229287507 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, DateTimeOffset_t3229287507 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline DateTimeOffset_t3229287507 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DateTimeOffset_t3229287507 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DateTimeOffset_t3229287507 value)
{
m_Items[index] = value;
}
};
// System.Decimal[]
struct DecimalU5BU5D_t1145110141 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Decimal_t2948259380 m_Items[1];
public:
inline Decimal_t2948259380 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Decimal_t2948259380 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Decimal_t2948259380 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Decimal_t2948259380 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Decimal_t2948259380 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Decimal_t2948259380 value)
{
m_Items[index] = value;
}
};
// System.Double[]
struct DoubleU5BU5D_t3413330114 : public RuntimeArray
{
public:
ALIGN_FIELD (8) double m_Items[1];
public:
inline double GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline double* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, double value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline double GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline double* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, double value)
{
m_Items[index] = value;
}
};
// System.Int16[]
struct Int16U5BU5D_t3686840178 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int16_t m_Items[1];
public:
inline int16_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int16_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int16_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value)
{
m_Items[index] = value;
}
};
// System.Int32[]
struct Int32U5BU5D_t385246372 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Int64[]
struct Int64U5BU5D_t2559172825 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int64_t m_Items[1];
public:
inline int64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int64_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value)
{
m_Items[index] = value;
}
};
// System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES[]
struct Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Win32_IP_ADAPTER_ADDRESSES_t3463526328 m_Items[1];
public:
inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Win32_IP_ADAPTER_ADDRESSES_t3463526328 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Win32_IP_ADAPTER_ADDRESSES_t3463526328 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Win32_IP_ADAPTER_ADDRESSES_t3463526328 value)
{
m_Items[index] = value;
}
};
// System.SByte[]
struct SByteU5BU5D_t2651576203 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int8_t m_Items[1];
public:
inline int8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int8_t value)
{
m_Items[index] = value;
}
};
// System.Single[]
struct SingleU5BU5D_t1444911251 : public RuntimeArray
{
public:
ALIGN_FIELD (8) float m_Items[1];
public:
inline float GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline float* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, float value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline float GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
{
m_Items[index] = value;
}
};
// System.Text.RegularExpressions.RegexOptions[]
struct RegexOptionsU5BU5D_t160358170 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.TimeSpan[]
struct TimeSpanU5BU5D_t4291357516 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TimeSpan_t881159249 m_Items[1];
public:
inline TimeSpan_t881159249 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TimeSpan_t881159249 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, TimeSpan_t881159249 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TimeSpan_t881159249 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TimeSpan_t881159249 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TimeSpan_t881159249 value)
{
m_Items[index] = value;
}
};
// System.UInt16[]
struct UInt16U5BU5D_t3326319531 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint16_t m_Items[1];
public:
inline uint16_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint16_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint16_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value)
{
m_Items[index] = value;
}
};
// System.UInt32[]
struct UInt32U5BU5D_t2770800703 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint32_t m_Items[1];
public:
inline uint32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value)
{
m_Items[index] = value;
}
};
// System.UInt64[]
struct UInt64U5BU5D_t1659327989 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint64_t m_Items[1];
public:
inline uint64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint64_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value)
{
m_Items[index] = value;
}
};
// System.Xml.Schema.RangePositionInfo[]
struct RangePositionInfoU5BU5D_t242328633 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RangePositionInfo_t589968936 m_Items[1];
public:
inline RangePositionInfo_t589968936 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RangePositionInfo_t589968936 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RangePositionInfo_t589968936 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RangePositionInfo_t589968936 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RangePositionInfo_t589968936 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RangePositionInfo_t589968936 value)
{
m_Items[index] = value;
}
};
// System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry[]
struct XmlSchemaObjectEntryU5BU5D_t1655208330 : public RuntimeArray
{
public:
ALIGN_FIELD (8) XmlSchemaObjectEntry_t3344676971 m_Items[1];
public:
inline XmlSchemaObjectEntry_t3344676971 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline XmlSchemaObjectEntry_t3344676971 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, XmlSchemaObjectEntry_t3344676971 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline XmlSchemaObjectEntry_t3344676971 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline XmlSchemaObjectEntry_t3344676971 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, XmlSchemaObjectEntry_t3344676971 value)
{
m_Items[index] = value;
}
};
// UnityEngine.BeforeRenderHelper/OrderBlock[]
struct OrderBlockU5BU5D_t2389202590 : public RuntimeArray
{
public:
ALIGN_FIELD (8) OrderBlock_t1585977831 m_Items[1];
public:
inline OrderBlock_t1585977831 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline OrderBlock_t1585977831 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, OrderBlock_t1585977831 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline OrderBlock_t1585977831 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline OrderBlock_t1585977831 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, OrderBlock_t1585977831 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UICharInfo[]
struct UICharInfoU5BU5D_t928762055 : public RuntimeArray
{
public:
ALIGN_FIELD (8) UICharInfo_t75501106 m_Items[1];
public:
inline UICharInfo_t75501106 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UICharInfo_t75501106 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, UICharInfo_t75501106 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UICharInfo_t75501106 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UICharInfo_t75501106 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UICharInfo_t75501106 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UILineInfo[]
struct UILineInfoU5BU5D_t1655937503 : public RuntimeArray
{
public:
ALIGN_FIELD (8) UILineInfo_t4195266810 m_Items[1];
public:
inline UILineInfo_t4195266810 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UILineInfo_t4195266810 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, UILineInfo_t4195266810 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UILineInfo_t4195266810 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UILineInfo_t4195266810 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UILineInfo_t4195266810 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_t1981460040 : public RuntimeArray
{
public:
ALIGN_FIELD (8) UIVertex_t4057497605 m_Items[1];
public:
inline UIVertex_t4057497605 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UIVertex_t4057497605 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, UIVertex_t4057497605 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UIVertex_t4057497605 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UIVertex_t4057497605 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UIVertex_t4057497605 value)
{
m_Items[index] = value;
}
};
// Mono.AppleTls.SslStatus[]
struct SslStatusU5BU5D_t3256112573 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Char[]
struct CharU5BU5D_t3528271667 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Il2CppChar m_Items[1];
public:
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.Xml.Schema.SequenceNode/SequenceConstructPosContext[]
struct SequenceConstructPosContextU5BU5D_t615009946 : public RuntimeArray
{
public:
ALIGN_FIELD (8) SequenceConstructPosContext_t2054380699 m_Items[1];
public:
inline SequenceConstructPosContext_t2054380699 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SequenceConstructPosContext_t2054380699 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, SequenceConstructPosContext_t2054380699 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline SequenceConstructPosContext_t2054380699 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SequenceConstructPosContext_t2054380699 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SequenceConstructPosContext_t2054380699 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UnitySynchronizationContext/WorkRequest[]
struct WorkRequestU5BU5D_t3723878365 : public RuntimeArray
{
public:
ALIGN_FIELD (8) WorkRequest_t1354518612 m_Items[1];
public:
inline WorkRequest_t1354518612 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline WorkRequest_t1354518612 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, WorkRequest_t1354518612 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline WorkRequest_t1354518612 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline WorkRequest_t1354518612 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, WorkRequest_t1354518612 value)
{
m_Items[index] = value;
}
};
// System.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_t3710464795 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeNamedArgument_t287865710 m_Items[1];
public:
inline CustomAttributeNamedArgument_t287865710 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeNamedArgument_t287865710 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, CustomAttributeNamedArgument_t287865710 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline CustomAttributeNamedArgument_t287865710 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeNamedArgument_t287865710 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeNamedArgument_t287865710 value)
{
m_Items[index] = value;
}
};
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t1465843424 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeTypedArgument_t2723150157 m_Items[1];
public:
inline CustomAttributeTypedArgument_t2723150157 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeTypedArgument_t2723150157 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, CustomAttributeTypedArgument_t2723150157 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline CustomAttributeTypedArgument_t2723150157 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeTypedArgument_t2723150157 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeTypedArgument_t2723150157 value)
{
m_Items[index] = value;
}
};
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitOnCompleted<System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable,System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1125588378_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, HopToThreadPoolAwaitable_t810938849 * p0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * p1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitOnCompleted<System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable,System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1286127563_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, HopToThreadPoolAwaitable_t810938849 * ___awaiter0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Object,System.Object>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m808550706_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, RuntimeObject ** p0, RuntimeObject ** p1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m150600026_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m254633483_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t555647845 * p0, U3CProcessOperationU3Ed__24_t1753638225 * p1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m1931166322_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m1607225569_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t555647845 * p0, U3CInnerWriteU3Ed__67_t2443470766 * p1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m951817722_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CInnerWriteU3Ed__67_t2443470766 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1039663495_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t555647845 * p0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * p1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m2967135225_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m3029995541_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t1701041524 * p0, U3CProcessOperationU3Ed__24_t1753638225 * p1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m1834728717_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t1701041524 * ___awaiter0, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3394220291_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t107639853 * p0, U3CProcessAuthenticationU3Ed__47_t649267051 * p1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3128249145_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CProcessAuthenticationU3Ed__47_t649267051 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t1753638225_m2915125460_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_t2443470766_m907883981_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, U3CInnerWriteU3Ed__67_t2443470766 * ___stateMachine0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__47_t649267051_m273123348_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, U3CProcessAuthenticationU3Ed__47_t649267051 * ___stateMachine0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<System.Object>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisRuntimeObject_m3900118536_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, RuntimeObject ** ___stateMachine0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m4215946051_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t1502828140 * AsyncTaskMethodBuilder_1_get_Task_m1946293888_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>,System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1419788950_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1703736389_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, ConfiguredTaskAwaiter_t1419788950 * ___awaiter0, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1323318437_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::Start<System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1288598359_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * ___stateMachine0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t61518632 * AsyncTaskMethodBuilder_1_get_Task_m374009415_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitOnCompleted<System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable,System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m1831514697_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, HopToThreadPoolAwaitable_t810938849 * ___awaiter0, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2915554355_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__66_t2872199449_m3184057887_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, ConfiguredTaskAwaiter_t4273446738 * ___awaiter0, U3CInnerReadU3Ed__66_t2872199449 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2314495281_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, ConfiguredTaskAwaiter_t4273446738 * ___awaiter0, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CStartOperationU3Ed__58_t1428438294_m656889163_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CStartOperationU3Ed__58_t1428438294 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_t2872199449_m2455768402_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, U3CInnerReadU3Ed__66_t2872199449 * ___stateMachine0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t1428438294_m2135626379_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, U3CStartOperationU3Ed__58_t1428438294 * ___stateMachine0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m3472039230_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t1784080714 * AsyncTaskMethodBuilder_1_get_Task_m3279671530_gshared (AsyncTaskMethodBuilder_1_t2699515049 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__25_t257820306_m2465036347_gshared (AsyncTaskMethodBuilder_1_t2699515049 * __this, ConfiguredTaskAwaiter_t4273446738 * ___awaiter0, U3CInnerReadU3Ed__25_t257820306 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Start<Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t257820306_m914106883_gshared (AsyncTaskMethodBuilder_1_t2699515049 * __this, U3CInnerReadU3Ed__25_t257820306 * ___stateMachine0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t190679043 * AsyncTaskMethodBuilder_1_get_Task_m317986670_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m726731279_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m2409927442_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CStartOperationU3Ed__23_t3218468820_m3480897621_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CStartOperationU3Ed__23_t3218468820 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m1126327911_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,System.Xml.XmlUrlResolver/<GetEntityAsync>d__15>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m3096584839_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CGetEntityAsyncU3Ed__15_t1599719825 * ___stateMachine1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t3218468820_m1026746075_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, U3CStartOperationU3Ed__23_t3218468820 * ___stateMachine0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<System.Object>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisRuntimeObject_m599998781_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject ** ___stateMachine0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m2777383802_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 * ___stateMachine0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<System.Xml.XmlUrlResolver/<GetEntityAsync>d__15>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m489318611_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, U3CGetEntityAsyncU3Ed__15_t1599719825 * ___stateMachine0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t4022128754 * AsyncTaskMethodBuilder_1_get_Task_m3182333516_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m2353068914_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult()
extern "C" IL2CPP_METHOD_ATTR int32_t TaskAwaiter_1_GetResult_m3496793423_gshared (TaskAwaiter_1_t1450460888 * __this, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * TaskAwaiter_1_GetResult_m3577040539_gshared (TaskAwaiter_1_t1579621299 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitOnCompleted<System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable,System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1125588378 (AsyncTaskMethodBuilder_1_t642595793 * __this, HopToThreadPoolAwaitable_t810938849 * p0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t642595793 *, HopToThreadPoolAwaitable_t810938849 *, U3CWriteAsyncInternalU3Ed__37_t1756569490 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1125588378_gshared)(__this, p0, p1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitOnCompleted<System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable,System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1286127563 (AsyncTaskMethodBuilder_t3536885450 * __this, HopToThreadPoolAwaitable_t810938849 * ___awaiter0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t3536885450 *, HopToThreadPoolAwaitable_t810938849 *, U3CWriteAsyncInternalU3Ed__37_t1756569490 *, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1286127563_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Object,System.Object>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m808550706 (AsyncTaskMethodBuilder_1_t642595793 * __this, RuntimeObject ** p0, RuntimeObject ** p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t642595793 *, RuntimeObject **, RuntimeObject **, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m808550706_gshared)(__this, p0, p1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m150600026 (AsyncTaskMethodBuilder_t3536885450 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t3536885450 *, RuntimeObject **, RuntimeObject **, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m150600026_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m254633483 (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t555647845 * p0, U3CProcessOperationU3Ed__24_t1753638225 * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t642595793 *, ConfiguredTaskAwaiter_t555647845 *, U3CProcessOperationU3Ed__24_t1753638225 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m254633483_gshared)(__this, p0, p1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m1931166322 (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t3536885450 *, ConfiguredTaskAwaiter_t555647845 *, U3CProcessOperationU3Ed__24_t1753638225 *, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m1931166322_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m1607225569 (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t555647845 * p0, U3CInnerWriteU3Ed__67_t2443470766 * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t642595793 *, ConfiguredTaskAwaiter_t555647845 *, U3CInnerWriteU3Ed__67_t2443470766 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m1607225569_gshared)(__this, p0, p1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m951817722 (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CInnerWriteU3Ed__67_t2443470766 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t3536885450 *, ConfiguredTaskAwaiter_t555647845 *, U3CInnerWriteU3Ed__67_t2443470766 *, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m951817722_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1039663495 (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t555647845 * p0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t642595793 *, ConfiguredTaskAwaiter_t555647845 *, U3CWriteAsyncInternalU3Ed__37_t1756569490 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1039663495_gshared)(__this, p0, p1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m2967135225 (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t3536885450 *, ConfiguredTaskAwaiter_t555647845 *, U3CWriteAsyncInternalU3Ed__37_t1756569490 *, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m2967135225_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m3029995541 (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t1701041524 * p0, U3CProcessOperationU3Ed__24_t1753638225 * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t642595793 *, ConfiguredTaskAwaiter_t1701041524 *, U3CProcessOperationU3Ed__24_t1753638225 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m3029995541_gshared)(__this, p0, p1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m1834728717 (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t1701041524 * ___awaiter0, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t3536885450 *, ConfiguredTaskAwaiter_t1701041524 *, U3CProcessOperationU3Ed__24_t1753638225 *, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m1834728717_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3394220291 (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t107639853 * p0, U3CProcessAuthenticationU3Ed__47_t649267051 * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t642595793 *, ConfiguredTaskAwaiter_t107639853 *, U3CProcessAuthenticationU3Ed__47_t649267051 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3394220291_gshared)(__this, p0, p1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3128249145 (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CProcessAuthenticationU3Ed__47_t649267051 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t3536885450 *, ConfiguredTaskAwaiter_t107639853 *, U3CProcessAuthenticationU3Ed__47_t649267051 *, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3128249145_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.ArgumentNullException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m1170824041 (ArgumentNullException_t1615371798 * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::PrepareConstrainedRegions()
extern "C" IL2CPP_METHOD_ATTR void RuntimeHelpers_PrepareConstrainedRegions_m3201503863 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
// System.Void System.Threading.ExecutionContext::EstablishCopyOnWriteScope(System.Threading.ExecutionContextSwitcher&)
extern "C" IL2CPP_METHOD_ATTR void ExecutionContext_EstablishCopyOnWriteScope_m3443267365 (RuntimeObject * __this /* static, unused */, ExecutionContextSwitcher_t2326006776 * ___ecsw0, const RuntimeMethod* method);
// System.Void Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CProcessOperationU3Ed__24_MoveNext_m3618245518 (U3CProcessOperationU3Ed__24_t1753638225 * __this, const RuntimeMethod* method);
// System.Void System.Threading.ExecutionContextSwitcher::Undo()
extern "C" IL2CPP_METHOD_ATTR void ExecutionContextSwitcher_Undo_m183954518 (ExecutionContextSwitcher_t2326006776 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TStateMachine&)
inline void AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t1753638225_m2915125460 (AsyncTaskMethodBuilder_t3536885450 * __this, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t3536885450 *, U3CProcessOperationU3Ed__24_t1753638225 *, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t1753638225_m2915125460_gshared)(__this, ___stateMachine0, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CInnerWriteU3Ed__67_MoveNext_m256243508 (U3CInnerWriteU3Ed__67_t2443470766 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TStateMachine&)
inline void AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_t2443470766_m907883981 (AsyncTaskMethodBuilder_t3536885450 * __this, U3CInnerWriteU3Ed__67_t2443470766 * ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t3536885450 *, U3CInnerWriteU3Ed__67_t2443470766 *, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_t2443470766_m907883981_gshared)(__this, ___stateMachine0, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CProcessAuthenticationU3Ed__47_MoveNext_m4056596982 (U3CProcessAuthenticationU3Ed__47_t649267051 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47>(TStateMachine&)
inline void AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__47_t649267051_m273123348 (AsyncTaskMethodBuilder_t3536885450 * __this, U3CProcessAuthenticationU3Ed__47_t649267051 * ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t3536885450 *, U3CProcessAuthenticationU3Ed__47_t649267051 *, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__47_t649267051_m273123348_gshared)(__this, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<System.Object>(TStateMachine&)
inline void AsyncTaskMethodBuilder_Start_TisRuntimeObject_m3900118536 (AsyncTaskMethodBuilder_t3536885450 * __this, RuntimeObject ** ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t3536885450 *, RuntimeObject **, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisRuntimeObject_m3900118536_gshared)(__this, ___stateMachine0, method);
}
// System.Void System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CWriteAsyncInternalU3Ed__37_MoveNext_m3969482856 (U3CWriteAsyncInternalU3Ed__37_t1756569490 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(TStateMachine&)
inline void AsyncTaskMethodBuilder_Start_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m4215946051 (AsyncTaskMethodBuilder_t3536885450 * __this, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t3536885450 *, U3CWriteAsyncInternalU3Ed__37_t1756569490 *, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m4215946051_gshared)(__this, ___stateMachine0, method);
}
// System.Boolean System.Threading.Tasks.AsyncCausalityTracer::get_LoggingOn()
extern "C" IL2CPP_METHOD_ATTR bool AsyncCausalityTracer_get_LoggingOn_m2335509619 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::get_Task()
inline Task_1_t1502828140 * AsyncTaskMethodBuilder_1_get_Task_m1946293888 (AsyncTaskMethodBuilder_1_t2418262475 * __this, const RuntimeMethod* method)
{
return (( Task_1_t1502828140 * (*) (AsyncTaskMethodBuilder_1_t2418262475 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m1946293888_gshared)(__this, method);
}
// System.Action System.Runtime.CompilerServices.AsyncMethodBuilderCore::GetCompletionAction(System.Threading.Tasks.Task,System.Runtime.CompilerServices.AsyncMethodBuilderCore/MoveNextRunner&)
extern "C" IL2CPP_METHOD_ATTR Action_t1264377477 * AsyncMethodBuilderCore_GetCompletionAction_m675964062 (AsyncMethodBuilderCore_t2955600131 * __this, Task_t3187275312 * ___taskForTracing0, MoveNextRunner_t4042132640 ** ___runnerToInitialize1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncMethodBuilderCore::PostBoxInitialization(System.Runtime.CompilerServices.IAsyncStateMachine,System.Runtime.CompilerServices.AsyncMethodBuilderCore/MoveNextRunner,System.Threading.Tasks.Task)
extern "C" IL2CPP_METHOD_ATTR void AsyncMethodBuilderCore_PostBoxInitialization_m740448042 (AsyncMethodBuilderCore_t2955600131 * __this, RuntimeObject* ___stateMachine0, MoveNextRunner_t4042132640 * ___runner1, Task_t3187275312 * ___builtTask2, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncMethodBuilderCore::ThrowAsync(System.Exception,System.Threading.SynchronizationContext)
extern "C" IL2CPP_METHOD_ATTR void AsyncMethodBuilderCore_ThrowAsync_m2300320346 (RuntimeObject * __this /* static, unused */, Exception_t * ___exception0, SynchronizationContext_t2326897723 * ___targetContext1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>,System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1419788950_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1703736389 (AsyncTaskMethodBuilder_1_t2418262475 * __this, ConfiguredTaskAwaiter_t1419788950 * ___awaiter0, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t2418262475 *, ConfiguredTaskAwaiter_t1419788950 *, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1419788950_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1703736389_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1323318437 (AsyncTaskMethodBuilder_1_t2418262475 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t2418262475 *, ConfiguredTaskAwaiter_t107639853 *, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1323318437_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_MoveNext_m1929416028 (U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::Start<System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1288598359 (AsyncTaskMethodBuilder_1_t2418262475 * __this, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t2418262475 *, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1288598359_gshared)(__this, ___stateMachine0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::get_Task()
inline Task_1_t61518632 * AsyncTaskMethodBuilder_1_get_Task_m374009415 (AsyncTaskMethodBuilder_1_t976952967 * __this, const RuntimeMethod* method)
{
return (( Task_1_t61518632 * (*) (AsyncTaskMethodBuilder_1_t976952967 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m374009415_gshared)(__this, method);
}
// System.Void System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable::OnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void HopToThreadPoolAwaitable_OnCompleted_m1603305937 (HopToThreadPoolAwaitable_t810938849 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitOnCompleted<System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable,System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m1831514697 (AsyncTaskMethodBuilder_1_t976952967 * __this, HopToThreadPoolAwaitable_t810938849 * ___awaiter0, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t976952967 *, HopToThreadPoolAwaitable_t810938849 *, U3CReadAsyncInternalU3Ed__34_t2482231463 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m1831514697_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::UnsafeOnCompleted(System.Action)
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m3845096578 (ConfiguredTaskAwaiter_t555647845 * __this, Action_t1264377477 * ___continuation0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2915554355 (AsyncTaskMethodBuilder_1_t976952967 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t976952967 *, ConfiguredTaskAwaiter_t555647845 *, U3CReadAsyncInternalU3Ed__34_t2482231463 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2915554355_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__66_t2872199449_m3184057887 (AsyncTaskMethodBuilder_1_t976952967 * __this, ConfiguredTaskAwaiter_t4273446738 * ___awaiter0, U3CInnerReadU3Ed__66_t2872199449 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t976952967 *, ConfiguredTaskAwaiter_t4273446738 *, U3CInnerReadU3Ed__66_t2872199449 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__66_t2872199449_m3184057887_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2314495281 (AsyncTaskMethodBuilder_1_t976952967 * __this, ConfiguredTaskAwaiter_t4273446738 * ___awaiter0, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t976952967 *, ConfiguredTaskAwaiter_t4273446738 *, U3CReadAsyncInternalU3Ed__34_t2482231463 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2314495281_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CStartOperationU3Ed__58_t1428438294_m656889163 (AsyncTaskMethodBuilder_1_t976952967 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CStartOperationU3Ed__58_t1428438294 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t976952967 *, ConfiguredTaskAwaiter_t107639853 *, U3CStartOperationU3Ed__58_t1428438294 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CStartOperationU3Ed__58_t1428438294_m656889163_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__66_MoveNext_m3831140736 (U3CInnerReadU3Ed__66_t2872199449 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_t2872199449_m2455768402 (AsyncTaskMethodBuilder_1_t976952967 * __this, U3CInnerReadU3Ed__66_t2872199449 * ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t976952967 *, U3CInnerReadU3Ed__66_t2872199449 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_t2872199449_m2455768402_gshared)(__this, ___stateMachine0, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__58_MoveNext_m2753508916 (U3CStartOperationU3Ed__58_t1428438294 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t1428438294_m2135626379 (AsyncTaskMethodBuilder_1_t976952967 * __this, U3CStartOperationU3Ed__58_t1428438294 * ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t976952967 *, U3CStartOperationU3Ed__58_t1428438294 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t1428438294_m2135626379_gshared)(__this, ___stateMachine0, method);
}
// System.Void System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CReadAsyncInternalU3Ed__34_MoveNext_m2031173151 (U3CReadAsyncInternalU3Ed__34_t2482231463 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m3472039230 (AsyncTaskMethodBuilder_1_t976952967 * __this, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t976952967 *, U3CReadAsyncInternalU3Ed__34_t2482231463 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m3472039230_gshared)(__this, ___stateMachine0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::get_Task()
inline Task_1_t1784080714 * AsyncTaskMethodBuilder_1_get_Task_m3279671530 (AsyncTaskMethodBuilder_1_t2699515049 * __this, const RuntimeMethod* method)
{
return (( Task_1_t1784080714 * (*) (AsyncTaskMethodBuilder_1_t2699515049 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m3279671530_gshared)(__this, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__25_t257820306_m2465036347 (AsyncTaskMethodBuilder_1_t2699515049 * __this, ConfiguredTaskAwaiter_t4273446738 * ___awaiter0, U3CInnerReadU3Ed__25_t257820306 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t2699515049 *, ConfiguredTaskAwaiter_t4273446738 *, U3CInnerReadU3Ed__25_t257820306 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__25_t257820306_m2465036347_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__25_MoveNext_m3626833002 (U3CInnerReadU3Ed__25_t257820306 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Start<Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t257820306_m914106883 (AsyncTaskMethodBuilder_1_t2699515049 * __this, U3CInnerReadU3Ed__25_t257820306 * ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t2699515049 *, U3CInnerReadU3Ed__25_t257820306 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t257820306_m914106883_gshared)(__this, ___stateMachine0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::get_Task()
inline Task_1_t190679043 * AsyncTaskMethodBuilder_1_get_Task_m317986670 (AsyncTaskMethodBuilder_1_t1106113378 * __this, const RuntimeMethod* method)
{
return (( Task_1_t190679043 * (*) (AsyncTaskMethodBuilder_1_t1106113378 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m317986670_gshared)(__this, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m726731279 (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, RuntimeObject **, RuntimeObject **, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m726731279_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m2409927442 (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, RuntimeObject **, RuntimeObject **, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m2409927442_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CStartOperationU3Ed__23_t3218468820_m3480897621 (AsyncTaskMethodBuilder_1_t1106113378 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CStartOperationU3Ed__23_t3218468820 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, ConfiguredTaskAwaiter_t555647845 *, U3CStartOperationU3Ed__23_t3218468820 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CStartOperationU3Ed__23_t3218468820_m3480897621_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m1126327911 (AsyncTaskMethodBuilder_1_t1106113378 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, ConfiguredTaskAwaiter_t107639853 *, U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m1126327911_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,System.Xml.XmlUrlResolver/<GetEntityAsync>d__15>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m3096584839 (AsyncTaskMethodBuilder_1_t1106113378 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CGetEntityAsyncU3Ed__15_t1599719825 * ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, ConfiguredTaskAwaiter_t107639853 *, U3CGetEntityAsyncU3Ed__15_t1599719825 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m3096584839_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__23_MoveNext_m2778698028 (U3CStartOperationU3Ed__23_t3218468820 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t3218468820_m1026746075 (AsyncTaskMethodBuilder_1_t1106113378 * __this, U3CStartOperationU3Ed__23_t3218468820 * ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, U3CStartOperationU3Ed__23_t3218468820 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t3218468820_m1026746075_gshared)(__this, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<System.Object>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisRuntimeObject_m599998781 (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject ** ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, RuntimeObject **, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisRuntimeObject_m599998781_gshared)(__this, ___stateMachine0, method);
}
// System.Void System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CGetNonFileStreamAsyncU3Ed__5_MoveNext_m1421413381 (U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m2777383802 (AsyncTaskMethodBuilder_1_t1106113378 * __this, U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 * ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m2777383802_gshared)(__this, ___stateMachine0, method);
}
// System.Void System.Xml.XmlUrlResolver/<GetEntityAsync>d__15::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CGetEntityAsyncU3Ed__15_MoveNext_m3272980288 (U3CGetEntityAsyncU3Ed__15_t1599719825 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<System.Xml.XmlUrlResolver/<GetEntityAsync>d__15>(TStateMachine&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m489318611 (AsyncTaskMethodBuilder_1_t1106113378 * __this, U3CGetEntityAsyncU3Ed__15_t1599719825 * ___stateMachine0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t1106113378 *, U3CGetEntityAsyncU3Ed__15_t1599719825 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m489318611_gshared)(__this, ___stateMachine0, method);
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::get_Task()
inline Task_1_t4022128754 * AsyncTaskMethodBuilder_1_get_Task_m3182333516 (AsyncTaskMethodBuilder_1_t642595793 * __this, const RuntimeMethod* method)
{
return (( Task_1_t4022128754 * (*) (AsyncTaskMethodBuilder_1_t642595793 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m3182333516_gshared)(__this, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
inline void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m2353068914 (AsyncTaskMethodBuilder_1_t642595793 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t642595793 *, RuntimeObject **, RuntimeObject **, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m2353068914_gshared)(__this, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.InteropServices.Marshal::StructureToPtr(System.Object,System.IntPtr,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void Marshal_StructureToPtr_m2294149499 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___structure0, intptr_t ___ptr1, bool ___fDeleteOld2, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentNullException(System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m2415499580 (RuntimeObject * __this /* static, unused */, int32_t ___argument0, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
extern "C" IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m1620074514 (RuntimeObject * __this /* static, unused */, RuntimeTypeHandle_t3027515415 p0, const RuntimeMethod* method);
// System.Void UnityEngine.Assertions.Assert::IsNotNull(UnityEngine.Object,System.String)
extern "C" IL2CPP_METHOD_ATTR void Assert_IsNotNull_m3577558546 (RuntimeObject * __this /* static, unused */, Object_t631007953 * ___value0, String_t* ___message1, const RuntimeMethod* method);
// System.String UnityEngine.Assertions.AssertionMessageUtil::NullFailureMessage(System.Object,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR String_t* AssertionMessageUtil_NullFailureMessage_m2715044825 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, bool ___expectNull1, const RuntimeMethod* method);
// System.Void UnityEngine.Assertions.Assert::Fail(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void Assert_Fail_m1035509689 (RuntimeObject * __this /* static, unused */, String_t* ___message0, String_t* ___userMessage1, const RuntimeMethod* method);
// System.Type System.Object::GetType()
extern "C" IL2CPP_METHOD_ATTR Type_t * Object_GetType_m88164663 (RuntimeObject * __this, const RuntimeMethod* method);
// System.String UnityEngine.UnityString::Format(System.String,System.Object[])
extern "C" IL2CPP_METHOD_ATTR String_t* UnityString_Format_m261690510 (RuntimeObject * __this /* static, unused */, String_t* p0, ObjectU5BU5D_t2843939325* p1, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m1312628991 (ArgumentException_t132251570 * __this, String_t* p0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Mesh::DefaultDimensionForChannel(UnityEngine.Mesh/InternalShaderChannel)
extern "C" IL2CPP_METHOD_ATTR int32_t Mesh_DefaultDimensionForChannel_m576040980 (RuntimeObject * __this /* static, unused */, int32_t ___channel0, const RuntimeMethod* method);
// System.Int32 UnityEngine.NoAllocHelpers::SafeLength(System.Array)
extern "C" IL2CPP_METHOD_ATTR int32_t NoAllocHelpers_SafeLength_m3994544446 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___values0, const RuntimeMethod* method);
// System.Void UnityEngine.Mesh::SetSizedArrayForChannel(UnityEngine.Mesh/InternalShaderChannel,UnityEngine.Mesh/InternalVertexChannelType,System.Int32,System.Array,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Mesh_SetSizedArrayForChannel_m2565120436 (Mesh_t3648964284 * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, RuntimeArray * ___values3, int32_t ___valuesCount4, const RuntimeMethod* method);
// System.Array UnityEngine.NoAllocHelpers::ExtractArrayFromList(System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeArray * NoAllocHelpers_ExtractArrayFromList_m2239661248 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___list0, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::LogError(System.Object)
extern "C" IL2CPP_METHOD_ATTR void Debug_LogError_m2850623458 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___message0, const RuntimeMethod* method);
// UnityEngine.Mesh/InternalShaderChannel UnityEngine.Mesh::GetUVChannel(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Mesh_GetUVChannel_m1848830416 (Mesh_t3648964284 * __this, int32_t ___uvIndex0, const RuntimeMethod* method);
// System.Int32 System.Array::get_Length()
extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Length_m21610649 (RuntimeArray * __this, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m3628145864 (ArgumentOutOfRangeException_t777629997 * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Attribute System.Reflection.CustomAttributeExtensions::GetCustomAttribute(System.Reflection.Assembly,System.Type)
extern "C" IL2CPP_METHOD_ATTR Attribute_t861562559 * CustomAttributeExtensions_GetCustomAttribute_m2805223115 (RuntimeObject * __this /* static, unused */, Assembly_t * ___element0, Type_t * ___attributeType1, const RuntimeMethod* method);
// System.Object System.Runtime.InteropServices.Marshal::PtrToStructure(System.IntPtr,System.Type)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Marshal_PtrToStructure_m771949023 (RuntimeObject * __this /* static, unused */, intptr_t ___ptr0, Type_t * ___structureType1, const RuntimeMethod* method);
// System.String System.Environment::GetResourceString(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2063689938 (RuntimeObject * __this /* static, unused */, String_t* ___key0, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m237278729 (InvalidOperationException_t56020091 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.IntPtr::.ctor(System.Void*)
extern "C" IL2CPP_METHOD_ATTR void IntPtr__ctor_m3384658186 (intptr_t* __this, void* p0, const RuntimeMethod* method);
// System.Void UnityEngine.Component::GetComponentFastPath(System.Type,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Component_GetComponentFastPath_m1180649031 (Component_t1923634451 * __this, Type_t * ___type0, intptr_t ___oneFurtherThanResultValue1, const RuntimeMethod* method);
// UnityEngine.Component UnityEngine.GameObject::AddComponent(System.Type)
extern "C" IL2CPP_METHOD_ATTR Component_t1923634451 * GameObject_AddComponent_m136524825 (GameObject_t1113636619 * __this, Type_t * ___componentType0, const RuntimeMethod* method);
// UnityEngine.ScriptableObject UnityEngine.ScriptableObject::CreateInstance(System.Type)
extern "C" IL2CPP_METHOD_ATTR ScriptableObject_t2528358522 * ScriptableObject_CreateInstance_m2611081756 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.IO.__Error::WrongAsyncResult()
extern "C" IL2CPP_METHOD_ATTR void __Error_WrongAsyncResult_m4181844776 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult()
inline int32_t TaskAwaiter_1_GetResult_m3496793423 (TaskAwaiter_1_t1450460888 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (TaskAwaiter_1_t1450460888 *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m3496793423_gshared)(__this, method);
}
// TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult()
inline RuntimeObject * TaskAwaiter_1_GetResult_m3577040539 (TaskAwaiter_1_t1579621299 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (TaskAwaiter_1_t1579621299 *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m3577040539_gshared)(__this, method);
}
// System.Exception System.Linq.Error::ArgumentNull(System.String)
extern "C" IL2CPP_METHOD_ATTR Exception_t * Error_ArgumentNull_m219206370 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method);
// System.Exception System.Linq.Error::MoreThanOneMatch()
extern "C" IL2CPP_METHOD_ATTR Exception_t * Error_MoreThanOneMatch_m2666736739 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
// System.Int32 System.Math::Min(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Math_Min_m3468062251 (RuntimeObject * __this /* static, unused */, int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.Component::get_gameObject()
extern "C" IL2CPP_METHOD_ATTR GameObject_t1113636619 * Component_get_gameObject_m442555142 (Component_t1923634451 * __this, const RuntimeMethod* method);
// System.Array UnityEngine.GameObject::GetComponentsInternal(System.Type,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeArray * GameObject_GetComponentsInternal_m4006738154 (GameObject_t1113636619 * __this, Type_t * ___type0, bool ___useSearchTypeAsArrayReturnType1, bool ___recursive2, bool ___includeInactive3, bool ___reverse4, RuntimeObject * ___resultList5, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitOnCompleted<System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable,System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1286127563_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, HopToThreadPoolAwaitable_t810938849 * ___awaiter0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine1, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_1_t642595793 * L_0 = (AsyncTaskMethodBuilder_1_t642595793 *)__this->get_address_of_m_builder_1();
HopToThreadPoolAwaitable_t810938849 * L_1 = ___awaiter0;
U3CWriteAsyncInternalU3Ed__37_t1756569490 * L_2 = ___stateMachine1;
AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1125588378((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)L_0, (HopToThreadPoolAwaitable_t810938849 *)(HopToThreadPoolAwaitable_t810938849 *)L_1, (U3CWriteAsyncInternalU3Ed__37_t1756569490 *)(U3CWriteAsyncInternalU3Ed__37_t1756569490 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return;
}
}
extern "C" void AsyncTaskMethodBuilder_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1286127563_AdjustorThunk (RuntimeObject * __this, HopToThreadPoolAwaitable_t810938849 * ___awaiter0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_t3536885450 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_t3536885450 *>(__this + 1);
AsyncTaskMethodBuilder_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1286127563(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m150600026_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_1_t642595793 * L_0 = (AsyncTaskMethodBuilder_1_t642595793 *)__this->get_address_of_m_builder_1();
RuntimeObject ** L_1 = ___awaiter0;
RuntimeObject ** L_2 = ___stateMachine1;
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m808550706((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)L_0, (RuntimeObject **)(RuntimeObject **)L_1, (RuntimeObject **)(RuntimeObject **)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return;
}
}
extern "C" void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m150600026_AdjustorThunk (RuntimeObject * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_t3536885450 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_t3536885450 *>(__this + 1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m150600026(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m1931166322_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine1, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_1_t642595793 * L_0 = (AsyncTaskMethodBuilder_1_t642595793 *)__this->get_address_of_m_builder_1();
ConfiguredTaskAwaiter_t555647845 * L_1 = ___awaiter0;
U3CProcessOperationU3Ed__24_t1753638225 * L_2 = ___stateMachine1;
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m254633483((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)L_0, (ConfiguredTaskAwaiter_t555647845 *)(ConfiguredTaskAwaiter_t555647845 *)L_1, (U3CProcessOperationU3Ed__24_t1753638225 *)(U3CProcessOperationU3Ed__24_t1753638225 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return;
}
}
extern "C" void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m1931166322_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_t3536885450 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_t3536885450 *>(__this + 1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m1931166322(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m951817722_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CInnerWriteU3Ed__67_t2443470766 * ___stateMachine1, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_1_t642595793 * L_0 = (AsyncTaskMethodBuilder_1_t642595793 *)__this->get_address_of_m_builder_1();
ConfiguredTaskAwaiter_t555647845 * L_1 = ___awaiter0;
U3CInnerWriteU3Ed__67_t2443470766 * L_2 = ___stateMachine1;
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m1607225569((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)L_0, (ConfiguredTaskAwaiter_t555647845 *)(ConfiguredTaskAwaiter_t555647845 *)L_1, (U3CInnerWriteU3Ed__67_t2443470766 *)(U3CInnerWriteU3Ed__67_t2443470766 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return;
}
}
extern "C" void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m951817722_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CInnerWriteU3Ed__67_t2443470766 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_t3536885450 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_t3536885450 *>(__this + 1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m951817722(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m2967135225_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine1, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_1_t642595793 * L_0 = (AsyncTaskMethodBuilder_1_t642595793 *)__this->get_address_of_m_builder_1();
ConfiguredTaskAwaiter_t555647845 * L_1 = ___awaiter0;
U3CWriteAsyncInternalU3Ed__37_t1756569490 * L_2 = ___stateMachine1;
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1039663495((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)L_0, (ConfiguredTaskAwaiter_t555647845 *)(ConfiguredTaskAwaiter_t555647845 *)L_1, (U3CWriteAsyncInternalU3Ed__37_t1756569490 *)(U3CWriteAsyncInternalU3Ed__37_t1756569490 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return;
}
}
extern "C" void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m2967135225_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_t3536885450 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_t3536885450 *>(__this + 1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m2967135225(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m1834728717_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t1701041524 * ___awaiter0, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine1, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_1_t642595793 * L_0 = (AsyncTaskMethodBuilder_1_t642595793 *)__this->get_address_of_m_builder_1();
ConfiguredTaskAwaiter_t1701041524 * L_1 = ___awaiter0;
U3CProcessOperationU3Ed__24_t1753638225 * L_2 = ___stateMachine1;
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m3029995541((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)L_0, (ConfiguredTaskAwaiter_t1701041524 *)(ConfiguredTaskAwaiter_t1701041524 *)L_1, (U3CProcessOperationU3Ed__24_t1753638225 *)(U3CProcessOperationU3Ed__24_t1753638225 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return;
}
}
extern "C" void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m1834728717_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t1701041524 * ___awaiter0, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_t3536885450 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_t3536885450 *>(__this + 1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m1834728717(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3128249145_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CProcessAuthenticationU3Ed__47_t649267051 * ___stateMachine1, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_1_t642595793 * L_0 = (AsyncTaskMethodBuilder_1_t642595793 *)__this->get_address_of_m_builder_1();
ConfiguredTaskAwaiter_t107639853 * L_1 = ___awaiter0;
U3CProcessAuthenticationU3Ed__47_t649267051 * L_2 = ___stateMachine1;
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3394220291((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)L_0, (ConfiguredTaskAwaiter_t107639853 *)(ConfiguredTaskAwaiter_t107639853 *)L_1, (U3CProcessAuthenticationU3Ed__47_t649267051 *)(U3CProcessAuthenticationU3Ed__47_t649267051 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return;
}
}
extern "C" void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3128249145_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CProcessAuthenticationU3Ed__47_t649267051 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_t3536885450 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_t3536885450 *>(__this + 1);
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3128249145(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t1753638225_m2915125460_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t1753638225_m2915125460_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
goto IL_0018;
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t1753638225_m2915125460_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
U3CProcessOperationU3Ed__24_t1753638225 * L_2 = ___stateMachine0;
U3CProcessOperationU3Ed__24_MoveNext_m3618245518((U3CProcessOperationU3Ed__24_t1753638225 *)(U3CProcessOperationU3Ed__24_t1753638225 *)L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t1753638225_m2915125460_AdjustorThunk (RuntimeObject * __this, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_t3536885450 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_t3536885450 *>(__this + 1);
AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t1753638225_m2915125460(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_t2443470766_m907883981_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, U3CInnerWriteU3Ed__67_t2443470766 * ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_t2443470766_m907883981_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
goto IL_0018;
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_t2443470766_m907883981_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
U3CInnerWriteU3Ed__67_t2443470766 * L_2 = ___stateMachine0;
U3CInnerWriteU3Ed__67_MoveNext_m256243508((U3CInnerWriteU3Ed__67_t2443470766 *)(U3CInnerWriteU3Ed__67_t2443470766 *)L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_t2443470766_m907883981_AdjustorThunk (RuntimeObject * __this, U3CInnerWriteU3Ed__67_t2443470766 * ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_t3536885450 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_t3536885450 *>(__this + 1);
AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_t2443470766_m907883981(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__47_t649267051_m273123348_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, U3CProcessAuthenticationU3Ed__47_t649267051 * ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__47_t649267051_m273123348_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
goto IL_0018;
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__47_t649267051_m273123348_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
U3CProcessAuthenticationU3Ed__47_t649267051 * L_2 = ___stateMachine0;
U3CProcessAuthenticationU3Ed__47_MoveNext_m4056596982((U3CProcessAuthenticationU3Ed__47_t649267051 *)(U3CProcessAuthenticationU3Ed__47_t649267051 *)L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__47_t649267051_m273123348_AdjustorThunk (RuntimeObject * __this, U3CProcessAuthenticationU3Ed__47_t649267051 * ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_t3536885450 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_t3536885450 *>(__this + 1);
AsyncTaskMethodBuilder_Start_TisU3CProcessAuthenticationU3Ed__47_t649267051_m273123348(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<System.Object>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisRuntimeObject_m3900118536_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, RuntimeObject ** ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_Start_TisRuntimeObject_m3900118536_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject ** L_0 = ___stateMachine0;
if ((*(RuntimeObject **)L_0))
{
goto IL_0018;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_Start_TisRuntimeObject_m3900118536_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
RuntimeObject ** L_2 = ___stateMachine0;
NullCheck((RuntimeObject*)(*L_2));
InterfaceActionInvoker0::Invoke(0 /* System.Void System.Runtime.CompilerServices.IAsyncStateMachine::MoveNext() */, IAsyncStateMachine_t923100567_il2cpp_TypeInfo_var, (RuntimeObject*)(*L_2));
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_Start_TisRuntimeObject_m3900118536_AdjustorThunk (RuntimeObject * __this, RuntimeObject ** ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_t3536885450 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_t3536885450 *>(__this + 1);
AsyncTaskMethodBuilder_Start_TisRuntimeObject_m3900118536(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m4215946051_gshared (AsyncTaskMethodBuilder_t3536885450 * __this, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_Start_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m4215946051_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
goto IL_0018;
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_Start_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m4215946051_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
U3CWriteAsyncInternalU3Ed__37_t1756569490 * L_2 = ___stateMachine0;
U3CWriteAsyncInternalU3Ed__37_MoveNext_m3969482856((U3CWriteAsyncInternalU3Ed__37_t1756569490 *)(U3CWriteAsyncInternalU3Ed__37_t1756569490 *)L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_Start_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m4215946051_AdjustorThunk (RuntimeObject * __this, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_t3536885450 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_t3536885450 *>(__this + 1);
AsyncTaskMethodBuilder_Start_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m4215946051(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>,System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1419788950_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1703736389_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, ConfiguredTaskAwaiter_t1419788950 * ___awaiter0, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1419788950_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1703736389_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t1502828140 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t1502828140 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t1502828140 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t1502828140 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m1946293888((AsyncTaskMethodBuilder_1_t2418262475 *)(AsyncTaskMethodBuilder_1_t2418262475 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t1502828140 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m1946293888((AsyncTaskMethodBuilder_1_t2418262475 *)(AsyncTaskMethodBuilder_1_t2418262475 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t1502828140 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * L_8 = ___stateMachine1;
U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 L_9 = (*(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t1502828140 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t1419788950 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
Il2CppFakeBox<ConfiguredTaskAwaiter_t1419788950 > L_15(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), L_13);
const VirtualInvokeData& il2cpp_virtual_invoke_data__84 = il2cpp_codegen_get_interface_invoke_data(0, &L_15, ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var);
(( void (*) (RuntimeObject*, Action_t1264377477 *, const RuntimeMethod*))il2cpp_virtual_invoke_data__84.methodPtr)((RuntimeObject*)(&L_15), (Action_t1264377477 *)L_14, /*hidden argument*/il2cpp_virtual_invoke_data__84.method);
*L_13 = L_15.m_Value;
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1419788950_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1703736389_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t1419788950 * ___awaiter0, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t2418262475 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2418262475 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1419788950_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1703736389(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1323318437_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1323318437_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t1502828140 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t1502828140 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t1502828140 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t1502828140 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m1946293888((AsyncTaskMethodBuilder_1_t2418262475 *)(AsyncTaskMethodBuilder_1_t2418262475 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t1502828140 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m1946293888((AsyncTaskMethodBuilder_1_t2418262475 *)(AsyncTaskMethodBuilder_1_t2418262475 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t1502828140 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * L_8 = ___stateMachine1;
U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 L_9 = (*(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t1502828140 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t107639853 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
Il2CppFakeBox<ConfiguredTaskAwaiter_t107639853 > L_15(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), L_13);
const VirtualInvokeData& il2cpp_virtual_invoke_data__84 = il2cpp_codegen_get_interface_invoke_data(0, &L_15, ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var);
(( void (*) (RuntimeObject*, Action_t1264377477 *, const RuntimeMethod*))il2cpp_virtual_invoke_data__84.methodPtr)((RuntimeObject*)(&L_15), (Action_t1264377477 *)L_14, /*hidden argument*/il2cpp_virtual_invoke_data__84.method);
*L_13 = L_15.m_Value;
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1323318437_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t2418262475 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2418262475 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1323318437(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::Start<System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1288598359_gshared (AsyncTaskMethodBuilder_1_t2418262475 * __this, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_Start_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1288598359_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
goto IL_0018;
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_1_Start_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1288598359_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * L_2 = ___stateMachine0;
U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_MoveNext_m1929416028((U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 *)(U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 *)L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_Start_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1288598359_AdjustorThunk (RuntimeObject * __this, U3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134 * ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t2418262475 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2418262475 *>(__this + 1);
AsyncTaskMethodBuilder_1_Start_TisU3CWaitUntilCountOrTimeoutAsyncU3Ed__31_t2346442134_m1288598359(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitOnCompleted<System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable,System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m1831514697_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, HopToThreadPoolAwaitable_t810938849 * ___awaiter0, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m1831514697_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t61518632 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t61518632 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t61518632 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t61518632 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m374009415((AsyncTaskMethodBuilder_1_t976952967 *)(AsyncTaskMethodBuilder_1_t976952967 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t61518632 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m374009415((AsyncTaskMethodBuilder_1_t976952967 *)(AsyncTaskMethodBuilder_1_t976952967 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t61518632 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CReadAsyncInternalU3Ed__34_t2482231463 * L_8 = ___stateMachine1;
U3CReadAsyncInternalU3Ed__34_t2482231463 L_9 = (*(U3CReadAsyncInternalU3Ed__34_t2482231463 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t61518632 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
HopToThreadPoolAwaitable_t810938849 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
HopToThreadPoolAwaitable_OnCompleted_m1603305937((HopToThreadPoolAwaitable_t810938849 *)(HopToThreadPoolAwaitable_t810938849 *)L_13, (Action_t1264377477 *)L_14, /*hidden argument*/NULL);
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m1831514697_AdjustorThunk (RuntimeObject * __this, HopToThreadPoolAwaitable_t810938849 * ___awaiter0, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m1831514697(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2915554355_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2915554355_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t61518632 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t61518632 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t61518632 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t61518632 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m374009415((AsyncTaskMethodBuilder_1_t976952967 *)(AsyncTaskMethodBuilder_1_t976952967 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t61518632 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m374009415((AsyncTaskMethodBuilder_1_t976952967 *)(AsyncTaskMethodBuilder_1_t976952967 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t61518632 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CReadAsyncInternalU3Ed__34_t2482231463 * L_8 = ___stateMachine1;
U3CReadAsyncInternalU3Ed__34_t2482231463 L_9 = (*(U3CReadAsyncInternalU3Ed__34_t2482231463 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t61518632 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t555647845 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
ConfiguredTaskAwaiter_UnsafeOnCompleted_m3845096578((ConfiguredTaskAwaiter_t555647845 *)(ConfiguredTaskAwaiter_t555647845 *)L_13, (Action_t1264377477 *)L_14, /*hidden argument*/NULL);
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2915554355_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2915554355(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__66_t2872199449_m3184057887_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, ConfiguredTaskAwaiter_t4273446738 * ___awaiter0, U3CInnerReadU3Ed__66_t2872199449 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__66_t2872199449_m3184057887_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t61518632 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t61518632 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t61518632 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t61518632 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m374009415((AsyncTaskMethodBuilder_1_t976952967 *)(AsyncTaskMethodBuilder_1_t976952967 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t61518632 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m374009415((AsyncTaskMethodBuilder_1_t976952967 *)(AsyncTaskMethodBuilder_1_t976952967 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t61518632 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CInnerReadU3Ed__66_t2872199449 * L_8 = ___stateMachine1;
U3CInnerReadU3Ed__66_t2872199449 L_9 = (*(U3CInnerReadU3Ed__66_t2872199449 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t61518632 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t4273446738 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
Il2CppFakeBox<ConfiguredTaskAwaiter_t4273446738 > L_15(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), L_13);
const VirtualInvokeData& il2cpp_virtual_invoke_data__84 = il2cpp_codegen_get_interface_invoke_data(0, &L_15, ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var);
(( void (*) (RuntimeObject*, Action_t1264377477 *, const RuntimeMethod*))il2cpp_virtual_invoke_data__84.methodPtr)((RuntimeObject*)(&L_15), (Action_t1264377477 *)L_14, /*hidden argument*/il2cpp_virtual_invoke_data__84.method);
*L_13 = L_15.m_Value;
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__66_t2872199449_m3184057887_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t4273446738 * ___awaiter0, U3CInnerReadU3Ed__66_t2872199449 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__66_t2872199449_m3184057887(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2314495281_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, ConfiguredTaskAwaiter_t4273446738 * ___awaiter0, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2314495281_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t61518632 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t61518632 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t61518632 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t61518632 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m374009415((AsyncTaskMethodBuilder_1_t976952967 *)(AsyncTaskMethodBuilder_1_t976952967 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t61518632 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m374009415((AsyncTaskMethodBuilder_1_t976952967 *)(AsyncTaskMethodBuilder_1_t976952967 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t61518632 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CReadAsyncInternalU3Ed__34_t2482231463 * L_8 = ___stateMachine1;
U3CReadAsyncInternalU3Ed__34_t2482231463 L_9 = (*(U3CReadAsyncInternalU3Ed__34_t2482231463 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t61518632 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t4273446738 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
Il2CppFakeBox<ConfiguredTaskAwaiter_t4273446738 > L_15(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), L_13);
const VirtualInvokeData& il2cpp_virtual_invoke_data__84 = il2cpp_codegen_get_interface_invoke_data(0, &L_15, ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var);
(( void (*) (RuntimeObject*, Action_t1264377477 *, const RuntimeMethod*))il2cpp_virtual_invoke_data__84.methodPtr)((RuntimeObject*)(&L_15), (Action_t1264377477 *)L_14, /*hidden argument*/il2cpp_virtual_invoke_data__84.method);
*L_13 = L_15.m_Value;
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2314495281_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t4273446738 * ___awaiter0, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m2314495281(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CStartOperationU3Ed__58_t1428438294_m656889163_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CStartOperationU3Ed__58_t1428438294 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CStartOperationU3Ed__58_t1428438294_m656889163_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t61518632 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t61518632 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t61518632 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t61518632 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m374009415((AsyncTaskMethodBuilder_1_t976952967 *)(AsyncTaskMethodBuilder_1_t976952967 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t61518632 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m374009415((AsyncTaskMethodBuilder_1_t976952967 *)(AsyncTaskMethodBuilder_1_t976952967 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t61518632 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CStartOperationU3Ed__58_t1428438294 * L_8 = ___stateMachine1;
U3CStartOperationU3Ed__58_t1428438294 L_9 = (*(U3CStartOperationU3Ed__58_t1428438294 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t61518632 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t107639853 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
Il2CppFakeBox<ConfiguredTaskAwaiter_t107639853 > L_15(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), L_13);
const VirtualInvokeData& il2cpp_virtual_invoke_data__84 = il2cpp_codegen_get_interface_invoke_data(0, &L_15, ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var);
(( void (*) (RuntimeObject*, Action_t1264377477 *, const RuntimeMethod*))il2cpp_virtual_invoke_data__84.methodPtr)((RuntimeObject*)(&L_15), (Action_t1264377477 *)L_14, /*hidden argument*/il2cpp_virtual_invoke_data__84.method);
*L_13 = L_15.m_Value;
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CStartOperationU3Ed__58_t1428438294_m656889163_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CStartOperationU3Ed__58_t1428438294 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CStartOperationU3Ed__58_t1428438294_m656889163(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_t2872199449_m2455768402_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, U3CInnerReadU3Ed__66_t2872199449 * ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_t2872199449_m2455768402_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
goto IL_0018;
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_t2872199449_m2455768402_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
U3CInnerReadU3Ed__66_t2872199449 * L_2 = ___stateMachine0;
U3CInnerReadU3Ed__66_MoveNext_m3831140736((U3CInnerReadU3Ed__66_t2872199449 *)(U3CInnerReadU3Ed__66_t2872199449 *)L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_t2872199449_m2455768402_AdjustorThunk (RuntimeObject * __this, U3CInnerReadU3Ed__66_t2872199449 * ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_t2872199449_m2455768402(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t1428438294_m2135626379_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, U3CStartOperationU3Ed__58_t1428438294 * ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t1428438294_m2135626379_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
goto IL_0018;
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t1428438294_m2135626379_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
U3CStartOperationU3Ed__58_t1428438294 * L_2 = ___stateMachine0;
U3CStartOperationU3Ed__58_MoveNext_m2753508916((U3CStartOperationU3Ed__58_t1428438294 *)(U3CStartOperationU3Ed__58_t1428438294 *)L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t1428438294_m2135626379_AdjustorThunk (RuntimeObject * __this, U3CStartOperationU3Ed__58_t1428438294 * ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t1428438294_m2135626379(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<System.Security.Cryptography.CryptoStream/<ReadAsyncInternal>d__34>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m3472039230_gshared (AsyncTaskMethodBuilder_1_t976952967 * __this, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_Start_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m3472039230_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
goto IL_0018;
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_1_Start_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m3472039230_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
U3CReadAsyncInternalU3Ed__34_t2482231463 * L_2 = ___stateMachine0;
U3CReadAsyncInternalU3Ed__34_MoveNext_m2031173151((U3CReadAsyncInternalU3Ed__34_t2482231463 *)(U3CReadAsyncInternalU3Ed__34_t2482231463 *)L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_Start_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m3472039230_AdjustorThunk (RuntimeObject * __this, U3CReadAsyncInternalU3Ed__34_t2482231463 * ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t976952967 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t976952967 *>(__this + 1);
AsyncTaskMethodBuilder_1_Start_TisU3CReadAsyncInternalU3Ed__34_t2482231463_m3472039230(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__25_t257820306_m2465036347_gshared (AsyncTaskMethodBuilder_1_t2699515049 * __this, ConfiguredTaskAwaiter_t4273446738 * ___awaiter0, U3CInnerReadU3Ed__25_t257820306 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__25_t257820306_m2465036347_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t1784080714 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t1784080714 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t1784080714 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t1784080714 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m3279671530((AsyncTaskMethodBuilder_1_t2699515049 *)(AsyncTaskMethodBuilder_1_t2699515049 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t1784080714 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m3279671530((AsyncTaskMethodBuilder_1_t2699515049 *)(AsyncTaskMethodBuilder_1_t2699515049 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t1784080714 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CInnerReadU3Ed__25_t257820306 * L_8 = ___stateMachine1;
U3CInnerReadU3Ed__25_t257820306 L_9 = (*(U3CInnerReadU3Ed__25_t257820306 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t1784080714 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t4273446738 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
Il2CppFakeBox<ConfiguredTaskAwaiter_t4273446738 > L_15(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), L_13);
const VirtualInvokeData& il2cpp_virtual_invoke_data__84 = il2cpp_codegen_get_interface_invoke_data(0, &L_15, ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var);
(( void (*) (RuntimeObject*, Action_t1264377477 *, const RuntimeMethod*))il2cpp_virtual_invoke_data__84.methodPtr)((RuntimeObject*)(&L_15), (Action_t1264377477 *)L_14, /*hidden argument*/il2cpp_virtual_invoke_data__84.method);
*L_13 = L_15.m_Value;
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__25_t257820306_m2465036347_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t4273446738 * ___awaiter0, U3CInnerReadU3Ed__25_t257820306 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t2699515049 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2699515049 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t4273446738_TisU3CInnerReadU3Ed__25_t257820306_m2465036347(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Start<Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t257820306_m914106883_gshared (AsyncTaskMethodBuilder_1_t2699515049 * __this, U3CInnerReadU3Ed__25_t257820306 * ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t257820306_m914106883_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
goto IL_0018;
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t257820306_m914106883_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
U3CInnerReadU3Ed__25_t257820306 * L_2 = ___stateMachine0;
U3CInnerReadU3Ed__25_MoveNext_m3626833002((U3CInnerReadU3Ed__25_t257820306 *)(U3CInnerReadU3Ed__25_t257820306 *)L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t257820306_m914106883_AdjustorThunk (RuntimeObject * __this, U3CInnerReadU3Ed__25_t257820306 * ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t2699515049 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2699515049 *>(__this + 1);
AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_t257820306_m914106883(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m726731279_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m726731279_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t190679043 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t190679043 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t190679043 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t190679043 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m317986670((AsyncTaskMethodBuilder_1_t1106113378 *)(AsyncTaskMethodBuilder_1_t1106113378 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t190679043 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m317986670((AsyncTaskMethodBuilder_1_t1106113378 *)(AsyncTaskMethodBuilder_1_t1106113378 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t190679043 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject ** L_8 = ___stateMachine1;
MoveNextRunner_t4042132640 * L_9 = V_0;
Task_1_t190679043 * L_10 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)(*(RuntimeObject **)L_8), (MoveNextRunner_t4042132640 *)L_9, (Task_t3187275312 *)L_10, /*hidden argument*/NULL);
}
IL_004c:
{
RuntimeObject ** L_11 = ___awaiter0;
Action_t1264377477 * L_12 = V_1;
NullCheck((RuntimeObject*)(*L_11));
InterfaceActionInvoker1< Action_t1264377477 * >::Invoke(0 /* System.Void System.Runtime.CompilerServices.INotifyCompletion::OnCompleted(System.Action) */, INotifyCompletion_t4057888895_il2cpp_TypeInfo_var, (RuntimeObject*)(*L_11), (Action_t1264377477 *)L_12);
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m726731279_AdjustorThunk (RuntimeObject * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m726731279(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m2409927442_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m2409927442_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t190679043 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t190679043 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t190679043 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t190679043 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m317986670((AsyncTaskMethodBuilder_1_t1106113378 *)(AsyncTaskMethodBuilder_1_t1106113378 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t190679043 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m317986670((AsyncTaskMethodBuilder_1_t1106113378 *)(AsyncTaskMethodBuilder_1_t1106113378 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t190679043 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject ** L_8 = ___stateMachine1;
MoveNextRunner_t4042132640 * L_9 = V_0;
Task_1_t190679043 * L_10 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)(*(RuntimeObject **)L_8), (MoveNextRunner_t4042132640 *)L_9, (Task_t3187275312 *)L_10, /*hidden argument*/NULL);
}
IL_004c:
{
RuntimeObject ** L_11 = ___awaiter0;
Action_t1264377477 * L_12 = V_1;
NullCheck((RuntimeObject*)(*L_11));
InterfaceActionInvoker1< Action_t1264377477 * >::Invoke(0 /* System.Void System.Runtime.CompilerServices.ICriticalNotifyCompletion::UnsafeOnCompleted(System.Action) */, ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var, (RuntimeObject*)(*L_11), (Action_t1264377477 *)L_12);
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m2409927442_AdjustorThunk (RuntimeObject * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m2409927442(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CStartOperationU3Ed__23_t3218468820_m3480897621_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CStartOperationU3Ed__23_t3218468820 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CStartOperationU3Ed__23_t3218468820_m3480897621_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t190679043 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t190679043 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t190679043 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t190679043 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m317986670((AsyncTaskMethodBuilder_1_t1106113378 *)(AsyncTaskMethodBuilder_1_t1106113378 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t190679043 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m317986670((AsyncTaskMethodBuilder_1_t1106113378 *)(AsyncTaskMethodBuilder_1_t1106113378 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t190679043 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CStartOperationU3Ed__23_t3218468820 * L_8 = ___stateMachine1;
U3CStartOperationU3Ed__23_t3218468820 L_9 = (*(U3CStartOperationU3Ed__23_t3218468820 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t190679043 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t555647845 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
ConfiguredTaskAwaiter_UnsafeOnCompleted_m3845096578((ConfiguredTaskAwaiter_t555647845 *)(ConfiguredTaskAwaiter_t555647845 *)L_13, (Action_t1264377477 *)L_14, /*hidden argument*/NULL);
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CStartOperationU3Ed__23_t3218468820_m3480897621_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CStartOperationU3Ed__23_t3218468820 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CStartOperationU3Ed__23_t3218468820_m3480897621(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m1126327911_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m1126327911_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t190679043 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t190679043 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t190679043 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t190679043 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m317986670((AsyncTaskMethodBuilder_1_t1106113378 *)(AsyncTaskMethodBuilder_1_t1106113378 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t190679043 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m317986670((AsyncTaskMethodBuilder_1_t1106113378 *)(AsyncTaskMethodBuilder_1_t1106113378 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t190679043 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 * L_8 = ___stateMachine1;
U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 L_9 = (*(U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t190679043 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t107639853 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
Il2CppFakeBox<ConfiguredTaskAwaiter_t107639853 > L_15(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), L_13);
const VirtualInvokeData& il2cpp_virtual_invoke_data__84 = il2cpp_codegen_get_interface_invoke_data(0, &L_15, ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var);
(( void (*) (RuntimeObject*, Action_t1264377477 *, const RuntimeMethod*))il2cpp_virtual_invoke_data__84.methodPtr)((RuntimeObject*)(&L_15), (Action_t1264377477 *)L_14, /*hidden argument*/il2cpp_virtual_invoke_data__84.method);
*L_13 = L_15.m_Value;
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m1126327911_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m1126327911(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,System.Xml.XmlUrlResolver/<GetEntityAsync>d__15>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m3096584839_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CGetEntityAsyncU3Ed__15_t1599719825 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m3096584839_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t190679043 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t190679043 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t190679043 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t190679043 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m317986670((AsyncTaskMethodBuilder_1_t1106113378 *)(AsyncTaskMethodBuilder_1_t1106113378 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t190679043 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m317986670((AsyncTaskMethodBuilder_1_t1106113378 *)(AsyncTaskMethodBuilder_1_t1106113378 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t190679043 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CGetEntityAsyncU3Ed__15_t1599719825 * L_8 = ___stateMachine1;
U3CGetEntityAsyncU3Ed__15_t1599719825 L_9 = (*(U3CGetEntityAsyncU3Ed__15_t1599719825 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t190679043 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t107639853 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
Il2CppFakeBox<ConfiguredTaskAwaiter_t107639853 > L_15(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), L_13);
const VirtualInvokeData& il2cpp_virtual_invoke_data__84 = il2cpp_codegen_get_interface_invoke_data(0, &L_15, ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var);
(( void (*) (RuntimeObject*, Action_t1264377477 *, const RuntimeMethod*))il2cpp_virtual_invoke_data__84.methodPtr)((RuntimeObject*)(&L_15), (Action_t1264377477 *)L_14, /*hidden argument*/il2cpp_virtual_invoke_data__84.method);
*L_13 = L_15.m_Value;
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m3096584839_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CGetEntityAsyncU3Ed__15_t1599719825 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m3096584839(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t3218468820_m1026746075_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, U3CStartOperationU3Ed__23_t3218468820 * ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t3218468820_m1026746075_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
goto IL_0018;
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t3218468820_m1026746075_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
U3CStartOperationU3Ed__23_t3218468820 * L_2 = ___stateMachine0;
U3CStartOperationU3Ed__23_MoveNext_m2778698028((U3CStartOperationU3Ed__23_t3218468820 *)(U3CStartOperationU3Ed__23_t3218468820 *)L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t3218468820_m1026746075_AdjustorThunk (RuntimeObject * __this, U3CStartOperationU3Ed__23_t3218468820 * ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_t3218468820_m1026746075(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<System.Object>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisRuntimeObject_m599998781_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, RuntimeObject ** ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_Start_TisRuntimeObject_m599998781_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject ** L_0 = ___stateMachine0;
if ((*(RuntimeObject **)L_0))
{
goto IL_0018;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_1_Start_TisRuntimeObject_m599998781_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
RuntimeObject ** L_2 = ___stateMachine0;
NullCheck((RuntimeObject*)(*L_2));
InterfaceActionInvoker0::Invoke(0 /* System.Void System.Runtime.CompilerServices.IAsyncStateMachine::MoveNext() */, IAsyncStateMachine_t923100567_il2cpp_TypeInfo_var, (RuntimeObject*)(*L_2));
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_Start_TisRuntimeObject_m599998781_AdjustorThunk (RuntimeObject * __this, RuntimeObject ** ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_Start_TisRuntimeObject_m599998781(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<System.Xml.XmlDownloadManager/<GetNonFileStreamAsync>d__5>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m2777383802_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 * ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_Start_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m2777383802_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
goto IL_0018;
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_1_Start_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m2777383802_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 * L_2 = ___stateMachine0;
U3CGetNonFileStreamAsyncU3Ed__5_MoveNext_m1421413381((U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 *)(U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 *)L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_Start_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m2777383802_AdjustorThunk (RuntimeObject * __this, U3CGetNonFileStreamAsyncU3Ed__5_t2377854191 * ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_Start_TisU3CGetNonFileStreamAsyncU3Ed__5_t2377854191_m2777383802(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<System.Xml.XmlUrlResolver/<GetEntityAsync>d__15>(TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m489318611_gshared (AsyncTaskMethodBuilder_1_t1106113378 * __this, U3CGetEntityAsyncU3Ed__15_t1599719825 * ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m489318611_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ExecutionContextSwitcher_t2326006776 V_0;
memset(&V_0, 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
goto IL_0018;
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4028015502, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m489318611_RuntimeMethod_var);
}
IL_0018:
{
il2cpp_codegen_initobj((&V_0), sizeof(ExecutionContextSwitcher_t2326006776 ));
RuntimeHelpers_PrepareConstrainedRegions_m3201503863(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0025:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t1748372627_il2cpp_TypeInfo_var);
ExecutionContext_EstablishCopyOnWriteScope_m3443267365(NULL /*static, unused*/, (ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
U3CGetEntityAsyncU3Ed__15_t1599719825 * L_2 = ___stateMachine0;
U3CGetEntityAsyncU3Ed__15_MoveNext_m3272980288((U3CGetEntityAsyncU3Ed__15_t1599719825 *)(U3CGetEntityAsyncU3Ed__15_t1599719825 *)L_2, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x42, FINALLY_003a);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{ // begin finally (depth: 1)
ExecutionContextSwitcher_Undo_m183954518((ExecutionContextSwitcher_t2326006776 *)(ExecutionContextSwitcher_t2326006776 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
} // end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m489318611_AdjustorThunk (RuntimeObject * __this, U3CGetEntityAsyncU3Ed__15_t1599719825 * ___stateMachine0, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t1106113378 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t1106113378 *>(__this + 1);
AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t1599719825_m489318611(_thisAdjusted, ___stateMachine0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m2353068914_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m2353068914_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t4022128754 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t4022128754 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t4022128754 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t4022128754 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t4022128754 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t4022128754 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject ** L_8 = ___stateMachine1;
MoveNextRunner_t4042132640 * L_9 = V_0;
Task_1_t4022128754 * L_10 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)(*(RuntimeObject **)L_8), (MoveNextRunner_t4042132640 *)L_9, (Task_t3187275312 *)L_10, /*hidden argument*/NULL);
}
IL_004c:
{
RuntimeObject ** L_11 = ___awaiter0;
Action_t1264377477 * L_12 = V_1;
NullCheck((RuntimeObject*)(*L_11));
InterfaceActionInvoker1< Action_t1264377477 * >::Invoke(0 /* System.Void System.Runtime.CompilerServices.INotifyCompletion::OnCompleted(System.Action) */, INotifyCompletion_t4057888895_il2cpp_TypeInfo_var, (RuntimeObject*)(*L_11), (Action_t1264377477 *)L_12);
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m2353068914_AdjustorThunk (RuntimeObject * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisRuntimeObject_TisRuntimeObject_m2353068914(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitOnCompleted<System.Security.Cryptography.CryptoStream/HopToThreadPoolAwaitable,System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1125588378_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, HopToThreadPoolAwaitable_t810938849 * ___awaiter0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1125588378_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t4022128754 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t4022128754 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t4022128754 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t4022128754 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t4022128754 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t4022128754 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CWriteAsyncInternalU3Ed__37_t1756569490 * L_8 = ___stateMachine1;
U3CWriteAsyncInternalU3Ed__37_t1756569490 L_9 = (*(U3CWriteAsyncInternalU3Ed__37_t1756569490 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t4022128754 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
HopToThreadPoolAwaitable_t810938849 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
HopToThreadPoolAwaitable_OnCompleted_m1603305937((HopToThreadPoolAwaitable_t810938849 *)(HopToThreadPoolAwaitable_t810938849 *)L_13, (Action_t1264377477 *)L_14, /*hidden argument*/NULL);
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1125588378_AdjustorThunk (RuntimeObject * __this, HopToThreadPoolAwaitable_t810938849 * ___awaiter0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitOnCompleted_TisHopToThreadPoolAwaitable_t810938849_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1125588378(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m808550706_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m808550706_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t4022128754 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t4022128754 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t4022128754 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t4022128754 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t4022128754 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t4022128754 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject ** L_8 = ___stateMachine1;
MoveNextRunner_t4042132640 * L_9 = V_0;
Task_1_t4022128754 * L_10 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)(*(RuntimeObject **)L_8), (MoveNextRunner_t4042132640 *)L_9, (Task_t3187275312 *)L_10, /*hidden argument*/NULL);
}
IL_004c:
{
RuntimeObject ** L_11 = ___awaiter0;
Action_t1264377477 * L_12 = V_1;
NullCheck((RuntimeObject*)(*L_11));
InterfaceActionInvoker1< Action_t1264377477 * >::Invoke(0 /* System.Void System.Runtime.CompilerServices.ICriticalNotifyCompletion::UnsafeOnCompleted(System.Action) */, ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var, (RuntimeObject*)(*L_11), (Action_t1264377477 *)L_12);
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m808550706_AdjustorThunk (RuntimeObject * __this, RuntimeObject ** ___awaiter0, RuntimeObject ** ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisRuntimeObject_TisRuntimeObject_m808550706(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m254633483_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m254633483_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t4022128754 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t4022128754 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t4022128754 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t4022128754 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t4022128754 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t4022128754 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CProcessOperationU3Ed__24_t1753638225 * L_8 = ___stateMachine1;
U3CProcessOperationU3Ed__24_t1753638225 L_9 = (*(U3CProcessOperationU3Ed__24_t1753638225 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t4022128754 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t555647845 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
ConfiguredTaskAwaiter_UnsafeOnCompleted_m3845096578((ConfiguredTaskAwaiter_t555647845 *)(ConfiguredTaskAwaiter_t555647845 *)L_13, (Action_t1264377477 *)L_14, /*hidden argument*/NULL);
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m254633483_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CProcessOperationU3Ed__24_t1753638225_m254633483(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m1607225569_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CInnerWriteU3Ed__67_t2443470766 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m1607225569_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t4022128754 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t4022128754 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t4022128754 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t4022128754 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t4022128754 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t4022128754 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CInnerWriteU3Ed__67_t2443470766 * L_8 = ___stateMachine1;
U3CInnerWriteU3Ed__67_t2443470766 L_9 = (*(U3CInnerWriteU3Ed__67_t2443470766 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t4022128754 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t555647845 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
ConfiguredTaskAwaiter_UnsafeOnCompleted_m3845096578((ConfiguredTaskAwaiter_t555647845 *)(ConfiguredTaskAwaiter_t555647845 *)L_13, (Action_t1264377477 *)L_14, /*hidden argument*/NULL);
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m1607225569_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CInnerWriteU3Ed__67_t2443470766 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CInnerWriteU3Ed__67_t2443470766_m1607225569(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,System.Security.Cryptography.CryptoStream/<WriteAsyncInternal>d__37>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1039663495_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1039663495_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t4022128754 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t4022128754 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t4022128754 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t4022128754 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t4022128754 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t4022128754 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CWriteAsyncInternalU3Ed__37_t1756569490 * L_8 = ___stateMachine1;
U3CWriteAsyncInternalU3Ed__37_t1756569490 L_9 = (*(U3CWriteAsyncInternalU3Ed__37_t1756569490 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t4022128754 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t555647845 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
ConfiguredTaskAwaiter_UnsafeOnCompleted_m3845096578((ConfiguredTaskAwaiter_t555647845 *)(ConfiguredTaskAwaiter_t555647845 *)L_13, (Action_t1264377477 *)L_14, /*hidden argument*/NULL);
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1039663495_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t555647845 * ___awaiter0, U3CWriteAsyncInternalU3Ed__37_t1756569490 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t555647845_TisU3CWriteAsyncInternalU3Ed__37_t1756569490_m1039663495(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m3029995541_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t1701041524 * ___awaiter0, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m3029995541_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t4022128754 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t4022128754 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t4022128754 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t4022128754 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t4022128754 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t4022128754 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CProcessOperationU3Ed__24_t1753638225 * L_8 = ___stateMachine1;
U3CProcessOperationU3Ed__24_t1753638225 L_9 = (*(U3CProcessOperationU3Ed__24_t1753638225 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t4022128754 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t1701041524 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
Il2CppFakeBox<ConfiguredTaskAwaiter_t1701041524 > L_15(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), L_13);
const VirtualInvokeData& il2cpp_virtual_invoke_data__84 = il2cpp_codegen_get_interface_invoke_data(0, &L_15, ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var);
(( void (*) (RuntimeObject*, Action_t1264377477 *, const RuntimeMethod*))il2cpp_virtual_invoke_data__84.methodPtr)((RuntimeObject*)(&L_15), (Action_t1264377477 *)L_14, /*hidden argument*/il2cpp_virtual_invoke_data__84.method);
*L_13 = L_15.m_Value;
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m3029995541_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t1701041524 * ___awaiter0, U3CProcessOperationU3Ed__24_t1753638225 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t1701041524_TisU3CProcessOperationU3Ed__24_t1753638225_m3029995541(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<ProcessAuthentication>d__47>(TAwaiter&,TStateMachine&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3394220291_gshared (AsyncTaskMethodBuilder_1_t642595793 * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CProcessAuthenticationU3Ed__47_t649267051 * ___stateMachine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3394220291_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MoveNextRunner_t4042132640 * V_0 = NULL;
Action_t1264377477 * V_1 = NULL;
Task_1_t4022128754 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
AsyncMethodBuilderCore_t2955600131 * G_B2_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B1_0 = NULL;
Task_1_t4022128754 * G_B3_0 = NULL;
AsyncMethodBuilderCore_t2955600131 * G_B3_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
V_0 = (MoveNextRunner_t4042132640 *)NULL;
AsyncMethodBuilderCore_t2955600131 * L_0 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
bool L_1 = AsyncCausalityTracer_get_LoggingOn_m2335509619(NULL /*static, unused*/, /*hidden argument*/NULL);
G_B1_0 = L_0;
if (L_1)
{
G_B2_0 = L_0;
goto IL_0012;
}
}
IL_000f:
{
G_B3_0 = ((Task_1_t4022128754 *)(NULL));
G_B3_1 = G_B1_0;
goto IL_0018;
}
IL_0012:
{
Task_1_t4022128754 * L_2 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0018:
{
Action_t1264377477 * L_3 = AsyncMethodBuilderCore_GetCompletionAction_m675964062((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)G_B3_1, (Task_t3187275312 *)G_B3_0, (MoveNextRunner_t4042132640 **)(MoveNextRunner_t4042132640 **)(&V_0), /*hidden argument*/NULL);
V_1 = (Action_t1264377477 *)L_3;
AsyncMethodBuilderCore_t2955600131 * L_4 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
RuntimeObject* L_5 = (RuntimeObject*)L_4->get_m_stateMachine_0();
if (L_5)
{
goto IL_004c;
}
}
IL_002d:
{
Task_1_t4022128754 * L_6 = AsyncTaskMethodBuilder_1_get_Task_m3182333516((AsyncTaskMethodBuilder_1_t642595793 *)(AsyncTaskMethodBuilder_1_t642595793 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_2 = (Task_1_t4022128754 *)L_6;
AsyncMethodBuilderCore_t2955600131 * L_7 = (AsyncMethodBuilderCore_t2955600131 *)__this->get_address_of_m_coreState_1();
U3CProcessAuthenticationU3Ed__47_t649267051 * L_8 = ___stateMachine1;
U3CProcessAuthenticationU3Ed__47_t649267051 L_9 = (*(U3CProcessAuthenticationU3Ed__47_t649267051 *)L_8);
RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_9);
MoveNextRunner_t4042132640 * L_11 = V_0;
Task_1_t4022128754 * L_12 = V_2;
AsyncMethodBuilderCore_PostBoxInitialization_m740448042((AsyncMethodBuilderCore_t2955600131 *)(AsyncMethodBuilderCore_t2955600131 *)L_7, (RuntimeObject*)L_10, (MoveNextRunner_t4042132640 *)L_11, (Task_t3187275312 *)L_12, /*hidden argument*/NULL);
}
IL_004c:
{
ConfiguredTaskAwaiter_t107639853 * L_13 = ___awaiter0;
Action_t1264377477 * L_14 = V_1;
Il2CppFakeBox<ConfiguredTaskAwaiter_t107639853 > L_15(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), L_13);
const VirtualInvokeData& il2cpp_virtual_invoke_data__84 = il2cpp_codegen_get_interface_invoke_data(0, &L_15, ICriticalNotifyCompletion_t4234369510_il2cpp_TypeInfo_var);
(( void (*) (RuntimeObject*, Action_t1264377477 *, const RuntimeMethod*))il2cpp_virtual_invoke_data__84.methodPtr)((RuntimeObject*)(&L_15), (Action_t1264377477 *)L_14, /*hidden argument*/il2cpp_virtual_invoke_data__84.method);
*L_13 = L_15.m_Value;
goto IL_0063;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Exception)
AsyncMethodBuilderCore_ThrowAsync_m2300320346(NULL /*static, unused*/, (Exception_t *)((Exception_t *)__exception_local), (SynchronizationContext_t2326897723 *)NULL, /*hidden argument*/NULL);
goto IL_0063;
} // end catch (depth: 1)
IL_0063:
{
return;
}
}
extern "C" void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3394220291_AdjustorThunk (RuntimeObject * __this, ConfiguredTaskAwaiter_t107639853 * ___awaiter0, U3CProcessAuthenticationU3Ed__47_t649267051 * ___stateMachine1, const RuntimeMethod* method)
{
AsyncTaskMethodBuilder_1_t642595793 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t642595793 *>(__this + 1);
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t107639853_TisU3CProcessAuthenticationU3Ed__47_t649267051_m3394220291(_thisAdjusted, ___awaiter0, ___stateMachine1, method);
}
// System.Void System.Runtime.InteropServices.Marshal::StructureToPtr<Mono.AppleTls.SecImportExport/SecItemImportExportKeyParameters>(T,System.IntPtr,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void Marshal_StructureToPtr_TisSecItemImportExportKeyParameters_t2289706800_m4276210949_gshared (RuntimeObject * __this /* static, unused */, SecItemImportExportKeyParameters_t2289706800 ___structure0, intptr_t ___ptr1, bool ___fDeleteOld2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Marshal_StructureToPtr_TisSecItemImportExportKeyParameters_t2289706800_m4276210949_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SecItemImportExportKeyParameters_t2289706800 L_0 = ___structure0;
SecItemImportExportKeyParameters_t2289706800 L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1);
intptr_t L_3 = ___ptr1;
bool L_4 = ___fDeleteOld2;
IL2CPP_RUNTIME_CLASS_INIT(Marshal_t1757017490_il2cpp_TypeInfo_var);
Marshal_StructureToPtr_m2294149499(NULL /*static, unused*/, (RuntimeObject *)L_2, (intptr_t)L_3, (bool)L_4, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.InteropServices.Marshal::StructureToPtr<System.Object>(T,System.IntPtr,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void Marshal_StructureToPtr_TisRuntimeObject_m1356651879_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___structure0, intptr_t ___ptr1, bool ___fDeleteOld2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Marshal_StructureToPtr_TisRuntimeObject_m1356651879_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___structure0;
intptr_t L_1 = ___ptr1;
bool L_2 = ___fDeleteOld2;
IL2CPP_RUNTIME_CLASS_INIT(Marshal_t1757017490_il2cpp_TypeInfo_var);
Marshal_StructureToPtr_m2294149499(NULL /*static, unused*/, (RuntimeObject *)L_0, (intptr_t)L_1, (bool)L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.Volatile::Write<System.Object>(T&,T)
extern "C" IL2CPP_METHOD_ATTR void Volatile_Write_TisRuntimeObject_m886068950_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject ** ___location0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
VolatileWrite(___location0, ___value1);
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Boolean>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisBoolean_t97287965_m4208998666_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
bool V_0 = false;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(bool));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Byte>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisByte_t1134296376_m112622214_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
uint8_t V_0 = 0x0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(uint8_t));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisKeyValuePair_2_t870930286_m3474572584_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
KeyValuePair_2_t870930286 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(KeyValuePair_2_t870930286 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.DateTime>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisDateTime_t3738529785_m736244765_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
DateTime_t3738529785 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(DateTime_t3738529785 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.DateTimeOffset>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisDateTimeOffset_t3229287507_m3655871410_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
DateTimeOffset_t3229287507 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(DateTimeOffset_t3229287507 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Decimal>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisDecimal_t2948259380_m3839417499_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
Decimal_t2948259380 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(Decimal_t2948259380 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Double>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisDouble_t594665363_m3036857176_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
double V_0 = 0.0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(double));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Int16>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisInt16_t2552820387_m2652566685_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
int16_t V_0 = 0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(int16_t));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Int32>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisInt32_t2950945753_m3931124150_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(int32_t));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Int64>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisInt64_t3736567304_m2080881962_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
int64_t V_0 = 0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(int64_t));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m1765004879_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
Win32_IP_ADAPTER_ADDRESSES_t3463526328 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(Win32_IP_ADAPTER_ADDRESSES_t3463526328 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Object>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisRuntimeObject_m1338848306_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.SByte>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSByte_t1669577662_m2010947099_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
int8_t V_0 = 0x0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(int8_t));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Single>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisSingle_t1397266774_m2470311659_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(float));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Text.RegularExpressions.RegexOptions>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisRegexOptions_t92845595_m3667223705_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(int32_t));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.TimeSpan>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisTimeSpan_t881159249_m54476423_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
TimeSpan_t881159249 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(TimeSpan_t881159249 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.UInt16>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisUInt16_t2177724958_m4230130370_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(uint16_t));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.UInt32>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisUInt32_t2560061978_m701559756_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(uint32_t));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.UInt64>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisUInt64_t4134040092_m93694289_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(uint64_t));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Xml.Schema.RangePositionInfo>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisRangePositionInfo_t589968936_m3338421983_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
RangePositionInfo_t589968936 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(RangePositionInfo_t589968936 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisXmlSchemaObjectEntry_t3344676971_m1315483222_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
XmlSchemaObjectEntry_t3344676971 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(XmlSchemaObjectEntry_t3344676971 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisOrderBlock_t1585977831_m827322729_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
OrderBlock_t1585977831 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(OrderBlock_t1585977831 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.Color>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisColor_t2555686324_m879797100_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
Color_t2555686324 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(Color_t2555686324 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.UICharInfo>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisUICharInfo_t75501106_m4170549500_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
UICharInfo_t75501106 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(UICharInfo_t75501106 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.UILineInfo>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisUILineInfo_t4195266810_m1122861438_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
UILineInfo_t4195266810 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(UILineInfo_t4195266810 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.UIVertex>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisUIVertex_t4057497605_m1854725513_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
UIVertex_t4057497605 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(UIVertex_t4057497605 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.Vector2>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisVector2_t2156229523_m694551451_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
Vector2_t2156229523 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(Vector2_t2156229523 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.Vector3>(System.Object,System.ExceptionArgument)
extern "C" IL2CPP_METHOD_ATTR void ThrowHelper_IfNullAndNullsAreIllegalThenThrow_TisVector3_t3722313464_m1574925237_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, int32_t ___argName1, const RuntimeMethod* method)
{
Vector3_t3722313464 V_0;
memset(&V_0, 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0019;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(Vector3_t3722313464 ));
}
{
int32_t L_2 = ___argName1;
ThrowHelper_ThrowArgumentNullException_m2415499580(NULL /*static, unused*/, (int32_t)L_2, /*hidden argument*/NULL);
}
IL_0019:
{
return;
}
}
// System.Void UnityEngine.Assertions.Assert::IsNotNull<System.Object>(T)
extern "C" IL2CPP_METHOD_ATTR void Assert_IsNotNull_TisRuntimeObject_m2961693865_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Assert_IsNotNull_TisRuntimeObject_m2961693865_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Assert_t2203240047_il2cpp_TypeInfo_var);
(( void (*) (RuntimeObject * /* static, unused */, RuntimeObject *, String_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, (String_t*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return;
}
}
// System.Void UnityEngine.Assertions.Assert::IsNotNull<System.Object>(T,System.String)
extern "C" IL2CPP_METHOD_ATTR void Assert_IsNotNull_TisRuntimeObject_m3408507457_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, String_t* ___message1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Assert_IsNotNull_TisRuntimeObject_m3408507457_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (Object_t631007953_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_2, /*hidden argument*/NULL);
NullCheck((Type_t *)L_1);
bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(113 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, (Type_t *)L_1, (Type_t *)L_3);
if (!L_4)
{
goto IL_0037;
}
}
{
RuntimeObject * L_5 = ___value0;
String_t* L_6 = ___message1;
IL2CPP_RUNTIME_CLASS_INIT(Assert_t2203240047_il2cpp_TypeInfo_var);
Assert_IsNotNull_m3577558546(NULL /*static, unused*/, (Object_t631007953 *)((Object_t631007953 *)IsInst((RuntimeObject*)L_5, Object_t631007953_il2cpp_TypeInfo_var)), (String_t*)L_6, /*hidden argument*/NULL);
goto IL_0056;
}
IL_0037:
{
RuntimeObject * L_7 = ___value0;
if (L_7)
{
goto IL_0056;
}
}
{
RuntimeObject * L_8 = ___value0;
String_t* L_9 = AssertionMessageUtil_NullFailureMessage_m2715044825(NULL /*static, unused*/, (RuntimeObject *)L_8, (bool)0, /*hidden argument*/NULL);
String_t* L_10 = ___message1;
IL2CPP_RUNTIME_CLASS_INIT(Assert_t2203240047_il2cpp_TypeInfo_var);
Assert_Fail_m1035509689(NULL /*static, unused*/, (String_t*)L_9, (String_t*)L_10, /*hidden argument*/NULL);
}
IL_0056:
{
return;
}
}
// System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<System.Boolean>(System.Object)
extern "C" IL2CPP_METHOD_ATTR void BaseInvokableCall_ThrowOnInvalidArg_TisBoolean_t97287965_m3019671566_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___arg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInvokableCall_ThrowOnInvalidArg_TisBoolean_t97287965_m3019671566_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___arg0;
if (!L_0)
{
goto IL_003e;
}
}
{
RuntimeObject * L_1 = ___arg0;
if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))))
{
goto IL_003e;
}
}
{
ObjectU5BU5D_t2843939325* L_2 = (ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t2843939325* L_3 = (ObjectU5BU5D_t2843939325*)L_2;
RuntimeObject * L_4 = ___arg0;
NullCheck((RuntimeObject *)L_4);
Type_t * L_5 = Object_GetType_m88164663((RuntimeObject *)L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
ObjectU5BU5D_t2843939325* L_6 = (ObjectU5BU5D_t2843939325*)L_3;
RuntimeTypeHandle_t3027515415 L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_7, /*hidden argument*/NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
String_t* L_9 = UnityString_Format_m261690510(NULL /*static, unused*/, (String_t*)_stringLiteral273595399, (ObjectU5BU5D_t2843939325*)L_6, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_10 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_10, (String_t*)L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, BaseInvokableCall_ThrowOnInvalidArg_TisBoolean_t97287965_m3019671566_RuntimeMethod_var);
}
IL_003e:
{
return;
}
}
// System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<System.Int32>(System.Object)
extern "C" IL2CPP_METHOD_ATTR void BaseInvokableCall_ThrowOnInvalidArg_TisInt32_t2950945753_m635860201_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___arg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInvokableCall_ThrowOnInvalidArg_TisInt32_t2950945753_m635860201_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___arg0;
if (!L_0)
{
goto IL_003e;
}
}
{
RuntimeObject * L_1 = ___arg0;
if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))))
{
goto IL_003e;
}
}
{
ObjectU5BU5D_t2843939325* L_2 = (ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t2843939325* L_3 = (ObjectU5BU5D_t2843939325*)L_2;
RuntimeObject * L_4 = ___arg0;
NullCheck((RuntimeObject *)L_4);
Type_t * L_5 = Object_GetType_m88164663((RuntimeObject *)L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
ObjectU5BU5D_t2843939325* L_6 = (ObjectU5BU5D_t2843939325*)L_3;
RuntimeTypeHandle_t3027515415 L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_7, /*hidden argument*/NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
String_t* L_9 = UnityString_Format_m261690510(NULL /*static, unused*/, (String_t*)_stringLiteral273595399, (ObjectU5BU5D_t2843939325*)L_6, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_10 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_10, (String_t*)L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, BaseInvokableCall_ThrowOnInvalidArg_TisInt32_t2950945753_m635860201_RuntimeMethod_var);
}
IL_003e:
{
return;
}
}
// System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<System.Object>(System.Object)
extern "C" IL2CPP_METHOD_ATTR void BaseInvokableCall_ThrowOnInvalidArg_TisRuntimeObject_m2266633109_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___arg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInvokableCall_ThrowOnInvalidArg_TisRuntimeObject_m2266633109_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___arg0;
if (!L_0)
{
goto IL_003e;
}
}
{
RuntimeObject * L_1 = ___arg0;
if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))))
{
goto IL_003e;
}
}
{
ObjectU5BU5D_t2843939325* L_2 = (ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t2843939325* L_3 = (ObjectU5BU5D_t2843939325*)L_2;
RuntimeObject * L_4 = ___arg0;
NullCheck((RuntimeObject *)L_4);
Type_t * L_5 = Object_GetType_m88164663((RuntimeObject *)L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
ObjectU5BU5D_t2843939325* L_6 = (ObjectU5BU5D_t2843939325*)L_3;
RuntimeTypeHandle_t3027515415 L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_7, /*hidden argument*/NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
String_t* L_9 = UnityString_Format_m261690510(NULL /*static, unused*/, (String_t*)_stringLiteral273595399, (ObjectU5BU5D_t2843939325*)L_6, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_10 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_10, (String_t*)L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, BaseInvokableCall_ThrowOnInvalidArg_TisRuntimeObject_m2266633109_RuntimeMethod_var);
}
IL_003e:
{
return;
}
}
// System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<System.Single>(System.Object)
extern "C" IL2CPP_METHOD_ATTR void BaseInvokableCall_ThrowOnInvalidArg_TisSingle_t1397266774_m3110598205_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___arg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseInvokableCall_ThrowOnInvalidArg_TisSingle_t1397266774_m3110598205_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___arg0;
if (!L_0)
{
goto IL_003e;
}
}
{
RuntimeObject * L_1 = ___arg0;
if (((RuntimeObject *)IsInst((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))))
{
goto IL_003e;
}
}
{
ObjectU5BU5D_t2843939325* L_2 = (ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t2843939325* L_3 = (ObjectU5BU5D_t2843939325*)L_2;
RuntimeObject * L_4 = ___arg0;
NullCheck((RuntimeObject *)L_4);
Type_t * L_5 = Object_GetType_m88164663((RuntimeObject *)L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
ObjectU5BU5D_t2843939325* L_6 = (ObjectU5BU5D_t2843939325*)L_3;
RuntimeTypeHandle_t3027515415 L_7 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_7, /*hidden argument*/NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
String_t* L_9 = UnityString_Format_m261690510(NULL /*static, unused*/, (String_t*)_stringLiteral273595399, (ObjectU5BU5D_t2843939325*)L_6, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_10 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_10, (String_t*)L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, BaseInvokableCall_ThrowOnInvalidArg_TisSingle_t1397266774_m3110598205_RuntimeMethod_var);
}
IL_003e:
{
return;
}
}
// System.Void UnityEngine.Mesh::SetArrayForChannel<System.Object>(UnityEngine.Mesh/InternalShaderChannel,T[])
extern "C" IL2CPP_METHOD_ATTR void Mesh_SetArrayForChannel_TisRuntimeObject_m3610167605_gshared (Mesh_t3648964284 * __this, int32_t ___channel0, ObjectU5BU5D_t2843939325* ___values1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_m576040980(NULL /*static, unused*/, (int32_t)L_1, /*hidden argument*/NULL);
ObjectU5BU5D_t2843939325* L_3 = ___values1;
ObjectU5BU5D_t2843939325* L_4 = ___values1;
int32_t L_5 = NoAllocHelpers_SafeLength_m3994544446(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_4, /*hidden argument*/NULL);
NullCheck((Mesh_t3648964284 *)__this);
Mesh_SetSizedArrayForChannel_m2565120436((Mesh_t3648964284 *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)L_5, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Mesh::SetArrayForChannel<UnityEngine.Color>(UnityEngine.Mesh/InternalShaderChannel,T[])
extern "C" IL2CPP_METHOD_ATTR void Mesh_SetArrayForChannel_TisColor_t2555686324_m1863272770_gshared (Mesh_t3648964284 * __this, int32_t ___channel0, ColorU5BU5D_t941916413* ___values1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_m576040980(NULL /*static, unused*/, (int32_t)L_1, /*hidden argument*/NULL);
ColorU5BU5D_t941916413* L_3 = ___values1;
ColorU5BU5D_t941916413* L_4 = ___values1;
int32_t L_5 = NoAllocHelpers_SafeLength_m3994544446(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_4, /*hidden argument*/NULL);
NullCheck((Mesh_t3648964284 *)__this);
Mesh_SetSizedArrayForChannel_m2565120436((Mesh_t3648964284 *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)L_5, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Mesh::SetArrayForChannel<UnityEngine.Vector2>(UnityEngine.Mesh/InternalShaderChannel,T[])
extern "C" IL2CPP_METHOD_ATTR void Mesh_SetArrayForChannel_TisVector2_t2156229523_m1073439182_gshared (Mesh_t3648964284 * __this, int32_t ___channel0, Vector2U5BU5D_t1457185986* ___values1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_m576040980(NULL /*static, unused*/, (int32_t)L_1, /*hidden argument*/NULL);
Vector2U5BU5D_t1457185986* L_3 = ___values1;
Vector2U5BU5D_t1457185986* L_4 = ___values1;
int32_t L_5 = NoAllocHelpers_SafeLength_m3994544446(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_4, /*hidden argument*/NULL);
NullCheck((Mesh_t3648964284 *)__this);
Mesh_SetSizedArrayForChannel_m2565120436((Mesh_t3648964284 *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)L_5, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Mesh::SetArrayForChannel<UnityEngine.Vector3>(UnityEngine.Mesh/InternalShaderChannel,T[])
extern "C" IL2CPP_METHOD_ATTR void Mesh_SetArrayForChannel_TisVector3_t3722313464_m3687142240_gshared (Mesh_t3648964284 * __this, int32_t ___channel0, Vector3U5BU5D_t1718750761* ___values1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_m576040980(NULL /*static, unused*/, (int32_t)L_1, /*hidden argument*/NULL);
Vector3U5BU5D_t1718750761* L_3 = ___values1;
Vector3U5BU5D_t1718750761* L_4 = ___values1;
int32_t L_5 = NoAllocHelpers_SafeLength_m3994544446(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_4, /*hidden argument*/NULL);
NullCheck((Mesh_t3648964284 *)__this);
Mesh_SetSizedArrayForChannel_m2565120436((Mesh_t3648964284 *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, (RuntimeArray *)(RuntimeArray *)L_3, (int32_t)L_5, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Mesh::SetListForChannel<System.Object>(UnityEngine.Mesh/InternalShaderChannel,System.Collections.Generic.List`1<T>)
extern "C" IL2CPP_METHOD_ATTR void Mesh_SetListForChannel_TisRuntimeObject_m1409743534_gshared (Mesh_t3648964284 * __this, int32_t ___channel0, List_1_t257213610 * ___values1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_m576040980(NULL /*static, unused*/, (int32_t)L_1, /*hidden argument*/NULL);
List_1_t257213610 * L_3 = ___values1;
RuntimeArray * L_4 = NoAllocHelpers_ExtractArrayFromList_m2239661248(NULL /*static, unused*/, (RuntimeObject *)L_3, /*hidden argument*/NULL);
List_1_t257213610 * L_5 = ___values1;
int32_t L_6 = (( int32_t (*) (RuntimeObject * /* static, unused */, List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (List_1_t257213610 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
NullCheck((Mesh_t3648964284 *)__this);
Mesh_SetSizedArrayForChannel_m2565120436((Mesh_t3648964284 *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, (RuntimeArray *)L_4, (int32_t)L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Mesh::SetListForChannel<System.Object>(UnityEngine.Mesh/InternalShaderChannel,UnityEngine.Mesh/InternalVertexChannelType,System.Int32,System.Collections.Generic.List`1<T>)
extern "C" IL2CPP_METHOD_ATTR void Mesh_SetListForChannel_TisRuntimeObject_m3859265206_gshared (Mesh_t3648964284 * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, List_1_t257213610 * ___values3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___format1;
int32_t L_2 = ___dim2;
List_1_t257213610 * L_3 = ___values3;
RuntimeArray * L_4 = NoAllocHelpers_ExtractArrayFromList_m2239661248(NULL /*static, unused*/, (RuntimeObject *)L_3, /*hidden argument*/NULL);
List_1_t257213610 * L_5 = ___values3;
int32_t L_6 = (( int32_t (*) (RuntimeObject * /* static, unused */, List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (List_1_t257213610 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
NullCheck((Mesh_t3648964284 *)__this);
Mesh_SetSizedArrayForChannel_m2565120436((Mesh_t3648964284 *)__this, (int32_t)L_0, (int32_t)L_1, (int32_t)L_2, (RuntimeArray *)L_4, (int32_t)L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Mesh::SetListForChannel<UnityEngine.Color>(UnityEngine.Mesh/InternalShaderChannel,System.Collections.Generic.List`1<T>)
extern "C" IL2CPP_METHOD_ATTR void Mesh_SetListForChannel_TisColor_t2555686324_m2504193014_gshared (Mesh_t3648964284 * __this, int32_t ___channel0, List_1_t4027761066 * ___values1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_m576040980(NULL /*static, unused*/, (int32_t)L_1, /*hidden argument*/NULL);
List_1_t4027761066 * L_3 = ___values1;
RuntimeArray * L_4 = NoAllocHelpers_ExtractArrayFromList_m2239661248(NULL /*static, unused*/, (RuntimeObject *)L_3, /*hidden argument*/NULL);
List_1_t4027761066 * L_5 = ___values1;
int32_t L_6 = (( int32_t (*) (RuntimeObject * /* static, unused */, List_1_t4027761066 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (List_1_t4027761066 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
NullCheck((Mesh_t3648964284 *)__this);
Mesh_SetSizedArrayForChannel_m2565120436((Mesh_t3648964284 *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, (RuntimeArray *)L_4, (int32_t)L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Mesh::SetListForChannel<UnityEngine.Vector2>(UnityEngine.Mesh/InternalShaderChannel,UnityEngine.Mesh/InternalVertexChannelType,System.Int32,System.Collections.Generic.List`1<T>)
extern "C" IL2CPP_METHOD_ATTR void Mesh_SetListForChannel_TisVector2_t2156229523_m2884693793_gshared (Mesh_t3648964284 * __this, int32_t ___channel0, int32_t ___format1, int32_t ___dim2, List_1_t3628304265 * ___values3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___format1;
int32_t L_2 = ___dim2;
List_1_t3628304265 * L_3 = ___values3;
RuntimeArray * L_4 = NoAllocHelpers_ExtractArrayFromList_m2239661248(NULL /*static, unused*/, (RuntimeObject *)L_3, /*hidden argument*/NULL);
List_1_t3628304265 * L_5 = ___values3;
int32_t L_6 = (( int32_t (*) (RuntimeObject * /* static, unused */, List_1_t3628304265 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (List_1_t3628304265 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
NullCheck((Mesh_t3648964284 *)__this);
Mesh_SetSizedArrayForChannel_m2565120436((Mesh_t3648964284 *)__this, (int32_t)L_0, (int32_t)L_1, (int32_t)L_2, (RuntimeArray *)L_4, (int32_t)L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Mesh::SetListForChannel<UnityEngine.Vector3>(UnityEngine.Mesh/InternalShaderChannel,System.Collections.Generic.List`1<T>)
extern "C" IL2CPP_METHOD_ATTR void Mesh_SetListForChannel_TisVector3_t3722313464_m2465014356_gshared (Mesh_t3648964284 * __this, int32_t ___channel0, List_1_t899420910 * ___values1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___channel0;
int32_t L_1 = ___channel0;
int32_t L_2 = Mesh_DefaultDimensionForChannel_m576040980(NULL /*static, unused*/, (int32_t)L_1, /*hidden argument*/NULL);
List_1_t899420910 * L_3 = ___values1;
RuntimeArray * L_4 = NoAllocHelpers_ExtractArrayFromList_m2239661248(NULL /*static, unused*/, (RuntimeObject *)L_3, /*hidden argument*/NULL);
List_1_t899420910 * L_5 = ___values1;
int32_t L_6 = (( int32_t (*) (RuntimeObject * /* static, unused */, List_1_t899420910 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (List_1_t899420910 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
NullCheck((Mesh_t3648964284 *)__this);
Mesh_SetSizedArrayForChannel_m2565120436((Mesh_t3648964284 *)__this, (int32_t)L_0, (int32_t)0, (int32_t)L_2, (RuntimeArray *)L_4, (int32_t)L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Mesh::SetUvsImpl<System.Object>(System.Int32,System.Int32,System.Collections.Generic.List`1<T>)
extern "C" IL2CPP_METHOD_ATTR void Mesh_SetUvsImpl_TisRuntimeObject_m2275316106_gshared (Mesh_t3648964284 * __this, int32_t ___uvIndex0, int32_t ___dim1, List_1_t257213610 * ___uvs2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Mesh_SetUvsImpl_TisRuntimeObject_m2275316106_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___uvIndex0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_000f;
}
}
{
int32_t L_1 = ___uvIndex0;
if ((((int32_t)L_1) <= ((int32_t)7)))
{
goto IL_001f;
}
}
IL_000f:
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_t3317548046_il2cpp_TypeInfo_var);
Debug_LogError_m2850623458(NULL /*static, unused*/, (RuntimeObject *)_stringLiteral1474202693, /*hidden argument*/NULL);
goto IL_002f;
}
IL_001f:
{
int32_t L_2 = ___uvIndex0;
NullCheck((Mesh_t3648964284 *)__this);
int32_t L_3 = Mesh_GetUVChannel_m1848830416((Mesh_t3648964284 *)__this, (int32_t)L_2, /*hidden argument*/NULL);
int32_t L_4 = ___dim1;
List_1_t257213610 * L_5 = ___uvs2;
NullCheck((Mesh_t3648964284 *)__this);
(( void (*) (Mesh_t3648964284 *, int32_t, int32_t, int32_t, List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Mesh_t3648964284 *)__this, (int32_t)L_3, (int32_t)0, (int32_t)L_4, (List_1_t257213610 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
}
IL_002f:
{
return;
}
}
// System.Void UnityEngine.Mesh::SetUvsImpl<UnityEngine.Vector2>(System.Int32,System.Int32,System.Collections.Generic.List`1<T>)
extern "C" IL2CPP_METHOD_ATTR void Mesh_SetUvsImpl_TisVector2_t2156229523_m3009194955_gshared (Mesh_t3648964284 * __this, int32_t ___uvIndex0, int32_t ___dim1, List_1_t3628304265 * ___uvs2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Mesh_SetUvsImpl_TisVector2_t2156229523_m3009194955_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___uvIndex0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_000f;
}
}
{
int32_t L_1 = ___uvIndex0;
if ((((int32_t)L_1) <= ((int32_t)7)))
{
goto IL_001f;
}
}
IL_000f:
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_t3317548046_il2cpp_TypeInfo_var);
Debug_LogError_m2850623458(NULL /*static, unused*/, (RuntimeObject *)_stringLiteral1474202693, /*hidden argument*/NULL);
goto IL_002f;
}
IL_001f:
{
int32_t L_2 = ___uvIndex0;
NullCheck((Mesh_t3648964284 *)__this);
int32_t L_3 = Mesh_GetUVChannel_m1848830416((Mesh_t3648964284 *)__this, (int32_t)L_2, /*hidden argument*/NULL);
int32_t L_4 = ___dim1;
List_1_t3628304265 * L_5 = ___uvs2;
NullCheck((Mesh_t3648964284 *)__this);
(( void (*) (Mesh_t3648964284 *, int32_t, int32_t, int32_t, List_1_t3628304265 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Mesh_t3648964284 *)__this, (int32_t)L_3, (int32_t)0, (int32_t)L_4, (List_1_t3628304265 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
}
IL_002f:
{
return;
}
}
// T System.Array::Find<System.Object>(T[],System.Predicate`1<T>)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Array_Find_TisRuntimeObject_m2705709394_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* ___array0, Predicate_1_t3905400288 * ___match1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Find_TisRuntimeObject_m2705709394_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject * V_1 = NULL;
{
ObjectU5BU5D_t2843939325* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Find_TisRuntimeObject_m2705709394_RuntimeMethod_var);
}
IL_000e:
{
Predicate_1_t3905400288 * L_2 = ___match1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, (String_t*)_stringLiteral461028519, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_Find_TisRuntimeObject_m2705709394_RuntimeMethod_var);
}
IL_001c:
{
V_0 = (int32_t)0;
goto IL_003b;
}
IL_0020:
{
Predicate_1_t3905400288 * L_4 = ___match1;
ObjectU5BU5D_t2843939325* L_5 = ___array0;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((Predicate_1_t3905400288 *)L_4);
bool L_9 = (( bool (*) (Predicate_1_t3905400288 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Predicate_1_t3905400288 *)L_4, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (!L_9)
{
goto IL_0037;
}
}
{
ObjectU5BU5D_t2843939325* L_10 = ___array0;
int32_t L_11 = V_0;
NullCheck(L_10);
int32_t L_12 = L_11;
RuntimeObject * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
return L_13;
}
IL_0037:
{
int32_t L_14 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_003b:
{
int32_t L_15 = V_0;
ObjectU5BU5D_t2843939325* L_16 = ___array0;
NullCheck(L_16);
if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length)))))))
{
goto IL_0020;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *));
RuntimeObject * L_17 = V_1;
return L_17;
}
}
// T System.Array::FindLast<System.Object>(T[],System.Predicate`1<T>)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Array_FindLast_TisRuntimeObject_m1088586648_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* ___array0, Predicate_1_t3905400288 * ___match1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_FindLast_TisRuntimeObject_m1088586648_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject * V_1 = NULL;
{
ObjectU5BU5D_t2843939325* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_FindLast_TisRuntimeObject_m1088586648_RuntimeMethod_var);
}
IL_000e:
{
Predicate_1_t3905400288 * L_2 = ___match1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, (String_t*)_stringLiteral461028519, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_FindLast_TisRuntimeObject_m1088586648_RuntimeMethod_var);
}
IL_001c:
{
ObjectU5BU5D_t2843939325* L_4 = ___array0;
NullCheck(L_4);
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length)))), (int32_t)1));
goto IL_003f;
}
IL_0024:
{
Predicate_1_t3905400288 * L_5 = ___match1;
ObjectU5BU5D_t2843939325* L_6 = ___array0;
int32_t L_7 = V_0;
NullCheck(L_6);
int32_t L_8 = L_7;
RuntimeObject * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
NullCheck((Predicate_1_t3905400288 *)L_5);
bool L_10 = (( bool (*) (Predicate_1_t3905400288 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Predicate_1_t3905400288 *)L_5, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
if (!L_10)
{
goto IL_003b;
}
}
{
ObjectU5BU5D_t2843939325* L_11 = ___array0;
int32_t L_12 = V_0;
NullCheck(L_11);
int32_t L_13 = L_12;
RuntimeObject * L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
return L_14;
}
IL_003b:
{
int32_t L_15 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1));
}
IL_003f:
{
int32_t L_16 = V_0;
if ((((int32_t)L_16) >= ((int32_t)0)))
{
goto IL_0024;
}
}
{
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *));
RuntimeObject * L_17 = V_1;
return L_17;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<GameCanvas.EKeyCode>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisEKeyCode_t3426821747_m478162586_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEKeyCode_t3426821747_m478162586_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEKeyCode_t3426821747_m478162586_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<GameCanvas.Input.Keyboard/KeyInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyInfo_t3485824945 Array_InternalArray__IReadOnlyList_get_Item_TisKeyInfo_t3485824945_m2528830481_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyInfo_t3485824945_m2528830481_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyInfo_t3485824945 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyInfo_t3485824945_m2528830481_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyInfo_t3485824945 *)(KeyInfo_t3485824945 *)(&V_0));
KeyInfo_t3485824945 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<GameCanvas.PointerEvent>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR PointerEvent_t2369854343 Array_InternalArray__IReadOnlyList_get_Item_TisPointerEvent_t2369854343_m3128329489_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisPointerEvent_t2369854343_m3128329489_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PointerEvent_t2369854343 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisPointerEvent_t2369854343_m3128329489_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PointerEvent_t2369854343 *)(PointerEvent_t2369854343 *)(&V_0));
PointerEvent_t2369854343 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<MS.Internal.Xml.Cache.XPathNode>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR XPathNode_t2208072876 Array_InternalArray__IReadOnlyList_get_Item_TisXPathNode_t2208072876_m1346231604_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXPathNode_t2208072876_m1346231604_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XPathNode_t2208072876 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisXPathNode_t2208072876_m1346231604_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XPathNode_t2208072876 *)(XPathNode_t2208072876 *)(&V_0));
XPathNode_t2208072876 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<MS.Internal.Xml.Cache.XPathNodeRef>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR XPathNodeRef_t3498189018 Array_InternalArray__IReadOnlyList_get_Item_TisXPathNodeRef_t3498189018_m3445190082_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXPathNodeRef_t3498189018_m3445190082_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XPathNodeRef_t3498189018 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisXPathNodeRef_t3498189018_m3445190082_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XPathNodeRef_t3498189018 *)(XPathNodeRef_t3498189018 *)(&V_0));
XPathNodeRef_t3498189018 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<MS.Internal.Xml.XPath.Operator/Op>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisOp_t2046805169_m2952875830_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisOp_t2046805169_m2952875830_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisOp_t2046805169_m2952875830_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<Mono.AppleTls.SslCipherSuite>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint16_t Array_InternalArray__IReadOnlyList_get_Item_TisSslCipherSuite_t3309122048_m3223465059_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSslCipherSuite_t3309122048_m3223465059_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSslCipherSuite_t3309122048_m3223465059_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint16_t*)(uint16_t*)(&V_0));
uint16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<Mono.AppleTls.SslStatus>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisSslStatus_t191981556_m3434633658_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSslStatus_t191981556_m3434633658_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSslStatus_t191981556_m3434633658_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR TableRange_t3332867892 Array_InternalArray__IReadOnlyList_get_Item_TisTableRange_t3332867892_m3510947664_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisTableRange_t3332867892_m3510947664_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TableRange_t3332867892 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisTableRange_t3332867892_m3510947664_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TableRange_t3332867892 *)(TableRange_t3332867892 *)(&V_0));
TableRange_t3332867892 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<Mono.Security.Interface.CipherSuiteCode>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint16_t Array_InternalArray__IReadOnlyList_get_Item_TisCipherSuiteCode_t732562211_m413910606_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisCipherSuiteCode_t732562211_m413910606_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisCipherSuiteCode_t732562211_m413910606_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint16_t*)(uint16_t*)(&V_0));
uint16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<Mono.Unity.UnityTls/unitytls_ciphersuite>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint32_t Array_InternalArray__IReadOnlyList_get_Item_Tisunitytls_ciphersuite_t1735159395_m1702130907_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_Tisunitytls_ciphersuite_t1735159395_m1702130907_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_Tisunitytls_ciphersuite_t1735159395_m1702130907_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint32_t*)(uint32_t*)(&V_0));
uint32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.AppContext/SwitchValueState>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisSwitchValueState_t2805251467_m4292384751_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSwitchValueState_t2805251467_m4292384751_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSwitchValueState_t2805251467_m4292384751_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.ArraySegment`1<System.Byte>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ArraySegment_1_t283560987 Array_InternalArray__IReadOnlyList_get_Item_TisArraySegment_1_t283560987_m2631689033_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisArraySegment_1_t283560987_m2631689033_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArraySegment_1_t283560987 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisArraySegment_1_t283560987_m2631689033_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ArraySegment_1_t283560987 *)(ArraySegment_1_t283560987 *)(&V_0));
ArraySegment_1_t283560987 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Boolean>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__IReadOnlyList_get_Item_TisBoolean_t97287965_m3931972236_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisBoolean_t97287965_m3931972236_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisBoolean_t97287965_m3931972236_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (bool*)(bool*)(&V_0));
bool L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Byte>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint8_t Array_InternalArray__IReadOnlyList_get_Item_TisByte_t1134296376_m52050332_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisByte_t1134296376_m52050332_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisByte_t1134296376_m52050332_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint8_t*)(uint8_t*)(&V_0));
uint8_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Char>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Array_InternalArray__IReadOnlyList_get_Item_TisChar_t3634460470_m2897818763_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisChar_t3634460470_m2897818763_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisChar_t3634460470_m2897818763_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Il2CppChar*)(Il2CppChar*)(&V_0));
Il2CppChar L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.DictionaryEntry>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR DictionaryEntry_t3123975638 Array_InternalArray__IReadOnlyList_get_Item_TisDictionaryEntry_t3123975638_m1693155781_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisDictionaryEntry_t3123975638_m1693155781_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DictionaryEntry_t3123975638 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisDictionaryEntry_t3123975638_m1693155781_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (DictionaryEntry_t3123975638 *)(DictionaryEntry_t3123975638 *)(&V_0));
DictionaryEntry_t3123975638 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<GameCanvas.EKeyCode,System.Int32>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t3444579954 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3444579954_m3351441300_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3444579954_m3351441300_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t3444579954 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3444579954_m3351441300_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t3444579954 *)(Entry_t3444579954 *)(&V_0));
Entry_t3444579954 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t2089797520 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2089797520_m2183796930_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2089797520_m2183796930_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t2089797520 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2089797520_m2183796930_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t2089797520 *)(Entry_t2089797520 *)(&V_0));
Entry_t2089797520 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t3743988185 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3743988185_m4195594381_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3743988185_m4195594381_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t3743988185 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3743988185_m4195594381_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t3743988185 *)(Entry_t3743988185 *)(&V_0));
Entry_t3743988185 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,GameCanvas.PointerEvent>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t2873432162 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2873432162_m3407232146_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2873432162_m3407232146_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t2873432162 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2873432162_m3407232146_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t2873432162 *)(Entry_t2873432162 *)(&V_0));
Entry_t2873432162 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t3583683983 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3583683983_m1034998604_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3583683983_m1034998604_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t3583683983 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3583683983_m1034998604_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t3583683983 *)(Entry_t3583683983 *)(&V_0));
Entry_t3583683983 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.AppContext/SwitchValueState>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t1472554943 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1472554943_m3517137150_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1472554943_m3517137150_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t1472554943 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1472554943_m3517137150_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t1472554943 *)(Entry_t1472554943 *)(&V_0));
Entry_t1472554943 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t3059558737 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3059558737_m3944143255_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3059558737_m3944143255_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t3059558737 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t3059558737_m3944143255_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t3059558737 *)(Entry_t3059558737 *)(&V_0));
Entry_t3059558737 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t1618249229 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1618249229_m1870777781_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1618249229_m1870777781_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t1618249229 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1618249229_m1870777781_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t1618249229 *)(Entry_t1618249229 *)(&V_0));
Entry_t1618249229 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t1747409640 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1747409640_m792786254_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1747409640_m792786254_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t1747409640 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t1747409640_m792786254_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t1747409640 *)(Entry_t1747409640 *)(&V_0));
Entry_t1747409640 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t2391274283 Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2391274283_m296252669_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2391274283_m296252669_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t2391274283 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEntry_t2391274283_m296252669_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t2391274283 *)(Entry_t2391274283 *)(&V_0));
Entry_t2391274283 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<GameCanvas.EKeyCode,System.Int32>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t4227387633 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t4227387633_m2483581075_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t4227387633_m2483581075_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t4227387633 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t4227387633_m2483581075_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t4227387633 *)(KeyValuePair_2_t4227387633 *)(&V_0));
KeyValuePair_2_t4227387633 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t2872605199 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2872605199_m4164356502_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2872605199_m4164356502_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t2872605199 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2872605199_m4164356502_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t2872605199 *)(KeyValuePair_2_t2872605199 *)(&V_0));
KeyValuePair_2_t2872605199 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t870930286 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t870930286_m2030090946_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t870930286_m2030090946_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t870930286 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t870930286_m2030090946_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t870930286 *)(KeyValuePair_2_t870930286 *)(&V_0));
KeyValuePair_2_t870930286 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t231828568 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t231828568_m2879642492_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t231828568_m2879642492_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t231828568 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t231828568_m2879642492_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t231828568 *)(KeyValuePair_2_t231828568 *)(&V_0));
KeyValuePair_2_t231828568 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,GameCanvas.PointerEvent>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t3656239841 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3656239841_m3348438394_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3656239841_m3348438394_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t3656239841 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3656239841_m3348438394_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t3656239841 *)(KeyValuePair_2_t3656239841 *)(&V_0));
KeyValuePair_2_t3656239841 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t71524366 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t71524366_m4016347629_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t71524366_m4016347629_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t71524366 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t71524366_m4016347629_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)(&V_0));
KeyValuePair_2_t71524366 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t2255362622 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2255362622_m1833548490_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2255362622_m1833548490_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t2255362622 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2255362622_m1833548490_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t2255362622 *)(KeyValuePair_2_t2255362622 *)(&V_0));
KeyValuePair_2_t2255362622 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t3842366416 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3842366416_m4146411760_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3842366416_m4146411760_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t3842366416 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3842366416_m4146411760_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t3842366416 *)(KeyValuePair_2_t3842366416 *)(&V_0));
KeyValuePair_2_t3842366416 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t2401056908 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2401056908_m1189709003_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2401056908_m1189709003_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t2401056908 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2401056908_m1189709003_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t2401056908 *)(KeyValuePair_2_t2401056908 *)(&V_0));
KeyValuePair_2_t2401056908 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t2530217319 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2530217319_m1384700832_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2530217319_m1384700832_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t2530217319 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t2530217319_m1384700832_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t2530217319 *)(KeyValuePair_2_t2530217319 *)(&V_0));
KeyValuePair_2_t2530217319 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t3174081962 Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3174081962_m3674368018_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3174081962_m3674368018_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t3174081962 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyValuePair_2_t3174081962_m3674368018_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t3174081962 *)(KeyValuePair_2_t3174081962 *)(&V_0));
KeyValuePair_2_t3174081962 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Hashtable/bucket>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR bucket_t758131704 Array_InternalArray__IReadOnlyList_get_Item_Tisbucket_t758131704_m1787544783_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_Tisbucket_t758131704_m1787544783_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bucket_t758131704 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_Tisbucket_t758131704_m1787544783_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (bucket_t758131704 *)(bucket_t758131704 *)(&V_0));
bucket_t758131704 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.ComponentModel.AttributeCollection/AttributeEntry>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR AttributeEntry_t1001010863 Array_InternalArray__IReadOnlyList_get_Item_TisAttributeEntry_t1001010863_m2433260216_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisAttributeEntry_t1001010863_m2433260216_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeEntry_t1001010863 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisAttributeEntry_t1001010863_m2433260216_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (AttributeEntry_t1001010863 *)(AttributeEntry_t1001010863 *)(&V_0));
AttributeEntry_t1001010863 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.DateTime>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR DateTime_t3738529785 Array_InternalArray__IReadOnlyList_get_Item_TisDateTime_t3738529785_m2109834484_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisDateTime_t3738529785_m2109834484_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DateTime_t3738529785 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisDateTime_t3738529785_m2109834484_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (DateTime_t3738529785 *)(DateTime_t3738529785 *)(&V_0));
DateTime_t3738529785 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.DateTimeOffset>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR DateTimeOffset_t3229287507 Array_InternalArray__IReadOnlyList_get_Item_TisDateTimeOffset_t3229287507_m4127887284_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisDateTimeOffset_t3229287507_m4127887284_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DateTimeOffset_t3229287507 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisDateTimeOffset_t3229287507_m4127887284_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (DateTimeOffset_t3229287507 *)(DateTimeOffset_t3229287507 *)(&V_0));
DateTimeOffset_t3229287507 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.DateTimeParse/DS>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisDS_t2232270370_m1966464765_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisDS_t2232270370_m1966464765_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisDS_t2232270370_m1966464765_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Decimal>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Decimal_t2948259380 Array_InternalArray__IReadOnlyList_get_Item_TisDecimal_t2948259380_m1768711179_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisDecimal_t2948259380_m1768711179_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Decimal_t2948259380 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisDecimal_t2948259380_m1768711179_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Decimal_t2948259380 *)(Decimal_t2948259380 *)(&V_0));
Decimal_t2948259380 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Double>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR double Array_InternalArray__IReadOnlyList_get_Item_TisDouble_t594665363_m293013457_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisDouble_t594665363_m293013457_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
double V_0 = 0.0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisDouble_t594665363_m293013457_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (double*)(double*)(&V_0));
double L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Globalization.HebrewNumber/HS>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisHS_t3339773016_m688644066_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisHS_t3339773016_m688644066_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisHS_t3339773016_m688644066_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Globalization.InternalCodePageDataItem>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR InternalCodePageDataItem_t2575532933 Array_InternalArray__IReadOnlyList_get_Item_TisInternalCodePageDataItem_t2575532933_m3430335884_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInternalCodePageDataItem_t2575532933_m3430335884_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalCodePageDataItem_t2575532933 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInternalCodePageDataItem_t2575532933_m3430335884_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (InternalCodePageDataItem_t2575532933 *)(InternalCodePageDataItem_t2575532933 *)(&V_0));
InternalCodePageDataItem_t2575532933 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Globalization.InternalEncodingDataItem>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR InternalEncodingDataItem_t3158859817 Array_InternalArray__IReadOnlyList_get_Item_TisInternalEncodingDataItem_t3158859817_m3389551860_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInternalEncodingDataItem_t3158859817_m3389551860_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalEncodingDataItem_t3158859817 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInternalEncodingDataItem_t3158859817_m3389551860_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (InternalEncodingDataItem_t3158859817 *)(InternalEncodingDataItem_t3158859817 *)(&V_0));
InternalEncodingDataItem_t3158859817 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Globalization.TimeSpanParse/TimeSpanToken>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR TimeSpanToken_t993347374 Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpanToken_t993347374_m417465067_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpanToken_t993347374_m417465067_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TimeSpanToken_t993347374 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpanToken_t993347374_m417465067_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TimeSpanToken_t993347374 *)(TimeSpanToken_t993347374 *)(&V_0));
TimeSpanToken_t993347374 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Guid>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Guid_t Array_InternalArray__IReadOnlyList_get_Item_TisGuid_t_m115284017_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisGuid_t_m115284017_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Guid_t V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisGuid_t_m115284017_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Guid_t *)(Guid_t *)(&V_0));
Guid_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int16>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int16_t Array_InternalArray__IReadOnlyList_get_Item_TisInt16_t2552820387_m3455259345_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInt16_t2552820387_m3455259345_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInt16_t2552820387_m3455259345_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int16_t*)(int16_t*)(&V_0));
int16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int32>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisInt32_t2950945753_m2955156918_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInt32_t2950945753_m2955156918_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInt32_t2950945753_m2955156918_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int64>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int64_t Array_InternalArray__IReadOnlyList_get_Item_TisInt64_t3736567304_m3745337766_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInt64_t3736567304_m3745337766_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInt64_t3736567304_m3745337766_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int64_t*)(int64_t*)(&V_0));
int64_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.IntPtr>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR intptr_t Array_InternalArray__IReadOnlyList_get_Item_TisIntPtr_t_m3415458056_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisIntPtr_t_m3415458056_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisIntPtr_t_m3415458056_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (intptr_t*)(intptr_t*)(&V_0));
intptr_t L_4 = V_0;
return (intptr_t)L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Net.CookieTokenizer/RecognizedAttribute>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RecognizedAttribute_t632074220 Array_InternalArray__IReadOnlyList_get_Item_TisRecognizedAttribute_t632074220_m3891904990_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisRecognizedAttribute_t632074220_m3891904990_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RecognizedAttribute_t632074220 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisRecognizedAttribute_t632074220_m3891904990_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RecognizedAttribute_t632074220 *)(RecognizedAttribute_t632074220 *)(&V_0));
RecognizedAttribute_t632074220 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Net.HeaderVariantInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR HeaderVariantInfo_t1935685601 Array_InternalArray__IReadOnlyList_get_Item_TisHeaderVariantInfo_t1935685601_m1464107077_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisHeaderVariantInfo_t1935685601_m1464107077_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
HeaderVariantInfo_t1935685601 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisHeaderVariantInfo_t1935685601_m1464107077_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (HeaderVariantInfo_t1935685601 *)(HeaderVariantInfo_t1935685601 *)(&V_0));
HeaderVariantInfo_t1935685601 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Win32_IP_ADAPTER_ADDRESSES_t3463526328 Array_InternalArray__IReadOnlyList_get_Item_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m173440720_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m173440720_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Win32_IP_ADAPTER_ADDRESSES_t3463526328 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m173440720_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Win32_IP_ADAPTER_ADDRESSES_t3463526328 *)(Win32_IP_ADAPTER_ADDRESSES_t3463526328 *)(&V_0));
Win32_IP_ADAPTER_ADDRESSES_t3463526328 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Net.Sockets.Socket/WSABUF>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR WSABUF_t1998059390 Array_InternalArray__IReadOnlyList_get_Item_TisWSABUF_t1998059390_m157911457_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisWSABUF_t1998059390_m157911457_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WSABUF_t1998059390 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisWSABUF_t1998059390_m157911457_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (WSABUF_t1998059390 *)(WSABUF_t1998059390 *)(&V_0));
WSABUF_t1998059390 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Net.WebHeaderCollection/RfcChar>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint8_t Array_InternalArray__IReadOnlyList_get_Item_TisRfcChar_t2905409930_m25858722_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisRfcChar_t2905409930_m25858722_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisRfcChar_t2905409930_m25858722_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint8_t*)(uint8_t*)(&V_0));
uint8_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Object>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Array_InternalArray__IReadOnlyList_get_Item_TisRuntimeObject_m885578954_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisRuntimeObject_m885578954_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisRuntimeObject_m885578954_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RuntimeObject **)(RuntimeObject **)(&V_0));
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.ParameterizedStrings/FormatParam>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR FormatParam_t4194474082 Array_InternalArray__IReadOnlyList_get_Item_TisFormatParam_t4194474082_m778275290_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisFormatParam_t4194474082_m778275290_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
FormatParam_t4194474082 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisFormatParam_t4194474082_m778275290_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (FormatParam_t4194474082 *)(FormatParam_t4194474082 *)(&V_0));
FormatParam_t4194474082 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR CustomAttributeNamedArgument_t287865710 Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeNamedArgument_t287865710_m3643599440_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeNamedArgument_t287865710_m3643599440_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CustomAttributeNamedArgument_t287865710 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeNamedArgument_t287865710_m3643599440_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CustomAttributeNamedArgument_t287865710 *)(CustomAttributeNamedArgument_t287865710 *)(&V_0));
CustomAttributeNamedArgument_t287865710 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR CustomAttributeTypedArgument_t2723150157 Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeTypedArgument_t2723150157_m2041074378_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeTypedArgument_t2723150157_m2041074378_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CustomAttributeTypedArgument_t2723150157 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisCustomAttributeTypedArgument_t2723150157_m2041074378_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CustomAttributeTypedArgument_t2723150157 *)(CustomAttributeTypedArgument_t2723150157 *)(&V_0));
CustomAttributeTypedArgument_t2723150157 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.Emit.ILExceptionBlock>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ILExceptionBlock_t3961874966 Array_InternalArray__IReadOnlyList_get_Item_TisILExceptionBlock_t3961874966_m3018764391_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisILExceptionBlock_t3961874966_m3018764391_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ILExceptionBlock_t3961874966 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisILExceptionBlock_t3961874966_m3018764391_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ILExceptionBlock_t3961874966 *)(ILExceptionBlock_t3961874966 *)(&V_0));
ILExceptionBlock_t3961874966 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.Emit.ILExceptionInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ILExceptionInfo_t237856010 Array_InternalArray__IReadOnlyList_get_Item_TisILExceptionInfo_t237856010_m2165621442_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisILExceptionInfo_t237856010_m2165621442_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ILExceptionInfo_t237856010 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisILExceptionInfo_t237856010_m2165621442_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ILExceptionInfo_t237856010 *)(ILExceptionInfo_t237856010 *)(&V_0));
ILExceptionInfo_t237856010 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.Emit.ILGenerator/LabelData>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR LabelData_t360167391 Array_InternalArray__IReadOnlyList_get_Item_TisLabelData_t360167391_m180970407_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisLabelData_t360167391_m180970407_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LabelData_t360167391 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisLabelData_t360167391_m180970407_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LabelData_t360167391 *)(LabelData_t360167391 *)(&V_0));
LabelData_t360167391 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.Emit.ILGenerator/LabelFixup>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR LabelFixup_t858502054 Array_InternalArray__IReadOnlyList_get_Item_TisLabelFixup_t858502054_m361705503_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisLabelFixup_t858502054_m361705503_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LabelFixup_t858502054 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisLabelFixup_t858502054_m361705503_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LabelFixup_t858502054 *)(LabelFixup_t858502054 *)(&V_0));
LabelFixup_t858502054 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.Emit.ILTokenInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ILTokenInfo_t2325775114 Array_InternalArray__IReadOnlyList_get_Item_TisILTokenInfo_t2325775114_m2504809207_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisILTokenInfo_t2325775114_m2504809207_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ILTokenInfo_t2325775114 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisILTokenInfo_t2325775114_m2504809207_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ILTokenInfo_t2325775114 *)(ILTokenInfo_t2325775114 *)(&V_0));
ILTokenInfo_t2325775114 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.Emit.Label>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Label_t2281661643 Array_InternalArray__IReadOnlyList_get_Item_TisLabel_t2281661643_m1835167839_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisLabel_t2281661643_m1835167839_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Label_t2281661643 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisLabel_t2281661643_m1835167839_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Label_t2281661643 *)(Label_t2281661643 *)(&V_0));
Label_t2281661643 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.Emit.MonoResource>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR MonoResource_t4103430009 Array_InternalArray__IReadOnlyList_get_Item_TisMonoResource_t4103430009_m3254626270_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisMonoResource_t4103430009_m3254626270_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MonoResource_t4103430009 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisMonoResource_t4103430009_m3254626270_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (MonoResource_t4103430009 *)(MonoResource_t4103430009 *)(&V_0));
MonoResource_t4103430009 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.Emit.MonoWin32Resource>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR MonoWin32Resource_t1904229483 Array_InternalArray__IReadOnlyList_get_Item_TisMonoWin32Resource_t1904229483_m2691624008_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisMonoWin32Resource_t1904229483_m2691624008_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MonoWin32Resource_t1904229483 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisMonoWin32Resource_t1904229483_m2691624008_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (MonoWin32Resource_t1904229483 *)(MonoWin32Resource_t1904229483 *)(&V_0));
MonoWin32Resource_t1904229483 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.Emit.RefEmitPermissionSet>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RefEmitPermissionSet_t484390987 Array_InternalArray__IReadOnlyList_get_Item_TisRefEmitPermissionSet_t484390987_m896245899_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisRefEmitPermissionSet_t484390987_m896245899_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RefEmitPermissionSet_t484390987 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisRefEmitPermissionSet_t484390987_m896245899_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RefEmitPermissionSet_t484390987 *)(RefEmitPermissionSet_t484390987 *)(&V_0));
RefEmitPermissionSet_t484390987 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.ParameterModifier>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ParameterModifier_t1461694466 Array_InternalArray__IReadOnlyList_get_Item_TisParameterModifier_t1461694466_m707097487_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisParameterModifier_t1461694466_m707097487_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParameterModifier_t1461694466 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisParameterModifier_t1461694466_m707097487_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ParameterModifier_t1461694466 *)(ParameterModifier_t1461694466 *)(&V_0));
ParameterModifier_t1461694466 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Resources.ResourceLocator>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ResourceLocator_t3723970807 Array_InternalArray__IReadOnlyList_get_Item_TisResourceLocator_t3723970807_m1432084740_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisResourceLocator_t3723970807_m1432084740_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ResourceLocator_t3723970807 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisResourceLocator_t3723970807_m1432084740_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ResourceLocator_t3723970807 *)(ResourceLocator_t3723970807 *)(&V_0));
ResourceLocator_t3723970807 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Ephemeron_t1602596362 Array_InternalArray__IReadOnlyList_get_Item_TisEphemeron_t1602596362_m2752481302_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisEphemeron_t1602596362_m2752481302_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Ephemeron_t1602596362 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisEphemeron_t1602596362_m2752481302_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Ephemeron_t1602596362 *)(Ephemeron_t1602596362 *)(&V_0));
Ephemeron_t1602596362 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Runtime.InteropServices.GCHandle>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR GCHandle_t3351438187 Array_InternalArray__IReadOnlyList_get_Item_TisGCHandle_t3351438187_m1164941286_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisGCHandle_t3351438187_m1164941286_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GCHandle_t3351438187 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisGCHandle_t3351438187_m1164941286_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GCHandle_t3351438187 *)(GCHandle_t3351438187 *)(&V_0));
GCHandle_t3351438187 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisBinaryTypeEnum_t3485436454_m2524012928_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisBinaryTypeEnum_t3485436454_m2524012928_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisBinaryTypeEnum_t3485436454_m2524012928_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisInternalPrimitiveTypeE_t4093048977_m3031033319_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisInternalPrimitiveTypeE_t4093048977_m3031033319_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisInternalPrimitiveTypeE_t4093048977_m3031033319_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.SByte>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int8_t Array_InternalArray__IReadOnlyList_get_Item_TisSByte_t1669577662_m3057015409_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSByte_t1669577662_m3057015409_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int8_t V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSByte_t1669577662_m3057015409_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int8_t*)(int8_t*)(&V_0));
int8_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR X509ChainStatus_t133602714 Array_InternalArray__IReadOnlyList_get_Item_TisX509ChainStatus_t133602714_m2017440555_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisX509ChainStatus_t133602714_m2017440555_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
X509ChainStatus_t133602714 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisX509ChainStatus_t133602714_m2017440555_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (X509ChainStatus_t133602714 *)(X509ChainStatus_t133602714 *)(&V_0));
X509ChainStatus_t133602714 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Single>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR float Array_InternalArray__IReadOnlyList_get_Item_TisSingle_t1397266774_m70177781_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSingle_t1397266774_m70177781_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSingle_t1397266774_m70177781_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (float*)(float*)(&V_0));
float L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.TermInfoStrings>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisTermInfoStrings_t290279955_m1412835473_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisTermInfoStrings_t290279955_m1412835473_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisTermInfoStrings_t290279955_m1412835473_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR LowerCaseMapping_t2910317575 Array_InternalArray__IReadOnlyList_get_Item_TisLowerCaseMapping_t2910317575_m1939279452_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisLowerCaseMapping_t2910317575_m1939279452_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LowerCaseMapping_t2910317575 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisLowerCaseMapping_t2910317575_m1939279452_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LowerCaseMapping_t2910317575 *)(LowerCaseMapping_t2910317575 *)(&V_0));
LowerCaseMapping_t2910317575 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Text.RegularExpressions.RegexOptions>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisRegexOptions_t92845595_m4058415748_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisRegexOptions_t92845595_m4058415748_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisRegexOptions_t92845595_m4058415748_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Threading.CancellationTokenRegistration>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR CancellationTokenRegistration_t2813424904 Array_InternalArray__IReadOnlyList_get_Item_TisCancellationTokenRegistration_t2813424904_m3256868132_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisCancellationTokenRegistration_t2813424904_m3256868132_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationTokenRegistration_t2813424904 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisCancellationTokenRegistration_t2813424904_m3256868132_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CancellationTokenRegistration_t2813424904 *)(CancellationTokenRegistration_t2813424904 *)(&V_0));
CancellationTokenRegistration_t2813424904 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.TimeSpan>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR TimeSpan_t881159249 Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpan_t881159249_m3641977509_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpan_t881159249_m3641977509_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TimeSpan_t881159249 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisTimeSpan_t881159249_m3641977509_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TimeSpan_t881159249 *)(TimeSpan_t881159249 *)(&V_0));
TimeSpan_t881159249 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.TypeCode>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisTypeCode_t2987224087_m4252651165_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisTypeCode_t2987224087_m4252651165_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisTypeCode_t2987224087_m4252651165_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt16>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint16_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt16_t2177724958_m170984066_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUInt16_t2177724958_m170984066_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUInt16_t2177724958_m170984066_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint16_t*)(uint16_t*)(&V_0));
uint16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt32>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint32_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt32_t2560061978_m4042992197_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUInt32_t2560061978_m4042992197_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUInt32_t2560061978_m4042992197_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint32_t*)(uint32_t*)(&V_0));
uint32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt64>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint64_t Array_InternalArray__IReadOnlyList_get_Item_TisUInt64_t4134040092_m367691764_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUInt64_t4134040092_m367691764_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint64_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUInt64_t4134040092_m367691764_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint64_t*)(uint64_t*)(&V_0));
uint64_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Map_t1331044427 Array_InternalArray__IReadOnlyList_get_Item_TisMap_t1331044427_m1914648151_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisMap_t1331044427_m1914648151_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Map_t1331044427 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisMap_t1331044427_m1914648151_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Map_t1331044427 *)(Map_t1331044427 *)(&V_0));
Map_t1331044427 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.Schema.RangePositionInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RangePositionInfo_t589968936 Array_InternalArray__IReadOnlyList_get_Item_TisRangePositionInfo_t589968936_m2988414250_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisRangePositionInfo_t589968936_m2988414250_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RangePositionInfo_t589968936 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisRangePositionInfo_t589968936_m2988414250_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RangePositionInfo_t589968936 *)(RangePositionInfo_t589968936 *)(&V_0));
RangePositionInfo_t589968936 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR SequenceConstructPosContext_t2054380699 Array_InternalArray__IReadOnlyList_get_Item_TisSequenceConstructPosContext_t2054380699_m617148699_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisSequenceConstructPosContext_t2054380699_m617148699_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SequenceConstructPosContext_t2054380699 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisSequenceConstructPosContext_t2054380699_m617148699_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (SequenceConstructPosContext_t2054380699 *)(SequenceConstructPosContext_t2054380699 *)(&V_0));
SequenceConstructPosContext_t2054380699 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR XmlSchemaObjectEntry_t3344676971 Array_InternalArray__IReadOnlyList_get_Item_TisXmlSchemaObjectEntry_t3344676971_m1539839124_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXmlSchemaObjectEntry_t3344676971_m1539839124_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XmlSchemaObjectEntry_t3344676971 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisXmlSchemaObjectEntry_t3344676971_m1539839124_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XmlSchemaObjectEntry_t3344676971 *)(XmlSchemaObjectEntry_t3344676971 *)(&V_0));
XmlSchemaObjectEntry_t3344676971 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.Schema.XmlTypeCode>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisXmlTypeCode_t2623622950_m3393562866_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXmlTypeCode_t2623622950_m3393562866_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisXmlTypeCode_t2623622950_m3393562866_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.Schema.XsdBuilder/State>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisState_t1890458201_m652646140_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisState_t1890458201_m652646140_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisState_t1890458201_m652646140_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.XPath.XPathResultType>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisXPathResultType_t2828988488_m1937342502_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisXPathResultType_t2828988488_m1937342502_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisXPathResultType_t2828988488_m1937342502_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.XmlNamespaceManager/NamespaceDeclaration>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR NamespaceDeclaration_t4162609575 Array_InternalArray__IReadOnlyList_get_Item_TisNamespaceDeclaration_t4162609575_m83553861_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisNamespaceDeclaration_t4162609575_m83553861_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NamespaceDeclaration_t4162609575 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisNamespaceDeclaration_t4162609575_m83553861_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (NamespaceDeclaration_t4162609575 *)(NamespaceDeclaration_t4162609575 *)(&V_0));
NamespaceDeclaration_t4162609575 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR VirtualAttribute_t3578083907 Array_InternalArray__IReadOnlyList_get_Item_TisVirtualAttribute_t3578083907_m2284702182_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisVirtualAttribute_t3578083907_m2284702182_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
VirtualAttribute_t3578083907 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisVirtualAttribute_t3578083907_m2284702182_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (VirtualAttribute_t3578083907 *)(VirtualAttribute_t3578083907 *)(&V_0));
VirtualAttribute_t3578083907 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.XmlTextReaderImpl/ParsingState>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ParsingState_t1780334922 Array_InternalArray__IReadOnlyList_get_Item_TisParsingState_t1780334922_m3921860095_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisParsingState_t1780334922_m3921860095_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParsingState_t1780334922 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisParsingState_t1780334922_m3921860095_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ParsingState_t1780334922 *)(ParsingState_t1780334922 *)(&V_0));
ParsingState_t1780334922 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.XmlTextWriter/Namespace>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Namespace_t2218256516 Array_InternalArray__IReadOnlyList_get_Item_TisNamespace_t2218256516_m2182830534_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisNamespace_t2218256516_m2182830534_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Namespace_t2218256516 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisNamespace_t2218256516_m2182830534_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Namespace_t2218256516 *)(Namespace_t2218256516 *)(&V_0));
Namespace_t2218256516 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.XmlTextWriter/State>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyList_get_Item_TisState_t1792539347_m2676812677_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisState_t1792539347_m2676812677_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisState_t1792539347_m2676812677_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<System.Xml.XmlTextWriter/TagInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR TagInfo_t3526638417 Array_InternalArray__IReadOnlyList_get_Item_TisTagInfo_t3526638417_m869294536_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisTagInfo_t3526638417_m869294536_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TagInfo_t3526638417 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisTagInfo_t3526638417_m869294536_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TagInfo_t3526638417 *)(TagInfo_t3526638417 *)(&V_0));
TagInfo_t3526638417 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR OrderBlock_t1585977831 Array_InternalArray__IReadOnlyList_get_Item_TisOrderBlock_t1585977831_m1366047841_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisOrderBlock_t1585977831_m1366047841_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
OrderBlock_t1585977831 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisOrderBlock_t1585977831_m1366047841_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (OrderBlock_t1585977831 *)(OrderBlock_t1585977831 *)(&V_0));
OrderBlock_t1585977831 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Color>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Color_t2555686324 Array_InternalArray__IReadOnlyList_get_Item_TisColor_t2555686324_m3258096367_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisColor_t2555686324_m3258096367_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Color_t2555686324 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisColor_t2555686324_m3258096367_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Color_t2555686324 *)(Color_t2555686324 *)(&V_0));
Color_t2555686324 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.ContactPoint>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ContactPoint_t3758755253 Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint_t3758755253_m3263054153_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint_t3758755253_m3263054153_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ContactPoint_t3758755253 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisContactPoint_t3758755253_m3263054153_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ContactPoint_t3758755253 *)(ContactPoint_t3758755253 *)(&V_0));
ContactPoint_t3758755253 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR PlayerLoopSystem_t105772105 Array_InternalArray__IReadOnlyList_get_Item_TisPlayerLoopSystem_t105772105_m2448027111_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisPlayerLoopSystem_t105772105_m2448027111_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PlayerLoopSystem_t105772105 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisPlayerLoopSystem_t105772105_m2448027111_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PlayerLoopSystem_t105772105 *)(PlayerLoopSystem_t105772105 *)(&V_0));
PlayerLoopSystem_t105772105 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Keyframe>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Keyframe_t4206410242 Array_InternalArray__IReadOnlyList_get_Item_TisKeyframe_t4206410242_m786456066_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisKeyframe_t4206410242_m786456066_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Keyframe_t4206410242 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisKeyframe_t4206410242_m786456066_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Keyframe_t4206410242 *)(Keyframe_t4206410242 *)(&V_0));
Keyframe_t4206410242 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Playables.PlayableBinding>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR PlayableBinding_t354260709 Array_InternalArray__IReadOnlyList_get_Item_TisPlayableBinding_t354260709_m3109707054_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisPlayableBinding_t354260709_m3109707054_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PlayableBinding_t354260709 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisPlayableBinding_t354260709_m3109707054_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PlayableBinding_t354260709 *)(PlayableBinding_t354260709 *)(&V_0));
PlayableBinding_t354260709 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.RaycastHit2D>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RaycastHit2D_t2279581989 Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit2D_t2279581989_m2320360185_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit2D_t2279581989_m2320360185_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastHit2D_t2279581989 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit2D_t2279581989_m2320360185_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastHit2D_t2279581989 *)(RaycastHit2D_t2279581989 *)(&V_0));
RaycastHit2D_t2279581989 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.RaycastHit>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RaycastHit_t1056001966 Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit_t1056001966_m3880161389_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit_t1056001966_m3880161389_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastHit_t1056001966 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisRaycastHit_t1056001966_m3880161389_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastHit_t1056001966 *)(RaycastHit_t1056001966 *)(&V_0));
RaycastHit_t1056001966 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.SendMouseEvents/HitInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR HitInfo_t3229609740 Array_InternalArray__IReadOnlyList_get_Item_TisHitInfo_t3229609740_m2347572902_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisHitInfo_t3229609740_m2347572902_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
HitInfo_t3229609740 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisHitInfo_t3229609740_m2347572902_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (HitInfo_t3229609740 *)(HitInfo_t3229609740 *)(&V_0));
HitInfo_t3229609740 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR GcAchievementData_t675222246 Array_InternalArray__IReadOnlyList_get_Item_TisGcAchievementData_t675222246_m3424767744_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisGcAchievementData_t675222246_m3424767744_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GcAchievementData_t675222246 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisGcAchievementData_t675222246_m3424767744_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GcAchievementData_t675222246 *)(GcAchievementData_t675222246 *)(&V_0));
GcAchievementData_t675222246 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR GcScoreData_t2125309831 Array_InternalArray__IReadOnlyList_get_Item_TisGcScoreData_t2125309831_m2549008178_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisGcScoreData_t2125309831_m2549008178_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GcScoreData_t2125309831 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisGcScoreData_t2125309831_m2549008178_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GcScoreData_t2125309831 *)(GcScoreData_t2125309831 *)(&V_0));
GcScoreData_t2125309831 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UICharInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR UICharInfo_t75501106 Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_t75501106_m2335664289_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_t75501106_m2335664289_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UICharInfo_t75501106 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUICharInfo_t75501106_m2335664289_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UICharInfo_t75501106 *)(UICharInfo_t75501106 *)(&V_0));
UICharInfo_t75501106 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UILineInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR UILineInfo_t4195266810 Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t4195266810_m1189106026_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t4195266810_m1189106026_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UILineInfo_t4195266810 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUILineInfo_t4195266810_m1189106026_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UILineInfo_t4195266810 *)(UILineInfo_t4195266810 *)(&V_0));
UILineInfo_t4195266810 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UIVertex>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR UIVertex_t4057497605 Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t4057497605_m1280704486_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t4057497605_m1280704486_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UIVertex_t4057497605 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisUIVertex_t4057497605_m1280704486_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UIVertex_t4057497605 *)(UIVertex_t4057497605 *)(&V_0));
UIVertex_t4057497605 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UnitySynchronizationContext/WorkRequest>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR WorkRequest_t1354518612 Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t1354518612_m3429665912_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t1354518612_m3429665912_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WorkRequest_t1354518612 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisWorkRequest_t1354518612_m3429665912_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (WorkRequest_t1354518612 *)(WorkRequest_t1354518612 *)(&V_0));
WorkRequest_t1354518612 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Vector2>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Vector2_t2156229523 Array_InternalArray__IReadOnlyList_get_Item_TisVector2_t2156229523_m182881471_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisVector2_t2156229523_m182881471_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector2_t2156229523 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisVector2_t2156229523_m182881471_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector2_t2156229523 *)(Vector2_t2156229523 *)(&V_0));
Vector2_t2156229523 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Vector3>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 Array_InternalArray__IReadOnlyList_get_Item_TisVector3_t3722313464_m321227951_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisVector3_t3722313464_m321227951_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector3_t3722313464 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisVector3_t3722313464_m321227951_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector3_t3722313464 *)(Vector3_t3722313464 *)(&V_0));
Vector3_t3722313464 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.WebCamDevice>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR WebCamDevice_t1322781432 Array_InternalArray__IReadOnlyList_get_Item_TisWebCamDevice_t1322781432_m2214000996_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IReadOnlyList_get_Item_TisWebCamDevice_t1322781432_m2214000996_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WebCamDevice_t1322781432 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__IReadOnlyList_get_Item_TisWebCamDevice_t1322781432_m2214000996_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (WebCamDevice_t1322781432 *)(WebCamDevice_t1322781432 *)(&V_0));
WebCamDevice_t1322781432 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<GameCanvas.EKeyCode>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisEKeyCode_t3426821747_m1525599116_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEKeyCode_t3426821747_m1525599116_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEKeyCode_t3426821747_m1525599116_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<GameCanvas.Input.Keyboard/KeyInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyInfo_t3485824945 Array_InternalArray__get_Item_TisKeyInfo_t3485824945_m643477008_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyInfo_t3485824945_m643477008_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyInfo_t3485824945 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyInfo_t3485824945_m643477008_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyInfo_t3485824945 *)(KeyInfo_t3485824945 *)(&V_0));
KeyInfo_t3485824945 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<GameCanvas.PointerEvent>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR PointerEvent_t2369854343 Array_InternalArray__get_Item_TisPointerEvent_t2369854343_m617897172_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPointerEvent_t2369854343_m617897172_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PointerEvent_t2369854343 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisPointerEvent_t2369854343_m617897172_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PointerEvent_t2369854343 *)(PointerEvent_t2369854343 *)(&V_0));
PointerEvent_t2369854343 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<MS.Internal.Xml.Cache.XPathNode>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR XPathNode_t2208072876 Array_InternalArray__get_Item_TisXPathNode_t2208072876_m340421508_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXPathNode_t2208072876_m340421508_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XPathNode_t2208072876 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisXPathNode_t2208072876_m340421508_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XPathNode_t2208072876 *)(XPathNode_t2208072876 *)(&V_0));
XPathNode_t2208072876 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<MS.Internal.Xml.Cache.XPathNodeRef>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR XPathNodeRef_t3498189018 Array_InternalArray__get_Item_TisXPathNodeRef_t3498189018_m643695098_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXPathNodeRef_t3498189018_m643695098_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XPathNodeRef_t3498189018 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisXPathNodeRef_t3498189018_m643695098_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XPathNodeRef_t3498189018 *)(XPathNodeRef_t3498189018 *)(&V_0));
XPathNodeRef_t3498189018 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<MS.Internal.Xml.XPath.Operator/Op>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisOp_t2046805169_m59814001_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisOp_t2046805169_m59814001_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisOp_t2046805169_m59814001_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<Mono.AppleTls.SslCipherSuite>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint16_t Array_InternalArray__get_Item_TisSslCipherSuite_t3309122048_m3781380041_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSslCipherSuite_t3309122048_m3781380041_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSslCipherSuite_t3309122048_m3781380041_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint16_t*)(uint16_t*)(&V_0));
uint16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<Mono.AppleTls.SslStatus>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisSslStatus_t191981556_m3439607195_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSslStatus_t191981556_m3439607195_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSslStatus_t191981556_m3439607195_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR TableRange_t3332867892 Array_InternalArray__get_Item_TisTableRange_t3332867892_m1483480711_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTableRange_t3332867892_m1483480711_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TableRange_t3332867892 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisTableRange_t3332867892_m1483480711_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TableRange_t3332867892 *)(TableRange_t3332867892 *)(&V_0));
TableRange_t3332867892 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<Mono.Security.Interface.CipherSuiteCode>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint16_t Array_InternalArray__get_Item_TisCipherSuiteCode_t732562211_m2728361914_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisCipherSuiteCode_t732562211_m2728361914_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisCipherSuiteCode_t732562211_m2728361914_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint16_t*)(uint16_t*)(&V_0));
uint16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<Mono.Unity.UnityTls/unitytls_ciphersuite>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint32_t Array_InternalArray__get_Item_Tisunitytls_ciphersuite_t1735159395_m1653212152_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_Tisunitytls_ciphersuite_t1735159395_m1653212152_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_Tisunitytls_ciphersuite_t1735159395_m1653212152_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint32_t*)(uint32_t*)(&V_0));
uint32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.AppContext/SwitchValueState>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisSwitchValueState_t2805251467_m3737663818_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSwitchValueState_t2805251467_m3737663818_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSwitchValueState_t2805251467_m3737663818_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.ArraySegment`1<System.Byte>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ArraySegment_1_t283560987 Array_InternalArray__get_Item_TisArraySegment_1_t283560987_m1350465735_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisArraySegment_1_t283560987_m1350465735_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArraySegment_1_t283560987 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisArraySegment_1_t283560987_m1350465735_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ArraySegment_1_t283560987 *)(ArraySegment_1_t283560987 *)(&V_0));
ArraySegment_1_t283560987 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Boolean>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool Array_InternalArray__get_Item_TisBoolean_t97287965_m1407010309_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisBoolean_t97287965_m1407010309_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisBoolean_t97287965_m1407010309_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (bool*)(bool*)(&V_0));
bool L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Byte>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint8_t Array_InternalArray__get_Item_TisByte_t1134296376_m3566214066_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisByte_t1134296376_m3566214066_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisByte_t1134296376_m3566214066_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint8_t*)(uint8_t*)(&V_0));
uint8_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Char>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar Array_InternalArray__get_Item_TisChar_t3634460470_m324132692_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisChar_t3634460470_m324132692_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisChar_t3634460470_m324132692_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Il2CppChar*)(Il2CppChar*)(&V_0));
Il2CppChar L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.DictionaryEntry>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR DictionaryEntry_t3123975638 Array_InternalArray__get_Item_TisDictionaryEntry_t3123975638_m479537688_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDictionaryEntry_t3123975638_m479537688_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DictionaryEntry_t3123975638 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisDictionaryEntry_t3123975638_m479537688_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (DictionaryEntry_t3123975638 *)(DictionaryEntry_t3123975638 *)(&V_0));
DictionaryEntry_t3123975638 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<GameCanvas.EKeyCode,System.Int32>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t3444579954 Array_InternalArray__get_Item_TisEntry_t3444579954_m4176629715_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t3444579954_m4176629715_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t3444579954 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t3444579954_m4176629715_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t3444579954 *)(Entry_t3444579954 *)(&V_0));
Entry_t3444579954 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t2089797520 Array_InternalArray__get_Item_TisEntry_t2089797520_m1132164774_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t2089797520_m1132164774_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t2089797520 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t2089797520_m1132164774_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t2089797520 *)(Entry_t2089797520 *)(&V_0));
Entry_t2089797520 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t3743988185 Array_InternalArray__get_Item_TisEntry_t3743988185_m1647887093_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t3743988185_m1647887093_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t3743988185 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t3743988185_m1647887093_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t3743988185 *)(Entry_t3743988185 *)(&V_0));
Entry_t3743988185 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,GameCanvas.PointerEvent>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t2873432162 Array_InternalArray__get_Item_TisEntry_t2873432162_m1203860870_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t2873432162_m1203860870_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t2873432162 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t2873432162_m1203860870_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t2873432162 *)(Entry_t2873432162 *)(&V_0));
Entry_t2873432162 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t3583683983 Array_InternalArray__get_Item_TisEntry_t3583683983_m3144194517_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t3583683983_m3144194517_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t3583683983 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t3583683983_m3144194517_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t3583683983 *)(Entry_t3583683983 *)(&V_0));
Entry_t3583683983 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.AppContext/SwitchValueState>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t1472554943 Array_InternalArray__get_Item_TisEntry_t1472554943_m3291951811_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t1472554943_m3291951811_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t1472554943 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t1472554943_m3291951811_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t1472554943 *)(Entry_t1472554943 *)(&V_0));
Entry_t1472554943 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t3059558737 Array_InternalArray__get_Item_TisEntry_t3059558737_m1704861703_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t3059558737_m1704861703_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t3059558737 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t3059558737_m1704861703_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t3059558737 *)(Entry_t3059558737 *)(&V_0));
Entry_t3059558737 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t1618249229 Array_InternalArray__get_Item_TisEntry_t1618249229_m3861900101_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t1618249229_m3861900101_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t1618249229 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t1618249229_m3861900101_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t1618249229 *)(Entry_t1618249229 *)(&V_0));
Entry_t1618249229 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t1747409640 Array_InternalArray__get_Item_TisEntry_t1747409640_m3464191153_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t1747409640_m3464191153_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t1747409640 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t1747409640_m3464191153_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t1747409640 *)(Entry_t1747409640 *)(&V_0));
Entry_t1747409640 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Entry_t2391274283 Array_InternalArray__get_Item_TisEntry_t2391274283_m3380666605_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEntry_t2391274283_m3380666605_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Entry_t2391274283 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEntry_t2391274283_m3380666605_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Entry_t2391274283 *)(Entry_t2391274283 *)(&V_0));
Entry_t2391274283 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<GameCanvas.EKeyCode,System.Int32>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t4227387633 Array_InternalArray__get_Item_TisKeyValuePair_2_t4227387633_m619225145_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t4227387633_m619225145_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t4227387633 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t4227387633_m619225145_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t4227387633 *)(KeyValuePair_2_t4227387633 *)(&V_0));
KeyValuePair_2_t4227387633 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t2872605199 Array_InternalArray__get_Item_TisKeyValuePair_2_t2872605199_m1944609151_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t2872605199_m1944609151_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t2872605199 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t2872605199_m1944609151_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t2872605199 *)(KeyValuePair_2_t2872605199 *)(&V_0));
KeyValuePair_2_t2872605199 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t870930286 Array_InternalArray__get_Item_TisKeyValuePair_2_t870930286_m3753401719_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t870930286_m3753401719_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t870930286 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t870930286_m3753401719_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t870930286 *)(KeyValuePair_2_t870930286 *)(&V_0));
KeyValuePair_2_t870930286 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t231828568 Array_InternalArray__get_Item_TisKeyValuePair_2_t231828568_m3371689832_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t231828568_m3371689832_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t231828568 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t231828568_m3371689832_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t231828568 *)(KeyValuePair_2_t231828568 *)(&V_0));
KeyValuePair_2_t231828568 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,GameCanvas.PointerEvent>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t3656239841 Array_InternalArray__get_Item_TisKeyValuePair_2_t3656239841_m546960297_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t3656239841_m546960297_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t3656239841 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t3656239841_m546960297_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t3656239841 *)(KeyValuePair_2_t3656239841 *)(&V_0));
KeyValuePair_2_t3656239841 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t71524366 Array_InternalArray__get_Item_TisKeyValuePair_2_t71524366_m252172060_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t71524366_m252172060_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t71524366 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t71524366_m252172060_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t71524366 *)(KeyValuePair_2_t71524366 *)(&V_0));
KeyValuePair_2_t71524366 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.AppContext/SwitchValueState>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t2255362622 Array_InternalArray__get_Item_TisKeyValuePair_2_t2255362622_m4208123644_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t2255362622_m4208123644_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t2255362622 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t2255362622_m4208123644_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t2255362622 *)(KeyValuePair_2_t2255362622 *)(&V_0));
KeyValuePair_2_t2255362622 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t3842366416 Array_InternalArray__get_Item_TisKeyValuePair_2_t3842366416_m3937535230_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t3842366416_m3937535230_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t3842366416 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t3842366416_m3937535230_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t3842366416 *)(KeyValuePair_2_t3842366416 *)(&V_0));
KeyValuePair_2_t3842366416 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t2401056908 Array_InternalArray__get_Item_TisKeyValuePair_2_t2401056908_m3647027688_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t2401056908_m3647027688_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t2401056908 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t2401056908_m3647027688_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t2401056908 *)(KeyValuePair_2_t2401056908 *)(&V_0));
KeyValuePair_2_t2401056908 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t2530217319 Array_InternalArray__get_Item_TisKeyValuePair_2_t2530217319_m2886833132_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t2530217319_m2886833132_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t2530217319 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t2530217319_m2886833132_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t2530217319 *)(KeyValuePair_2_t2530217319 *)(&V_0));
KeyValuePair_2_t2530217319 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t3174081962 Array_InternalArray__get_Item_TisKeyValuePair_2_t3174081962_m577574333_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyValuePair_2_t3174081962_m577574333_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t3174081962 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyValuePair_2_t3174081962_m577574333_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (KeyValuePair_2_t3174081962 *)(KeyValuePair_2_t3174081962 *)(&V_0));
KeyValuePair_2_t3174081962 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Collections.Hashtable/bucket>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR bucket_t758131704 Array_InternalArray__get_Item_Tisbucket_t758131704_m3062903822_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_Tisbucket_t758131704_m3062903822_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bucket_t758131704 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_Tisbucket_t758131704_m3062903822_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (bucket_t758131704 *)(bucket_t758131704 *)(&V_0));
bucket_t758131704 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.ComponentModel.AttributeCollection/AttributeEntry>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR AttributeEntry_t1001010863 Array_InternalArray__get_Item_TisAttributeEntry_t1001010863_m4202499280_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisAttributeEntry_t1001010863_m4202499280_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AttributeEntry_t1001010863 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisAttributeEntry_t1001010863_m4202499280_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (AttributeEntry_t1001010863 *)(AttributeEntry_t1001010863 *)(&V_0));
AttributeEntry_t1001010863 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.DateTime>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR DateTime_t3738529785 Array_InternalArray__get_Item_TisDateTime_t3738529785_m623181444_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDateTime_t3738529785_m623181444_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DateTime_t3738529785 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisDateTime_t3738529785_m623181444_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (DateTime_t3738529785 *)(DateTime_t3738529785 *)(&V_0));
DateTime_t3738529785 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.DateTimeOffset>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR DateTimeOffset_t3229287507 Array_InternalArray__get_Item_TisDateTimeOffset_t3229287507_m3151184010_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDateTimeOffset_t3229287507_m3151184010_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DateTimeOffset_t3229287507 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisDateTimeOffset_t3229287507_m3151184010_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (DateTimeOffset_t3229287507 *)(DateTimeOffset_t3229287507 *)(&V_0));
DateTimeOffset_t3229287507 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.DateTimeParse/DS>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisDS_t2232270370_m2278453804_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDS_t2232270370_m2278453804_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisDS_t2232270370_m2278453804_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Decimal>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Decimal_t2948259380 Array_InternalArray__get_Item_TisDecimal_t2948259380_m3511003792_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDecimal_t2948259380_m3511003792_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Decimal_t2948259380 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisDecimal_t2948259380_m3511003792_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Decimal_t2948259380 *)(Decimal_t2948259380 *)(&V_0));
Decimal_t2948259380 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Double>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR double Array_InternalArray__get_Item_TisDouble_t594665363_m850827605_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisDouble_t594665363_m850827605_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
double V_0 = 0.0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisDouble_t594665363_m850827605_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (double*)(double*)(&V_0));
double L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Globalization.HebrewNumber/HS>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisHS_t3339773016_m2892490585_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisHS_t3339773016_m2892490585_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisHS_t3339773016_m2892490585_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Globalization.InternalCodePageDataItem>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR InternalCodePageDataItem_t2575532933 Array_InternalArray__get_Item_TisInternalCodePageDataItem_t2575532933_m3080794928_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInternalCodePageDataItem_t2575532933_m3080794928_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalCodePageDataItem_t2575532933 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInternalCodePageDataItem_t2575532933_m3080794928_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (InternalCodePageDataItem_t2575532933 *)(InternalCodePageDataItem_t2575532933 *)(&V_0));
InternalCodePageDataItem_t2575532933 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Globalization.InternalEncodingDataItem>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR InternalEncodingDataItem_t3158859817 Array_InternalArray__get_Item_TisInternalEncodingDataItem_t3158859817_m2045986783_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInternalEncodingDataItem_t3158859817_m2045986783_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalEncodingDataItem_t3158859817 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInternalEncodingDataItem_t3158859817_m2045986783_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (InternalEncodingDataItem_t3158859817 *)(InternalEncodingDataItem_t3158859817 *)(&V_0));
InternalEncodingDataItem_t3158859817 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Globalization.TimeSpanParse/TimeSpanToken>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR TimeSpanToken_t993347374 Array_InternalArray__get_Item_TisTimeSpanToken_t993347374_m416874441_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTimeSpanToken_t993347374_m416874441_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TimeSpanToken_t993347374 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisTimeSpanToken_t993347374_m416874441_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TimeSpanToken_t993347374 *)(TimeSpanToken_t993347374 *)(&V_0));
TimeSpanToken_t993347374 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Guid>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Guid_t Array_InternalArray__get_Item_TisGuid_t_m1070280558_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGuid_t_m1070280558_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Guid_t V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisGuid_t_m1070280558_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Guid_t *)(Guid_t *)(&V_0));
Guid_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Int16>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int16_t Array_InternalArray__get_Item_TisInt16_t2552820387_m76930473_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInt16_t2552820387_m76930473_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInt16_t2552820387_m76930473_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int16_t*)(int16_t*)(&V_0));
int16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Int32>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisInt32_t2950945753_m714868479_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInt32_t2950945753_m714868479_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInt32_t2950945753_m714868479_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Int64>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int64_t Array_InternalArray__get_Item_TisInt64_t3736567304_m3562990826_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInt64_t3736567304_m3562990826_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInt64_t3736567304_m3562990826_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int64_t*)(int64_t*)(&V_0));
int64_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.IntPtr>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR intptr_t Array_InternalArray__get_Item_TisIntPtr_t_m784054003_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisIntPtr_t_m784054003_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisIntPtr_t_m784054003_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (intptr_t*)(intptr_t*)(&V_0));
intptr_t L_4 = V_0;
return (intptr_t)L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Net.CookieTokenizer/RecognizedAttribute>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RecognizedAttribute_t632074220 Array_InternalArray__get_Item_TisRecognizedAttribute_t632074220_m1177274028_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRecognizedAttribute_t632074220_m1177274028_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RecognizedAttribute_t632074220 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisRecognizedAttribute_t632074220_m1177274028_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RecognizedAttribute_t632074220 *)(RecognizedAttribute_t632074220 *)(&V_0));
RecognizedAttribute_t632074220 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Net.HeaderVariantInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR HeaderVariantInfo_t1935685601 Array_InternalArray__get_Item_TisHeaderVariantInfo_t1935685601_m1179665612_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisHeaderVariantInfo_t1935685601_m1179665612_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
HeaderVariantInfo_t1935685601 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisHeaderVariantInfo_t1935685601_m1179665612_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (HeaderVariantInfo_t1935685601 *)(HeaderVariantInfo_t1935685601 *)(&V_0));
HeaderVariantInfo_t1935685601 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Win32_IP_ADAPTER_ADDRESSES_t3463526328 Array_InternalArray__get_Item_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m3266165909_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m3266165909_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Win32_IP_ADAPTER_ADDRESSES_t3463526328 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m3266165909_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Win32_IP_ADAPTER_ADDRESSES_t3463526328 *)(Win32_IP_ADAPTER_ADDRESSES_t3463526328 *)(&V_0));
Win32_IP_ADAPTER_ADDRESSES_t3463526328 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Net.Sockets.Socket/WSABUF>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR WSABUF_t1998059390 Array_InternalArray__get_Item_TisWSABUF_t1998059390_m3512644153_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisWSABUF_t1998059390_m3512644153_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WSABUF_t1998059390 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisWSABUF_t1998059390_m3512644153_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (WSABUF_t1998059390 *)(WSABUF_t1998059390 *)(&V_0));
WSABUF_t1998059390 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Net.WebHeaderCollection/RfcChar>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint8_t Array_InternalArray__get_Item_TisRfcChar_t2905409930_m403695898_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRfcChar_t2905409930_m403695898_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisRfcChar_t2905409930_m403695898_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint8_t*)(uint8_t*)(&V_0));
uint8_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Object>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Array_InternalArray__get_Item_TisRuntimeObject_m3347010206_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRuntimeObject_m3347010206_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisRuntimeObject_m3347010206_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RuntimeObject **)(RuntimeObject **)(&V_0));
RuntimeObject * L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.ParameterizedStrings/FormatParam>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR FormatParam_t4194474082 Array_InternalArray__get_Item_TisFormatParam_t4194474082_m3932866330_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisFormatParam_t4194474082_m3932866330_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
FormatParam_t4194474082 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisFormatParam_t4194474082_m3932866330_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (FormatParam_t4194474082 *)(FormatParam_t4194474082 *)(&V_0));
FormatParam_t4194474082 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR CustomAttributeNamedArgument_t287865710 Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t287865710_m2282658220_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t287865710_m2282658220_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CustomAttributeNamedArgument_t287865710 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t287865710_m2282658220_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CustomAttributeNamedArgument_t287865710 *)(CustomAttributeNamedArgument_t287865710 *)(&V_0));
CustomAttributeNamedArgument_t287865710 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR CustomAttributeTypedArgument_t2723150157 Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t2723150157_m2639399822_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t2723150157_m2639399822_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CustomAttributeTypedArgument_t2723150157 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t2723150157_m2639399822_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CustomAttributeTypedArgument_t2723150157 *)(CustomAttributeTypedArgument_t2723150157 *)(&V_0));
CustomAttributeTypedArgument_t2723150157 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.Emit.ILExceptionBlock>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ILExceptionBlock_t3961874966 Array_InternalArray__get_Item_TisILExceptionBlock_t3961874966_m2494387566_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisILExceptionBlock_t3961874966_m2494387566_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ILExceptionBlock_t3961874966 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisILExceptionBlock_t3961874966_m2494387566_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ILExceptionBlock_t3961874966 *)(ILExceptionBlock_t3961874966 *)(&V_0));
ILExceptionBlock_t3961874966 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.Emit.ILExceptionInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ILExceptionInfo_t237856010 Array_InternalArray__get_Item_TisILExceptionInfo_t237856010_m2897424567_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisILExceptionInfo_t237856010_m2897424567_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ILExceptionInfo_t237856010 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisILExceptionInfo_t237856010_m2897424567_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ILExceptionInfo_t237856010 *)(ILExceptionInfo_t237856010 *)(&V_0));
ILExceptionInfo_t237856010 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.Emit.ILGenerator/LabelData>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR LabelData_t360167391 Array_InternalArray__get_Item_TisLabelData_t360167391_m1054702781_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisLabelData_t360167391_m1054702781_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LabelData_t360167391 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisLabelData_t360167391_m1054702781_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LabelData_t360167391 *)(LabelData_t360167391 *)(&V_0));
LabelData_t360167391 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.Emit.ILGenerator/LabelFixup>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR LabelFixup_t858502054 Array_InternalArray__get_Item_TisLabelFixup_t858502054_m3276643490_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisLabelFixup_t858502054_m3276643490_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LabelFixup_t858502054 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisLabelFixup_t858502054_m3276643490_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LabelFixup_t858502054 *)(LabelFixup_t858502054 *)(&V_0));
LabelFixup_t858502054 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.Emit.ILTokenInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ILTokenInfo_t2325775114 Array_InternalArray__get_Item_TisILTokenInfo_t2325775114_m3110830457_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisILTokenInfo_t2325775114_m3110830457_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ILTokenInfo_t2325775114 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisILTokenInfo_t2325775114_m3110830457_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ILTokenInfo_t2325775114 *)(ILTokenInfo_t2325775114 *)(&V_0));
ILTokenInfo_t2325775114 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.Emit.Label>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Label_t2281661643 Array_InternalArray__get_Item_TisLabel_t2281661643_m2294767982_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisLabel_t2281661643_m2294767982_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Label_t2281661643 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisLabel_t2281661643_m2294767982_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Label_t2281661643 *)(Label_t2281661643 *)(&V_0));
Label_t2281661643 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.Emit.MonoResource>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR MonoResource_t4103430009 Array_InternalArray__get_Item_TisMonoResource_t4103430009_m2937222811_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisMonoResource_t4103430009_m2937222811_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MonoResource_t4103430009 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisMonoResource_t4103430009_m2937222811_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (MonoResource_t4103430009 *)(MonoResource_t4103430009 *)(&V_0));
MonoResource_t4103430009 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.Emit.MonoWin32Resource>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR MonoWin32Resource_t1904229483 Array_InternalArray__get_Item_TisMonoWin32Resource_t1904229483_m513901999_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisMonoWin32Resource_t1904229483_m513901999_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MonoWin32Resource_t1904229483 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisMonoWin32Resource_t1904229483_m513901999_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (MonoWin32Resource_t1904229483 *)(MonoWin32Resource_t1904229483 *)(&V_0));
MonoWin32Resource_t1904229483 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.Emit.RefEmitPermissionSet>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RefEmitPermissionSet_t484390987 Array_InternalArray__get_Item_TisRefEmitPermissionSet_t484390987_m1505876205_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRefEmitPermissionSet_t484390987_m1505876205_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RefEmitPermissionSet_t484390987 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisRefEmitPermissionSet_t484390987_m1505876205_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RefEmitPermissionSet_t484390987 *)(RefEmitPermissionSet_t484390987 *)(&V_0));
RefEmitPermissionSet_t484390987 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Reflection.ParameterModifier>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ParameterModifier_t1461694466 Array_InternalArray__get_Item_TisParameterModifier_t1461694466_m29553316_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisParameterModifier_t1461694466_m29553316_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParameterModifier_t1461694466 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisParameterModifier_t1461694466_m29553316_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ParameterModifier_t1461694466 *)(ParameterModifier_t1461694466 *)(&V_0));
ParameterModifier_t1461694466 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Resources.ResourceLocator>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ResourceLocator_t3723970807 Array_InternalArray__get_Item_TisResourceLocator_t3723970807_m646947975_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisResourceLocator_t3723970807_m646947975_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ResourceLocator_t3723970807 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisResourceLocator_t3723970807_m646947975_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ResourceLocator_t3723970807 *)(ResourceLocator_t3723970807 *)(&V_0));
ResourceLocator_t3723970807 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Ephemeron_t1602596362 Array_InternalArray__get_Item_TisEphemeron_t1602596362_m3414138311_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisEphemeron_t1602596362_m3414138311_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Ephemeron_t1602596362 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisEphemeron_t1602596362_m3414138311_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Ephemeron_t1602596362 *)(Ephemeron_t1602596362 *)(&V_0));
Ephemeron_t1602596362 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Runtime.InteropServices.GCHandle>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR GCHandle_t3351438187 Array_InternalArray__get_Item_TisGCHandle_t3351438187_m2988626184_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGCHandle_t3351438187_m2988626184_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GCHandle_t3351438187 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisGCHandle_t3351438187_m2988626184_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GCHandle_t3351438187 *)(GCHandle_t3351438187 *)(&V_0));
GCHandle_t3351438187 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisBinaryTypeEnum_t3485436454_m3360978510_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisBinaryTypeEnum_t3485436454_m3360978510_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisBinaryTypeEnum_t3485436454_m3360978510_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisInternalPrimitiveTypeE_t4093048977_m4177222142_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisInternalPrimitiveTypeE_t4093048977_m4177222142_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisInternalPrimitiveTypeE_t4093048977_m4177222142_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.SByte>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int8_t Array_InternalArray__get_Item_TisSByte_t1669577662_m2349608172_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSByte_t1669577662_m2349608172_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int8_t V_0 = 0x0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSByte_t1669577662_m2349608172_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int8_t*)(int8_t*)(&V_0));
int8_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR X509ChainStatus_t133602714 Array_InternalArray__get_Item_TisX509ChainStatus_t133602714_m2237651489_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisX509ChainStatus_t133602714_m2237651489_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
X509ChainStatus_t133602714 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisX509ChainStatus_t133602714_m2237651489_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (X509ChainStatus_t133602714 *)(X509ChainStatus_t133602714 *)(&V_0));
X509ChainStatus_t133602714 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Single>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR float Array_InternalArray__get_Item_TisSingle_t1397266774_m1672589487_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSingle_t1397266774_m1672589487_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSingle_t1397266774_m1672589487_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (float*)(float*)(&V_0));
float L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.TermInfoStrings>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisTermInfoStrings_t290279955_m1174084225_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTermInfoStrings_t290279955_m1174084225_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisTermInfoStrings_t290279955_m1174084225_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR LowerCaseMapping_t2910317575 Array_InternalArray__get_Item_TisLowerCaseMapping_t2910317575_m205488600_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisLowerCaseMapping_t2910317575_m205488600_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LowerCaseMapping_t2910317575 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisLowerCaseMapping_t2910317575_m205488600_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (LowerCaseMapping_t2910317575 *)(LowerCaseMapping_t2910317575 *)(&V_0));
LowerCaseMapping_t2910317575 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Text.RegularExpressions.RegexOptions>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisRegexOptions_t92845595_m2632136756_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRegexOptions_t92845595_m2632136756_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisRegexOptions_t92845595_m2632136756_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Threading.CancellationTokenRegistration>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR CancellationTokenRegistration_t2813424904 Array_InternalArray__get_Item_TisCancellationTokenRegistration_t2813424904_m2142154713_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisCancellationTokenRegistration_t2813424904_m2142154713_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationTokenRegistration_t2813424904 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisCancellationTokenRegistration_t2813424904_m2142154713_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (CancellationTokenRegistration_t2813424904 *)(CancellationTokenRegistration_t2813424904 *)(&V_0));
CancellationTokenRegistration_t2813424904 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.TimeSpan>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR TimeSpan_t881159249 Array_InternalArray__get_Item_TisTimeSpan_t881159249_m1885583191_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTimeSpan_t881159249_m1885583191_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TimeSpan_t881159249 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisTimeSpan_t881159249_m1885583191_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TimeSpan_t881159249 *)(TimeSpan_t881159249 *)(&V_0));
TimeSpan_t881159249 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.TypeCode>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisTypeCode_t2987224087_m3502052715_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTypeCode_t2987224087_m3502052715_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisTypeCode_t2987224087_m3502052715_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.UInt16>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint16_t Array_InternalArray__get_Item_TisUInt16_t2177724958_m3601205466_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUInt16_t2177724958_m3601205466_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUInt16_t2177724958_m3601205466_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint16_t*)(uint16_t*)(&V_0));
uint16_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.UInt32>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint32_t Array_InternalArray__get_Item_TisUInt32_t2560061978_m1955195035_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUInt32_t2560061978_m1955195035_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUInt32_t2560061978_m1955195035_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint32_t*)(uint32_t*)(&V_0));
uint32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.UInt64>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint64_t Array_InternalArray__get_Item_TisUInt64_t4134040092_m129291315_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUInt64_t4134040092_m129291315_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint64_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUInt64_t4134040092_m129291315_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (uint64_t*)(uint64_t*)(&V_0));
uint64_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Map_t1331044427 Array_InternalArray__get_Item_TisMap_t1331044427_m4105631356_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisMap_t1331044427_m4105631356_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Map_t1331044427 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisMap_t1331044427_m4105631356_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Map_t1331044427 *)(Map_t1331044427 *)(&V_0));
Map_t1331044427 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.Schema.RangePositionInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RangePositionInfo_t589968936 Array_InternalArray__get_Item_TisRangePositionInfo_t589968936_m2283679269_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRangePositionInfo_t589968936_m2283679269_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RangePositionInfo_t589968936 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisRangePositionInfo_t589968936_m2283679269_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RangePositionInfo_t589968936 *)(RangePositionInfo_t589968936 *)(&V_0));
RangePositionInfo_t589968936 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR SequenceConstructPosContext_t2054380699 Array_InternalArray__get_Item_TisSequenceConstructPosContext_t2054380699_m4103555436_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisSequenceConstructPosContext_t2054380699_m4103555436_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SequenceConstructPosContext_t2054380699 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisSequenceConstructPosContext_t2054380699_m4103555436_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (SequenceConstructPosContext_t2054380699 *)(SequenceConstructPosContext_t2054380699 *)(&V_0));
SequenceConstructPosContext_t2054380699 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR XmlSchemaObjectEntry_t3344676971 Array_InternalArray__get_Item_TisXmlSchemaObjectEntry_t3344676971_m3918926412_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXmlSchemaObjectEntry_t3344676971_m3918926412_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
XmlSchemaObjectEntry_t3344676971 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisXmlSchemaObjectEntry_t3344676971_m3918926412_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (XmlSchemaObjectEntry_t3344676971 *)(XmlSchemaObjectEntry_t3344676971 *)(&V_0));
XmlSchemaObjectEntry_t3344676971 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.Schema.XmlTypeCode>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisXmlTypeCode_t2623622950_m3445961961_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXmlTypeCode_t2623622950_m3445961961_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisXmlTypeCode_t2623622950_m3445961961_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.Schema.XsdBuilder/State>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisState_t1890458201_m602492398_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisState_t1890458201_m602492398_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisState_t1890458201_m602492398_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.XPath.XPathResultType>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisXPathResultType_t2828988488_m305960836_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisXPathResultType_t2828988488_m305960836_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisXPathResultType_t2828988488_m305960836_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.XmlNamespaceManager/NamespaceDeclaration>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR NamespaceDeclaration_t4162609575 Array_InternalArray__get_Item_TisNamespaceDeclaration_t4162609575_m1348130386_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisNamespaceDeclaration_t4162609575_m1348130386_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
NamespaceDeclaration_t4162609575 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisNamespaceDeclaration_t4162609575_m1348130386_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (NamespaceDeclaration_t4162609575 *)(NamespaceDeclaration_t4162609575 *)(&V_0));
NamespaceDeclaration_t4162609575 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR VirtualAttribute_t3578083907 Array_InternalArray__get_Item_TisVirtualAttribute_t3578083907_m1997001517_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisVirtualAttribute_t3578083907_m1997001517_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
VirtualAttribute_t3578083907 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisVirtualAttribute_t3578083907_m1997001517_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (VirtualAttribute_t3578083907 *)(VirtualAttribute_t3578083907 *)(&V_0));
VirtualAttribute_t3578083907 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.XmlTextReaderImpl/ParsingState>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ParsingState_t1780334922 Array_InternalArray__get_Item_TisParsingState_t1780334922_m3999670455_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisParsingState_t1780334922_m3999670455_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParsingState_t1780334922 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisParsingState_t1780334922_m3999670455_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ParsingState_t1780334922 *)(ParsingState_t1780334922 *)(&V_0));
ParsingState_t1780334922 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.XmlTextWriter/Namespace>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Namespace_t2218256516 Array_InternalArray__get_Item_TisNamespace_t2218256516_m2008107504_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisNamespace_t2218256516_m2008107504_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Namespace_t2218256516 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisNamespace_t2218256516_m2008107504_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Namespace_t2218256516 *)(Namespace_t2218256516 *)(&V_0));
Namespace_t2218256516 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.XmlTextWriter/State>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_InternalArray__get_Item_TisState_t1792539347_m600062346_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisState_t1792539347_m600062346_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisState_t1792539347_m600062346_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (int32_t*)(int32_t*)(&V_0));
int32_t L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<System.Xml.XmlTextWriter/TagInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR TagInfo_t3526638417 Array_InternalArray__get_Item_TisTagInfo_t3526638417_m2185294994_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisTagInfo_t3526638417_m2185294994_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TagInfo_t3526638417 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisTagInfo_t3526638417_m2185294994_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (TagInfo_t3526638417 *)(TagInfo_t3526638417 *)(&V_0));
TagInfo_t3526638417 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR OrderBlock_t1585977831 Array_InternalArray__get_Item_TisOrderBlock_t1585977831_m2406385050_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisOrderBlock_t1585977831_m2406385050_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
OrderBlock_t1585977831 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisOrderBlock_t1585977831_m2406385050_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (OrderBlock_t1585977831 *)(OrderBlock_t1585977831 *)(&V_0));
OrderBlock_t1585977831 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Color>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Color_t2555686324 Array_InternalArray__get_Item_TisColor_t2555686324_m2985413820_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisColor_t2555686324_m2985413820_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Color_t2555686324 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisColor_t2555686324_m2985413820_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Color_t2555686324 *)(Color_t2555686324 *)(&V_0));
Color_t2555686324 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.ContactPoint>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR ContactPoint_t3758755253 Array_InternalArray__get_Item_TisContactPoint_t3758755253_m2489897608_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisContactPoint_t3758755253_m2489897608_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ContactPoint_t3758755253 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisContactPoint_t3758755253_m2489897608_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (ContactPoint_t3758755253 *)(ContactPoint_t3758755253 *)(&V_0));
ContactPoint_t3758755253 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR PlayerLoopSystem_t105772105 Array_InternalArray__get_Item_TisPlayerLoopSystem_t105772105_m3446275388_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPlayerLoopSystem_t105772105_m3446275388_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PlayerLoopSystem_t105772105 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisPlayerLoopSystem_t105772105_m3446275388_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PlayerLoopSystem_t105772105 *)(PlayerLoopSystem_t105772105 *)(&V_0));
PlayerLoopSystem_t105772105 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Keyframe>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Keyframe_t4206410242 Array_InternalArray__get_Item_TisKeyframe_t4206410242_m27698365_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisKeyframe_t4206410242_m27698365_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Keyframe_t4206410242 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisKeyframe_t4206410242_m27698365_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Keyframe_t4206410242 *)(Keyframe_t4206410242 *)(&V_0));
Keyframe_t4206410242 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Playables.PlayableBinding>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR PlayableBinding_t354260709 Array_InternalArray__get_Item_TisPlayableBinding_t354260709_m3837494573_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisPlayableBinding_t354260709_m3837494573_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
PlayableBinding_t354260709 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisPlayableBinding_t354260709_m3837494573_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (PlayableBinding_t354260709 *)(PlayableBinding_t354260709 *)(&V_0));
PlayableBinding_t354260709 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.RaycastHit2D>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RaycastHit2D_t2279581989 Array_InternalArray__get_Item_TisRaycastHit2D_t2279581989_m2440275162_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRaycastHit2D_t2279581989_m2440275162_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastHit2D_t2279581989 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisRaycastHit2D_t2279581989_m2440275162_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastHit2D_t2279581989 *)(RaycastHit2D_t2279581989 *)(&V_0));
RaycastHit2D_t2279581989 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.RaycastHit>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR RaycastHit_t1056001966 Array_InternalArray__get_Item_TisRaycastHit_t1056001966_m3352067444_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisRaycastHit_t1056001966_m3352067444_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RaycastHit_t1056001966 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisRaycastHit_t1056001966_m3352067444_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (RaycastHit_t1056001966 *)(RaycastHit_t1056001966 *)(&V_0));
RaycastHit_t1056001966 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.SendMouseEvents/HitInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR HitInfo_t3229609740 Array_InternalArray__get_Item_TisHitInfo_t3229609740_m2260995172_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisHitInfo_t3229609740_m2260995172_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
HitInfo_t3229609740 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisHitInfo_t3229609740_m2260995172_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (HitInfo_t3229609740 *)(HitInfo_t3229609740 *)(&V_0));
HitInfo_t3229609740 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR GcAchievementData_t675222246 Array_InternalArray__get_Item_TisGcAchievementData_t675222246_m2680268485_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGcAchievementData_t675222246_m2680268485_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GcAchievementData_t675222246 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisGcAchievementData_t675222246_m2680268485_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GcAchievementData_t675222246 *)(GcAchievementData_t675222246 *)(&V_0));
GcAchievementData_t675222246 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR GcScoreData_t2125309831 Array_InternalArray__get_Item_TisGcScoreData_t2125309831_m174676143_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisGcScoreData_t2125309831_m174676143_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
GcScoreData_t2125309831 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisGcScoreData_t2125309831_m174676143_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (GcScoreData_t2125309831 *)(GcScoreData_t2125309831 *)(&V_0));
GcScoreData_t2125309831 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UICharInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR UICharInfo_t75501106 Array_InternalArray__get_Item_TisUICharInfo_t75501106_m1797321427_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUICharInfo_t75501106_m1797321427_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UICharInfo_t75501106 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUICharInfo_t75501106_m1797321427_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UICharInfo_t75501106 *)(UICharInfo_t75501106 *)(&V_0));
UICharInfo_t75501106 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UILineInfo>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR UILineInfo_t4195266810 Array_InternalArray__get_Item_TisUILineInfo_t4195266810_m1305614921_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUILineInfo_t4195266810_m1305614921_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UILineInfo_t4195266810 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUILineInfo_t4195266810_m1305614921_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UILineInfo_t4195266810 *)(UILineInfo_t4195266810 *)(&V_0));
UILineInfo_t4195266810 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UIVertex>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR UIVertex_t4057497605 Array_InternalArray__get_Item_TisUIVertex_t4057497605_m289307453_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisUIVertex_t4057497605_m289307453_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
UIVertex_t4057497605 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisUIVertex_t4057497605_m289307453_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (UIVertex_t4057497605 *)(UIVertex_t4057497605 *)(&V_0));
UIVertex_t4057497605 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.UnitySynchronizationContext/WorkRequest>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR WorkRequest_t1354518612 Array_InternalArray__get_Item_TisWorkRequest_t1354518612_m2694410850_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisWorkRequest_t1354518612_m2694410850_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WorkRequest_t1354518612 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisWorkRequest_t1354518612_m2694410850_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (WorkRequest_t1354518612 *)(WorkRequest_t1354518612 *)(&V_0));
WorkRequest_t1354518612 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Vector2>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Vector2_t2156229523 Array_InternalArray__get_Item_TisVector2_t2156229523_m2502961026_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisVector2_t2156229523_m2502961026_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector2_t2156229523 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisVector2_t2156229523_m2502961026_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector2_t2156229523 *)(Vector2_t2156229523 *)(&V_0));
Vector2_t2156229523 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.Vector3>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 Array_InternalArray__get_Item_TisVector3_t3722313464_m2720091419_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisVector3_t3722313464_m2720091419_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Vector3_t3722313464 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisVector3_t3722313464_m2720091419_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (Vector3_t3722313464 *)(Vector3_t3722313464 *)(&V_0));
Vector3_t3722313464 L_4 = V_0;
return L_4;
}
}
// T System.Array::InternalArray__get_Item<UnityEngine.WebCamDevice>(System.Int32)
extern "C" IL2CPP_METHOD_ATTR WebCamDevice_t1322781432 Array_InternalArray__get_Item_TisWebCamDevice_t1322781432_m2046557297_gshared (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__get_Item_TisWebCamDevice_t1322781432_m2046557297_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
WebCamDevice_t1322781432 V_0;
memset(&V_0, 0, sizeof(V_0));
{
int32_t L_0 = ___index0;
NullCheck((RuntimeArray *)__this);
int32_t L_1 = Array_get_Length_m21610649((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_2 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_2, (String_t*)_stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_InternalArray__get_Item_TisWebCamDevice_t1322781432_m2046557297_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_3 = ___index0;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_3, (WebCamDevice_t1322781432 *)(WebCamDevice_t1322781432 *)(&V_0));
WebCamDevice_t1322781432 L_4 = V_0;
return L_4;
}
}
// T System.Array::UnsafeLoad<System.Boolean>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool Array_UnsafeLoad_TisBoolean_t97287965_m4116378621_gshared (RuntimeObject * __this /* static, unused */, BooleanU5BU5D_t2897418192* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
BooleanU5BU5D_t2897418192* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
bool L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Byte>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint8_t Array_UnsafeLoad_TisByte_t1134296376_m1784857405_gshared (RuntimeObject * __this /* static, unused */, ByteU5BU5D_t4116647657* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ByteU5BU5D_t4116647657* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t870930286 Array_UnsafeLoad_TisKeyValuePair_2_t870930286_m4068227996_gshared (RuntimeObject * __this /* static, unused */, KeyValuePair_2U5BU5D_t2069718811* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
KeyValuePair_2U5BU5D_t2069718811* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
KeyValuePair_2_t870930286 L_3 = (KeyValuePair_2_t870930286 )(L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.DateTime>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR DateTime_t3738529785 Array_UnsafeLoad_TisDateTime_t3738529785_m1778205872_gshared (RuntimeObject * __this /* static, unused */, DateTimeU5BU5D_t1184652292* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
DateTimeU5BU5D_t1184652292* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
DateTime_t3738529785 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.DateTimeOffset>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR DateTimeOffset_t3229287507 Array_UnsafeLoad_TisDateTimeOffset_t3229287507_m2817945770_gshared (RuntimeObject * __this /* static, unused */, DateTimeOffsetU5BU5D_t3473357058* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
DateTimeOffsetU5BU5D_t3473357058* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
DateTimeOffset_t3229287507 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Decimal>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR Decimal_t2948259380 Array_UnsafeLoad_TisDecimal_t2948259380_m2909934722_gshared (RuntimeObject * __this /* static, unused */, DecimalU5BU5D_t1145110141* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
DecimalU5BU5D_t1145110141* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Decimal_t2948259380 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Double>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR double Array_UnsafeLoad_TisDouble_t594665363_m2721017048_gshared (RuntimeObject * __this /* static, unused */, DoubleU5BU5D_t3413330114* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
DoubleU5BU5D_t3413330114* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
double L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Int16>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR int16_t Array_UnsafeLoad_TisInt16_t2552820387_m4054917194_gshared (RuntimeObject * __this /* static, unused */, Int16U5BU5D_t3686840178* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Int16U5BU5D_t3686840178* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
int16_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Int32>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeLoad_TisInt32_t2950945753_m3748710844_gshared (RuntimeObject * __this /* static, unused */, Int32U5BU5D_t385246372* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Int32U5BU5D_t385246372* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Int64>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR int64_t Array_UnsafeLoad_TisInt64_t3736567304_m253327233_gshared (RuntimeObject * __this /* static, unused */, Int64U5BU5D_t2559172825* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Int64U5BU5D_t2559172825* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
int64_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR Win32_IP_ADAPTER_ADDRESSES_t3463526328 Array_UnsafeLoad_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m3535701914_gshared (RuntimeObject * __this /* static, unused */, Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Win32_IP_ADAPTER_ADDRESSESU5BU5D_t3385662057* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Win32_IP_ADAPTER_ADDRESSES_t3463526328 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Object>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Array_UnsafeLoad_TisRuntimeObject_m2315037888_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
RuntimeObject * L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.SByte>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR int8_t Array_UnsafeLoad_TisSByte_t1669577662_m1148738187_gshared (RuntimeObject * __this /* static, unused */, SByteU5BU5D_t2651576203* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
SByteU5BU5D_t2651576203* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
int8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Single>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR float Array_UnsafeLoad_TisSingle_t1397266774_m256462809_gshared (RuntimeObject * __this /* static, unused */, SingleU5BU5D_t1444911251* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
SingleU5BU5D_t1444911251* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
float L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Text.RegularExpressions.RegexOptions>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Array_UnsafeLoad_TisRegexOptions_t92845595_m3371636671_gshared (RuntimeObject * __this /* static, unused */, RegexOptionsU5BU5D_t160358170* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RegexOptionsU5BU5D_t160358170* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.TimeSpan>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR TimeSpan_t881159249 Array_UnsafeLoad_TisTimeSpan_t881159249_m4284443576_gshared (RuntimeObject * __this /* static, unused */, TimeSpanU5BU5D_t4291357516* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
TimeSpanU5BU5D_t4291357516* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
TimeSpan_t881159249 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.UInt16>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint16_t Array_UnsafeLoad_TisUInt16_t2177724958_m137633933_gshared (RuntimeObject * __this /* static, unused */, UInt16U5BU5D_t3326319531* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UInt16U5BU5D_t3326319531* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
uint16_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.UInt32>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint32_t Array_UnsafeLoad_TisUInt32_t2560061978_m1933780967_gshared (RuntimeObject * __this /* static, unused */, UInt32U5BU5D_t2770800703* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UInt32U5BU5D_t2770800703* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
uint32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.UInt64>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR uint64_t Array_UnsafeLoad_TisUInt64_t4134040092_m601078984_gshared (RuntimeObject * __this /* static, unused */, UInt64U5BU5D_t1659327989* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UInt64U5BU5D_t1659327989* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
uint64_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Xml.Schema.RangePositionInfo>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR RangePositionInfo_t589968936 Array_UnsafeLoad_TisRangePositionInfo_t589968936_m3859971865_gshared (RuntimeObject * __this /* static, unused */, RangePositionInfoU5BU5D_t242328633* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RangePositionInfoU5BU5D_t242328633* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
RangePositionInfo_t589968936 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR XmlSchemaObjectEntry_t3344676971 Array_UnsafeLoad_TisXmlSchemaObjectEntry_t3344676971_m3793754449_gshared (RuntimeObject * __this /* static, unused */, XmlSchemaObjectEntryU5BU5D_t1655208330* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
XmlSchemaObjectEntryU5BU5D_t1655208330* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
XmlSchemaObjectEntry_t3344676971 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR OrderBlock_t1585977831 Array_UnsafeLoad_TisOrderBlock_t1585977831_m3469429553_gshared (RuntimeObject * __this /* static, unused */, OrderBlockU5BU5D_t2389202590* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
OrderBlockU5BU5D_t2389202590* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
OrderBlock_t1585977831 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Color>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR Color_t2555686324 Array_UnsafeLoad_TisColor_t2555686324_m2166717704_gshared (RuntimeObject * __this /* static, unused */, ColorU5BU5D_t941916413* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ColorU5BU5D_t941916413* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Color_t2555686324 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.UICharInfo>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR UICharInfo_t75501106 Array_UnsafeLoad_TisUICharInfo_t75501106_m2614895110_gshared (RuntimeObject * __this /* static, unused */, UICharInfoU5BU5D_t928762055* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UICharInfoU5BU5D_t928762055* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
UICharInfo_t75501106 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.UILineInfo>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR UILineInfo_t4195266810 Array_UnsafeLoad_TisUILineInfo_t4195266810_m1874012595_gshared (RuntimeObject * __this /* static, unused */, UILineInfoU5BU5D_t1655937503* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UILineInfoU5BU5D_t1655937503* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
UILineInfo_t4195266810 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.UIVertex>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR UIVertex_t4057497605 Array_UnsafeLoad_TisUIVertex_t4057497605_m4292457783_gshared (RuntimeObject * __this /* static, unused */, UIVertexU5BU5D_t1981460040* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
UIVertexU5BU5D_t1981460040* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
UIVertex_t4057497605 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Vector2>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR Vector2_t2156229523 Array_UnsafeLoad_TisVector2_t2156229523_m1964103660_gshared (RuntimeObject * __this /* static, unused */, Vector2U5BU5D_t1457185986* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Vector2U5BU5D_t1457185986* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Vector2_t2156229523 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Array::UnsafeLoad<UnityEngine.Vector3>(T[],System.Int32)
extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 Array_UnsafeLoad_TisVector3_t3722313464_m1885782093_gshared (RuntimeObject * __this /* static, unused */, Vector3U5BU5D_t1718750761* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
Vector3U5BU5D_t1718750761* L_0 = ___array0;
int32_t L_1 = ___index1;
NullCheck(L_0);
int32_t L_2 = L_1;
Vector3_t3722313464 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// T System.Reflection.CustomAttributeExtensions::GetCustomAttribute<System.Object>(System.Reflection.Assembly)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_m3561972549_gshared (RuntimeObject * __this /* static, unused */, Assembly_t * ___element0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_m3561972549_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Assembly_t * L_0 = ___element0;
RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL);
Attribute_t861562559 * L_3 = CustomAttributeExtensions_GetCustomAttribute_m2805223115(NULL /*static, unused*/, (Assembly_t *)L_0, (Type_t *)L_2, /*hidden argument*/NULL);
return ((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
}
}
// T System.Runtime.CompilerServices.JitHelpers::UnsafeCast<System.Object>(System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * JitHelpers_UnsafeCast_TisRuntimeObject_m33382438_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject * ___o0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___o0;
RuntimeObject * L_1 = (( RuntimeObject * (*) (RuntimeObject * /* static, unused */, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_1;
}
}
// T System.Runtime.InteropServices.Marshal::PtrToStructure<System.Net.NetworkInformation.Win32_FIXED_INFO>(System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR Win32_FIXED_INFO_t1299345856 Marshal_PtrToStructure_TisWin32_FIXED_INFO_t1299345856_m4277728215_gshared (RuntimeObject * __this /* static, unused */, intptr_t ___ptr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Marshal_PtrToStructure_TisWin32_FIXED_INFO_t1299345856_m4277728215_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
intptr_t L_0 = ___ptr0;
RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Marshal_t1757017490_il2cpp_TypeInfo_var);
RuntimeObject * L_3 = Marshal_PtrToStructure_m771949023(NULL /*static, unused*/, (intptr_t)L_0, (Type_t *)L_2, /*hidden argument*/NULL);
return ((*(Win32_FIXED_INFO_t1299345856 *)((Win32_FIXED_INFO_t1299345856 *)UnBox(L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)))));
}
}
// T System.Runtime.InteropServices.Marshal::PtrToStructure<System.Net.NetworkInformation.Win32_IP_ADAPTER_ADDRESSES>(System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR Win32_IP_ADAPTER_ADDRESSES_t3463526328 Marshal_PtrToStructure_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m266777785_gshared (RuntimeObject * __this /* static, unused */, intptr_t ___ptr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Marshal_PtrToStructure_TisWin32_IP_ADAPTER_ADDRESSES_t3463526328_m266777785_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
intptr_t L_0 = ___ptr0;
RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Marshal_t1757017490_il2cpp_TypeInfo_var);
RuntimeObject * L_3 = Marshal_PtrToStructure_m771949023(NULL /*static, unused*/, (intptr_t)L_0, (Type_t *)L_2, /*hidden argument*/NULL);
return ((*(Win32_IP_ADAPTER_ADDRESSES_t3463526328 *)((Win32_IP_ADAPTER_ADDRESSES_t3463526328 *)UnBox(L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)))));
}
}
// T System.Runtime.InteropServices.Marshal::PtrToStructure<System.Object>(System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Marshal_PtrToStructure_TisRuntimeObject_m1794837406_gshared (RuntimeObject * __this /* static, unused */, intptr_t ___ptr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Marshal_PtrToStructure_TisRuntimeObject_m1794837406_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
intptr_t L_0 = ___ptr0;
RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Marshal_t1757017490_il2cpp_TypeInfo_var);
RuntimeObject * L_3 = Marshal_PtrToStructure_m771949023(NULL /*static, unused*/, (intptr_t)L_0, (Type_t *)L_2, /*hidden argument*/NULL);
return ((RuntimeObject *)Castclass((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
}
}
// T System.Threading.LazyInitializer::EnsureInitialized<System.Object>(T&,System.Func`1<T>)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * LazyInitializer_EnsureInitialized_TisRuntimeObject_m2889131792_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject ** ___target0, Func_1_t2509852811 * ___valueFactory1, const RuntimeMethod* method)
{
{
RuntimeObject ** L_0 = ___target0;
RuntimeObject * L_1 = VolatileRead((RuntimeObject **)(RuntimeObject **)L_0);
if (!L_1)
{
goto IL_0014;
}
}
{
RuntimeObject ** L_2 = ___target0;
return (*(RuntimeObject **)L_2);
}
IL_0014:
{
RuntimeObject ** L_3 = ___target0;
Func_1_t2509852811 * L_4 = ___valueFactory1;
RuntimeObject * L_5 = (( RuntimeObject * (*) (RuntimeObject * /* static, unused */, RuntimeObject **, Func_1_t2509852811 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (RuntimeObject **)(RuntimeObject **)L_3, (Func_1_t2509852811 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
return L_5;
}
}
// T System.Threading.LazyInitializer::EnsureInitializedCore<System.Object>(T&,System.Func`1<T>)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m3224443177_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject ** ___target0, Func_1_t2509852811 * ___valueFactory1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m3224443177_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
{
Func_1_t2509852811 * L_0 = ___valueFactory1;
NullCheck((Func_1_t2509852811 *)L_0);
RuntimeObject * L_1 = (( RuntimeObject * (*) (Func_1_t2509852811 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Func_1_t2509852811 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (RuntimeObject *)L_1;
RuntimeObject * L_2 = V_0;
if (L_2)
{
goto IL_001f;
}
}
{
String_t* L_3 = Environment_GetResourceString_m2063689938(NULL /*static, unused*/, (String_t*)_stringLiteral2654205466, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_4 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_4, (String_t*)L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, LazyInitializer_EnsureInitializedCore_TisRuntimeObject_m3224443177_RuntimeMethod_var);
}
IL_001f:
{
RuntimeObject ** L_5 = ___target0;
RuntimeObject * L_6 = V_0;
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *));
RuntimeObject * L_7 = V_1;
InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)L_5, (RuntimeObject *)L_6, (RuntimeObject *)L_7);
RuntimeObject ** L_8 = ___target0;
return (*(RuntimeObject **)L_8);
}
}
// T System.Threading.Volatile::Read<System.Object>(T&)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Volatile_Read_TisRuntimeObject_m3872089505_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject ** ___location0, const RuntimeMethod* method)
{
return VolatileRead(___location0);
}
// T UnityEngine.AttributeHelperEngine::GetCustomAttributeOfType<System.Object>(System.Type)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m429013101_gshared (RuntimeObject * __this /* static, unused */, Type_t * ___klass0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m429013101_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
ObjectU5BU5D_t2843939325* V_1 = NULL;
RuntimeObject * V_2 = NULL;
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
V_0 = (Type_t *)L_1;
Type_t * L_2 = ___klass0;
Type_t * L_3 = V_0;
NullCheck((MemberInfo_t *)L_2);
ObjectU5BU5D_t2843939325* L_4 = VirtFuncInvoker2< ObjectU5BU5D_t2843939325*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, (MemberInfo_t *)L_2, (Type_t *)L_3, (bool)1);
V_1 = (ObjectU5BU5D_t2843939325*)L_4;
ObjectU5BU5D_t2843939325* L_5 = V_1;
if (!L_5)
{
goto IL_0031;
}
}
{
ObjectU5BU5D_t2843939325* L_6 = V_1;
NullCheck(L_6);
if (!(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))))
{
goto IL_0031;
}
}
{
ObjectU5BU5D_t2843939325* L_7 = V_1;
NullCheck(L_7);
int32_t L_8 = 0;
RuntimeObject * L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
V_2 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_9, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_003d;
}
IL_0031:
{
V_2 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)NULL, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_003d;
}
IL_003d:
{
RuntimeObject * L_10 = V_2;
return L_10;
}
}
// T UnityEngine.Component::GetComponent<System.Object>()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponent_TisRuntimeObject_m2906321015_gshared (Component_t1923634451 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Component_GetComponent_TisRuntimeObject_m2906321015_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CastHelper_1_t2613165452 V_0;
memset(&V_0, 0, sizeof(V_0));
RuntimeObject * V_1 = NULL;
{
il2cpp_codegen_initobj((&V_0), sizeof(CastHelper_1_t2613165452 ));
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
intptr_t* L_2 = (intptr_t*)(&V_0)->get_address_of_onePointerFurtherThanT_1();
intptr_t L_3;
memset(&L_3, 0, sizeof(L_3));
IntPtr__ctor_m3384658186((&L_3), (void*)(void*)L_2, /*hidden argument*/NULL);
NullCheck((Component_t1923634451 *)__this);
Component_GetComponentFastPath_m1180649031((Component_t1923634451 *)__this, (Type_t *)L_1, (intptr_t)L_3, /*hidden argument*/NULL);
RuntimeObject * L_4 = (RuntimeObject *)(&V_0)->get_t_0();
V_1 = (RuntimeObject *)L_4;
goto IL_0032;
}
IL_0032:
{
RuntimeObject * L_5 = V_1;
return L_5;
}
}
// T UnityEngine.GameObject::AddComponent<System.Object>()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * GameObject_AddComponent_TisRuntimeObject_m4182444790_gshared (GameObject_t1113636619 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_AddComponent_TisRuntimeObject_m4182444790_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
NullCheck((GameObject_t1113636619 *)__this);
Component_t1923634451 * L_2 = GameObject_AddComponent_m136524825((GameObject_t1113636619 *)__this, (Type_t *)L_1, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))), IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_0021;
}
IL_0021:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// T UnityEngine.ScriptableObject::CreateInstance<System.Object>()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * ScriptableObject_CreateInstance_TisRuntimeObject_m1552711675_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ScriptableObject_CreateInstance_TisRuntimeObject_m1552711675_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
ScriptableObject_t2528358522 * L_2 = ScriptableObject_CreateInstance_m2611081756(NULL /*static, unused*/, (Type_t *)L_1, /*hidden argument*/NULL);
V_0 = (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_001b;
}
IL_001b:
{
RuntimeObject * L_3 = V_0;
return L_3;
}
}
// TOutput[] System.Array::ConvertAll<System.Object,System.Object>(TInput[],System.Converter`2<TInput,TOutput>)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m2417852296_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* ___array0, Converter_2_t2442480487 * ___converter1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m2417852296_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t2843939325* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t2843939325* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m2417852296_RuntimeMethod_var);
}
IL_000e:
{
Converter_2_t2442480487 * L_2 = ___converter1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, (String_t*)_stringLiteral879148213, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m2417852296_RuntimeMethod_var);
}
IL_001c:
{
ObjectU5BU5D_t2843939325* L_4 = ___array0;
NullCheck(L_4);
ObjectU5BU5D_t2843939325* L_5 = (ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length)))));
V_0 = (ObjectU5BU5D_t2843939325*)L_5;
V_1 = (int32_t)0;
goto IL_0041;
}
IL_0029:
{
ObjectU5BU5D_t2843939325* L_6 = V_0;
int32_t L_7 = V_1;
Converter_2_t2442480487 * L_8 = ___converter1;
ObjectU5BU5D_t2843939325* L_9 = ___array0;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
RuntimeObject * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck((Converter_2_t2442480487 *)L_8);
RuntimeObject * L_13 = (( RuntimeObject * (*) (Converter_2_t2442480487 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Converter_2_t2442480487 *)L_8, (RuntimeObject *)L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject *)L_13);
int32_t L_14 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_0041:
{
int32_t L_15 = V_1;
ObjectU5BU5D_t2843939325* L_16 = ___array0;
NullCheck(L_16);
if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length)))))))
{
goto IL_0029;
}
}
{
ObjectU5BU5D_t2843939325* L_17 = V_0;
return L_17;
}
}
// TResult System.Threading.Tasks.TaskToApm::End<System.Int32>(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR int32_t TaskToApm_End_TisInt32_t2950945753_m2874764222_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TaskToApm_End_TisInt32_t2950945753_m2874764222_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_1_t61518632 * V_0 = NULL;
TaskWrapperAsyncResult_t2316075138 * V_1 = NULL;
TaskAwaiter_1_t1450460888 V_2;
memset(&V_2, 0, sizeof(V_2));
{
RuntimeObject* L_0 = ___asyncResult0;
V_1 = (TaskWrapperAsyncResult_t2316075138 *)((TaskWrapperAsyncResult_t2316075138 *)IsInst((RuntimeObject*)L_0, TaskWrapperAsyncResult_t2316075138_il2cpp_TypeInfo_var));
TaskWrapperAsyncResult_t2316075138 * L_1 = V_1;
if (!L_1)
{
goto IL_0018;
}
}
{
TaskWrapperAsyncResult_t2316075138 * L_2 = V_1;
NullCheck(L_2);
Task_t3187275312 * L_3 = (Task_t3187275312 *)L_2->get_Task_0();
V_0 = (Task_1_t61518632 *)((Task_1_t61518632 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_001f;
}
IL_0018:
{
RuntimeObject* L_4 = ___asyncResult0;
V_0 = (Task_1_t61518632 *)((Task_1_t61518632 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
}
IL_001f:
{
Task_1_t61518632 * L_5 = V_0;
if (L_5)
{
goto IL_0027;
}
}
{
__Error_WrongAsyncResult_m4181844776(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0027:
{
Task_1_t61518632 * L_6 = V_0;
NullCheck((Task_1_t61518632 *)L_6);
TaskAwaiter_1_t1450460888 L_7 = (( TaskAwaiter_1_t1450460888 (*) (Task_1_t61518632 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Task_1_t61518632 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
V_2 = (TaskAwaiter_1_t1450460888 )L_7;
int32_t L_8 = TaskAwaiter_1_GetResult_m3496793423((TaskAwaiter_1_t1450460888 *)(TaskAwaiter_1_t1450460888 *)(&V_2), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
return L_8;
}
}
// TResult System.Threading.Tasks.TaskToApm::End<System.Object>(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * TaskToApm_End_TisRuntimeObject_m300046032_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TaskToApm_End_TisRuntimeObject_m300046032_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Task_1_t190679043 * V_0 = NULL;
TaskWrapperAsyncResult_t2316075138 * V_1 = NULL;
TaskAwaiter_1_t1579621299 V_2;
memset(&V_2, 0, sizeof(V_2));
{
RuntimeObject* L_0 = ___asyncResult0;
V_1 = (TaskWrapperAsyncResult_t2316075138 *)((TaskWrapperAsyncResult_t2316075138 *)IsInst((RuntimeObject*)L_0, TaskWrapperAsyncResult_t2316075138_il2cpp_TypeInfo_var));
TaskWrapperAsyncResult_t2316075138 * L_1 = V_1;
if (!L_1)
{
goto IL_0018;
}
}
{
TaskWrapperAsyncResult_t2316075138 * L_2 = V_1;
NullCheck(L_2);
Task_t3187275312 * L_3 = (Task_t3187275312 *)L_2->get_Task_0();
V_0 = (Task_1_t190679043 *)((Task_1_t190679043 *)IsInst((RuntimeObject*)L_3, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
goto IL_001f;
}
IL_0018:
{
RuntimeObject* L_4 = ___asyncResult0;
V_0 = (Task_1_t190679043 *)((Task_1_t190679043 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)));
}
IL_001f:
{
Task_1_t190679043 * L_5 = V_0;
if (L_5)
{
goto IL_0027;
}
}
{
__Error_WrongAsyncResult_m4181844776(NULL /*static, unused*/, /*hidden argument*/NULL);
}
IL_0027:
{
Task_1_t190679043 * L_6 = V_0;
NullCheck((Task_1_t190679043 *)L_6);
TaskAwaiter_1_t1579621299 L_7 = (( TaskAwaiter_1_t1579621299 (*) (Task_1_t190679043 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Task_1_t190679043 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
V_2 = (TaskAwaiter_1_t1579621299 )L_7;
RuntimeObject * L_8 = TaskAwaiter_1_GetResult_m3577040539((TaskAwaiter_1_t1579621299 *)(TaskAwaiter_1_t1579621299 *)(&V_2), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
return L_8;
}
}
// TSource System.Linq.Enumerable::SingleOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Enumerable_SingleOrDefault_TisRuntimeObject_m555175825_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___source0, Func_2_t3759279471 * ___predicate1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_SingleOrDefault_TisRuntimeObject_m555175825_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject * V_1 = NULL;
RuntimeObject * V_2 = NULL;
RuntimeObject * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral4294193667, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enumerable_SingleOrDefault_TisRuntimeObject_m555175825_RuntimeMethod_var);
}
IL_000e:
{
Func_2_t3759279471 * L_2 = ___predicate1;
if (L_2)
{
goto IL_001c;
}
}
{
Exception_t * L_3 = Error_ArgumentNull_m219206370(NULL /*static, unused*/, (String_t*)_stringLiteral3941128596, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Enumerable_SingleOrDefault_TisRuntimeObject_m555175825_RuntimeMethod_var);
}
IL_001c:
{
RuntimeObject* L_4 = ___source0;
NullCheck((RuntimeObject*)L_4);
RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_4);
V_0 = (RuntimeObject*)L_5;
}
IL_0023:
try
{ // begin try (depth: 1)
{
goto IL_0057;
}
IL_0025:
{
RuntimeObject* L_6 = V_0;
NullCheck((RuntimeObject*)L_6);
RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_6);
V_1 = (RuntimeObject *)L_7;
Func_2_t3759279471 * L_8 = ___predicate1;
RuntimeObject * L_9 = V_1;
NullCheck((Func_2_t3759279471 *)L_8);
bool L_10 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Func_2_t3759279471 *)L_8, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
if (!L_10)
{
goto IL_0057;
}
}
IL_0035:
{
goto IL_004b;
}
IL_0037:
{
Func_2_t3759279471 * L_11 = ___predicate1;
RuntimeObject* L_12 = V_0;
NullCheck((RuntimeObject*)L_12);
RuntimeObject * L_13 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_12);
NullCheck((Func_2_t3759279471 *)L_11);
bool L_14 = (( bool (*) (Func_2_t3759279471 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((Func_2_t3759279471 *)L_11, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
if (!L_14)
{
goto IL_004b;
}
}
IL_0045:
{
Exception_t * L_15 = Error_MoreThanOneMatch_m2666736739(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Enumerable_SingleOrDefault_TisRuntimeObject_m555175825_RuntimeMethod_var);
}
IL_004b:
{
RuntimeObject* L_16 = V_0;
NullCheck((RuntimeObject*)L_16);
bool L_17 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_16);
if (L_17)
{
goto IL_0037;
}
}
IL_0053:
{
RuntimeObject * L_18 = V_1;
V_2 = (RuntimeObject *)L_18;
IL2CPP_LEAVE(0x75, FINALLY_0061);
}
IL_0057:
{
RuntimeObject* L_19 = V_0;
NullCheck((RuntimeObject*)L_19);
bool L_20 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_19);
if (L_20)
{
goto IL_0025;
}
}
IL_005f:
{
IL2CPP_LEAVE(0x6B, FINALLY_0061);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0061;
}
FINALLY_0061:
{ // begin finally (depth: 1)
{
RuntimeObject* L_21 = V_0;
if (!L_21)
{
goto IL_006a;
}
}
IL_0064:
{
RuntimeObject* L_22 = V_0;
NullCheck((RuntimeObject*)L_22);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_22);
}
IL_006a:
{
IL2CPP_END_FINALLY(97)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(97)
{
IL2CPP_JUMP_TBL(0x75, IL_0075)
IL2CPP_JUMP_TBL(0x6B, IL_006b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_006b:
{
il2cpp_codegen_initobj((&V_3), sizeof(RuntimeObject *));
RuntimeObject * L_23 = V_3;
return L_23;
}
IL_0075:
{
RuntimeObject * L_24 = V_2;
return L_24;
}
}
// TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.Object,System.Object>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m1799513869_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___dictionary0, RuntimeObject * ___key1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
RuntimeObject* L_0 = ___dictionary0;
RuntimeObject * L_1 = ___key1;
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_2 = V_0;
RuntimeObject * L_3 = (( RuntimeObject * (*) (RuntimeObject * /* static, unused */, RuntimeObject*, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (RuntimeObject*)L_0, (RuntimeObject *)L_1, (RuntimeObject *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_3;
}
}
// TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.Object,System.Object>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey,TValue)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m1327842210_gshared (RuntimeObject * __this /* static, unused */, RuntimeObject* ___dictionary0, RuntimeObject * ___key1, RuntimeObject * ___defaultValue2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m1327842210_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject* L_0 = ___dictionary0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral2957729587, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CollectionExtensions_GetValueOrDefault_TisRuntimeObject_TisRuntimeObject_m1327842210_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___dictionary0;
RuntimeObject * L_3 = ___key1;
NullCheck((RuntimeObject*)L_2);
bool L_4 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject ** >::Invoke(0 /* System.Boolean System.Collections.Generic.IReadOnlyDictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_2, (RuntimeObject *)L_3, (RuntimeObject **)(RuntimeObject **)(&V_0));
if (L_4)
{
goto IL_001b;
}
}
{
RuntimeObject * L_5 = ___defaultValue2;
return L_5;
}
IL_001b:
{
RuntimeObject * L_6 = V_0;
return L_6;
}
}
// T[] System.Array::Empty<Mono.AppleTls.SslStatus>()
extern "C" IL2CPP_METHOD_ATTR SslStatusU5BU5D_t3256112573* Array_Empty_TisSslStatus_t191981556_m2757501056_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
SslStatusU5BU5D_t3256112573* L_0 = ((EmptyArray_1_t576342003_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<System.Char>()
extern "C" IL2CPP_METHOD_ATTR CharU5BU5D_t3528271667* Array_Empty_TisChar_t3634460470_m2203016263_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
CharU5BU5D_t3528271667* L_0 = ((EmptyArray_1_t4018820917_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<System.Object>()
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* Array_Empty_TisRuntimeObject_m4268358689_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
ObjectU5BU5D_t2843939325* L_0 = ((EmptyArray_1_t3464466611_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>()
extern "C" IL2CPP_METHOD_ATTR SequenceConstructPosContextU5BU5D_t615009946* Array_Empty_TisSequenceConstructPosContext_t2054380699_m3296676353_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
SequenceConstructPosContextU5BU5D_t615009946* L_0 = ((EmptyArray_1_t2438741146_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::Empty<UnityEngine.UnitySynchronizationContext/WorkRequest>()
extern "C" IL2CPP_METHOD_ATTR WorkRequestU5BU5D_t3723878365* Array_Empty_TisWorkRequest_t1354518612_m3613807077_gshared (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
WorkRequestU5BU5D_t3723878365* L_0 = ((EmptyArray_1_t1738879059_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return L_0;
}
}
// T[] System.Array::FindAll<System.Object>(T[],System.Predicate`1<T>)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* Array_FindAll_TisRuntimeObject_m3566631088_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* ___array0, Predicate_1_t3905400288 * ___match1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_FindAll_TisRuntimeObject_m3566631088_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ObjectU5BU5D_t2843939325* V_1 = NULL;
int32_t V_2 = 0;
ObjectU5BU5D_t2843939325** G_B9_0 = NULL;
ObjectU5BU5D_t2843939325** G_B8_0 = NULL;
int32_t G_B10_0 = 0;
ObjectU5BU5D_t2843939325** G_B10_1 = NULL;
{
ObjectU5BU5D_t2843939325* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, (String_t*)_stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_FindAll_TisRuntimeObject_m3566631088_RuntimeMethod_var);
}
IL_000e:
{
Predicate_1_t3905400288 * L_2 = ___match1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, (String_t*)_stringLiteral461028519, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_FindAll_TisRuntimeObject_m3566631088_RuntimeMethod_var);
}
IL_001c:
{
V_0 = (int32_t)0;
ObjectU5BU5D_t2843939325* L_4 = (( ObjectU5BU5D_t2843939325* (*) (RuntimeObject * /* static, unused */, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_1 = (ObjectU5BU5D_t2843939325*)L_4;
V_2 = (int32_t)0;
goto IL_006b;
}
IL_0028:
{
Predicate_1_t3905400288 * L_5 = ___match1;
ObjectU5BU5D_t2843939325* L_6 = ___array0;
int32_t L_7 = V_2;
NullCheck(L_6);
int32_t L_8 = L_7;
RuntimeObject * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
NullCheck((Predicate_1_t3905400288 *)L_5);
bool L_10 = (( bool (*) (Predicate_1_t3905400288 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Predicate_1_t3905400288 *)L_5, (RuntimeObject *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
if (!L_10)
{
goto IL_0067;
}
}
{
int32_t L_11 = V_0;
ObjectU5BU5D_t2843939325* L_12 = V_1;
NullCheck(L_12);
if ((!(((uint32_t)L_11) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length))))))))
{
goto IL_0055;
}
}
{
int32_t L_13 = V_0;
G_B8_0 = (&V_1);
if (!L_13)
{
G_B9_0 = (&V_1);
goto IL_0047;
}
}
{
int32_t L_14 = V_0;
G_B10_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_14, (int32_t)2));
G_B10_1 = G_B8_0;
goto IL_0048;
}
IL_0047:
{
G_B10_0 = 4;
G_B10_1 = G_B9_0;
}
IL_0048:
{
ObjectU5BU5D_t2843939325* L_15 = ___array0;
NullCheck(L_15);
IL2CPP_RUNTIME_CLASS_INIT(Math_t1671470975_il2cpp_TypeInfo_var);
int32_t L_16 = Math_Min_m3468062251(NULL /*static, unused*/, (int32_t)G_B10_0, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_15)->max_length)))), /*hidden argument*/NULL);
(( void (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325**, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t2843939325**)(ObjectU5BU5D_t2843939325**)G_B10_1, (int32_t)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
}
IL_0055:
{
ObjectU5BU5D_t2843939325* L_17 = V_1;
int32_t L_18 = V_0;
int32_t L_19 = (int32_t)L_18;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
ObjectU5BU5D_t2843939325* L_20 = ___array0;
int32_t L_21 = V_2;
NullCheck(L_20);
int32_t L_22 = L_21;
RuntimeObject * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (RuntimeObject *)L_23);
}
IL_0067:
{
int32_t L_24 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_006b:
{
int32_t L_25 = V_2;
ObjectU5BU5D_t2843939325* L_26 = ___array0;
NullCheck(L_26);
if ((((int32_t)L_25) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_26)->max_length)))))))
{
goto IL_0028;
}
}
{
int32_t L_27 = V_0;
ObjectU5BU5D_t2843939325* L_28 = V_1;
NullCheck(L_28);
if ((((int32_t)L_27) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_28)->max_length)))))))
{
goto IL_007f;
}
}
{
int32_t L_29 = V_0;
(( void (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325**, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t2843939325**)(ObjectU5BU5D_t2843939325**)(&V_1), (int32_t)L_29, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
}
IL_007f:
{
ObjectU5BU5D_t2843939325* L_30 = V_1;
return L_30;
}
}
// T[] System.Reflection.CustomAttributeData::UnboxValues<System.Object>(System.Object[])
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* CustomAttributeData_UnboxValues_TisRuntimeObject_m160061819_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* ___values0, const RuntimeMethod* method)
{
ObjectU5BU5D_t2843939325* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t2843939325* L_0 = ___values0;
NullCheck(L_0);
ObjectU5BU5D_t2843939325* L_1 = (ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))));
V_0 = (ObjectU5BU5D_t2843939325*)L_1;
V_1 = (int32_t)0;
goto IL_0020;
}
IL_000d:
{
ObjectU5BU5D_t2843939325* L_2 = V_0;
int32_t L_3 = V_1;
ObjectU5BU5D_t2843939325* L_4 = ___values0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_7, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0020:
{
int32_t L_9 = V_1;
ObjectU5BU5D_t2843939325* L_10 = ___values0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))))))
{
goto IL_000d;
}
}
{
ObjectU5BU5D_t2843939325* L_11 = V_0;
return L_11;
}
}
// T[] System.Reflection.CustomAttributeData::UnboxValues<System.Reflection.CustomAttributeNamedArgument>(System.Object[])
extern "C" IL2CPP_METHOD_ATTR CustomAttributeNamedArgumentU5BU5D_t3710464795* CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t287865710_m423120871_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* ___values0, const RuntimeMethod* method)
{
CustomAttributeNamedArgumentU5BU5D_t3710464795* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t2843939325* L_0 = ___values0;
NullCheck(L_0);
CustomAttributeNamedArgumentU5BU5D_t3710464795* L_1 = (CustomAttributeNamedArgumentU5BU5D_t3710464795*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))));
V_0 = (CustomAttributeNamedArgumentU5BU5D_t3710464795*)L_1;
V_1 = (int32_t)0;
goto IL_0020;
}
IL_000d:
{
CustomAttributeNamedArgumentU5BU5D_t3710464795* L_2 = V_0;
int32_t L_3 = V_1;
ObjectU5BU5D_t2843939325* L_4 = ___values0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (CustomAttributeNamedArgument_t287865710 )((*(CustomAttributeNamedArgument_t287865710 *)((CustomAttributeNamedArgument_t287865710 *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))))));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0020:
{
int32_t L_9 = V_1;
ObjectU5BU5D_t2843939325* L_10 = ___values0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))))))
{
goto IL_000d;
}
}
{
CustomAttributeNamedArgumentU5BU5D_t3710464795* L_11 = V_0;
return L_11;
}
}
// T[] System.Reflection.CustomAttributeData::UnboxValues<System.Reflection.CustomAttributeTypedArgument>(System.Object[])
extern "C" IL2CPP_METHOD_ATTR CustomAttributeTypedArgumentU5BU5D_t1465843424* CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_t2723150157_m3477834415_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* ___values0, const RuntimeMethod* method)
{
CustomAttributeTypedArgumentU5BU5D_t1465843424* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_t2843939325* L_0 = ___values0;
NullCheck(L_0);
CustomAttributeTypedArgumentU5BU5D_t1465843424* L_1 = (CustomAttributeTypedArgumentU5BU5D_t1465843424*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))));
V_0 = (CustomAttributeTypedArgumentU5BU5D_t1465843424*)L_1;
V_1 = (int32_t)0;
goto IL_0020;
}
IL_000d:
{
CustomAttributeTypedArgumentU5BU5D_t1465843424* L_2 = V_0;
int32_t L_3 = V_1;
ObjectU5BU5D_t2843939325* L_4 = ___values0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
RuntimeObject * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (CustomAttributeTypedArgument_t2723150157 )((*(CustomAttributeTypedArgument_t2723150157 *)((CustomAttributeTypedArgument_t2723150157 *)UnBox(L_7, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))))));
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0020:
{
int32_t L_9 = V_1;
ObjectU5BU5D_t2843939325* L_10 = ___values0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))))))
{
goto IL_000d;
}
}
{
CustomAttributeTypedArgumentU5BU5D_t1465843424* L_11 = V_0;
return L_11;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.Boolean>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR BooleanU5BU5D_t2897418192* XmlListConverter_ToArray_TisBoolean_t97287965_m1681726772_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisBoolean_t97287965_m1681726772_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t1569362707 * V_1 = NULL;
BooleanU5BU5D_t2897418192* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
BooleanU5BU5D_t2897418192* L_4 = (BooleanU5BU5D_t2897418192*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (BooleanU5BU5D_t2897418192*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
BooleanU5BU5D_t2897418192* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (bool)((*(bool*)((bool*)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
BooleanU5BU5D_t2897418192* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t1569362707 * L_21 = (List_1_t1569362707 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t1569362707 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t1569362707 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t1569362707 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t1569362707 *)L_25);
(( void (*) (List_1_t1569362707 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t1569362707 *)L_25, (bool)((*(bool*)((bool*)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t1569362707 * L_37 = V_1;
NullCheck((List_1_t1569362707 *)L_37);
BooleanU5BU5D_t2897418192* L_38 = (( BooleanU5BU5D_t2897418192* (*) (List_1_t1569362707 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t1569362707 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.Byte>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_t4116647657* XmlListConverter_ToArray_TisByte_t1134296376_m25630657_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisByte_t1134296376_m25630657_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t2606371118 * V_1 = NULL;
ByteU5BU5D_t4116647657* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
ByteU5BU5D_t4116647657* L_4 = (ByteU5BU5D_t4116647657*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (ByteU5BU5D_t4116647657*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
ByteU5BU5D_t4116647657* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (uint8_t)((*(uint8_t*)((uint8_t*)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
ByteU5BU5D_t4116647657* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t2606371118 * L_21 = (List_1_t2606371118 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t2606371118 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t2606371118 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t2606371118 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t2606371118 *)L_25);
(( void (*) (List_1_t2606371118 *, uint8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t2606371118 *)L_25, (uint8_t)((*(uint8_t*)((uint8_t*)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t2606371118 * L_37 = V_1;
NullCheck((List_1_t2606371118 *)L_37);
ByteU5BU5D_t4116647657* L_38 = (( ByteU5BU5D_t4116647657* (*) (List_1_t2606371118 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t2606371118 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.DateTime>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR DateTimeU5BU5D_t1184652292* XmlListConverter_ToArray_TisDateTime_t3738529785_m3434455802_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisDateTime_t3738529785_m3434455802_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t915637231 * V_1 = NULL;
DateTimeU5BU5D_t1184652292* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
DateTimeU5BU5D_t1184652292* L_4 = (DateTimeU5BU5D_t1184652292*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (DateTimeU5BU5D_t1184652292*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
DateTimeU5BU5D_t1184652292* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (DateTime_t3738529785 )((*(DateTime_t3738529785 *)((DateTime_t3738529785 *)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
DateTimeU5BU5D_t1184652292* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t915637231 * L_21 = (List_1_t915637231 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t915637231 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t915637231 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t915637231 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t915637231 *)L_25);
(( void (*) (List_1_t915637231 *, DateTime_t3738529785 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t915637231 *)L_25, (DateTime_t3738529785 )((*(DateTime_t3738529785 *)((DateTime_t3738529785 *)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t915637231 * L_37 = V_1;
NullCheck((List_1_t915637231 *)L_37);
DateTimeU5BU5D_t1184652292* L_38 = (( DateTimeU5BU5D_t1184652292* (*) (List_1_t915637231 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t915637231 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.DateTimeOffset>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR DateTimeOffsetU5BU5D_t3473357058* XmlListConverter_ToArray_TisDateTimeOffset_t3229287507_m829729751_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisDateTimeOffset_t3229287507_m829729751_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t406394953 * V_1 = NULL;
DateTimeOffsetU5BU5D_t3473357058* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
DateTimeOffsetU5BU5D_t3473357058* L_4 = (DateTimeOffsetU5BU5D_t3473357058*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (DateTimeOffsetU5BU5D_t3473357058*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
DateTimeOffsetU5BU5D_t3473357058* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (DateTimeOffset_t3229287507 )((*(DateTimeOffset_t3229287507 *)((DateTimeOffset_t3229287507 *)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
DateTimeOffsetU5BU5D_t3473357058* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t406394953 * L_21 = (List_1_t406394953 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t406394953 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t406394953 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t406394953 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t406394953 *)L_25);
(( void (*) (List_1_t406394953 *, DateTimeOffset_t3229287507 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t406394953 *)L_25, (DateTimeOffset_t3229287507 )((*(DateTimeOffset_t3229287507 *)((DateTimeOffset_t3229287507 *)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t406394953 * L_37 = V_1;
NullCheck((List_1_t406394953 *)L_37);
DateTimeOffsetU5BU5D_t3473357058* L_38 = (( DateTimeOffsetU5BU5D_t3473357058* (*) (List_1_t406394953 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t406394953 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.Decimal>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR DecimalU5BU5D_t1145110141* XmlListConverter_ToArray_TisDecimal_t2948259380_m2798570278_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisDecimal_t2948259380_m2798570278_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t125366826 * V_1 = NULL;
DecimalU5BU5D_t1145110141* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
DecimalU5BU5D_t1145110141* L_4 = (DecimalU5BU5D_t1145110141*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (DecimalU5BU5D_t1145110141*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
DecimalU5BU5D_t1145110141* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (Decimal_t2948259380 )((*(Decimal_t2948259380 *)((Decimal_t2948259380 *)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
DecimalU5BU5D_t1145110141* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t125366826 * L_21 = (List_1_t125366826 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t125366826 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t125366826 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t125366826 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t125366826 *)L_25);
(( void (*) (List_1_t125366826 *, Decimal_t2948259380 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t125366826 *)L_25, (Decimal_t2948259380 )((*(Decimal_t2948259380 *)((Decimal_t2948259380 *)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t125366826 * L_37 = V_1;
NullCheck((List_1_t125366826 *)L_37);
DecimalU5BU5D_t1145110141* L_38 = (( DecimalU5BU5D_t1145110141* (*) (List_1_t125366826 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t125366826 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.Double>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR DoubleU5BU5D_t3413330114* XmlListConverter_ToArray_TisDouble_t594665363_m3193001621_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisDouble_t594665363_m3193001621_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t2066740105 * V_1 = NULL;
DoubleU5BU5D_t3413330114* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
DoubleU5BU5D_t3413330114* L_4 = (DoubleU5BU5D_t3413330114*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (DoubleU5BU5D_t3413330114*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
DoubleU5BU5D_t3413330114* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (double)((*(double*)((double*)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
DoubleU5BU5D_t3413330114* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t2066740105 * L_21 = (List_1_t2066740105 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t2066740105 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t2066740105 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t2066740105 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t2066740105 *)L_25);
(( void (*) (List_1_t2066740105 *, double, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t2066740105 *)L_25, (double)((*(double*)((double*)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t2066740105 * L_37 = V_1;
NullCheck((List_1_t2066740105 *)L_37);
DoubleU5BU5D_t3413330114* L_38 = (( DoubleU5BU5D_t3413330114* (*) (List_1_t2066740105 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t2066740105 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.Int16>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR Int16U5BU5D_t3686840178* XmlListConverter_ToArray_TisInt16_t2552820387_m2616720600_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisInt16_t2552820387_m2616720600_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t4024895129 * V_1 = NULL;
Int16U5BU5D_t3686840178* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
Int16U5BU5D_t3686840178* L_4 = (Int16U5BU5D_t3686840178*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (Int16U5BU5D_t3686840178*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
Int16U5BU5D_t3686840178* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (int16_t)((*(int16_t*)((int16_t*)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
Int16U5BU5D_t3686840178* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t4024895129 * L_21 = (List_1_t4024895129 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t4024895129 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t4024895129 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t4024895129 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t4024895129 *)L_25);
(( void (*) (List_1_t4024895129 *, int16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t4024895129 *)L_25, (int16_t)((*(int16_t*)((int16_t*)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t4024895129 * L_37 = V_1;
NullCheck((List_1_t4024895129 *)L_37);
Int16U5BU5D_t3686840178* L_38 = (( Int16U5BU5D_t3686840178* (*) (List_1_t4024895129 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t4024895129 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.Int32>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR Int32U5BU5D_t385246372* XmlListConverter_ToArray_TisInt32_t2950945753_m360094630_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisInt32_t2950945753_m360094630_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t128053199 * V_1 = NULL;
Int32U5BU5D_t385246372* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
Int32U5BU5D_t385246372* L_4 = (Int32U5BU5D_t385246372*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (Int32U5BU5D_t385246372*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
Int32U5BU5D_t385246372* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (int32_t)((*(int32_t*)((int32_t*)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
Int32U5BU5D_t385246372* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t128053199 * L_21 = (List_1_t128053199 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t128053199 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t128053199 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t128053199 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t128053199 *)L_25);
(( void (*) (List_1_t128053199 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t128053199 *)L_25, (int32_t)((*(int32_t*)((int32_t*)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t128053199 * L_37 = V_1;
NullCheck((List_1_t128053199 *)L_37);
Int32U5BU5D_t385246372* L_38 = (( Int32U5BU5D_t385246372* (*) (List_1_t128053199 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t128053199 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.Int64>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR Int64U5BU5D_t2559172825* XmlListConverter_ToArray_TisInt64_t3736567304_m4217099738_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisInt64_t3736567304_m4217099738_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t913674750 * V_1 = NULL;
Int64U5BU5D_t2559172825* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
Int64U5BU5D_t2559172825* L_4 = (Int64U5BU5D_t2559172825*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (Int64U5BU5D_t2559172825*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
Int64U5BU5D_t2559172825* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (int64_t)((*(int64_t*)((int64_t*)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
Int64U5BU5D_t2559172825* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t913674750 * L_21 = (List_1_t913674750 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t913674750 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t913674750 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t913674750 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t913674750 *)L_25);
(( void (*) (List_1_t913674750 *, int64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t913674750 *)L_25, (int64_t)((*(int64_t*)((int64_t*)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t913674750 * L_37 = V_1;
NullCheck((List_1_t913674750 *)L_37);
Int64U5BU5D_t2559172825* L_38 = (( Int64U5BU5D_t2559172825* (*) (List_1_t913674750 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t913674750 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.Object>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* XmlListConverter_ToArray_TisRuntimeObject_m1751379490_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisRuntimeObject_m1751379490_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t257213610 * V_1 = NULL;
ObjectU5BU5D_t2843939325* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
ObjectU5BU5D_t2843939325* L_4 = (ObjectU5BU5D_t2843939325*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (ObjectU5BU5D_t2843939325*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
ObjectU5BU5D_t2843939325* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
ObjectU5BU5D_t2843939325* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t257213610 * L_21 = (List_1_t257213610 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t257213610 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t257213610 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t257213610 *)L_25);
(( void (*) (List_1_t257213610 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t257213610 *)L_25, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t257213610 * L_37 = V_1;
NullCheck((List_1_t257213610 *)L_37);
ObjectU5BU5D_t2843939325* L_38 = (( ObjectU5BU5D_t2843939325* (*) (List_1_t257213610 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t257213610 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.SByte>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR SByteU5BU5D_t2651576203* XmlListConverter_ToArray_TisSByte_t1669577662_m4254332645_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisSByte_t1669577662_m4254332645_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t3141652404 * V_1 = NULL;
SByteU5BU5D_t2651576203* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
SByteU5BU5D_t2651576203* L_4 = (SByteU5BU5D_t2651576203*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (SByteU5BU5D_t2651576203*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
SByteU5BU5D_t2651576203* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (int8_t)((*(int8_t*)((int8_t*)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
SByteU5BU5D_t2651576203* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t3141652404 * L_21 = (List_1_t3141652404 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t3141652404 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t3141652404 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t3141652404 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t3141652404 *)L_25);
(( void (*) (List_1_t3141652404 *, int8_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t3141652404 *)L_25, (int8_t)((*(int8_t*)((int8_t*)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t3141652404 * L_37 = V_1;
NullCheck((List_1_t3141652404 *)L_37);
SByteU5BU5D_t2651576203* L_38 = (( SByteU5BU5D_t2651576203* (*) (List_1_t3141652404 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t3141652404 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.Single>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR SingleU5BU5D_t1444911251* XmlListConverter_ToArray_TisSingle_t1397266774_m1102130495_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisSingle_t1397266774_m1102130495_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t2869341516 * V_1 = NULL;
SingleU5BU5D_t1444911251* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
SingleU5BU5D_t1444911251* L_4 = (SingleU5BU5D_t1444911251*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (SingleU5BU5D_t1444911251*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
SingleU5BU5D_t1444911251* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (float)((*(float*)((float*)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
SingleU5BU5D_t1444911251* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t2869341516 * L_21 = (List_1_t2869341516 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t2869341516 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t2869341516 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t2869341516 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t2869341516 *)L_25);
(( void (*) (List_1_t2869341516 *, float, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t2869341516 *)L_25, (float)((*(float*)((float*)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t2869341516 * L_37 = V_1;
NullCheck((List_1_t2869341516 *)L_37);
SingleU5BU5D_t1444911251* L_38 = (( SingleU5BU5D_t1444911251* (*) (List_1_t2869341516 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t2869341516 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.TimeSpan>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR TimeSpanU5BU5D_t4291357516* XmlListConverter_ToArray_TisTimeSpan_t881159249_m2972605057_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisTimeSpan_t881159249_m2972605057_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t2353233991 * V_1 = NULL;
TimeSpanU5BU5D_t4291357516* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
TimeSpanU5BU5D_t4291357516* L_4 = (TimeSpanU5BU5D_t4291357516*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (TimeSpanU5BU5D_t4291357516*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
TimeSpanU5BU5D_t4291357516* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (TimeSpan_t881159249 )((*(TimeSpan_t881159249 *)((TimeSpan_t881159249 *)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
TimeSpanU5BU5D_t4291357516* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t2353233991 * L_21 = (List_1_t2353233991 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t2353233991 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t2353233991 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t2353233991 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t2353233991 *)L_25);
(( void (*) (List_1_t2353233991 *, TimeSpan_t881159249 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t2353233991 *)L_25, (TimeSpan_t881159249 )((*(TimeSpan_t881159249 *)((TimeSpan_t881159249 *)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t2353233991 * L_37 = V_1;
NullCheck((List_1_t2353233991 *)L_37);
TimeSpanU5BU5D_t4291357516* L_38 = (( TimeSpanU5BU5D_t4291357516* (*) (List_1_t2353233991 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t2353233991 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.UInt16>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR UInt16U5BU5D_t3326319531* XmlListConverter_ToArray_TisUInt16_t2177724958_m2035470571_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisUInt16_t2177724958_m2035470571_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t3649799700 * V_1 = NULL;
UInt16U5BU5D_t3326319531* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
UInt16U5BU5D_t3326319531* L_4 = (UInt16U5BU5D_t3326319531*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (UInt16U5BU5D_t3326319531*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
UInt16U5BU5D_t3326319531* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (uint16_t)((*(uint16_t*)((uint16_t*)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
UInt16U5BU5D_t3326319531* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t3649799700 * L_21 = (List_1_t3649799700 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t3649799700 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t3649799700 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t3649799700 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t3649799700 *)L_25);
(( void (*) (List_1_t3649799700 *, uint16_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t3649799700 *)L_25, (uint16_t)((*(uint16_t*)((uint16_t*)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t3649799700 * L_37 = V_1;
NullCheck((List_1_t3649799700 *)L_37);
UInt16U5BU5D_t3326319531* L_38 = (( UInt16U5BU5D_t3326319531* (*) (List_1_t3649799700 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t3649799700 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.UInt32>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR UInt32U5BU5D_t2770800703* XmlListConverter_ToArray_TisUInt32_t2560061978_m2615763131_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisUInt32_t2560061978_m2615763131_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t4032136720 * V_1 = NULL;
UInt32U5BU5D_t2770800703* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
UInt32U5BU5D_t2770800703* L_4 = (UInt32U5BU5D_t2770800703*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (UInt32U5BU5D_t2770800703*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
UInt32U5BU5D_t2770800703* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (uint32_t)((*(uint32_t*)((uint32_t*)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
UInt32U5BU5D_t2770800703* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t4032136720 * L_21 = (List_1_t4032136720 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t4032136720 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t4032136720 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t4032136720 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t4032136720 *)L_25);
(( void (*) (List_1_t4032136720 *, uint32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t4032136720 *)L_25, (uint32_t)((*(uint32_t*)((uint32_t*)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t4032136720 * L_37 = V_1;
NullCheck((List_1_t4032136720 *)L_37);
UInt32U5BU5D_t2770800703* L_38 = (( UInt32U5BU5D_t2770800703* (*) (List_1_t4032136720 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t4032136720 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] System.Xml.Schema.XmlListConverter::ToArray<System.UInt64>(System.Object,System.Xml.IXmlNamespaceResolver)
extern "C" IL2CPP_METHOD_ATTR UInt64U5BU5D_t1659327989* XmlListConverter_ToArray_TisUInt64_t4134040092_m3140071152_gshared (XmlListConverter_t3889069996 * __this, RuntimeObject * ___list0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XmlListConverter_ToArray_TisUInt64_t4134040092_m3140071152_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
List_1_t1311147538 * V_1 = NULL;
UInt64U5BU5D_t1659327989* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___list0;
V_0 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IList_t2094931216_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0052;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_2);
UInt64U5BU5D_t1659327989* L_4 = (UInt64U5BU5D_t1659327989*)SZArrayNew(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (uint32_t)L_3);
V_2 = (UInt64U5BU5D_t1659327989*)L_4;
V_3 = (int32_t)0;
goto IL_0047;
}
IL_001a:
{
UInt64U5BU5D_t1659327989* L_5 = V_2;
int32_t L_6 = V_3;
XmlValueConverter_t585560190 * L_7 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck((RuntimeObject*)L_8);
RuntimeObject * L_10 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t2094931216_il2cpp_TypeInfo_var, (RuntimeObject*)L_8, (int32_t)L_9);
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_7);
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_7, (RuntimeObject *)L_10, (Type_t *)L_12, (RuntimeObject*)L_13);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (uint64_t)((*(uint64_t*)((uint64_t*)UnBox(L_14, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))));
int32_t L_15 = V_3;
V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0047:
{
int32_t L_16 = V_3;
RuntimeObject* L_17 = V_0;
NullCheck((RuntimeObject*)L_17);
int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_001a;
}
}
{
UInt64U5BU5D_t1659327989* L_19 = V_2;
return L_19;
}
IL_0052:
{
RuntimeObject * L_20 = ___list0;
List_1_t1311147538 * L_21 = (List_1_t1311147538 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3));
(( void (*) (List_1_t1311147538 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4));
V_1 = (List_1_t1311147538 *)L_21;
NullCheck((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
RuntimeObject* L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_20, IEnumerable_t1941168011_il2cpp_TypeInfo_var)));
V_4 = (RuntimeObject*)L_22;
}
IL_0065:
try
{ // begin try (depth: 1)
{
goto IL_0093;
}
IL_0067:
{
RuntimeObject* L_23 = V_4;
NullCheck((RuntimeObject*)L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_23);
V_5 = (RuntimeObject *)L_24;
List_1_t1311147538 * L_25 = V_1;
XmlValueConverter_t585560190 * L_26 = (XmlValueConverter_t585560190 *)__this->get_atomicConverter_32();
RuntimeObject * L_27 = V_5;
RuntimeTypeHandle_t3027515415 L_28 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_29 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_28, /*hidden argument*/NULL);
RuntimeObject* L_30 = ___nsResolver1;
NullCheck((XmlValueConverter_t585560190 *)L_26);
RuntimeObject * L_31 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(61 /* System.Object System.Xml.Schema.XmlValueConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, (XmlValueConverter_t585560190 *)L_26, (RuntimeObject *)L_27, (Type_t *)L_29, (RuntimeObject*)L_30);
NullCheck((List_1_t1311147538 *)L_25);
(( void (*) (List_1_t1311147538 *, uint64_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)((List_1_t1311147538 *)L_25, (uint64_t)((*(uint64_t*)((uint64_t*)UnBox(L_31, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5));
}
IL_0093:
{
RuntimeObject* L_32 = V_4;
NullCheck((RuntimeObject*)L_32);
bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, (RuntimeObject*)L_32);
if (L_33)
{
goto IL_0067;
}
}
IL_009c:
{
IL2CPP_LEAVE(0xB3, FINALLY_009e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_009e;
}
FINALLY_009e:
{ // begin finally (depth: 1)
{
RuntimeObject* L_34 = V_4;
V_6 = (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_35 = V_6;
if (!L_35)
{
goto IL_00b2;
}
}
IL_00ab:
{
RuntimeObject* L_36 = V_6;
NullCheck((RuntimeObject*)L_36);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, (RuntimeObject*)L_36);
}
IL_00b2:
{
IL2CPP_END_FINALLY(158)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(158)
{
IL2CPP_JUMP_TBL(0xB3, IL_00b3)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b3:
{
List_1_t1311147538 * L_37 = V_1;
NullCheck((List_1_t1311147538 *)L_37);
UInt64U5BU5D_t1659327989* L_38 = (( UInt64U5BU5D_t1659327989* (*) (List_1_t1311147538 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6)->methodPointer)((List_1_t1311147538 *)L_37, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 6));
return L_38;
}
}
// T[] UnityEngine.Component::GetComponents<System.Object>()
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* Component_GetComponents_TisRuntimeObject_m2239937270_gshared (Component_t1923634451 * __this, const RuntimeMethod* method)
{
ObjectU5BU5D_t2843939325* V_0 = NULL;
{
NullCheck((Component_t1923634451 *)__this);
GameObject_t1113636619 * L_0 = Component_get_gameObject_m442555142((Component_t1923634451 *)__this, /*hidden argument*/NULL);
NullCheck((GameObject_t1113636619 *)L_0);
ObjectU5BU5D_t2843939325* L_1 = (( ObjectU5BU5D_t2843939325* (*) (GameObject_t1113636619 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_t1113636619 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (ObjectU5BU5D_t2843939325*)L_1;
goto IL_0012;
}
IL_0012:
{
ObjectU5BU5D_t2843939325* L_2 = V_0;
return L_2;
}
}
// T[] UnityEngine.GameObject::GetComponents<System.Object>()
extern "C" IL2CPP_METHOD_ATTR ObjectU5BU5D_t2843939325* GameObject_GetComponents_TisRuntimeObject_m1550324888_gshared (GameObject_t1113636619 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GameObject_GetComponents_TisRuntimeObject_m1550324888_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t2843939325* V_0 = NULL;
{
RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, (RuntimeTypeHandle_t3027515415 )L_0, /*hidden argument*/NULL);
NullCheck((GameObject_t1113636619 *)__this);
RuntimeArray * L_2 = GameObject_GetComponentsInternal_m4006738154((GameObject_t1113636619 *)__this, (Type_t *)L_1, (bool)1, (bool)0, (bool)1, (bool)0, (RuntimeObject *)NULL, /*hidden argument*/NULL);
V_0 = (ObjectU5BU5D_t2843939325*)((ObjectU5BU5D_t2843939325*)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->rgctx_data, 1)));
goto IL_0021;
}
IL_0021:
{
ObjectU5BU5D_t2843939325* L_3 = V_0;
return L_3;
}
}
| [
"[email protected]"
] | |
bf232977c5ed65e7c2582e45c3822f75d675b482 | 868e8628acaa0bf276134f9cc3ced379679eab10 | /firstCrude2D/we123/h10/0.096/phi | 0aa75eeb4dcf39d0c83549ff3666456ac1c4340a | [] | no_license | stigmn/droplet | 921af6851f88c0acf8b1cd84f5e2903f1d0cb87a | 1649ceb0a9ce5abb243fb77569211558c2f0dc96 | refs/heads/master | 2020-04-04T20:08:37.912624 | 2015-11-25T11:20:32 | 2015-11-25T11:20:32 | 45,102,907 | 0 | 0 | null | 2015-10-28T09:46:30 | 2015-10-28T09:46:29 | null | UTF-8 | C++ | false | false | 1,483,893 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "0.096";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
119500
(
-1.89332e-13
1.89332e-13
-4.36102e-13
2.4732e-13
-7.21644e-13
2.86009e-13
-1.01384e-12
2.92649e-13
-1.30528e-12
2.91898e-13
-1.59505e-12
2.90214e-13
-1.88184e-12
2.87244e-13
-2.16569e-12
2.84311e-13
-2.44594e-12
2.80742e-13
-2.72234e-12
2.76901e-13
-2.99468e-12
2.72877e-13
-3.26284e-12
2.68711e-13
-3.52653e-12
2.64283e-13
-3.78526e-12
2.59347e-13
-4.03865e-12
2.54044e-13
-4.2863e-12
2.48328e-13
-4.52828e-12
2.42692e-13
-4.76502e-12
2.37462e-13
-4.99747e-12
2.33189e-13
-5.22614e-12
2.29406e-13
-5.4512e-12
2.25794e-13
-5.67336e-12
2.22889e-13
-5.89197e-12
2.19324e-13
-6.10655e-12
2.15273e-13
-6.31562e-12
2.09732e-13
-6.51719e-12
2.02206e-13
-6.7085e-12
1.91929e-13
-6.88653e-12
1.78637e-13
-7.04757e-12
1.61651e-13
-7.18778e-12
1.40809e-13
-7.3029e-12
1.1572e-13
-7.38818e-12
8.58847e-14
-7.43848e-12
5.08967e-14
-7.44927e-12
1.14026e-14
-7.41533e-12
-3.33325e-14
-7.33057e-12
-8.41362e-14
-7.19064e-12
-1.39281e-13
-6.99244e-12
-1.97544e-13
-6.73316e-12
-2.58618e-13
-6.41119e-12
-3.21295e-13
-6.02583e-12
-3.84688e-13
-5.57653e-12
-4.48625e-13
-5.06443e-12
-5.11433e-13
-4.49101e-12
-5.72749e-13
-3.85958e-12
-6.30773e-13
-3.17605e-12
-6.82871e-13
-2.44402e-12
-7.31376e-13
-1.66877e-12
-7.74618e-13
-8.57537e-13
-8.10618e-13
-1.67402e-14
-8.40206e-13
8.47343e-13
-8.63511e-13
1.72849e-12
-8.80588e-13
2.62086e-12
-8.91804e-13
3.51772e-12
-8.96292e-13
4.41234e-12
-8.94054e-13
5.29883e-12
-8.85926e-13
6.17026e-12
-8.70876e-13
7.02081e-12
-8.5004e-13
7.84471e-12
-8.23432e-13
8.63704e-12
-7.91901e-13
9.39281e-12
-7.5537e-13
1.01078e-11
-7.14627e-13
1.07788e-11
-6.70526e-13
1.14044e-11
-6.25219e-13
1.19818e-11
-5.76878e-13
1.25117e-11
-5.2937e-13
1.29939e-11
-4.81724e-13
1.34292e-11
-4.34687e-13
1.38182e-11
-3.88431e-13
1.41633e-11
-3.44427e-13
1.44658e-11
-3.01804e-13
1.4726e-11
-2.59515e-13
1.49455e-11
-2.18735e-13
1.51255e-11
-1.7921e-13
1.52655e-11
-1.39271e-13
1.53647e-11
-9.83244e-14
1.54225e-11
-5.71107e-14
1.54383e-11
-1.507e-14
1.54103e-11
2.85726e-14
1.53347e-11
7.61395e-14
1.52084e-11
1.26799e-13
1.50289e-11
1.79923e-13
1.4791e-11
2.38297e-13
1.44898e-11
3.0156e-13
1.41214e-11
3.68722e-13
1.36809e-11
4.4073e-13
1.31636e-11
5.17443e-13
1.25657e-11
5.97904e-13
1.18843e-11
6.81424e-13
1.1118e-11
7.66107e-13
1.0267e-11
8.5081e-13
9.33269e-12
9.34011e-13
8.3196e-12
1.01279e-12
7.2275e-12
1.09181e-12
6.09004e-12
1.1372e-12
4.82334e-12
1.26647e-12
3.62177e-12
1.20135e-12
2.22562e-12
1.39591e-12
9.93101e-13
1.23223e-12
1.15332e-12
-1.60582e-13
-3.00978e-13
4.9084e-13
-7.75896e-13
7.23184e-13
-1.30765e-12
8.18609e-13
-1.85928e-12
8.45117e-13
-2.40644e-12
8.39894e-13
-2.95023e-12
8.34857e-13
-3.49054e-12
8.28433e-13
-4.0272e-12
8.21896e-13
-4.55958e-12
8.14076e-13
-5.08713e-12
8.05456e-13
-5.60959e-12
7.96389e-13
-6.12703e-12
7.87252e-13
-6.63923e-12
7.77641e-13
-7.1459e-12
7.67222e-13
-7.64688e-12
7.56289e-13
-8.14191e-12
7.44647e-13
-8.63062e-12
7.3272e-13
-9.11354e-12
7.21721e-13
-9.59145e-12
7.12433e-13
-1.00646e-11
7.03873e-13
-1.05338e-11
6.96346e-13
-1.09996e-11
6.89959e-13
-1.14612e-11
6.82172e-13
-1.19179e-11
6.73097e-13
-1.23683e-11
6.61352e-13
-1.28093e-11
6.44328e-13
-1.32389e-11
6.22593e-13
-1.36528e-11
5.93737e-13
-1.40468e-11
5.56725e-13
-1.44168e-11
5.1189e-13
-1.47566e-11
4.5667e-13
-1.50612e-11
3.91577e-13
-1.53229e-11
3.13758e-13
-1.55345e-11
2.24166e-13
-1.56878e-11
1.21126e-13
-1.57748e-11
4.01301e-15
-1.57871e-11
-1.25749e-13
-1.57196e-11
-2.63784e-13
-1.55666e-11
-4.10409e-13
-1.53243e-11
-5.6239e-13
-1.4989e-11
-7.18824e-13
-1.45577e-11
-8.78752e-13
-1.40287e-11
-1.03929e-12
-1.34011e-11
-1.19919e-12
-1.26769e-11
-1.35377e-12
-1.1861e-11
-1.49758e-12
-1.09563e-11
-1.63505e-12
-9.96687e-12
-1.76293e-12
-8.90094e-12
-1.87549e-12
-7.76447e-12
-1.97564e-12
-6.56343e-12
-2.06353e-12
-5.30543e-12
-2.13755e-12
-3.99757e-12
-2.19862e-12
-2.64856e-12
-2.24425e-12
-1.26754e-12
-2.27403e-12
1.36162e-13
-2.28862e-12
1.55397e-12
-2.28774e-12
2.97599e-12
-2.27117e-12
4.39334e-12
-2.23994e-12
5.79671e-12
-2.19448e-12
7.17623e-12
-2.13409e-12
8.52387e-12
-2.06145e-12
9.83137e-12
-1.97717e-12
1.10937e-11
-1.88663e-12
1.2304e-11
-1.78624e-12
1.3461e-11
-1.68527e-12
1.45603e-11
-1.57996e-12
1.56005e-11
-1.47385e-12
1.65788e-11
-1.36556e-12
1.74949e-11
-1.25926e-12
1.83469e-11
-1.15256e-12
1.91322e-11
-1.04357e-12
1.98492e-11
-9.34316e-13
2.04949e-11
-8.23523e-13
2.10673e-11
-7.10384e-13
2.15637e-11
-5.93455e-13
2.19802e-11
-4.72552e-13
2.23138e-11
-3.47568e-13
2.25604e-11
-2.17155e-13
2.27147e-11
-7.73052e-14
2.27684e-11
7.38237e-14
2.27164e-11
2.32595e-13
2.25485e-11
4.0673e-13
2.22547e-11
5.95912e-13
2.18248e-11
7.98986e-13
2.12499e-11
1.01589e-12
2.05194e-11
1.248e-12
1.96249e-11
1.49233e-12
1.85602e-11
1.74591e-12
1.73194e-11
2.0066e-12
1.59002e-11
2.26951e-12
1.43034e-11
2.53038e-12
1.25327e-11
2.78308e-12
1.0595e-11
3.0291e-12
8.51876e-12
3.21312e-12
6.25844e-12
3.52639e-12
3.97111e-12
3.48822e-12
1.55543e-12
3.81102e-12
-5.43864e-13
3.33081e-12
2.63626e-12
-2.02775e-12
-3.29915e-13
8.21225e-13
-8.86375e-13
1.28051e-12
-1.5159e-12
1.44892e-12
-2.16416e-12
1.49415e-12
-2.81154e-12
1.48807e-12
-3.45426e-12
1.4784e-12
-4.09372e-12
1.46874e-12
-4.72988e-12
1.45893e-12
-5.36224e-12
1.44736e-12
-5.99016e-12
1.43432e-12
-6.61326e-12
1.42048e-12
-7.23155e-12
1.40656e-12
-7.84476e-12
1.3919e-12
-8.45289e-12
1.37644e-12
-9.056e-12
1.36051e-12
-9.65402e-12
1.3438e-12
-1.0247e-11
1.32685e-12
-1.08354e-11
1.31127e-12
-1.14193e-11
1.29743e-12
-1.19994e-11
1.28513e-12
-1.25769e-11
1.27492e-12
-1.31513e-11
1.26542e-12
-1.37229e-11
1.25486e-12
-1.42908e-11
1.24202e-12
-1.48532e-11
1.22487e-12
-1.54083e-11
1.20038e-12
-1.59534e-11
1.16877e-12
-1.64846e-11
1.12595e-12
-1.69982e-11
1.07131e-12
-1.7489e-11
1.00378e-12
-1.79513e-11
9.19964e-13
-1.83793e-11
8.20605e-13
-1.87651e-11
7.00632e-13
-1.91014e-11
5.61475e-13
-1.93788e-11
3.99569e-13
-1.95897e-11
2.1597e-13
-1.97258e-11
1.144e-14
-1.97797e-11
-2.08902e-13
-1.97454e-11
-4.43693e-13
-1.96182e-11
-6.88621e-13
-1.93932e-11
-9.42958e-13
-1.9067e-11
-1.204e-12
-1.86364e-11
-1.46902e-12
-1.81009e-11
-1.73381e-12
-1.74611e-11
-1.99267e-12
-1.67192e-11
-2.23856e-12
-1.58792e-11
-2.47412e-12
-1.49447e-11
-2.69655e-12
-1.39207e-11
-2.89862e-12
-1.28128e-11
-3.08269e-12
-1.16267e-11
-3.24864e-12
-1.03695e-11
-3.39379e-12
-9.04864e-12
-3.51855e-12
-7.67226e-12
-3.61965e-12
-6.24907e-12
-3.69622e-12
-4.78803e-12
-3.74868e-12
-3.29875e-12
-3.77606e-12
-1.79133e-12
-3.77768e-12
-2.75718e-13
-3.75467e-12
1.2379e-12
-3.70724e-12
2.74348e-12
-3.63882e-12
4.22992e-12
-3.54704e-12
5.68777e-12
-3.43414e-12
7.10802e-12
-3.306e-12
8.49277e-12
-3.1701e-12
9.82828e-12
-3.01989e-12
1.1114e-11
-2.86481e-12
1.23423e-11
-2.70124e-12
1.35174e-11
-2.5397e-12
1.46297e-11
-2.37071e-12
1.56782e-11
-2.20005e-12
1.66585e-11
-2.02291e-12
1.75674e-11
-1.84228e-12
1.83994e-11
-1.65458e-12
1.91509e-11
-1.46101e-12
1.98179e-11
-1.25962e-12
2.03948e-11
-1.04872e-12
2.08741e-11
-8.26221e-13
2.12508e-11
-5.93149e-13
2.1516e-11
-3.41985e-13
2.16612e-11
-7.07396e-14
2.16735e-11
2.20781e-13
2.15444e-11
5.36298e-13
2.12585e-11
8.82276e-13
2.08034e-11
1.2544e-12
2.01655e-11
1.65409e-12
1.9333e-11
2.08054e-12
1.82951e-11
2.53032e-12
1.70429e-11
2.99805e-12
1.55692e-11
3.48015e-12
1.38701e-11
3.96848e-12
1.1945e-11
4.45534e-12
9.79869e-12
4.92922e-12
7.44039e-12
5.3872e-12
4.89325e-12
5.75999e-12
2.16244e-12
6.25686e-12
-7.37739e-13
6.38793e-12
-3.60519e-12
6.67787e-12
-6.2108e-12
5.93572e-12
4.1954e-12
-7.77084e-12
-3.6497e-13
1.18666e-12
-9.32581e-13
1.84901e-12
-1.58821e-12
2.10537e-12
-2.2677e-12
2.17448e-12
-2.94879e-12
2.17001e-12
-3.62653e-12
2.15703e-12
-4.30127e-12
2.14439e-12
-4.97282e-12
2.13142e-12
-5.64104e-12
2.11655e-12
-6.30551e-12
2.09978e-12
-6.96587e-12
2.08185e-12
-7.6217e-12
2.0634e-12
-8.27267e-12
2.04392e-12
-8.91862e-12
2.02344e-12
-9.55935e-12
2.0023e-12
-1.01947e-11
1.98022e-12
-1.08254e-11
1.95858e-12
-1.14519e-11
1.93881e-12
-1.20744e-11
1.92105e-12
-1.26943e-11
1.90606e-12
-1.33121e-11
1.89373e-12
-1.39276e-11
1.88196e-12
-1.45414e-11
1.86965e-12
-1.51529e-11
1.85447e-12
-1.57601e-11
1.83308e-12
-1.63625e-11
1.8038e-12
-1.69564e-11
1.76377e-12
-1.7539e-11
1.70953e-12
-1.81063e-11
1.6397e-12
-1.86523e-11
1.55084e-12
-1.9172e-11
1.44076e-12
-1.96576e-11
1.30729e-12
-2.01026e-11
1.14663e-12
-2.04983e-11
9.58228e-13
-2.08366e-11
7.38917e-13
-2.11093e-11
4.89576e-13
-2.13085e-11
2.11638e-13
-2.14265e-11
-9.00018e-14
-2.14563e-11
-4.13135e-13
-2.13925e-11
-7.5162e-13
-2.12294e-11
-1.10529e-12
-2.09637e-11
-1.46898e-12
-2.05926e-11
-1.83933e-12
-2.01143e-11
-2.21146e-12
-1.95305e-11
-2.57572e-12
-1.88411e-11
-2.92721e-12
-1.80495e-11
-3.26492e-12
-1.71611e-11
-3.58413e-12
-1.61787e-11
-3.88014e-12
-1.51073e-11
-4.15325e-12
-1.3954e-11
-4.40102e-12
-1.27254e-11
-4.62137e-12
-1.14297e-11
-4.81322e-12
-1.00752e-11
-4.97306e-12
-8.67037e-12
-5.1e-12
-7.22433e-12
-5.19365e-12
-5.74662e-12
-5.25269e-12
-4.24666e-12
-5.27659e-12
-2.73418e-12
-5.26612e-12
-1.21832e-12
-5.22209e-12
2.90253e-13
-5.1464e-12
1.78688e-12
-5.0427e-12
3.26068e-12
-4.907e-12
4.70486e-12
-4.74928e-12
6.11159e-12
-4.57597e-12
7.47849e-12
-4.38596e-12
8.7972e-12
-4.18274e-12
1.00634e-11
-3.96664e-12
1.12733e-11
-3.74893e-12
1.24244e-11
-3.52112e-12
1.35125e-11
-3.28748e-12
1.45327e-11
-3.04243e-12
1.54828e-11
-2.79181e-12
1.63568e-11
-2.52806e-12
1.71504e-11
-2.25401e-12
1.78577e-11
-1.96648e-12
1.8472e-11
-1.66252e-12
1.89876e-11
-1.34137e-12
1.93932e-11
-9.98351e-13
1.96782e-11
-6.26563e-13
1.98355e-11
-2.2755e-13
1.98488e-11
2.07877e-13
1.9706e-11
6.79489e-13
1.93945e-11
1.19419e-12
1.88989e-11
1.75036e-12
1.82057e-11
2.34755e-12
1.73007e-11
2.98572e-12
1.61718e-11
3.65944e-12
1.48073e-11
4.36268e-12
1.32002e-11
5.0874e-12
1.13452e-11
5.82358e-12
9.24181e-12
6.55879e-12
6.89472e-12
7.2763e-12
4.31461e-12
7.96717e-12
1.51783e-12
8.5565e-12
-1.45044e-12
9.22471e-12
-4.60843e-12
9.54535e-12
-7.78076e-12
9.8495e-12
-1.07134e-11
8.86758e-12
6.05468e-12
-1.25736e-11
-3.83083e-13
1.57023e-12
-9.59963e-13
2.42683e-12
-1.61804e-12
2.76432e-12
-2.30479e-12
2.86211e-12
-2.99492e-12
2.86107e-12
-3.68321e-12
2.84627e-12
-4.36909e-12
2.83126e-12
-5.05222e-12
2.81556e-12
-5.73241e-12
2.79778e-12
-6.40924e-12
2.77765e-12
-7.08219e-12
2.75584e-12
-7.75072e-12
2.73298e-12
-8.41437e-12
2.70862e-12
-9.07275e-12
2.68286e-12
-9.72567e-12
2.65625e-12
-1.03733e-11
2.62885e-12
-1.10161e-11
2.60242e-12
-1.16549e-11
2.57858e-12
-1.22904e-11
2.55753e-12
-1.29233e-11
2.53991e-12
-1.35543e-11
2.52571e-12
-1.41839e-11
2.51253e-12
-1.4812e-11
2.49876e-12
-1.54386e-11
2.48213e-12
-1.60629e-11
2.4584e-12
-1.66832e-11
2.42515e-12
-1.72974e-11
2.37906e-12
-1.79021e-11
2.3153e-12
-1.84928e-11
2.23156e-12
-1.90646e-11
2.12375e-12
-1.96104e-11
1.9877e-12
-2.01238e-11
1.82179e-12
-2.05964e-11
1.62024e-12
-2.10204e-11
1.38326e-12
-2.13871e-11
1.10659e-12
-2.1689e-11
7.924e-13
-2.19172e-11
4.40688e-13
-2.2065e-11
5.86362e-14
-2.21238e-11
-3.53659e-13
-2.20879e-11
-7.86777e-13
-2.1952e-11
-1.24059e-12
-2.17111e-11
-1.70931e-12
-2.13641e-11
-2.18573e-12
-2.09087e-11
-2.66615e-12
-2.03449e-11
-3.1389e-12
-1.96736e-11
-3.59782e-12
-1.88982e-11
-4.03954e-12
-1.80227e-11
-4.45887e-12
-1.70503e-11
-4.85168e-12
-1.59867e-11
-5.21596e-12
-1.48389e-11
-5.54783e-12
-1.36142e-11
-5.84502e-12
-1.23213e-11
-6.10497e-12
-1.09688e-11
-6.32444e-12
-9.56516e-12
-6.50249e-12
-8.12005e-12
-6.63759e-12
-6.64306e-12
-6.72848e-12
-5.14338e-12
-6.77508e-12
-3.63047e-12
-6.77786e-12
-2.11356e-12
-6.73786e-12
-6.01242e-13
-6.65762e-12
8.96997e-13
-6.5399e-12
2.37577e-12
-6.3848e-12
3.82689e-12
-6.1995e-12
5.24186e-12
-5.99011e-12
6.61519e-12
-5.75854e-12
7.93929e-12
-5.50615e-12
9.2173e-12
-5.24404e-12
1.04368e-11
-4.96786e-12
1.15956e-11
-4.6794e-12
1.26891e-11
-4.38059e-12
1.37189e-11
-4.07186e-12
1.46758e-11
-3.74838e-12
1.55602e-11
-3.41219e-12
1.63635e-11
-3.0571e-12
1.70808e-11
-2.68359e-12
1.77057e-11
-2.28718e-12
1.8228e-11
-1.86335e-12
1.86399e-11
-1.41001e-12
1.89319e-11
-9.18157e-13
1.90883e-11
-3.8362e-13
1.90995e-11
1.9697e-13
1.89491e-11
8.30219e-13
1.86235e-11
1.52019e-12
1.81086e-11
2.26555e-12
1.73887e-11
3.06773e-12
1.64498e-11
3.92489e-12
1.52788e-11
4.83082e-12
1.38642e-11
5.77756e-12
1.21972e-11
6.75473e-12
1.02717e-11
7.74936e-12
8.08651e-12
8.74417e-12
5.64431e-12
9.71852e-12
2.95888e-12
1.06524e-11
3.07564e-14
1.14843e-11
-3.06767e-12
1.23226e-11
-6.33528e-12
1.28123e-11
-9.62575e-12
1.31392e-11
-1.26606e-11
1.19015e-11
7.869e-12
-1.44759e-11
-3.90528e-13
1.96128e-12
-9.74541e-13
3.01181e-12
-1.63423e-12
3.42492e-12
-2.32073e-12
3.54955e-12
-3.01206e-12
3.55337e-12
-3.70296e-12
3.53817e-12
-4.39212e-12
3.52146e-12
-5.0789e-12
3.50341e-12
-5.76302e-12
3.48295e-12
-6.44403e-12
3.45973e-12
-7.12123e-12
3.43409e-12
-7.79396e-12
3.40675e-12
-8.46167e-12
3.37736e-12
-9.12378e-12
3.34598e-12
-9.77998e-12
3.31345e-12
-1.04308e-11
3.28063e-12
-1.10769e-11
3.24946e-12
-1.17187e-11
3.22137e-12
-1.23575e-11
3.19722e-12
-1.29939e-11
3.1773e-12
-1.36284e-11
3.16111e-12
-1.4262e-11
3.14713e-12
-1.4895e-11
3.13272e-12
-1.5527e-11
3.11513e-12
-1.61582e-11
3.09063e-12
-1.67867e-11
3.05472e-12
-1.74103e-11
3.00385e-12
-1.80264e-11
2.93251e-12
-1.86297e-11
2.83598e-12
-1.92155e-11
2.7107e-12
-1.97765e-11
2.54989e-12
-2.03056e-11
2.35199e-12
-2.07947e-11
2.11037e-12
-2.12352e-11
1.82472e-12
-2.16185e-11
1.49091e-12
-2.19367e-11
1.11147e-12
-2.21814e-11
6.86221e-13
-2.23442e-11
2.22121e-13
-2.24182e-11
-2.79035e-13
-2.23954e-11
-8.08944e-13
-2.22708e-11
-1.3646e-12
-2.20404e-11
-1.93917e-12
-2.17009e-11
-2.5246e-12
-2.12517e-11
-3.11478e-12
-2.06928e-11
-3.69717e-12
-2.00235e-11
-4.26644e-12
-1.9247e-11
-4.81529e-12
-1.83678e-11
-5.33729e-12
-1.73896e-11
-5.82897e-12
-1.63186e-11
-6.28596e-12
-1.51621e-11
-6.70331e-12
-1.39277e-11
-7.07829e-12
-1.26242e-11
-7.40733e-12
-1.12606e-11
-7.68685e-12
-9.84576e-12
-7.91607e-12
-8.38924e-12
-8.09287e-12
-6.90094e-12
-8.21553e-12
-5.39023e-12
-8.28454e-12
-3.86648e-12
-8.30037e-12
-2.33888e-12
-8.26426e-12
-8.16031e-13
-8.17932e-12
6.93543e-13
-8.04841e-12
2.18271e-12
-7.873e-12
3.6438e-12
-7.65973e-12
5.06886e-12
-7.41441e-12
6.45254e-12
-7.14155e-12
7.78852e-12
-6.84155e-12
9.0712e-12
-6.52619e-12
1.0297e-11
-6.19323e-12
1.14638e-11
-5.84582e-12
1.2565e-11
-5.48158e-12
1.36005e-11
-5.10711e-12
1.45652e-11
-4.71301e-12
1.54543e-11
-4.30118e-12
1.62653e-11
-3.8681e-12
1.6991e-11
-3.40923e-12
1.76242e-11
-2.92033e-12
1.81583e-11
-2.39723e-12
1.85808e-11
-1.83231e-12
1.88817e-11
-1.21879e-12
1.9048e-11
-5.49656e-13
1.90665e-11
1.78752e-13
1.89219e-11
9.75081e-13
1.86018e-11
1.84045e-12
1.80886e-11
2.77907e-12
1.73673e-11
3.78928e-12
1.64242e-11
4.86831e-12
1.52444e-11
6.011e-12
1.38163e-11
7.20604e-12
1.21301e-11
8.44126e-12
1.0179e-11
9.7007e-12
7.9604e-12
1.09629e-11
5.47658e-12
1.22023e-11
2.73876e-12
1.339e-11
-2.49259e-13
1.44718e-11
-3.4198e-12
1.54925e-11
-6.75627e-12
1.6148e-11
-1.01143e-11
1.64963e-11
-1.31842e-11
1.49706e-11
9.68953e-12
-1.50057e-11
-3.9393e-13
2.35575e-12
-9.83212e-13
3.60206e-12
-1.64446e-12
4.08707e-12
-2.32956e-12
4.23559e-12
-3.02033e-12
4.24511e-12
-3.7117e-12
4.23055e-12
-4.40194e-12
4.21273e-12
-5.09018e-12
4.19269e-12
-5.77591e-12
4.16972e-12
-6.45868e-12
4.14352e-12
-7.13767e-12
4.11411e-12
-7.81195e-12
4.08203e-12
-8.4809e-12
4.0473e-12
-9.14399e-12
4.01004e-12
-9.80077e-12
3.97119e-12
-1.04519e-11
3.93267e-12
-1.10984e-11
3.89686e-12
-1.17405e-11
3.86438e-12
-1.23792e-11
3.8368e-12
-1.30159e-11
3.81493e-12
-1.36509e-11
3.79702e-12
-1.42852e-11
3.78241e-12
-1.492e-11
3.76847e-12
-1.55547e-11
3.75089e-12
-1.61896e-11
3.72661e-12
-1.68236e-11
3.68978e-12
-1.74539e-11
3.6353e-12
-1.8078e-11
3.55776e-12
-1.86912e-11
3.45022e-12
-1.92875e-11
3.30815e-12
-1.98609e-11
3.12443e-12
-2.04028e-11
2.8949e-12
-2.09055e-11
2.61411e-12
-2.13595e-11
2.27974e-12
-2.1757e-11
1.88932e-12
-2.20881e-11
1.44337e-12
-2.23459e-11
9.44825e-13
-2.25202e-11
3.97058e-13
-2.26041e-11
-1.94417e-13
-2.25907e-11
-8.21767e-13
-2.24733e-11
-1.4814e-12
-2.22479e-11
-2.16388e-12
-2.19128e-11
-2.8591e-12
-2.1465e-11
-3.56196e-12
-2.09039e-11
-4.25751e-12
-2.02309e-11
-4.93874e-12
-1.94481e-11
-5.59727e-12
-1.85597e-11
-6.22484e-12
-1.75713e-11
-6.81634e-12
-1.6489e-11
-7.36726e-12
-1.53199e-11
-7.87135e-12
-1.4072e-11
-8.32505e-12
-1.27541e-11
-8.72409e-12
-1.13754e-11
-9.0643e-12
-9.94541e-12
-9.34491e-12
-8.47332e-12
-9.56376e-12
-6.96918e-12
-9.71846e-12
-5.4427e-12
-9.8098e-12
-3.90323e-12
-9.83864e-12
-2.36013e-12
-9.80621e-12
-8.22451e-13
-9.71591e-12
7.01278e-13
-9.57115e-12
2.20303e-12
-9.37387e-12
3.67511e-12
-9.13103e-12
5.10953e-12
-8.84814e-12
6.50065e-12
-8.53206e-12
7.84709e-12
-8.18746e-12
9.13942e-12
-7.81806e-12
1.03743e-11
-7.42778e-12
1.15465e-11
-7.01764e-12
1.26563e-11
-6.59124e-12
1.36974e-11
-6.14811e-12
1.46678e-11
-5.68332e-12
1.55667e-11
-5.20009e-12
1.63871e-11
-4.68853e-12
1.71231e-11
-4.14524e-12
1.7768e-11
-3.56513e-12
1.83148e-11
-2.94391e-12
1.87512e-11
-2.26848e-12
1.90674e-11
-1.53481e-12
1.925e-11
-7.3206e-13
1.92847e-11
1.44195e-13
1.91578e-11
1.10208e-12
1.88528e-11
2.14564e-12
1.83543e-11
3.27774e-12
1.76463e-11
4.49747e-12
1.67132e-11
5.80158e-12
1.55403e-11
7.18422e-12
1.41146e-11
8.63196e-12
1.24259e-11
1.01302e-11
1.04667e-11
1.166e-11
8.23327e-12
1.31963e-11
5.72695e-12
1.47083e-11
2.95503e-12
1.61614e-11
-7.86706e-14
1.75049e-11
-3.30067e-12
1.87137e-11
-6.69898e-12
1.95455e-11
-1.01278e-11
1.99243e-11
-1.32513e-11
1.80933e-11
1.15527e-11
-1.51155e-11
-3.95975e-13
2.75226e-12
-9.88981e-13
4.19601e-12
-1.65146e-12
4.75043e-12
-2.3356e-12
4.92063e-12
-3.02587e-12
4.9363e-12
-3.71739e-12
4.92302e-12
-4.40823e-12
4.90453e-12
-5.09753e-12
4.88296e-12
-5.78442e-12
4.85758e-12
-6.46829e-12
4.82834e-12
-7.14841e-12
4.79517e-12
-7.82362e-12
4.75817e-12
-8.49299e-12
4.71758e-12
-9.1562e-12
4.67417e-12
-9.81301e-12
4.6289e-12
-1.04637e-11
4.58429e-12
-1.11096e-11
4.54357e-12
-1.1751e-11
4.50672e-12
-1.23887e-11
4.47536e-12
-1.30243e-11
4.45139e-12
-1.36588e-11
4.43248e-12
-1.42931e-11
4.41764e-12
-1.49285e-11
4.40488e-12
-1.55656e-11
4.389e-12
-1.62039e-11
4.36589e-12
-1.68427e-11
4.32961e-12
-1.74797e-11
4.27345e-12
-1.81115e-11
4.19063e-12
-1.87345e-11
4.07428e-12
-1.93418e-11
3.91641e-12
-1.99274e-11
3.71115e-12
-2.04826e-11
3.45108e-12
-2.09993e-11
3.13174e-12
-2.14676e-11
2.74896e-12
-2.18794e-11
2.30201e-12
-2.22245e-11
1.78933e-12
-2.24947e-11
1.21575e-12
-2.26808e-11
5.83976e-13
-2.27747e-11
-9.98169e-14
-2.27689e-11
-8.2689e-13
-2.2658e-11
-1.59149e-12
-2.24366e-11
-2.3846e-12
-2.21019e-11
-3.19302e-12
-2.16528e-11
-4.01029e-12
-2.10887e-11
-4.82081e-12
-2.0411e-11
-5.61563e-12
-1.96217e-11
-6.38568e-12
-1.8725e-11
-7.12059e-12
-1.77257e-11
-7.81461e-12
-1.66305e-11
-8.46143e-12
-1.54473e-11
-9.05346e-12
-1.41844e-11
-9.58681e-12
-1.28508e-11
-1.00566e-11
-1.14557e-11
-1.04583e-11
-1.00086e-11
-1.07909e-11
-8.51935e-12
-1.10519e-11
-6.99779e-12
-1.12389e-11
-5.4539e-12
-1.13526e-11
-3.89753e-12
-1.1394e-11
-2.33812e-12
-1.13646e-11
-7.8485e-13
-1.12682e-11
7.5388e-13
-1.1109e-11
2.26749e-12
-1.08867e-11
3.75083e-12
-1.06137e-11
5.19923e-12
-1.02959e-11
6.60265e-12
-9.93491e-12
7.9552e-12
-9.53949e-12
9.25375e-12
-9.11615e-12
1.04926e-11
-8.66625e-12
1.16755e-11
-8.20022e-12
1.27902e-11
-7.70572e-12
1.38401e-11
-7.19786e-12
1.48196e-11
-6.66272e-12
1.57256e-11
-6.10609e-12
1.6555e-11
-5.5178e-12
1.7302e-11
-4.89218e-12
1.79605e-11
-4.22355e-12
1.85209e-11
-3.50414e-12
1.89736e-11
-2.72101e-12
1.93072e-11
-1.8683e-12
1.95099e-11
-9.34713e-13
1.9566e-11
8.82113e-14
1.9461e-11
1.20706e-12
1.91781e-11
2.42855e-12
1.87012e-11
3.75467e-12
1.80139e-11
5.18478e-12
1.70997e-11
6.71586e-12
1.59426e-11
8.34142e-12
1.45287e-11
1.00459e-11
1.28459e-11
1.18129e-11
1.08859e-11
1.36199e-11
8.64326e-12
1.54387e-11
6.1181e-12
1.72331e-11
3.31803e-12
1.89609e-11
2.55699e-13
2.05665e-11
-3.03485e-12
2.20036e-11
-6.50424e-12
2.30141e-11
-1.00217e-11
2.34411e-11
-1.3225e-11
2.12957e-11
1.34673e-11
-1.51406e-11
-3.97255e-13
3.15003e-12
-9.92657e-13
4.79228e-12
-1.65631e-12
5.4149e-12
-2.34018e-12
5.60531e-12
-3.0304e-12
5.62736e-12
-3.72234e-12
5.61581e-12
-4.41386e-12
5.59692e-12
-5.1042e-12
5.57416e-12
-5.79232e-12
5.54655e-12
-6.47725e-12
5.51413e-12
-7.15828e-12
5.47704e-12
-7.83437e-12
5.43511e-12
-8.50417e-12
5.38823e-12
-9.1673e-12
5.33816e-12
-9.82399e-12
5.28644e-12
-1.04744e-11
5.23557e-12
-1.11192e-11
5.18917e-12
-1.17593e-11
5.1477e-12
-1.23957e-11
5.11266e-12
-1.30296e-11
5.08617e-12
-1.36629e-11
5.06671e-12
-1.4297e-11
5.05274e-12
-1.49329e-11
5.04169e-12
-1.5572e-11
5.02907e-12
-1.6214e-11
5.00884e-12
-1.68577e-11
4.97434e-12
-1.75021e-11
4.91878e-12
-1.81429e-11
4.83238e-12
-1.87763e-11
4.70872e-12
-1.93962e-11
4.53718e-12
-1.99952e-11
4.31112e-12
-2.05654e-11
4.02212e-12
-2.10974e-11
3.66468e-12
-2.15821e-11
3.23451e-12
-2.20094e-11
2.73019e-12
-2.23704e-11
2.1512e-12
-2.26549e-11
1.50107e-12
-2.28536e-11
7.83445e-13
-2.29585e-11
5.98869e-15
-2.29615e-11
-8.23055e-13
-2.28564e-11
-1.69571e-12
-2.26395e-11
-2.60056e-12
-2.23073e-11
-3.5243e-12
-2.18576e-11
-4.45911e-12
-2.12903e-11
-5.38717e-12
-2.06065e-11
-6.2985e-12
-1.98091e-11
-7.18206e-12
-1.89022e-11
-8.02652e-12
-1.78907e-11
-8.8251e-12
-1.67818e-11
-9.56927e-12
-1.55835e-11
-1.02508e-11
-1.4304e-11
-1.08652e-11
-1.2953e-11
-1.14067e-11
-1.15398e-11
-1.18705e-11
-1.00743e-11
-1.22556e-11
-8.5662e-12
-1.25591e-11
-7.02584e-12
-1.27784e-11
-5.46343e-12
-1.29141e-11
-3.88896e-12
-1.29676e-11
-2.31212e-12
-1.29406e-11
-7.42493e-13
-1.28371e-11
8.11185e-13
-1.2662e-11
2.3397e-12
-1.24146e-11
3.83881e-12
-1.21122e-11
5.2963e-12
-1.17528e-11
6.70907e-12
-1.13471e-11
8.071e-12
-1.09009e-11
9.37846e-12
-1.04231e-11
1.06271e-11
-9.91443e-12
1.18108e-11
-9.38347e-12
1.29352e-11
-8.82986e-12
1.39887e-11
-8.25108e-12
1.49774e-11
-7.65119e-12
1.58926e-11
-7.02108e-12
1.67305e-11
-6.35547e-12
1.74911e-11
-5.65258e-12
1.81634e-11
-4.8957e-12
1.87402e-11
-4.08078e-12
1.92113e-11
-3.19203e-12
1.95661e-11
-2.22294e-12
1.97911e-11
-1.15979e-12
1.98715e-11
7.78263e-15
1.97911e-11
1.28736e-12
1.95355e-11
2.684e-12
1.90853e-11
4.20473e-12
1.84233e-11
5.84668e-12
1.75318e-11
7.60721e-12
1.63959e-11
9.4772e-12
1.49983e-11
1.14433e-11
1.3326e-11
1.34849e-11
1.13688e-11
1.55766e-11
9.11997e-12
1.7687e-11
6.57829e-12
1.97741e-11
3.74852e-12
2.17901e-11
6.42734e-13
2.36717e-11
-2.7133e-12
2.5359e-11
-6.2669e-12
2.65672e-11
-9.89351e-12
2.70671e-11
-1.32015e-11
2.4603e-11
1.54349e-11
-1.51701e-11
-3.97858e-13
3.54836e-12
-9.94522e-13
5.38972e-12
-1.65942e-12
6.08051e-12
-2.34373e-12
6.29034e-12
-3.03442e-12
6.31878e-12
-3.72713e-12
6.30926e-12
-4.41961e-12
6.29015e-12
-5.11103e-12
6.26631e-12
-5.80044e-12
6.2367e-12
-6.48672e-12
6.20115e-12
-7.16878e-12
6.15985e-12
-7.84572e-12
6.11281e-12
-8.5162e-12
6.0595e-12
-9.17952e-12
6.00227e-12
-9.83592e-12
5.94366e-12
-1.04859e-11
5.88642e-12
-1.11296e-11
5.83369e-12
-1.17678e-11
5.78672e-12
-1.24024e-11
5.74817e-12
-1.30346e-11
5.71923e-12
-1.36661e-11
5.69913e-12
-1.42996e-11
5.68716e-12
-1.49361e-11
5.67904e-12
-1.55768e-11
5.67074e-12
-1.62225e-11
5.65547e-12
-1.68721e-11
5.62481e-12
-1.7524e-11
5.57155e-12
-1.81754e-11
5.48455e-12
-1.88206e-11
5.3548e-12
-1.94547e-11
5.17203e-12
-2.00692e-11
4.92643e-12
-2.06562e-11
4.60999e-12
-2.12059e-11
4.21516e-12
-2.17092e-11
3.73863e-12
-2.2155e-11
3.17688e-12
-2.25336e-11
2.53068e-12
-2.2835e-11
1.80341e-12
-2.30489e-11
9.98203e-13
-2.31663e-11
1.24403e-13
-2.31802e-11
-8.08166e-13
-2.30838e-11
-1.79101e-12
-2.28727e-11
-2.81059e-12
-2.25424e-11
-3.85356e-12
-2.20917e-11
-4.90877e-12
-2.15202e-11
-5.95761e-12
-2.08294e-11
-6.98829e-12
-2.00225e-11
-7.98792e-12
-1.91036e-11
-8.94443e-12
-1.80783e-11
-9.84944e-12
-1.69538e-11
-1.06928e-11
-1.57382e-11
-1.14655e-11
-1.44406e-11
-1.2162e-11
-1.30705e-11
-1.2776e-11
-1.16373e-11
-1.3303e-11
-1.01511e-11
-1.3741e-11
-8.6224e-12
-1.40871e-11
-7.06145e-12
-1.43387e-11
-5.47855e-12
-1.44964e-11
-3.88407e-12
-1.45614e-11
-2.28824e-12
-1.45358e-11
-7.00894e-13
-1.44238e-11
8.66989e-13
-1.42293e-11
2.41525e-12
-1.39622e-11
3.92624e-12
-1.36226e-11
5.39393e-12
-1.32199e-11
6.81367e-12
-1.27663e-11
8.18507e-12
-1.22717e-11
9.5007e-12
-1.17381e-11
1.0759e-11
-1.11722e-11
1.19536e-11
-1.05776e-11
1.3082e-11
-9.95783e-12
1.41455e-11
-9.31415e-12
1.51395e-11
-8.64479e-12
1.60626e-11
-7.94382e-12
1.69152e-11
-7.20768e-12
1.76875e-11
-6.42466e-12
1.83756e-11
-5.58346e-12
1.89709e-11
-4.67595e-12
1.94639e-11
-3.68495e-12
1.98426e-11
-2.60167e-12
2.00934e-11
-1.41065e-12
2.02019e-11
-1.0091e-13
2.01525e-11
1.33655e-12
1.99267e-11
2.90965e-12
1.95071e-11
4.62404e-12
1.88746e-11
6.47893e-12
1.8011e-11
8.4705e-12
1.68985e-11
1.05893e-11
1.55201e-11
1.28212e-11
1.38605e-11
1.51438e-11
1.19074e-11
1.75292e-11
9.6526e-12
1.99411e-11
7.09224e-12
2.23339e-11
4.22822e-12
2.46536e-11
1.07171e-12
2.68278e-11
-2.35884e-12
2.87892e-11
-6.01253e-12
3.02205e-11
-9.77074e-12
3.08248e-11
-1.32146e-11
2.80463e-11
1.74773e-11
-1.52579e-11
-3.97858e-13
3.94663e-12
-9.94878e-13
5.98743e-12
-1.66106e-12
6.74731e-12
-2.34651e-12
6.97641e-12
-3.03808e-12
7.01097e-12
-3.73181e-12
7.00361e-12
-4.42554e-12
6.98449e-12
-5.11824e-12
6.95963e-12
-5.80906e-12
6.92814e-12
-6.497e-12
6.88972e-12
-7.18052e-12
6.84404e-12
-7.85843e-12
6.79141e-12
-8.52966e-12
6.73146e-12
-9.19356e-12
6.66694e-12
-9.84982e-12
6.6007e-12
-1.0499e-11
6.53644e-12
-1.11415e-11
6.47702e-12
-1.17776e-11
6.42371e-12
-1.24097e-11
6.3811e-12
-1.30398e-11
6.35016e-12
-1.36694e-11
6.32961e-12
-1.43014e-11
6.32009e-12
-1.49382e-11
6.31669e-12
-1.55808e-11
6.31415e-12
-1.62299e-11
6.30548e-12
-1.6886e-11
6.28171e-12
-1.75463e-11
6.23257e-12
-1.82089e-11
6.14788e-12
-1.88679e-11
6.01451e-12
-1.95176e-11
5.8224e-12
-2.01499e-11
5.55947e-12
-2.07561e-11
5.21695e-12
-2.13264e-11
4.78623e-12
-2.18506e-11
4.2636e-12
-2.23177e-11
3.64491e-12
-2.27167e-11
2.93052e-12
-2.30371e-11
2.12482e-12
-2.32683e-11
1.23048e-12
-2.34012e-11
2.58388e-13
-2.34268e-11
-7.81495e-13
-2.33393e-11
-1.87731e-12
-2.31342e-11
-3.01461e-12
-2.28064e-11
-4.18022e-12
-2.23546e-11
-5.35939e-12
-2.17787e-11
-6.53251e-12
-2.10803e-11
-7.68566e-12
-2.02629e-11
-8.80433e-12
-1.93307e-11
-9.87565e-12
-1.82898e-11
-1.08894e-11
-1.7148e-11
-1.18338e-11
-1.59136e-11
-1.26991e-11
-1.4596e-11
-1.34788e-11
-1.32047e-11
-1.41667e-11
-1.17493e-11
-1.47578e-11
-1.02404e-11
-1.52493e-11
-8.68878e-12
-1.56382e-11
-7.10481e-12
-1.59221e-11
-5.49934e-12
-1.61013e-11
-3.88301e-12
-1.61772e-11
-2.26604e-12
-1.61523e-11
-6.58335e-13
-1.6031e-11
9.31871e-13
-1.58189e-11
2.49253e-12
-1.55223e-11
4.0122e-12
-1.51416e-11
5.49758e-12
-1.47047e-11
6.93229e-12
-1.42003e-11
8.31296e-12
-1.36517e-11
9.63652e-12
-1.30611e-11
1.08986e-11
-1.24337e-11
1.20975e-11
-1.17758e-11
1.32351e-11
-1.10949e-11
1.4306e-11
-1.03845e-11
1.53098e-11
-9.64814e-12
1.62444e-11
-8.87793e-12
1.71071e-11
-8.06991e-12
1.78937e-11
-7.21097e-12
1.85997e-11
-6.28918e-12
1.92158e-11
-5.29196e-12
1.97331e-11
-4.20218e-12
2.01394e-11
-3.0081e-12
2.04212e-11
-1.69262e-12
2.05634e-11
-2.43315e-13
2.05475e-11
1.35228e-12
2.03575e-11
3.09937e-12
1.99742e-11
5.00702e-12
1.93762e-11
7.07659e-12
1.85442e-11
9.30206e-12
1.746e-11
1.16729e-11
1.61041e-11
1.41765e-11
1.44598e-11
1.67875e-11
1.25124e-11
1.94759e-11
1.02519e-11
2.2201e-11
7.67169e-12
2.49137e-11
4.77123e-12
2.75537e-11
1.55655e-12
3.00422e-11
-1.95577e-12
3.23013e-11
-5.72463e-12
3.3989e-11
-9.63353e-12
3.47334e-11
-1.32422e-11
3.16544e-11
1.96205e-11
-1.53861e-11
-3.97393e-13
4.34438e-12
-9.94183e-13
6.58484e-12
-1.66156e-12
7.41524e-12
-2.34865e-12
7.66405e-12
-3.04144e-12
7.70432e-12
-3.73633e-12
7.69904e-12
-4.43154e-12
7.68024e-12
-5.12597e-12
7.65461e-12
-5.81854e-12
7.62126e-12
-6.50831e-12
7.58008e-12
-7.19366e-12
7.53001e-12
-7.87294e-12
7.47134e-12
-8.54503e-12
7.40425e-12
-9.2097e-12
7.33234e-12
-9.86617e-12
7.25795e-12
-1.05143e-11
7.1854e-12
-1.1155e-11
7.11856e-12
-1.1789e-11
7.05855e-12
-1.24181e-11
7.01106e-12
-1.30451e-11
6.97801e-12
-1.36725e-11
6.95786e-12
-1.43028e-11
6.95122e-12
-1.49392e-11
6.95385e-12
-1.55836e-11
6.95933e-12
-1.62364e-11
6.95904e-12
-1.68988e-11
6.94489e-12
-1.75687e-11
6.90317e-12
-1.82432e-11
6.82295e-12
-1.89175e-11
6.6895e-12
-1.95846e-11
6.49012e-12
-2.02369e-11
6.21248e-12
-2.08647e-11
5.84546e-12
-2.14582e-11
5.3804e-12
-2.20062e-11
4.81247e-12
-2.24971e-11
4.13665e-12
-2.29194e-11
3.35376e-12
-2.32616e-11
2.46797e-12
-2.35124e-11
1.48233e-12
-2.36622e-11
4.0935e-13
-2.37018e-11
-7.40721e-13
-2.36249e-11
-1.95311e-12
-2.34259e-11
-3.2124e-12
-2.31005e-11
-4.5045e-12
-2.26478e-11
-5.81105e-12
-2.20671e-11
-7.11221e-12
-2.13602e-11
-8.39158e-12
-2.05309e-11
-9.63272e-12
-1.95838e-11
-1.08219e-11
-1.85259e-11
-1.19465e-11
-1.7365e-11
-1.29939e-11
-1.61097e-11
-1.39538e-11
-1.47694e-11
-1.48185e-11
-1.33544e-11
-1.55812e-11
-1.18745e-11
-1.62372e-11
-1.03402e-11
-1.67831e-11
-8.76285e-12
-1.72152e-11
-7.15321e-12
-1.75313e-11
-5.52229e-12
-1.77318e-11
-3.88091e-12
-1.78181e-11
-2.23964e-12
-1.77931e-11
-6.0895e-13
-1.76612e-11
1.00296e-12
-1.74303e-11
2.57703e-12
-1.70959e-11
4.12553e-12
-1.66895e-11
5.62376e-12
-1.62023e-11
7.06974e-12
-1.56457e-11
8.46074e-12
-1.50421e-11
9.7923e-12
-1.4392e-11
1.10634e-11
-1.37041e-11
1.22711e-11
-1.29829e-11
1.34135e-11
-1.22367e-11
1.44901e-11
-1.14606e-11
1.55027e-11
-1.06602e-11
1.64476e-11
-9.82229e-12
1.73231e-11
-8.94503e-12
1.81254e-11
-8.01293e-12
1.88508e-11
-7.0144e-12
1.949e-11
-5.93108e-12
2.0034e-11
-4.74625e-12
2.04707e-11
-3.4449e-12
2.07869e-11
-2.00895e-12
2.09652e-11
-4.21763e-13
2.09905e-11
1.32677e-12
2.0841e-11
3.24866e-12
2.04974e-11
5.35034e-12
1.99389e-11
7.63479e-12
1.91442e-11
1.00962e-11
1.80918e-11
1.27248e-11
1.67626e-11
1.55051e-11
1.51369e-11
1.84126e-11
1.31982e-11
2.14141e-11
1.09334e-11
2.44654e-11
8.33334e-12
2.75135e-11
5.39462e-12
3.04922e-11
2.11875e-12
3.33179e-11
-1.47837e-12
3.58982e-11
-5.37176e-12
3.78822e-11
-9.437e-12
3.87982e-11
-1.32155e-11
3.54324e-11
2.18653e-11
-1.54609e-11
-3.96586e-13
4.74129e-12
-9.9294e-13
7.18179e-12
-1.66127e-12
8.0841e-12
-2.35015e-12
8.35346e-12
-3.04447e-12
8.39915e-12
-3.7408e-12
8.39589e-12
-4.43772e-12
8.37766e-12
-5.13428e-12
8.35168e-12
-5.82909e-12
8.3166e-12
-6.52093e-12
8.27248e-12
-7.20826e-12
8.21794e-12
-7.88943e-12
8.15314e-12
-8.56289e-12
8.07841e-12
-9.22831e-12
7.99848e-12
-9.88496e-12
7.91535e-12
-1.05322e-11
7.83339e-12
-1.11706e-11
7.75773e-12
-1.18018e-11
7.69062e-12
-1.24278e-11
7.63789e-12
-1.30511e-11
7.60212e-12
-1.36754e-11
7.58294e-12
-1.43037e-11
7.58031e-12
-1.4939e-11
7.58996e-12
-1.55844e-11
7.60547e-12
-1.62413e-11
7.61664e-12
-1.691e-11
7.61432e-12
-1.75902e-11
7.58401e-12
-1.82778e-11
7.5112e-12
-1.89686e-11
7.3809e-12
-1.96552e-11
7.17727e-12
-2.03295e-11
6.88742e-12
-2.09816e-11
6.4983e-12
-2.16009e-11
6.00041e-12
-2.21755e-11
5.38784e-12
-2.26929e-11
4.65495e-12
-2.31416e-11
3.80333e-12
-2.35077e-11
2.83509e-12
-2.37811e-11
1.75672e-12
-2.39506e-11
5.79964e-13
-2.4007e-11
-6.83269e-13
-2.39423e-11
-2.0167e-12
-2.37503e-11
-3.40344e-12
-2.34277e-11
-4.82608e-12
-2.29733e-11
-6.26445e-12
-2.2387e-11
-7.6977e-12
-2.16704e-11
-9.10726e-12
-2.08277e-11
-1.04747e-11
-1.98641e-11
-1.17847e-11
-1.87869e-11
-1.30231e-11
-1.76042e-11
-1.4176e-11
-1.63249e-11
-1.52325e-11
-1.49588e-11
-1.6184e-11
-1.35163e-11
-1.70232e-11
-1.2008e-11
-1.77451e-11
-1.04449e-11
-1.83457e-11
-8.83816e-12
-1.88214e-11
-7.19903e-12
-1.917e-11
-5.53861e-12
-1.93918e-11
-3.86834e-12
-1.94879e-11
-2.19959e-12
-1.94613e-11
-5.43452e-13
-1.93168e-11
1.0858e-12
-1.9059e-11
2.69458e-12
-1.8704e-11
4.25657e-12
-1.82509e-11
5.76632e-12
-1.77114e-11
7.2301e-12
-1.71088e-11
8.63371e-12
-1.64451e-11
9.97566e-12
-1.57334e-11
1.12534e-11
-1.49813e-11
1.24667e-11
-1.41957e-11
1.36129e-11
-1.33824e-11
1.47001e-11
-1.25472e-11
1.572e-11
-1.16797e-11
1.66758e-11
-1.07777e-11
1.75654e-11
-9.83424e-12
1.83855e-11
-8.83282e-12
1.91317e-11
-7.76041e-12
1.97949e-11
-6.59424e-12
2.03697e-11
-5.3211e-12
2.08408e-11
-3.91607e-12
2.11945e-11
-2.36272e-12
2.14146e-11
-6.41931e-13
2.1483e-11
1.25825e-12
2.13789e-11
3.3526e-12
2.10813e-11
5.64783e-12
2.05674e-11
8.14835e-12
1.98144e-11
1.08489e-11
1.87999e-11
1.37389e-11
1.75014e-11
1.68032e-11
1.58981e-11
2.00155e-11
1.39709e-11
2.33409e-11
1.17034e-11
2.67327e-11
9.08376e-12
3.01329e-11
6.10387e-12
3.3472e-11
2.764e-12
3.66576e-11
-9.18024e-13
3.95801e-11
-4.94535e-12
4.19092e-11
-9.16749e-12
4.302e-11
-1.31073e-11
3.93717e-11
2.42003e-11
-1.54429e-11
-3.95478e-13
5.13707e-12
-9.91466e-13
7.77838e-12
-1.6605e-12
8.75368e-12
-2.35111e-12
9.04462e-12
-3.04714e-12
9.09571e-12
-3.74535e-12
9.09463e-12
-4.44429e-12
9.07713e-12
-5.14317e-12
9.05109e-12
-5.8406e-12
9.01458e-12
-6.53498e-12
8.96744e-12
-7.2246e-12
8.90817e-12
-7.908e-12
8.83719e-12
-8.58343e-12
8.75451e-12
-9.24978e-12
8.66554e-12
-9.90618e-12
8.57248e-12
-1.05523e-11
8.4803e-12
-1.11884e-11
8.39455e-12
-1.18162e-11
8.31921e-12
-1.24384e-11
8.2609e-12
-1.30577e-11
8.22215e-12
-1.36778e-11
8.20387e-12
-1.43029e-11
8.20617e-12
-1.49369e-11
8.22463e-12
-1.55825e-11
8.25186e-12
-1.62431e-11
8.27793e-12
-1.6919e-11
8.29086e-12
-1.76096e-11
8.27535e-12
-1.83119e-11
8.21406e-12
-1.90204e-11
8.09007e-12
-1.97283e-11
7.88589e-12
-2.04269e-11
7.58671e-12
-2.11059e-11
7.17797e-12
-2.1754e-11
6.64926e-12
-2.23582e-11
5.99281e-12
-2.29055e-11
5.20308e-12
-2.33828e-11
4.28149e-12
-2.37766e-11
3.22978e-12
-2.40751e-11
2.05611e-12
-2.42664e-11
7.72151e-13
-2.43407e-11
-6.08098e-13
-2.42894e-11
-2.06712e-12
-2.41061e-11
-3.58586e-12
-2.37874e-11
-5.144e-12
-2.33316e-11
-6.71948e-12
-2.27391e-11
-8.28944e-12
-2.2012e-11
-9.83364e-12
-2.11545e-11
-1.13316e-11
-2.01726e-11
-1.27659e-11
-1.90738e-11
-1.41213e-11
-1.78669e-11
-1.53824e-11
-1.65613e-11
-1.65376e-11
-1.5167e-11
-1.75779e-11
-1.36945e-11
-1.84951e-11
-1.21553e-11
-1.92838e-11
-1.05607e-11
-1.99398e-11
-8.92181e-12
-2.04598e-11
-7.25036e-12
-2.0841e-11
-5.55821e-12
-2.10834e-11
-3.85736e-12
-2.11883e-11
-2.15926e-12
-2.11589e-11
-4.74771e-13
-2.10007e-11
1.18726e-12
-2.07204e-11
2.81157e-12
-2.03277e-11
4.39246e-12
-1.98312e-11
5.92645e-12
-1.92448e-11
7.40067e-12
-1.85825e-11
8.81446e-12
-1.78584e-11
1.0163e-11
-1.70815e-11
1.1449e-11
-1.62669e-11
1.26703e-11
-1.54165e-11
1.38295e-11
-1.45412e-11
1.49221e-11
-1.36395e-11
1.59493e-11
-1.27064e-11
1.69174e-11
-1.17456e-11
1.78209e-11
-1.07375e-11
1.86586e-11
-9.67035e-12
1.94252e-11
-8.52696e-12
2.01178e-11
-7.28681e-12
2.07227e-11
-5.92599e-12
2.12283e-11
-4.42166e-12
2.1624e-11
-2.75843e-12
2.18896e-11
-9.07538e-13
2.20067e-11
1.14119e-12
2.19548e-11
3.40453e-12
2.17087e-11
5.89385e-12
2.1246e-11
8.61093e-12
2.05425e-11
1.15522e-11
1.95724e-11
1.47088e-11
1.83116e-11
1.80637e-11
1.67362e-11
2.15907e-11
1.48251e-11
2.5252e-11
1.25578e-11
2.89999e-11
9.91907e-12
3.27716e-11
6.89741e-12
3.64935e-11
3.49105e-12
4.00638e-11
-2.78495e-13
4.33493e-11
-4.45023e-12
4.60805e-11
-8.84048e-12
4.74097e-11
-1.2956e-11
4.34867e-11
2.66288e-11
-1.53851e-11
-3.94107e-13
5.5315e-12
-9.89759e-13
8.3747e-12
-1.65938e-12
9.42391e-12
-2.35168e-12
9.73753e-12
-3.04956e-12
9.79419e-12
-3.74991e-12
9.79557e-12
-4.45123e-12
9.77903e-12
-5.15263e-12
9.75308e-12
-5.85289e-12
9.71543e-12
-6.55032e-12
9.66549e-12
-7.24288e-12
9.60136e-12
-7.92885e-12
9.52381e-12
-8.60637e-12
9.4327e-12
-9.27394e-12
9.33381e-12
-9.93003e-12
9.22927e-12
-1.05747e-11
9.12571e-12
-1.12082e-11
9.02875e-12
-1.18322e-11
8.94392e-12
-1.24496e-11
8.87904e-12
-1.30635e-11
8.83678e-12
-1.36785e-11
8.81967e-12
-1.42993e-11
8.82775e-12
-1.49306e-11
8.85666e-12
-1.55765e-11
8.89852e-12
-1.62405e-11
8.94263e-12
-1.69236e-11
8.97469e-12
-1.76254e-11
8.97784e-12
-1.83429e-11
8.93226e-12
-1.90709e-11
8.81879e-12
-1.98021e-11
8.6178e-12
-2.05279e-11
8.31324e-12
-2.1237e-11
7.88782e-12
-2.19171e-11
7.33009e-12
-2.25546e-11
6.63108e-12
-2.31354e-11
5.78456e-12
-2.36451e-11
4.79199e-12
-2.40698e-11
3.6552e-12
-2.43963e-11
2.38327e-12
-2.46114e-11
9.88044e-13
-2.47045e-11
-5.14366e-13
-2.46675e-11
-2.10346e-12
-2.44938e-11
-3.75897e-12
-2.41796e-11
-5.45754e-12
-2.37233e-11
-7.17517e-12
-2.31246e-11
-8.88764e-12
-2.23864e-11
-1.05713e-11
-2.15133e-11
-1.22042e-11
-2.05112e-11
-1.37675e-11
-1.93888e-11
-1.52432e-11
-1.81555e-11
-1.66152e-11
-1.68212e-11
-1.78714e-11
-1.53962e-11
-1.90023e-11
-1.38914e-11
-1.99994e-11
-1.23183e-11
-2.08563e-11
-1.06892e-11
-2.15684e-11
-9.01589e-12
-2.21324e-11
-7.30985e-12
-2.25464e-11
-5.58352e-12
-2.28092e-11
-3.84953e-12
-2.29216e-11
-2.11975e-12
-2.2888e-11
-4.05272e-13
-2.27146e-11
1.28428e-12
-2.24094e-11
2.93297e-12
-2.19758e-11
4.53884e-12
-2.14365e-11
6.08619e-12
-2.07917e-11
7.57733e-12
-2.00732e-11
9.00521e-12
-1.92859e-11
1.03654e-11
-1.84414e-11
1.16583e-11
-1.75595e-11
1.28851e-11
-1.66431e-11
1.40473e-11
-1.57032e-11
1.51467e-11
-1.47386e-11
1.61846e-11
-1.37441e-11
1.71621e-11
-1.27229e-11
1.80805e-11
-1.16557e-11
1.89376e-11
-1.05274e-11
1.97298e-11
-9.31908e-12
2.045e-11
-8.00697e-12
2.10896e-11
-6.56543e-12
2.16372e-11
-4.96916e-12
2.20761e-11
-3.19719e-12
2.2392e-11
-1.22332e-12
2.25623e-11
9.70954e-13
2.25654e-11
3.40153e-12
2.23758e-11
6.0835e-12
2.19689e-11
9.01787e-12
2.1318e-11
1.22031e-11
2.03965e-11
1.56302e-11
1.91783e-11
1.92819e-11
1.76365e-11
2.31325e-11
1.57466e-11
2.71419e-11
1.34855e-11
3.12609e-11
1.08332e-11
3.54238e-11
7.77377e-12
3.95527e-11
4.29907e-12
4.35381e-11
4.09556e-13
4.72383e-11
-3.88345e-12
5.03729e-11
-8.44613e-12
5.19718e-11
-1.27391e-11
4.77791e-11
2.91757e-11
-1.52867e-11
-3.92536e-13
5.9244e-12
-9.87631e-13
8.97053e-12
-1.65793e-12
1.00949e-11
-2.35184e-12
1.04321e-11
-3.05169e-12
1.04947e-11
-3.75426e-12
1.04988e-11
-4.45814e-12
1.04836e-11
-5.16239e-12
1.0458e-11
-5.86579e-12
1.04195e-11
-6.56659e-12
1.03669e-11
-7.26259e-12
1.0298e-11
-7.95166e-12
1.02135e-11
-8.63154e-12
1.01132e-11
-9.30036e-12
1.00033e-11
-9.95624e-12
9.88581e-12
-1.05992e-11
9.76929e-12
-1.12291e-11
9.65941e-12
-1.1848e-11
9.56344e-12
-1.2459e-11
9.49081e-12
-1.30662e-11
9.44468e-12
-1.36745e-11
9.42873e-12
-1.42902e-11
9.4442e-12
-1.49185e-11
9.48568e-12
-1.55641e-11
9.54487e-12
-1.62314e-11
9.61074e-12
-1.69219e-11
9.66588e-12
-1.76354e-11
9.69212e-12
-1.83693e-11
9.66698e-12
-1.91188e-11
9.56906e-12
-1.98762e-11
9.37594e-12
-2.06322e-11
9.06999e-12
-2.13748e-11
8.63123e-12
-2.20911e-11
8.0471e-12
-2.27657e-11
7.30635e-12
-2.33833e-11
6.40281e-12
-2.39292e-11
5.3385e-12
-2.43875e-11
4.1141e-12
-2.47442e-11
2.7405e-12
-2.49858e-11
1.23019e-12
-2.51004e-11
-3.9926e-13
-2.50798e-11
-2.12368e-12
-2.49168e-11
-3.92148e-12
-2.46073e-11
-5.76661e-12
-2.41496e-11
-7.63248e-12
-2.35436e-11
-9.49323e-12
-2.27927e-11
-1.13217e-11
-2.1902e-11
-1.30944e-11
-2.08781e-11
-1.47909e-11
-1.97299e-11
-1.63909e-11
-1.84675e-11
-1.78771e-11
-1.71015e-11
-1.92368e-11
-1.56431e-11
-2.04601e-11
-1.41032e-11
-2.15387e-11
-1.24936e-11
-2.24652e-11
-1.08273e-11
-2.32341e-11
-9.11642e-12
-2.38426e-11
-7.37298e-12
-2.42891e-11
-5.60956e-12
-2.45719e-11
-3.83919e-12
-2.46913e-11
-2.07439e-12
-2.46522e-11
-3.27232e-13
-2.44611e-11
1.38804e-12
-2.4124e-11
3.07047e-12
-2.36577e-11
4.6924e-12
-2.30579e-11
6.26752e-12
-2.23664e-11
7.77417e-12
-2.15796e-11
9.21084e-12
-2.07223e-11
1.05827e-11
-1.98131e-11
1.18841e-11
-1.88606e-11
1.3116e-11
-1.78749e-11
1.42836e-11
-1.68706e-11
1.53882e-11
-1.58431e-11
1.64347e-11
-1.47905e-11
1.74236e-11
-1.37117e-11
1.83576e-11
-1.25897e-11
1.92354e-11
-1.14051e-11
2.00534e-11
-1.01371e-11
2.08051e-11
-8.75848e-12
2.14834e-11
-7.24363e-12
2.2075e-11
-5.5606e-12
2.25645e-11
-3.68647e-12
2.29338e-11
-1.59242e-12
2.31643e-11
7.40604e-13
2.32282e-11
3.33774e-12
2.3101e-11
6.21082e-12
2.27562e-11
9.36273e-12
2.21651e-11
1.27943e-11
2.12994e-11
1.6496e-11
2.01293e-11
2.04521e-11
1.86262e-11
2.46357e-11
1.67623e-11
2.90057e-11
1.45108e-11
3.35123e-11
1.18479e-11
3.80864e-11
8.75305e-12
4.26471e-11
5.21134e-12
4.70792e-11
1.2158e-12
5.12332e-11
-3.21364e-12
5.48017e-11
-7.94347e-12
5.6701e-11
-1.24079e-11
5.22429e-11
3.18255e-11
-1.50583e-11
-3.90733e-13
6.31554e-12
-9.84958e-13
9.56557e-12
-1.65602e-12
1.07667e-11
-2.35144e-12
1.11283e-11
-3.05329e-12
1.11973e-11
-3.75817e-12
1.12044e-11
-4.46471e-12
1.11908e-11
-5.17203e-12
1.1166e-11
-5.87894e-12
1.11271e-11
-6.5835e-12
1.10722e-11
-7.2834e-12
1.09986e-11
-7.976e-12
1.09068e-11
-8.65877e-12
1.07967e-11
-9.32912e-12
1.06743e-11
-9.9848e-12
1.05421e-11
-1.06255e-11
1.04107e-11
-1.12515e-11
1.02861e-11
-1.18644e-11
1.0177e-11
-1.24678e-11
1.00949e-11
-1.30673e-11
1.00448e-11
-1.36681e-11
1.00303e-11
-1.42769e-11
1.00537e-11
-1.49012e-11
1.01107e-11
-1.55458e-11
1.01903e-11
-1.62157e-11
1.02815e-11
-1.69137e-11
1.03647e-11
-1.76396e-11
1.04189e-11
-1.83918e-11
1.04199e-11
-1.91647e-11
1.03428e-11
-1.99512e-11
1.01632e-11
-2.07412e-11
9.86071e-12
-2.15209e-11
9.41174e-12
-2.22768e-11
8.8036e-12
-2.2992e-11
8.02226e-12
-2.36504e-11
7.06174e-12
-2.42355e-11
5.9241e-12
-2.47305e-11
4.60958e-12
-2.51204e-11
3.1308e-12
-2.53907e-11
1.50087e-12
-2.55298e-11
-2.59845e-13
-2.55274e-11
-2.12572e-12
-2.5376e-11
-4.07263e-12
-2.50713e-11
-6.071e-12
-2.46115e-11
-8.09185e-12
-2.39974e-11
-1.01069e-11
-2.32323e-11
-1.20864e-11
-2.23217e-11
-1.40046e-11
-2.12735e-11
-1.58387e-11
-2.00973e-11
-1.75666e-11
-1.88034e-11
-1.91705e-11
-1.74029e-11
-2.06367e-11
-1.59077e-11
-2.19547e-11
-1.43298e-11
-2.31159e-11
-1.26812e-11
-2.4113e-11
-1.09747e-11
-2.49399e-11
-9.22285e-12
-2.55937e-11
-7.43859e-12
-2.60727e-11
-5.63495e-12
-2.63748e-11
-3.82496e-12
-2.65007e-11
-2.02167e-12
-2.64548e-11
-2.38084e-13
-2.62441e-11
1.5154e-12
-2.58769e-11
3.21512e-12
-2.53569e-11
4.87585e-12
-2.47182e-11
6.46511e-12
-2.39553e-11
7.99119e-12
-2.31054e-11
9.44499e-12
-2.21759e-11
1.08239e-11
-2.11919e-11
1.21289e-11
-2.01655e-11
1.33687e-11
-1.91146e-11
1.45411e-11
-1.80429e-11
1.56508e-11
-1.69528e-11
1.67052e-11
-1.58447e-11
1.77045e-11
-1.47111e-11
1.86531e-11
-1.35382e-11
1.95495e-11
-1.23014e-11
2.03944e-11
-1.09819e-11
2.11821e-11
-9.54605e-12
2.19025e-11
-7.96377e-12
2.25429e-11
-6.20074e-12
2.30875e-11
-4.2309e-12
2.3519e-11
-2.02379e-12
2.3812e-11
4.47691e-13
2.39444e-11
3.20539e-12
2.38874e-11
6.26793e-12
2.36117e-11
9.63851e-12
2.30877e-11
1.33183e-11
2.22842e-11
1.72996e-11
2.11689e-11
2.15675e-11
1.97106e-11
2.60939e-11
1.7878e-11
3.08382e-11
1.56414e-11
3.57486e-11
1.29723e-11
4.07551e-11
9.8456e-12
4.57732e-11
6.24101e-12
5.06832e-11
2.14728e-12
5.53263e-11
-2.42223e-12
5.93706e-11
-7.31502e-12
6.15932e-11
-1.19553e-11
5.68826e-11
3.4569e-11
-1.46994e-11
-3.88484e-13
6.70448e-12
-9.81686e-13
1.01596e-11
-1.65352e-12
1.14394e-11
-2.35034e-12
1.18259e-11
-3.05422e-12
1.1902e-11
-3.76146e-12
1.19124e-11
-4.47081e-12
1.19009e-11
-5.18138e-12
1.18773e-11
-5.89209e-12
1.18385e-11
-6.60088e-12
1.17817e-11
-7.30541e-12
1.17038e-11
-8.00217e-12
1.16042e-11
-8.68821e-12
1.14833e-11
-9.3606e-12
1.13473e-11
-1.00165e-11
1.11987e-11
-1.06549e-11
1.10497e-11
-1.12762e-11
1.0908e-11
-1.18826e-11
1.07841e-11
-1.24777e-11
1.06907e-11
-1.30675e-11
1.06353e-11
-1.36596e-11
1.06231e-11
-1.42607e-11
1.06555e-11
-1.4879e-11
1.07298e-11
-1.55218e-11
1.08339e-11
-1.61939e-11
1.09544e-11
-1.68991e-11
1.10707e-11
-1.76383e-11
1.11589e-11
-1.841e-11
1.11925e-11
-1.92088e-11
1.11424e-11
-2.0027e-11
1.09822e-11
-2.08534e-11
1.06879e-11
-2.16738e-11
1.02328e-11
-2.24734e-11
9.6038e-12
-2.32335e-11
8.78294e-12
-2.39372e-11
7.76595e-12
-2.45656e-11
6.55296e-12
-2.51016e-11
5.14597e-12
-2.55286e-11
3.5582e-12
-2.58307e-11
1.80329e-12
-2.59959e-11
-9.44005e-14
-2.60133e-11
-2.10805e-12
-2.58745e-11
-4.21108e-12
-2.5575e-11
-6.37016e-12
-2.51127e-11
-8.55373e-12
-2.44893e-11
-1.07299e-11
-2.37088e-11
-1.28665e-11
-2.27768e-11
-1.49361e-11
-2.17018e-11
-1.69132e-11
-2.04947e-11
-1.87732e-11
-1.91666e-11
-2.04981e-11
-1.77288e-11
-2.20739e-11
-1.61939e-11
-2.3489e-11
-1.45746e-11
-2.47346e-11
-1.28838e-11
-2.58033e-11
-1.1134e-11
-2.6689e-11
-9.33815e-12
-2.73889e-11
-7.50974e-12
-2.79005e-11
-5.66241e-12
-2.82215e-11
-3.80959e-12
-2.83529e-11
-1.9649e-12
-2.82989e-11
-1.42515e-13
-2.80659e-11
1.63837e-12
-2.76573e-11
3.38558e-12
-2.71036e-11
5.06063e-12
-2.63929e-11
6.68158e-12
-2.55759e-11
8.22316e-12
-2.46467e-11
9.69119e-12
-2.36437e-11
1.10821e-11
-2.25825e-11
1.23969e-11
-2.14801e-11
1.3638e-11
-2.03556e-11
1.4813e-11
-1.92177e-11
1.59282e-11
-1.80679e-11
1.69886e-11
-1.69051e-11
1.79981e-11
-1.57204e-11
1.89599e-11
-1.45e-11
1.98808e-11
-1.32221e-11
2.07539e-11
-1.18548e-11
2.15762e-11
-1.03681e-11
2.23398e-11
-8.72714e-12
2.30326e-11
-6.89328e-12
2.36374e-11
-4.83563e-12
2.41339e-11
-2.52022e-12
2.44985e-11
8.31641e-14
2.47044e-11
2.99944e-12
2.47248e-11
6.24752e-12
2.45263e-11
9.83703e-12
2.40769e-11
1.37677e-11
2.33431e-11
1.80334e-11
2.22903e-11
2.26203e-11
2.08845e-11
2.74996e-11
1.90903e-11
3.26321e-11
1.68746e-11
3.79639e-11
1.42047e-11
4.34244e-11
1.10508e-11
4.89266e-11
7.38713e-12
5.43462e-11
3.19698e-12
5.95159e-11
-1.52565e-12
6.40927e-11
-6.59375e-12
6.66607e-11
-1.14427e-11
6.17311e-11
3.74341e-11
-1.43084e-11
-3.85401e-13
7.09037e-12
-9.77498e-13
1.07526e-11
-1.65019e-12
1.21129e-11
-2.34843e-12
1.25249e-11
-3.05439e-12
1.26087e-11
-3.76397e-12
1.26228e-11
-4.47616e-12
1.26139e-11
-5.19024e-12
1.25921e-11
-5.90523e-12
1.25542e-11
-6.61876e-12
1.24959e-11
-7.32861e-12
1.24143e-11
-8.03052e-12
1.23068e-11
-8.72068e-12
1.21741e-11
-9.39544e-12
1.20227e-11
-1.00519e-11
1.18558e-11
-1.06883e-11
1.16867e-11
-1.13043e-11
1.15247e-11
-1.1903e-11
1.13834e-11
-1.24889e-11
1.12773e-11
-1.3068e-11
1.12151e-11
-1.36489e-11
1.12048e-11
-1.42408e-11
1.12482e-11
-1.48519e-11
1.13416e-11
-1.5491e-11
1.14738e-11
-1.61645e-11
1.16287e-11
-1.68769e-11
1.17839e-11
-1.76298e-11
1.19126e-11
-1.84226e-11
1.1986e-11
-1.92485e-11
1.1969e-11
-2.01015e-11
1.18359e-11
-2.09668e-11
1.15539e-11
-2.18325e-11
1.10991e-11
-2.26796e-11
1.04515e-11
-2.34898e-11
9.59372e-12
-2.42443e-11
8.52094e-12
-2.49213e-11
7.23038e-12
-2.5503e-11
5.72811e-12
-2.5971e-11
4.02656e-12
-2.63093e-11
2.14195e-12
-2.65038e-11
1.00507e-13
-2.65424e-11
-2.06908e-12
-2.64176e-11
-4.33544e-12
-2.61241e-11
-6.66325e-12
-2.56594e-11
-9.01786e-12
-2.50258e-11
-1.1363e-11
-2.4228e-11
-1.36637e-11
-2.3273e-11
-1.58906e-11
-2.21697e-11
-1.80159e-11
-2.0929e-11
-2.00134e-11
-1.95631e-11
-2.18635e-11
-1.80847e-11
-2.35518e-11
-1.65066e-11
-2.50665e-11
-1.48424e-11
-2.63983e-11
-1.31055e-11
-2.75396e-11
-1.1309e-11
-2.8485e-11
-9.46614e-12
-2.92312e-11
-7.59058e-12
-2.97755e-11
-5.69629e-12
-3.01153e-11
-3.79735e-12
-3.02513e-11
-1.90806e-12
-3.01877e-11
-4.26352e-14
-2.99309e-11
1.78486e-12
-2.94844e-11
3.55219e-12
-2.88706e-11
5.27105e-12
-2.81114e-11
6.9059e-12
-2.72104e-11
8.47507e-12
-2.62155e-11
9.95606e-12
-2.51243e-11
1.13581e-11
-2.39843e-11
1.26797e-11
-2.28015e-11
1.3925e-11
-2.16006e-11
1.51018e-11
-2.03942e-11
1.62186e-11
-1.91845e-11
1.72836e-11
-1.79699e-11
1.83034e-11
-1.67401e-11
1.92823e-11
-1.54786e-11
2.02226e-11
-1.41622e-11
2.11246e-11
-1.27566e-11
2.19855e-11
-1.12288e-11
2.27949e-11
-9.53632e-12
2.3543e-11
-7.64135e-12
2.42112e-11
-5.50372e-12
2.47779e-11
-3.08691e-12
2.5219e-11
-3.58117e-13
2.55068e-11
2.71158e-12
2.56107e-11
6.14351e-12
2.5498e-11
9.94968e-12
2.5132e-11
1.41335e-11
2.44769e-11
1.86884e-11
2.34958e-11
2.36012e-11
2.21497e-11
2.88455e-11
2.04013e-11
3.43801e-11
1.82125e-11
4.01522e-11
1.55484e-11
4.60881e-11
1.23724e-11
5.2102e-11
8.65482e-12
5.80634e-11
4.36847e-12
6.38017e-11
-5.052e-13
6.89659e-11
-5.7711e-12
7.19262e-11
-1.08525e-11
6.6812e-11
4.04575e-11
-1.38765e-11
-3.81115e-13
7.47199e-12
-9.71879e-13
1.13442e-11
-1.64571e-12
1.27875e-11
-2.34568e-12
1.32257e-11
-3.05382e-12
1.33176e-11
-3.76572e-12
1.33354e-11
-4.4808e-12
1.33297e-11
-5.19861e-12
1.33106e-11
-5.91852e-12
1.32748e-11
-6.63767e-12
1.32157e-11
-7.35361e-12
1.31309e-11
-8.06149e-12
1.30153e-11
-8.75691e-12
1.28702e-11
-9.43497e-12
1.27013e-11
-1.00922e-11
1.25136e-11
-1.07265e-11
1.23216e-11
-1.13371e-11
1.21359e-11
-1.19269e-11
1.1974e-11
-1.25016e-11
1.18527e-11
-1.30685e-11
1.17826e-11
-1.36366e-11
1.17736e-11
-1.42167e-11
1.1829e-11
-1.48186e-11
1.19443e-11
-1.54526e-11
1.21085e-11
-1.61262e-11
1.2303e-11
-1.68453e-11
1.25037e-11
-1.76128e-11
1.26808e-11
-1.84275e-11
1.28013e-11
-1.92838e-11
1.28259e-11
-2.01735e-11
1.27262e-11
-2.10822e-11
1.24632e-11
-2.19963e-11
1.20138e-11
-2.28951e-11
1.13508e-11
-2.37595e-11
1.04587e-11
-2.4568e-11
9.33006e-12
-2.52982e-11
7.9611e-12
-2.59295e-11
6.35993e-12
-2.64423e-11
4.5399e-12
-2.68198e-11
2.51988e-12
-2.70463e-11
3.27597e-13
-2.71088e-11
-2.00599e-12
-2.69991e-11
-4.44455e-12
-2.67117e-11
-6.95003e-12
-2.62446e-11
-9.48433e-12
-2.55998e-11
-1.20071e-11
-2.47827e-11
-1.44801e-11
-2.38016e-11
-1.6871e-11
-2.26669e-11
-1.915e-11
-2.13898e-11
-2.12899e-11
-1.99835e-11
-2.32694e-11
-1.84616e-11
-2.50732e-11
-1.68379e-11
-2.66897e-11
-1.51262e-11
-2.81096e-11
-1.33402e-11
-2.93252e-11
-1.14935e-11
-3.03312e-11
-9.60003e-12
-3.11243e-11
-7.67364e-12
-3.17015e-11
-5.72864e-12
-3.20599e-11
-3.77984e-12
-3.21997e-11
-1.84257e-12
-3.21246e-11
6.86165e-14
-3.18417e-11
1.9348e-12
-3.13502e-11
3.75052e-12
-3.06859e-11
5.48745e-12
-2.98479e-11
7.16103e-12
-2.88835e-11
8.74038e-12
-2.77944e-11
1.02424e-11
-2.66259e-11
1.16491e-11
-2.53906e-11
1.29787e-11
-2.41306e-11
1.42268e-11
-2.28484e-11
1.54055e-11
-2.15726e-11
1.65224e-11
-2.03012e-11
1.75898e-11
-1.90371e-11
1.86182e-11
-1.77683e-11
1.96131e-11
-1.64733e-11
2.05765e-11
-1.51253e-11
2.15106e-11
-1.36904e-11
2.24105e-11
-1.21285e-11
2.32719e-11
-1.03975e-11
2.40796e-11
-8.449e-12
2.48158e-11
-6.24002e-12
2.54595e-11
-3.73073e-12
2.59839e-11
-8.82638e-13
2.6361e-11
2.33434e-12
2.65571e-11
5.94724e-12
2.65363e-11
9.97031e-12
2.62629e-11
1.44067e-11
2.56961e-11
1.9255e-11
2.47959e-11
2.45011e-11
2.35201e-11
3.01209e-11
2.18279e-11
3.6072e-11
1.96786e-11
4.2301e-11
1.70319e-11
4.87343e-11
1.38494e-11
5.52841e-11
1.00904e-11
6.1822e-11
5.71778e-12
6.8174e-11
7.1981e-13
7.39635e-11
-4.76373e-12
7.74093e-11
-1.00818e-11
7.21297e-11
4.36224e-11
-1.32472e-11
-3.75328e-13
7.84779e-12
-9.64315e-13
1.1934e-11
-1.63982e-12
1.34636e-11
-2.34202e-12
1.39285e-11
-3.05249e-12
1.40287e-11
-3.76678e-12
1.40503e-11
-4.48502e-12
1.40486e-11
-5.20704e-12
1.40333e-11
-5.93246e-12
1.40009e-11
-6.65827e-12
1.39422e-11
-7.38155e-12
1.38548e-11
-8.09652e-12
1.37309e-11
-8.79826e-12
1.35726e-11
-9.48081e-12
1.33845e-11
-1.01396e-11
1.3173e-11
-1.07716e-11
1.29543e-11
-1.13762e-11
1.27412e-11
-1.19565e-11
1.25549e-11
-1.25184e-11
1.24153e-11
-1.30703e-11
1.23352e-11
-1.36228e-11
1.23268e-11
-1.41881e-11
1.23951e-11
-1.47781e-11
1.25349e-11
-1.54043e-11
1.27353e-11
-1.60772e-11
1.29766e-11
-1.68021e-11
1.32292e-11
-1.75855e-11
1.34647e-11
-1.8423e-11
1.36394e-11
-1.93126e-11
1.3716e-11
-2.02419e-11
1.3656e-11
-2.11981e-11
1.34199e-11
-2.21643e-11
1.29805e-11
-2.312e-11
1.23071e-11
-2.40438e-11
1.1383e-11
-2.4911e-11
1.01979e-11
-2.56992e-11
8.74988e-12
-2.63847e-11
7.0461e-12
-2.69463e-11
5.10224e-12
-2.73655e-11
2.93979e-12
-2.76258e-11
5.88623e-13
-2.77138e-11
-1.91726e-12
-2.76197e-11
-4.53786e-12
-2.73377e-11
-7.23119e-12
-2.68664e-11
-9.95486e-12
-2.62083e-11
-1.26644e-11
-2.53694e-11
-1.53183e-11
-2.43587e-11
-1.7881e-11
-2.31883e-11
-2.03198e-11
-2.18715e-11
-2.2606e-11
-2.04226e-11
-2.47178e-11
-1.88556e-11
-2.66398e-11
-1.71841e-11
-2.83609e-11
-1.54221e-11
-2.98712e-11
-1.35841e-11
-3.1163e-11
-1.1684e-11
-3.2231e-11
-9.73579e-12
-3.30722e-11
-7.75415e-12
-3.36828e-11
-5.75429e-12
-3.40595e-11
-3.75198e-12
-3.42017e-11
-1.76368e-12
-3.41126e-11
1.93294e-13
-3.37983e-11
2.10823e-12
-3.32648e-11
3.9529e-12
-3.25302e-11
5.73727e-12
-3.16318e-11
7.4298e-12
-3.05756e-11
9.03558e-12
-2.93996e-11
1.05457e-11
-2.81355e-11
1.19637e-11
-2.6808e-11
1.32923e-11
-2.54586e-11
1.45403e-11
-2.40959e-11
1.57175e-11
-2.27494e-11
1.68335e-11
-2.14168e-11
1.79047e-11
-2.0108e-11
1.89387e-11
-1.8802e-11
1.99446e-11
-1.74789e-11
2.09325e-11
-1.6113e-11
2.19008e-11
-1.46586e-11
2.28469e-11
-1.30745e-11
2.37628e-11
-1.13133e-11
2.46372e-11
-9.32335e-12
2.54511e-11
-7.054e-12
2.61803e-11
-4.46006e-12
2.67977e-11
-1.50013e-12
2.72737e-11
1.85816e-12
2.75713e-11
5.6494e-12
2.76539e-11
9.88751e-12
2.74822e-11
1.45781e-11
2.70149e-11
1.9722e-11
2.62087e-11
2.5307e-11
2.50191e-11
3.13102e-11
2.34006e-11
3.76901e-11
2.13084e-11
4.4393e-11
1.86951e-11
5.13474e-11
1.55144e-11
5.84645e-11
1.17169e-11
6.56193e-11
7.26326e-12
7.26273e-11
2.13238e-12
7.9094e-11
-3.54352e-12
8.30848e-11
-9.09197e-12
7.76777e-11
4.69115e-11
-1.23816e-11
-3.67719e-13
8.21593e-12
-9.54396e-13
1.25214e-11
-1.63234e-12
1.41422e-11
-2.3373e-12
1.46341e-11
-3.05026e-12
1.47423e-11
-3.76697e-12
1.47677e-11
-4.48847e-12
1.47707e-11
-5.21507e-12
1.47605e-11
-5.94671e-12
1.47331e-11
-6.68031e-12
1.46764e-11
-7.41243e-12
1.45876e-11
-8.13627e-12
1.44553e-11
-8.84596e-12
1.42829e-11
-9.53412e-12
1.40734e-11
-1.01953e-11
1.38349e-11
-1.08254e-11
1.35851e-11
-1.14233e-11
1.33398e-11
-1.19924e-11
1.31247e-11
-1.2539e-11
1.29626e-11
-1.30731e-11
1.287e-11
-1.36066e-11
1.2861e-11
-1.41536e-11
1.29426e-11
-1.47288e-11
1.31108e-11
-1.53449e-11
1.3352e-11
-1.60149e-11
1.36471e-11
-1.67459e-11
1.39607e-11
-1.75443e-11
1.42636e-11
-1.8407e-11
1.45026e-11
-1.93313e-11
1.46408e-11
-2.03037e-11
1.46289e-11
-2.13119e-11
1.44286e-11
-2.23353e-11
1.40045e-11
-2.3353e-11
1.33253e-11
-2.43412e-11
1.23718e-11
-2.52733e-11
1.11307e-11
-2.61248e-11
9.60214e-12
-2.68702e-11
7.7923e-12
-2.7486e-11
5.71885e-12
-2.79522e-11
3.4069e-12
-2.82511e-11
8.88434e-13
-2.83679e-11
-1.79954e-12
-2.82923e-11
-4.61258e-12
-2.8018e-11
-7.50449e-12
-2.75437e-11
-1.04283e-11
-2.68725e-11
-1.33347e-11
-2.60113e-11
-1.61787e-11
-2.49702e-11
-1.89213e-11
-2.37624e-11
-2.1527e-11
-2.24027e-11
-2.39652e-11
-2.09062e-11
-2.62137e-11
-1.92883e-11
-2.82573e-11
-1.75638e-11
-3.0085e-11
-1.57478e-11
-3.1687e-11
-1.38546e-11
-3.30559e-11
-1.18984e-11
-3.4187e-11
-9.89308e-12
-3.50773e-11
-7.85355e-12
-3.57221e-11
-5.7955e-12
-3.61172e-11
-3.73542e-12
-3.62614e-11
-1.69045e-12
-3.61572e-11
3.21124e-13
-3.58095e-11
2.28183e-12
-3.52251e-11
4.18364e-12
-3.44316e-11
5.99741e-12
-3.34451e-11
7.72321e-12
-3.23008e-11
9.35151e-12
-3.10273e-11
1.08718e-11
-2.96552e-11
1.23012e-11
-2.82368e-11
1.36289e-11
-2.67857e-11
1.48766e-11
-2.53432e-11
1.60495e-11
-2.39219e-11
1.71624e-11
-2.25292e-11
1.82316e-11
-2.11768e-11
1.92698e-11
-1.98399e-11
2.02891e-11
-1.84979e-11
2.12972e-11
-1.71208e-11
2.22976e-11
-1.56587e-11
2.32906e-11
-1.40674e-11
2.42656e-11
-1.22882e-11
2.52108e-11
-1.02685e-11
2.61058e-11
-7.94896e-12
2.69283e-11
-5.28261e-12
2.76464e-11
-2.21827e-12
2.82287e-11
1.2758e-12
2.8638e-11
5.23995e-12
2.88353e-11
9.69003e-12
2.87767e-11
1.46365e-11
2.84189e-11
2.00796e-11
2.77165e-11
2.60091e-11
2.66212e-11
3.24052e-11
2.50845e-11
3.92266e-11
2.30553e-11
4.64219e-11
2.04831e-11
5.39194e-11
1.73136e-11
6.16338e-11
1.34893e-11
6.94433e-11
8.96071e-12
7.71556e-11
3.69605e-12
8.43583e-11
-2.16631e-12
8.89468e-11
-7.95373e-12
8.34647e-11
5.03296e-11
-1.13723e-11
-3.58159e-13
8.57445e-12
-9.41997e-13
1.31058e-11
-1.62334e-12
1.4824e-11
-2.33157e-12
1.53428e-11
-3.04703e-12
1.54582e-11
-3.76603e-12
1.54872e-11
-4.49064e-12
1.54958e-11
-5.22191e-12
1.54923e-11
-5.96044e-12
1.54722e-11
-6.70316e-12
1.54197e-11
-7.4456e-12
1.53306e-11
-8.17999e-12
1.51903e-11
-8.89941e-12
1.50029e-11
-9.59485e-12
1.47695e-11
-1.02592e-11
1.44999e-11
-1.08872e-11
1.42137e-11
-1.14776e-11
1.39309e-11
-1.20341e-11
1.36819e-11
-1.25631e-11
1.34922e-11
-1.30758e-11
1.33834e-11
-1.35874e-11
1.33731e-11
-1.41127e-11
1.34685e-11
-1.46686e-11
1.36671e-11
-1.52731e-11
1.3957e-11
-1.59367e-11
1.43112e-11
-1.66739e-11
1.46984e-11
-1.74858e-11
1.5076e-11
-1.83757e-11
1.5393e-11
-1.9336e-11
1.56016e-11
-2.03563e-11
1.56496e-11
-2.14209e-11
1.54937e-11
-2.25076e-11
1.50918e-11
-2.35934e-11
1.44117e-11
-2.4651e-11
1.34302e-11
-2.56542e-11
1.21347e-11
-2.65746e-11
1.05233e-11
-2.73858e-11
8.60447e-12
-2.80627e-11
6.39664e-12
-2.85821e-11
3.92732e-12
-2.89244e-11
1.23173e-12
-2.90737e-11
-1.64923e-12
-2.90188e-11
-4.6665e-12
-2.87532e-11
-7.76916e-12
-2.82759e-11
-1.09047e-11
-2.75902e-11
-1.40196e-11
-2.67037e-11
-1.70644e-11
-2.56286e-11
-1.99957e-11
-2.43796e-11
-2.27754e-11
-2.29725e-11
-2.53717e-11
-2.14238e-11
-2.77619e-11
-1.97505e-11
-2.99302e-11
-1.79693e-11
-3.18658e-11
-1.60958e-11
-3.35602e-11
-1.4144e-11
-3.50074e-11
-1.21278e-11
-3.62029e-11
-1.00616e-11
-3.71432e-11
-7.96027e-12
-3.78231e-11
-5.83998e-12
-3.82372e-11
-3.71769e-12
-3.83834e-11
-1.61169e-12
-3.82629e-11
4.59608e-13
-3.78805e-11
2.4788e-12
-3.72439e-11
4.41816e-12
-3.63705e-11
6.27997e-12
-3.53064e-11
8.03963e-12
-3.406e-11
9.68531e-12
-3.26725e-11
1.12302e-11
-3.11995e-11
1.2662e-11
-2.96681e-11
1.39906e-11
-2.81139e-11
1.52309e-11
-2.6583e-11
1.63957e-11
-2.50862e-11
1.75015e-11
-2.36346e-11
1.85656e-11
-2.22405e-11
1.96046e-11
-2.08785e-11
2.06328e-11
-1.95257e-11
2.16603e-11
-1.81481e-11
2.26958e-11
-1.66939e-11
2.37356e-11
-1.5107e-11
2.47726e-11
-1.3325e-11
2.57931e-11
-1.12888e-11
2.67772e-11
-8.93293e-12
2.76981e-11
-6.20339e-12
2.85264e-11
-3.04655e-12
2.92243e-11
5.77947e-13
2.97562e-11
4.70801e-12
3.00771e-11
9.369e-12
3.01417e-11
1.45717e-11
2.99043e-11
2.03168e-11
2.93145e-11
2.65987e-11
2.83236e-11
3.33959e-11
2.6876e-11
4.0674e-11
2.49185e-11
4.83793e-11
2.2394e-11
5.64437e-11
1.92431e-11
6.47844e-11
1.54005e-11
7.32856e-11
1.0808e-11
8.17477e-11
5.42182e-12
8.97441e-11
-6.15713e-13
9.49839e-11
-6.63949e-12
8.94881e-11
5.39017e-11
-1.0212e-11
-3.47107e-13
8.92186e-12
-9.27583e-13
1.36868e-11
-1.6132e-12
1.55101e-11
-2.32518e-12
1.60553e-11
-3.04287e-12
1.61764e-11
-3.76358e-12
1.62084e-11
-4.49099e-12
1.62238e-11
-5.22719e-12
1.62291e-11
-5.9732e-12
1.62188e-11
-6.72619e-12
1.61732e-11
-7.48069e-12
1.60857e-11
-8.22798e-12
1.59382e-11
-8.95924e-12
1.57348e-11
-9.66347e-12
1.54743e-11
-1.0332e-11
1.51691e-11
-1.09583e-11
1.48406e-11
-1.15403e-11
1.45135e-11
-1.20821e-11
1.42243e-11
-1.25912e-11
1.40019e-11
-1.30794e-11
1.38721e-11
-1.35638e-11
1.3858e-11
-1.40639e-11
1.39691e-11
-1.45968e-11
1.42006e-11
-1.5185e-11
1.45457e-11
-1.58415e-11
1.49681e-11
-1.6582e-11
1.54394e-11
-1.74085e-11
1.5903e-11
-1.83261e-11
1.63111e-11
-1.93261e-11
1.6602e-11
-2.03984e-11
1.67224e-11
-2.15243e-11
1.66202e-11
-2.2681e-11
1.62492e-11
-2.38421e-11
1.55734e-11
-2.4978e-11
1.45669e-11
-2.60596e-11
1.3217e-11
-2.70559e-11
1.15205e-11
-2.79388e-11
9.48821e-12
-2.86808e-11
7.13961e-12
-2.92568e-11
4.50426e-12
-2.96452e-11
1.62112e-12
-2.98289e-11
-1.46454e-12
-2.97956e-11
-4.69891e-12
-2.95383e-11
-8.02549e-12
-2.90561e-11
-1.1386e-11
-2.83531e-11
-1.47218e-11
-2.74381e-11
-1.79786e-11
-2.63252e-11
-2.1108e-11
-2.50306e-11
-2.40693e-11
-2.35719e-11
-2.68297e-11
-2.19674e-11
-2.93658e-11
-2.02357e-11
-3.16615e-11
-1.83945e-11
-3.37065e-11
-1.64597e-11
-3.54947e-11
-1.44453e-11
-3.70214e-11
-1.23651e-11
-3.82828e-11
-1.02337e-11
-3.92743e-11
-8.06637e-12
-3.999e-11
-5.87939e-12
-4.04238e-11
-3.69036e-12
-4.0572e-11
-1.51896e-12
-4.04338e-11
6.14195e-13
-4.00132e-11
2.68275e-12
-3.9312e-11
4.6882e-12
-3.83755e-11
6.59066e-12
-3.72084e-11
8.37819e-12
-3.5847e-11
1.00577e-11
-3.43515e-11
1.16128e-11
-3.27541e-11
1.30481e-11
-3.1103e-11
1.43752e-11
-2.94406e-11
1.56059e-11
-2.78132e-11
1.67586e-11
-2.62384e-11
1.7853e-11
-2.47286e-11
1.89086e-11
-2.32957e-11
1.99447e-11
-2.19142e-11
2.09841e-11
-2.05647e-11
2.20341e-11
-1.91977e-11
2.31029e-11
-1.77626e-11
2.41913e-11
-1.61951e-11
2.52921e-11
-1.44256e-11
2.63913e-11
-1.23878e-11
2.74683e-11
-1.00096e-11
2.8496e-11
-7.23087e-12
2.94416e-11
-3.99206e-12
3.02653e-11
-2.45611e-13
3.09288e-11
4.04454e-12
3.1386e-11
8.91175e-12
3.15868e-11
1.43708e-11
3.14835e-11
2.042e-11
3.10218e-11
2.70602e-11
3.01491e-11
3.42684e-11
2.88073e-11
4.20156e-11
2.69374e-11
5.02489e-11
2.4477e-11
5.89038e-11
2.13612e-11
6.78999e-11
1.75176e-11
7.71288e-11
1.28812e-11
8.63838e-11
7.39516e-12
9.52297e-11
1.17935e-12
1.01199e-10
-5.01835e-12
9.56855e-11
5.75995e-11
-8.71647e-12
-3.35548e-13
9.25767e-12
-9.12424e-13
1.42641e-11
-1.6028e-12
1.62009e-11
-2.31859e-12
1.67715e-11
-3.038e-12
1.68963e-11
-3.75959e-12
1.69305e-11
-4.48907e-12
1.69537e-11
-5.23024e-12
1.69708e-11
-5.9844e-12
1.69735e-11
-6.74904e-12
1.69384e-11
-7.5176e-12
1.68548e-11
-8.28047e-12
1.67017e-11
-9.02624e-12
1.64812e-11
-9.74123e-12
1.61899e-11
-1.0415e-11
1.58434e-11
-1.10399e-11
1.5466e-11
-1.16135e-11
1.50876e-11
-1.21384e-11
1.47498e-11
-1.26235e-11
1.44875e-11
-1.30834e-11
1.43326e-11
-1.35369e-11
1.43121e-11
-1.40049e-11
1.44376e-11
-1.45129e-11
1.47092e-11
-1.50794e-11
1.51128e-11
-1.57275e-11
1.56167e-11
-1.64683e-11
1.61808e-11
-1.73113e-11
1.67466e-11
-1.82573e-11
1.72577e-11
-1.93006e-11
1.76459e-11
-2.0429e-11
1.78514e-11
-2.1622e-11
1.78137e-11
-2.28553e-11
1.74832e-11
-2.40993e-11
1.68181e-11
-2.53219e-11
1.57902e-11
-2.64905e-11
1.43865e-11
-2.75719e-11
1.26027e-11
-2.85336e-11
1.04507e-11
-2.9346e-11
7.95287e-12
-2.99822e-11
5.14133e-12
-3.0419e-11
2.05877e-12
-3.06382e-11
-1.24452e-12
-3.06262e-11
-4.71011e-12
-3.03757e-11
-8.27521e-12
-2.9886e-11
-1.18749e-11
-2.91624e-11
-1.54447e-11
-2.82155e-11
-1.89247e-11
-2.70605e-11
-2.22623e-11
-2.57159e-11
-2.54132e-11
-2.42017e-11
-2.83433e-11
-2.2538e-11
-3.10289e-11
-2.07443e-11
-3.34545e-11
-1.88389e-11
-3.56114e-11
-1.68381e-11
-3.74948e-11
-1.47568e-11
-3.91022e-11
-1.2609e-11
-4.04301e-11
-1.0409e-11
-4.14737e-11
-8.17179e-12
-4.22267e-11
-5.91373e-12
-4.26813e-11
-3.65331e-12
-4.28319e-11
-1.41181e-12
-4.26749e-11
7.87952e-13
-4.22125e-11
2.9299e-12
-4.14535e-11
4.98151e-12
-4.04267e-11
6.92296e-12
-3.91494e-11
8.7575e-12
-3.76811e-11
1.04585e-11
-3.60521e-11
1.2026e-11
-3.43213e-11
1.34607e-11
-3.25373e-11
1.4784e-11
-3.07635e-11
1.60021e-11
-2.90309e-11
1.71365e-11
-2.73724e-11
1.82157e-11
-2.58073e-11
1.92575e-11
-2.4337e-11
2.02944e-11
-2.29506e-11
2.13382e-11
-2.16082e-11
2.24086e-11
-2.02677e-11
2.35131e-11
-1.88667e-11
2.46527e-11
-1.73345e-11
2.58212e-11
-1.55937e-11
2.7004e-11
-1.35702e-11
2.81803e-11
-1.11856e-11
2.93199e-11
-8.37016e-12
3.03898e-11
-5.06181e-12
3.135e-11
-1.20567e-12
3.21562e-11
3.23839e-12
3.27615e-11
8.30649e-12
3.31131e-11
1.40192e-11
3.31575e-11
2.03756e-11
3.28388e-11
2.73788e-11
3.20997e-11
3.50074e-11
3.0878e-11
4.32371e-11
2.91122e-11
5.20144e-11
2.67337e-11
6.12821e-11
2.36734e-11
7.09598e-11
1.98517e-11
8.09501e-11
1.51975e-11
9.10377e-11
9.64363e-12
1.00783e-10
3.30814e-12
1.07535e-10
-3.03324e-12
1.02027e-10
6.14095e-11
-6.84352e-12
-3.24519e-13
9.58245e-12
-8.98409e-13
1.48385e-11
-1.59368e-12
1.68967e-11
-2.31268e-12
1.7491e-11
-3.03274e-12
1.76169e-11
-3.75401e-12
1.76523e-11
-4.48446e-12
1.76847e-11
-5.23017e-12
1.7717e-11
-5.99312e-12
1.77369e-11
-6.77129e-12
1.77171e-11
-7.55651e-12
1.76405e-11
-8.33772e-12
1.74834e-11
-9.10073e-12
1.72447e-11
-9.82931e-12
1.69189e-11
-1.05106e-11
1.65252e-11
-1.11346e-11
1.60905e-11
-1.16984e-11
1.56519e-11
-1.22046e-11
1.52564e-11
-1.26626e-11
1.4946e-11
-1.30883e-11
1.47588e-11
-1.35065e-11
1.47308e-11
-1.39373e-11
1.48691e-11
-1.44135e-11
1.51859e-11
-1.49549e-11
1.5655e-11
-1.5589e-11
1.62515e-11
-1.63274e-11
1.69199e-11
-1.71838e-11
1.76036e-11
-1.81588e-11
1.82335e-11
-1.9248e-11
1.87358e-11
-2.04365e-11
1.90406e-11
-2.17028e-11
1.90807e-11
-2.30187e-11
1.87999e-11
-2.43523e-11
1.81524e-11
-2.56686e-11
1.71071e-11
-2.69313e-11
1.56499e-11
-2.81044e-11
1.37764e-11
-2.91527e-11
1.14997e-11
-3.00438e-11
8.84461e-12
-3.07483e-11
5.84655e-12
-3.1241e-11
2.55217e-12
-3.15016e-11
-9.83334e-13
-3.1515e-11
-4.69598e-12
-3.12739e-11
-8.51569e-12
-3.07774e-11
-1.23708e-11
-3.00317e-11
-1.61897e-11
-2.90493e-11
-1.99065e-11
-2.78476e-11
-2.34633e-11
-2.64476e-11
-2.68125e-11
-2.48721e-11
-2.99181e-11
-2.31437e-11
-3.27566e-11
-2.12833e-11
-3.53141e-11
-1.93101e-11
-3.7584e-11
-1.72407e-11
-3.95635e-11
-1.509e-11
-4.12522e-11
-1.28718e-11
-4.26476e-11
-1.05997e-11
-4.37451e-11
-8.28862e-12
-4.45371e-11
-5.95484e-12
-4.50144e-11
-3.61809e-12
-4.51681e-11
-1.30066e-12
-4.49917e-11
9.76461e-13
-4.44891e-11
3.17724e-12
-4.36538e-11
5.2867e-12
-4.25357e-11
7.29334e-12
-4.11557e-11
9.16076e-12
-3.95482e-11
1.08859e-11
-3.77769e-11
1.24614e-11
-3.58964e-11
1.39034e-11
-3.3979e-11
1.52137e-11
-3.20733e-11
1.64126e-11
-3.02293e-11
1.75238e-11
-2.84831e-11
1.85788e-11
-2.68617e-11
1.96027e-11
-2.53605e-11
2.06249e-11
-2.39724e-11
2.16696e-11
-2.26525e-11
2.27552e-11
-2.13529e-11
2.38931e-11
-2.00043e-11
2.50856e-11
-1.85266e-11
2.63258e-11
-1.68336e-11
2.75995e-11
-1.48436e-11
2.88843e-11
-1.24702e-11
3.01483e-11
-9.63393e-12
3.13568e-11
-6.27018e-12
3.24645e-11
-2.31325e-12
3.34261e-11
2.27688e-12
3.41912e-11
7.54138e-12
3.47046e-11
1.35058e-11
3.49098e-11
2.01703e-11
3.47467e-11
2.75418e-11
3.41542e-11
3.55997e-11
3.3068e-11
4.4323e-11
3.14209e-11
5.36613e-11
2.91419e-11
6.35607e-11
2.61524e-11
7.39489e-11
2.23708e-11
8.47314e-11
1.77177e-11
9.56906e-11
1.21138e-11
1.06387e-10
5.67635e-12
1.13972e-10
-7.95436e-13
1.08498e-10
6.53403e-11
-4.72643e-12
-3.15173e-13
9.89789e-12
-8.87847e-13
1.54118e-11
-1.58797e-12
1.75974e-11
-2.30881e-12
1.82124e-11
-3.02744e-12
1.83361e-11
-3.74635e-12
1.83717e-11
-4.47639e-12
1.84153e-11
-5.22617e-12
1.84673e-11
-5.99848e-12
1.85097e-11
-6.79194e-12
1.8511e-11
-7.59685e-12
1.84459e-11
-8.40016e-12
1.82871e-11
-9.18392e-12
1.80288e-11
-9.9292e-12
1.76646e-11
-1.06204e-11
1.72169e-11
-1.1245e-11
1.67154e-11
-1.17983e-11
1.62055e-11
-1.22828e-11
1.57414e-11
-1.27096e-11
1.53733e-11
-1.30974e-11
1.51471e-11
-1.34702e-11
1.51041e-11
-1.38598e-11
1.52593e-11
-1.42943e-11
1.56211e-11
-1.48055e-11
1.61669e-11
-1.54176e-11
1.68644e-11
-1.61514e-11
1.76544e-11
-1.702e-11
1.84731e-11
-1.80272e-11
1.92415e-11
-1.91664e-11
1.98758e-11
-2.04217e-11
2.02966e-11
-2.17683e-11
2.04281e-11
-2.31749e-11
2.02072e-11
-2.4607e-11
1.95852e-11
-2.60257e-11
1.85265e-11
-2.7391e-11
1.70158e-11
-2.86641e-11
1.50501e-11
-2.98067e-11
1.26428e-11
-3.0784e-11
9.82234e-12
-3.15639e-11
6.62694e-12
-3.2118e-11
3.10687e-12
-3.24245e-11
-6.76403e-13
-3.24668e-11
-4.65314e-12
-3.22364e-11
-8.74554e-12
-3.17324e-11
-1.28743e-11
-3.09621e-11
-1.69594e-11
-2.99398e-11
-2.09282e-11
-2.86861e-11
-2.47163e-11
-2.72249e-11
-2.82729e-11
-2.55819e-11
-3.15603e-11
-2.3783e-11
-3.45547e-11
-2.18513e-11
-3.72449e-11
-1.98069e-11
-3.96276e-11
-1.76665e-11
-4.17031e-11
-1.54437e-11
-4.34742e-11
-1.31514e-11
-4.49391e-11
-1.08031e-11
-4.60927e-11
-8.41343e-12
-4.6926e-11
-5.99927e-12
-4.74279e-11
-3.58092e-12
-4.75858e-11
-1.18252e-12
-4.73895e-11
1.16366e-12
-4.68347e-11
3.4532e-12
-4.59428e-11
5.63434e-12
-4.47163e-11
7.68718e-12
-4.32081e-11
9.59418e-12
-4.14548e-11
1.13423e-11
-3.95247e-11
1.29377e-11
-3.74914e-11
1.43743e-11
-3.54152e-11
1.56683e-11
-3.3367e-11
1.68422e-11
-3.14028e-11
1.79226e-11
-2.9563e-11
1.89461e-11
-2.78847e-11
1.99431e-11
-2.63569e-11
2.09453e-11
-2.4974e-11
2.19861e-11
-2.36929e-11
2.30848e-11
-2.24512e-11
2.42539e-11
-2.11731e-11
2.54997e-11
-1.9772e-11
2.68155e-11
-1.81492e-11
2.81858e-11
-1.62138e-11
2.95864e-11
-1.38705e-11
3.09861e-11
-1.10336e-11
3.23427e-11
-7.6266e-12
3.36107e-11
-3.58121e-12
3.47401e-11
1.14756e-12
3.56779e-11
6.60355e-12
3.63679e-11
1.28159e-11
3.67455e-11
1.97928e-11
3.67522e-11
2.7535e-11
3.63217e-11
3.60301e-11
3.53872e-11
4.52573e-11
3.38774e-11
5.51708e-11
3.17158e-11
6.57222e-11
2.88215e-11
7.6843e-11
2.51043e-11
8.84486e-11
2.0479e-11
1.00316e-10
1.48521e-11
1.12014e-10
8.33734e-12
1.20487e-10
1.70734e-12
1.15128e-10
6.93589e-11
-2.31146e-12
-3.09369e-13
1.02076e-11
-8.83559e-13
1.59866e-11
-1.58794e-12
1.83023e-11
-2.30831e-12
1.89334e-11
-3.02241e-12
1.90508e-11
-3.73603e-12
1.90859e-11
-4.46367e-12
1.91434e-11
-5.21676e-12
1.92209e-11
-5.99914e-12
1.92925e-11
-6.8099e-12
1.93222e-11
-7.63779e-12
1.92742e-11
-8.46743e-12
1.91171e-11
-9.27659e-12
1.88384e-11
-1.0043e-11
1.84313e-11
-1.0747e-11
1.79212e-11
-1.13734e-11
1.73423e-11
-1.19157e-11
1.67481e-11
-1.23764e-11
1.62025e-11
-1.2766e-11
1.57634e-11
-1.31084e-11
1.549e-11
-1.34305e-11
1.54268e-11
-1.37692e-11
1.55986e-11
-1.41578e-11
1.60105e-11
-1.46327e-11
1.66427e-11
-1.52222e-11
1.74547e-11
-1.59509e-11
1.83841e-11
-1.68336e-11
1.93566e-11
-1.78748e-11
2.02836e-11
-1.90679e-11
2.10698e-11
-2.03953e-11
2.16247e-11
-2.18301e-11
2.18637e-11
-2.33376e-11
2.17153e-11
-2.48783e-11
2.11266e-11
-2.64103e-11
2.0059e-11
-2.78891e-11
1.84951e-11
-2.92722e-11
1.64336e-11
-3.05182e-11
1.38893e-11
-3.15886e-11
1.0893e-11
-3.24485e-11
7.48725e-12
-3.30674e-11
3.7262e-12
-3.34205e-11
-3.22891e-13
-3.34902e-11
-4.58299e-12
-3.32668e-11
-8.96851e-12
-3.27505e-11
-1.33901e-11
-3.195e-11
-1.77594e-11
-3.08819e-11
-2.19957e-11
-2.95699e-11
-2.60276e-11
-2.80416e-11
-2.98005e-11
-2.63259e-11
-3.32752e-11
-2.4451e-11
-3.64288e-11
-2.24417e-11
-3.92534e-11
-2.03205e-11
-4.1748e-11
-1.81034e-11
-4.39194e-11
-1.58043e-11
-4.57724e-11
-1.34349e-11
-4.73077e-11
-1.1007e-11
-4.85198e-11
-8.53455e-12
-4.93978e-11
-6.03439e-12
-4.99274e-11
-3.52767e-12
-5.00919e-11
-1.03991e-12
-4.98767e-11
1.40392e-12
-4.92779e-11
3.76313e-12
-4.83015e-11
6.01148e-12
-4.69642e-11
8.12003e-12
-4.53161e-11
1.00754e-11
-4.34097e-11
1.18592e-11
-4.13081e-11
1.34602e-11
-3.9092e-11
1.48884e-11
-3.6843e-11
1.61602e-11
-3.46383e-11
1.73013e-11
-3.25434e-11
1.8344e-11
-3.06052e-11
1.93273e-11
-2.88675e-11
2.02909e-11
-2.732e-11
2.12705e-11
-2.59532e-11
2.22999e-11
-2.4722e-11
2.34059e-11
-2.35569e-11
2.46068e-11
-2.23738e-11
2.59052e-11
-2.10702e-11
2.72989e-11
-1.95427e-11
2.87712e-11
-1.7686e-11
3.02962e-11
-1.53956e-11
3.18382e-11
-1.25755e-11
3.33542e-11
-9.14256e-12
3.47955e-11
-5.02246e-12
3.61063e-11
-1.63268e-13
3.72335e-11
5.47642e-12
3.81135e-11
1.19359e-11
3.86809e-11
1.92253e-11
3.88734e-11
2.73425e-11
3.86219e-11
3.62815e-11
3.7859e-11
4.602e-11
3.6508e-11
5.65217e-11
3.44917e-11
6.77384e-11
3.17225e-11
7.96122e-11
2.8103e-11
9.20683e-11
2.3536e-11
1.04883e-10
1.79265e-11
1.17623e-10
1.13866e-11
1.27027e-10
4.7002e-12
1.21814e-10
7.34343e-11
6.24577e-13
-3.0914e-13
1.05171e-11
-8.88141e-13
1.65664e-11
-1.59598e-12
1.90108e-11
-2.31226e-12
1.96503e-11
-3.01771e-12
1.97568e-11
-3.72234e-12
1.97911e-11
-4.44482e-12
1.98664e-11
-5.19979e-12
1.99763e-11
-5.99292e-12
2.00861e-11
-6.82348e-12
2.01532e-11
-7.67834e-12
2.01294e-11
-8.53913e-12
1.99783e-11
-9.37911e-12
1.96787e-11
-1.01715e-11
1.9224e-11
-1.08919e-11
1.8642e-11
-1.15217e-11
1.79724e-11
-1.20517e-11
1.72786e-11
-1.24838e-11
1.66351e-11
-1.28323e-11
1.61123e-11
-1.31227e-11
1.57809e-11
-1.33861e-11
1.56908e-11
-1.36669e-11
1.58801e-11
-1.40014e-11
1.63457e-11
-1.44332e-11
1.70753e-11
-1.49951e-11
1.80175e-11
-1.57154e-11
1.91051e-11
-1.66108e-11
2.02529e-11
-1.76873e-11
2.13609e-11
-1.89381e-11
2.23214e-11
-2.03442e-11
2.30316e-11
-2.18754e-11
2.33956e-11
-2.34935e-11
2.3334e-11
-2.51537e-11
2.27874e-11
-2.68089e-11
2.17146e-11
-2.84116e-11
2.00982e-11
-2.99147e-11
1.79371e-11
-3.12734e-11
1.52483e-11
-3.24457e-11
1.20657e-11
-3.33934e-11
8.43524e-12
-3.40831e-11
4.41628e-12
-3.44873e-11
8.17939e-14
-3.45864e-11
-4.48349e-12
-3.43704e-11
-9.18409e-12
-3.38399e-11
-1.392e-11
-3.3005e-11
-1.85938e-11
-3.18848e-11
-2.31153e-11
-3.05077e-11
-2.7404e-11
-2.89047e-11
-3.14028e-11
-2.71088e-11
-3.50703e-11
-2.51514e-11
-3.83855e-11
-2.30606e-11
-4.13434e-11
-2.08577e-11
-4.39501e-11
-1.85604e-11
-4.62158e-11
-1.61817e-11
-4.81503e-11
-1.37318e-11
-4.97569e-11
-1.12207e-11
-5.10302e-11
-8.66063e-12
-5.19572e-11
-6.06863e-12
-5.25187e-11
-3.4671e-12
-5.26927e-11
-8.83447e-13
-5.24596e-11
1.64812e-12
-5.18088e-11
4.09244e-12
-5.07452e-11
6.42814e-12
-4.92992e-11
8.61149e-12
-4.74989e-11
1.06136e-11
-4.54113e-11
1.24213e-11
-4.31152e-11
1.40292e-11
-4.06994e-11
1.54446e-11
-3.82579e-11
1.66868e-11
-3.588e-11
1.77863e-11
-3.36423e-11
1.87817e-11
-3.16001e-11
1.9714e-11
-2.97994e-11
2.06338e-11
-2.82394e-11
2.15812e-11
-2.69002e-11
2.25948e-11
-2.57353e-11
2.37061e-11
-2.46679e-11
2.49336e-11
-2.36012e-11
2.62867e-11
-2.24232e-11
2.77628e-11
-2.10187e-11
2.93437e-11
-1.9267e-11
3.10009e-11
-1.70528e-11
3.26974e-11
-1.42721e-11
3.43857e-11
-1.08309e-11
3.60139e-11
-6.65059e-12
3.7523e-11
-1.67232e-12
3.88515e-11
4.14805e-12
3.99374e-11
1.085e-11
4.07114e-11
1.84514e-11
4.11071e-11
2.69468e-11
4.1054e-11
3.63346e-11
4.04835e-11
4.65906e-11
3.93168e-11
5.76886e-11
3.74721e-11
6.95833e-11
3.48523e-11
8.22323e-11
3.13528e-11
9.55679e-11
2.68723e-11
1.09363e-10
2.13135e-11
1.23182e-10
1.47977e-11
1.33542e-10
8.11862e-12
1.28493e-10
7.75119e-11
4.04073e-12
-3.16254e-13
1.08337e-11
-9.04401e-13
1.71553e-11
-1.61473e-12
1.97219e-11
-2.32199e-12
2.03583e-11
-3.01345e-12
2.04489e-11
-3.70422e-12
2.04825e-11
-4.4179e-12
2.05807e-11
-5.17286e-12
2.07318e-11
-5.97736e-12
2.08911e-11
-6.8306e-12
2.10068e-11
-7.71742e-12
2.10166e-11
-8.61547e-12
2.08767e-11
-9.49259e-12
2.05562e-11
-1.03167e-11
2.00485e-11
-1.10574e-11
1.93829e-11
-1.16923e-11
1.86077e-11
-1.22096e-11
1.77963e-11
-1.26112e-11
1.70371e-11
-1.29105e-11
1.64121e-11
-1.31407e-11
1.60116e-11
-1.33347e-11
1.58854e-11
-1.3544e-11
1.609e-11
-1.38122e-11
1.66145e-11
-1.41893e-11
1.74531e-11
-1.47146e-11
1.85436e-11
-1.54214e-11
1.98127e-11
-1.63291e-11
2.11613e-11
-1.74443e-11
2.24768e-11
-1.87596e-11
2.36374e-11
-2.02534e-11
2.45261e-11
-2.18917e-11
2.50345e-11
-2.36318e-11
2.50746e-11
-2.54236e-11
2.45797e-11
-2.72151e-11
2.35065e-11
-2.89536e-11
2.1837e-11
-3.05878e-11
1.95717e-11
-3.20696e-11
1.67305e-11
-3.33533e-11
1.33498e-11
-3.43972e-11
9.47952e-12
-3.51647e-11
5.18429e-12
-3.56258e-11
5.43347e-13
-3.57584e-11
-4.35037e-12
-3.55514e-11
-9.39056e-12
-3.50053e-11
-1.44656e-11
-3.41314e-11
-1.94671e-11
-3.29539e-11
-2.42921e-11
-3.15037e-11
-2.88536e-11
-2.98181e-11
-3.30878e-11
-2.79344e-11
-3.69533e-11
-2.58888e-11
-4.04304e-11
-2.37106e-11
-4.3521e-11
-2.1423e-11
-4.62371e-11
-1.90429e-11
-4.85952e-11
-1.6582e-11
-5.06105e-11
-1.40485e-11
-5.22897e-11
-1.14505e-11
-5.36276e-11
-8.79884e-12
-5.46082e-11
-6.11013e-12
-5.52068e-11
-3.40722e-12
-5.5395e-11
-7.19174e-13
-5.5147e-11
1.91964e-12
-5.4447e-11
4.46766e-12
-5.32925e-11
6.88345e-12
-5.17144e-11
9.13338e-12
-4.97482e-11
1.11861e-11
-4.74634e-11
1.30229e-11
-4.49514e-11
1.46371e-11
-4.23131e-11
1.60364e-11
-3.96565e-11
1.72422e-11
-3.70853e-11
1.82902e-11
-3.46898e-11
1.92257e-11
-3.25352e-11
2.00971e-11
-3.06704e-11
2.09596e-11
-2.91016e-11
2.18642e-11
-2.78045e-11
2.28547e-11
-2.67257e-11
2.39665e-11
-2.57795e-11
2.52228e-11
-2.48574e-11
2.66349e-11
-2.38354e-11
2.8198e-11
-2.25819e-11
2.98939e-11
-2.0963e-11
3.1693e-11
-1.88519e-11
3.35538e-11
-1.61329e-11
3.54269e-11
-1.2704e-11
3.72554e-11
-8.47899e-12
3.89765e-11
-3.39327e-12
4.05235e-11
2.60116e-12
4.18306e-11
9.54308e-12
4.28285e-11
1.74536e-11
4.34439e-11
2.63316e-11
4.36082e-11
3.61704e-11
4.32468e-11
4.69522e-11
4.22826e-11
5.8653e-11
4.0623e-11
7.12432e-11
3.81707e-11
8.46849e-11
3.48149e-11
9.89238e-11
3.04484e-11
1.1373e-10
2.49693e-11
1.28661e-10
1.85066e-11
1.40005e-10
1.18529e-11
1.35147e-10
8.16118e-11
7.75277e-12
-3.33449e-13
1.11676e-11
-9.36775e-13
1.77594e-11
-1.64674e-12
2.04326e-11
-2.33873e-12
2.10509e-11
-3.00958e-12
2.11204e-11
-3.68042e-12
2.11539e-11
-4.38068e-12
2.12815e-11
-5.13325e-12
2.14848e-11
-5.94967e-12
2.1708e-11
-6.82891e-12
2.18866e-11
-7.75374e-12
2.19419e-11
-8.69664e-12
2.182e-11
-9.61896e-12
2.14789e-11
-1.04826e-11
2.09125e-11
-1.12495e-11
2.01503e-11
-1.18928e-11
1.92514e-11
-1.23962e-11
1.83001e-11
-1.27626e-11
1.74038e-11
-1.30075e-11
1.66575e-11
-1.31646e-11
1.61692e-11
-1.32812e-11
1.60025e-11
-1.34048e-11
1.62141e-11
-1.35973e-11
1.68076e-11
-1.3909e-11
1.77653e-11
-1.43904e-11
1.90255e-11
-1.50784e-11
2.05013e-11
-1.59964e-11
2.20798e-11
-1.71524e-11
2.36333e-11
-1.85379e-11
2.50235e-11
-2.01281e-11
2.61167e-11
-2.18844e-11
2.67913e-11
-2.37586e-11
2.69493e-11
-2.5695e-11
2.65166e-11
-2.76358e-11
2.54477e-11
-2.95227e-11
2.37243e-11
-3.13001e-11
2.13496e-11
-3.2916e-11
1.83468e-11
-3.4321e-11
1.47553e-11
-3.54699e-11
1.0629e-11
-3.63228e-11
6.03776e-12
-3.68461e-11
1.06727e-12
-3.70149e-11
-4.18094e-12
-3.6817e-11
-9.58784e-12
-3.62518e-11
-1.50301e-11
-3.53335e-11
-2.03847e-11
-3.409e-11
-2.55349e-11
-3.2558e-11
-3.0385e-11
-3.07803e-11
-3.48649e-11
-2.88007e-11
-3.89324e-11
-2.66586e-11
-4.25719e-11
-2.43871e-11
-4.57918e-11
-2.20106e-11
-4.8613e-11
-1.95451e-11
-5.10601e-11
-1.70002e-11
-5.31549e-11
-1.43814e-11
-5.4908e-11
-1.1694e-11
-5.63144e-11
-8.94706e-12
-5.73546e-11
-6.156e-12
-5.79973e-11
-3.34425e-12
-5.82061e-11
-5.43399e-13
-5.79472e-11
2.20952e-12
-5.71992e-11
4.86041e-12
-5.59427e-11
7.36949e-12
-5.42227e-11
9.69419e-12
-5.20722e-11
1.1804e-11
-4.95725e-11
1.36725e-11
-4.68192e-11
1.52933e-11
-4.39332e-11
1.66735e-11
-4.10362e-11
1.78363e-11
-3.82476e-11
1.88229e-11
-3.56759e-11
1.96858e-11
-3.33977e-11
2.04838e-11
-3.14682e-11
2.12786e-11
-2.98961e-11
2.21305e-11
-2.86562e-11
2.30903e-11
-2.76853e-11
2.41978e-11
-2.68869e-11
2.54804e-11
-2.61399e-11
2.69502e-11
-2.53051e-11
2.86031e-11
-2.42348e-11
3.04202e-11
-2.27799e-11
3.23686e-11
-2.08003e-11
3.44051e-11
-1.81692e-11
3.64762e-11
-1.47749e-11
3.85201e-11
-1.05227e-11
4.04694e-11
-5.34235e-12
4.22534e-11
8.17313e-13
4.37986e-11
7.99809e-12
4.50387e-11
1.62137e-11
4.58933e-11
2.54772e-11
4.62938e-11
3.57701e-11
4.61636e-11
4.70827e-11
4.54216e-11
5.93953e-11
4.39735e-11
7.26915e-11
4.17169e-11
8.69416e-11
3.85325e-11
1.02108e-10
3.43082e-11
1.17954e-10
2.89397e-11
1.34029e-10
2.25566e-11
1.46387e-10
1.59723e-11
1.41731e-10
8.57436e-11
1.18402e-11
-3.64075e-13
1.15321e-11
-9.89335e-13
1.83854e-11
-1.69475e-12
2.11387e-11
-2.36402e-12
2.17209e-11
-3.00602e-12
2.1763e-11
-3.64942e-12
2.17979e-11
-4.33072e-12
2.19634e-11
-5.07805e-12
2.22328e-11
-5.90684e-12
2.25374e-11
-6.81592e-12
2.27962e-11
-7.78599e-12
2.29125e-11
-8.78323e-12
2.28178e-11
-9.76119e-12
2.24573e-11
-1.06728e-11
2.18246e-11
-1.14734e-11
2.09513e-11
-1.21277e-11
1.99061e-11
-1.26196e-11
1.87924e-11
-1.29438e-11
1.77285e-11
-1.31279e-11
1.6842e-11
-1.32025e-11
1.62443e-11
-1.32264e-11
1.60268e-11
-1.32544e-11
1.62424e-11
-1.3357e-11
1.69106e-11
-1.35933e-11
1.80021e-11
-1.40219e-11
1.94544e-11
-1.46851e-11
2.11648e-11
-1.5611e-11
2.30062e-11
-1.6809e-11
2.48316e-11
-1.82695e-11
2.64843e-11
-1.99647e-11
2.78123e-11
-2.18511e-11
2.86782e-11
-2.3873e-11
2.89716e-11
-2.59682e-11
2.86123e-11
-2.80724e-11
2.75524e-11
-3.01218e-11
2.57742e-11
-3.2056e-11
2.32844e-11
-3.38183e-11
2.01098e-11
-3.5356e-11
1.62936e-11
-3.66202e-11
1.18939e-11
-3.75666e-11
6.98495e-12
-3.81578e-11
1.65922e-12
-3.83652e-11
-3.97284e-12
-3.81746e-11
-9.77765e-12
-3.75857e-11
-1.56183e-11
-3.66159e-11
-2.13537e-11
-3.52969e-11
-2.68533e-11
-3.3672e-11
-3.20092e-11
-3.17913e-11
-3.6745e-11
-2.97049e-11
-4.10182e-11
-2.74581e-11
-4.48182e-11
-2.5087e-11
-4.81623e-11
-2.26178e-11
-5.10817e-11
-2.00647e-11
-5.36126e-11
-1.74349e-11
-5.57843e-11
-1.47301e-11
-5.76122e-11
-1.19518e-11
-5.90922e-11
-9.10612e-12
-6.01998e-11
-6.20702e-12
-6.08959e-11
-3.27846e-12
-6.11341e-11
-3.55319e-13
-6.08697e-11
2.50898e-12
-6.00628e-11
5.28942e-12
-5.87224e-11
7.91039e-12
-5.6843e-11
1.03263e-11
-5.44874e-11
1.24959e-11
-5.17416e-11
1.43942e-11
-4.87168e-11
1.60127e-11
-4.5551e-11
1.73597e-11
-4.23827e-11
1.84683e-11
-3.93557e-11
1.9382e-11
-3.65893e-11
2.01613e-11
-3.41768e-11
2.08717e-11
-3.21783e-11
2.15849e-11
-3.06091e-11
2.23699e-11
-2.94409e-11
2.32867e-11
-2.86019e-11
2.43823e-11
-2.79822e-11
2.56885e-11
-2.74459e-11
2.72194e-11
-2.68358e-11
2.89705e-11
-2.59857e-11
3.09217e-11
-2.47309e-11
3.30379e-11
-2.29162e-11
3.52693e-11
-2.04004e-11
3.75566e-11
-1.70619e-11
3.98342e-11
-1.28001e-11
4.20298e-11
-7.53769e-12
4.40654e-11
-1.21806e-12
4.58717e-11
6.19192e-12
4.73701e-11
1.47156e-11
4.84891e-11
2.43585e-11
4.91482e-11
3.51114e-11
4.9271e-11
4.69602e-11
4.87715e-11
5.9895e-11
4.75564e-11
7.39067e-11
4.55143e-11
8.89836e-11
4.25284e-11
1.05094e-10
3.84726e-11
1.22009e-10
3.32485e-11
1.39253e-10
2.69776e-11
1.52658e-10
2.04782e-11
1.4823e-10
8.98368e-11
1.63849e-11
-4.10936e-13
1.19435e-11
-1.06572e-12
1.9041e-11
-1.76165e-12
2.18353e-11
-2.39928e-12
2.23591e-11
-3.00244e-12
2.23668e-11
-3.60926e-12
2.24054e-11
-4.26465e-12
2.26194e-11
-5.00301e-12
2.29718e-11
-5.84464e-12
2.33797e-11
-6.78861e-12
2.37408e-11
-7.81254e-12
2.39371e-11
-8.87466e-12
2.38805e-11
-9.92059e-12
2.35038e-11
-1.08917e-11
2.27963e-11
-1.17343e-11
2.17944e-11
-1.24049e-11
2.05772e-11
-1.28811e-11
1.9269e-11
-1.31631e-11
1.80109e-11
-1.3273e-11
1.69524e-11
-1.3254e-11
1.62256e-11
-1.31687e-11
1.59417e-11
-1.30861e-11
1.616e-11
-1.3083e-11
1.69077e-11
-1.32311e-11
1.81503e-11
-1.35959e-11
1.98194e-11
-1.42275e-11
2.17965e-11
-1.5159e-11
2.39378e-11
-1.6401e-11
2.60738e-11
-1.79432e-11
2.80268e-11
-1.97541e-11
2.96235e-11
-2.17838e-11
3.07083e-11
-2.3969e-11
3.11572e-11
-2.62392e-11
3.08829e-11
-2.85225e-11
2.98362e-11
-3.07493e-11
2.80017e-11
-3.28543e-11
2.539e-11
-3.47765e-11
2.20326e-11
-3.64592e-11
1.79771e-11
-3.78497e-11
1.32852e-11
-3.88991e-11
8.03525e-12
-3.95649e-11
2.32585e-12
-3.98151e-11
-3.72186e-12
-3.96314e-11
-9.96048e-12
-3.9015e-11
-1.62339e-11
-3.79854e-11
-2.23826e-11
-3.65801e-11
-2.82579e-11
-3.485e-11
-3.37387e-11
-3.28537e-11
-3.87408e-11
-3.06492e-11
-4.3222e-11
-2.82887e-11
-4.71782e-11
-2.58123e-11
-5.06381e-11
-2.32463e-11
-5.36472e-11
-2.0604e-11
-5.62544e-11
-1.78893e-11
-5.84986e-11
-1.50978e-11
-6.04032e-11
-1.22269e-11
-6.19627e-11
-9.27867e-12
-6.31476e-11
-6.26527e-12
-6.39088e-11
-3.21111e-12
-6.41877e-11
-1.53287e-13
-6.3927e-11
2.86156e-12
-6.30771e-11
5.76365e-12
-6.1624e-11
8.50049e-12
-5.95793e-11
1.10125e-11
-5.69988e-11
1.32507e-11
-5.39792e-11
1.51837e-11
-5.06492e-11
1.68018e-11
-4.71686e-11
1.81157e-11
-4.36961e-11
1.9158e-11
-4.03975e-11
1.99809e-11
-3.74119e-11
2.06558e-11
-3.48514e-11
2.1261e-11
-3.27832e-11
2.1875e-11
-3.12228e-11
2.25788e-11
-3.01445e-11
2.34413e-11
-2.94641e-11
2.45176e-11
-2.90582e-11
2.58436e-11
-2.87715e-11
2.74359e-11
-2.84278e-11
2.92907e-11
-2.784e-11
3.1385e-11
-2.68248e-11
3.36789e-11
-2.52097e-11
3.61184e-11
-2.28394e-11
3.86383e-11
-1.95814e-11
4.11664e-11
-1.53279e-11
4.36255e-11
-9.99659e-12
4.59352e-11
-3.52748e-12
4.8018e-11
4.10927e-12
4.97948e-11
1.2939e-11
5.11958e-11
2.29577e-11
5.21317e-11
3.41758e-11
5.25281e-11
4.6564e-11
5.22951e-11
6.01281e-11
5.13365e-11
7.48652e-11
4.954e-11
9.07798e-11
4.67845e-11
1.07849e-10
4.29306e-11
1.25863e-10
3.78717e-11
1.44312e-10
3.17172e-11
1.58812e-10
2.52878e-11
1.54659e-10
9.39156e-11
2.12089e-11
-4.76612e-13
1.24205e-11
-1.16972e-12
1.97348e-11
-1.85018e-12
2.25163e-11
-2.44549e-12
2.29551e-11
-2.99811e-12
2.29201e-11
-3.55752e-12
2.29654e-11
-4.17825e-12
2.32408e-11
-4.90278e-12
2.3697e-11
-5.75759e-12
2.42352e-11
-6.74229e-12
2.47263e-11
-7.83052e-12
2.5026e-11
-8.97122e-12
2.50219e-11
-1.00987e-11
2.4632e-11
-1.11439e-11
2.38421e-11
-1.20364e-11
2.26875e-11
-1.27303e-11
2.12715e-11
-1.31913e-11
1.97305e-11
-1.34229e-11
1.82428e-11
-1.34485e-11
1.69782e-11
-1.33197e-11
1.60971e-11
-1.31079e-11
1.57301e-11
-1.28954e-11
1.59475e-11
-1.2769e-11
1.67813e-11
-1.28137e-11
1.8195e-11
-1.3103e-11
2.01087e-11
-1.36966e-11
2.23901e-11
-1.46314e-11
2.48726e-11
-1.59212e-11
2.73637e-11
-1.75537e-11
2.96595e-11
-1.94924e-11
3.15624e-11
-2.16803e-11
3.28965e-11
-2.40452e-11
3.35225e-11
-2.65076e-11
3.33458e-11
-2.89869e-11
3.23161e-11
-3.14065e-11
3.04219e-11
-3.36962e-11
2.76804e-11
-3.57917e-11
2.41288e-11
-3.76327e-11
1.98189e-11
-3.91619e-11
1.48153e-11
-4.03253e-11
9.19953e-12
-4.10746e-11
3.07606e-12
-4.1372e-11
-3.42357e-12
-4.11965e-11
-1.01351e-11
-4.05485e-11
-1.68811e-11
-3.94499e-11
-2.34804e-11
-3.79464e-11
-2.97606e-11
-3.60977e-11
-3.55867e-11
-3.39722e-11
-4.08656e-11
-3.16372e-11
-4.55565e-11
-2.91535e-11
-4.96614e-11
-2.65642e-11
-5.32268e-11
-2.38972e-11
-5.63136e-11
-2.11655e-11
-5.89855e-11
-1.83647e-11
-6.12989e-11
-1.54861e-11
-6.32813e-11
-1.25204e-11
-6.49279e-11
-9.46465e-12
-6.62029e-11
-6.32894e-12
-6.7044e-11
-3.13831e-12
-6.73779e-11
6.63215e-14
-6.71312e-11
3.21692e-12
-6.62273e-11
6.26889e-12
-6.46755e-11
9.14057e-12
-6.24505e-11
1.17628e-11
-5.96206e-11
1.40784e-11
-5.62943e-11
1.60542e-11
-5.26244e-11
1.76703e-11
-4.87843e-11
1.89399e-11
-4.49653e-11
1.99021e-11
-4.13593e-11
2.06194e-11
-3.81288e-11
2.11702e-11
-3.54019e-11
2.16454e-11
-3.32581e-11
2.21423e-11
-3.17193e-11
2.2749e-11
-3.07508e-11
2.35447e-11
-3.02593e-11
2.45926e-11
-3.01056e-11
2.5934e-11
-3.01124e-11
2.75885e-11
-3.00816e-11
2.95512e-11
-2.9802e-11
3.17969e-11
-2.90698e-11
3.42806e-11
-2.76928e-11
3.69426e-11
-2.55008e-11
3.97114e-11
-2.23498e-11
4.2508e-11
-1.81242e-11
4.52497e-11
-1.2738e-11
4.78508e-11
-6.12837e-12
5.02291e-11
1.73112e-12
5.2305e-11
1.08633e-11
5.39975e-11
2.12654e-11
5.52316e-11
3.29418e-11
5.59217e-11
4.58738e-11
5.59798e-11
6.00699e-11
5.53082e-11
7.55367e-11
5.37964e-11
9.22914e-11
5.13047e-11
1.10341e-10
4.76884e-11
1.29479e-10
4.28119e-11
1.49188e-10
3.67674e-11
1.64857e-10
3.03744e-11
1.61052e-10
9.80475e-11
2.62424e-11
-5.6355e-13
1.29844e-11
-1.30477e-12
2.04766e-11
-1.96293e-12
2.31751e-11
-2.50373e-12
2.34965e-11
-2.99204e-12
2.34091e-11
-3.49081e-12
2.34649e-11
-4.06625e-12
2.3817e-11
-4.7711e-12
2.44027e-11
-5.63924e-12
2.51041e-11
-6.67148e-12
2.57593e-11
-7.83593e-12
2.61912e-11
-9.07201e-12
2.62587e-11
-1.02988e-11
2.58594e-11
-1.14332e-11
2.49771e-11
-1.23906e-11
2.36454e-11
-1.31105e-11
2.19919e-11
-1.35603e-11
2.01808e-11
-1.37333e-11
1.84161e-11
-1.36622e-11
1.69074e-11
-1.34064e-11
1.58414e-11
-1.30473e-11
1.5371e-11
-1.26828e-11
1.55832e-11
-1.24124e-11
1.65109e-11
-1.23346e-11
1.81172e-11
-1.25341e-11
2.03082e-11
-1.30796e-11
2.29355e-11
-1.40144e-11
2.58075e-11
-1.53548e-11
2.87041e-11
-1.70867e-11
3.13916e-11
-1.91679e-11
3.36438e-11
-2.15326e-11
3.52614e-11
-2.40978e-11
3.60881e-11
-2.67727e-11
3.60212e-11
-2.94673e-11
3.50111e-11
-3.20974e-11
3.30526e-11
-3.45881e-11
3.01718e-11
-3.68719e-11
2.64134e-11
-3.88853e-11
2.18331e-11
-4.05664e-11
1.64973e-11
-4.18555e-11
1.04894e-11
-4.26973e-11
3.91877e-12
-4.30464e-11
-3.07362e-12
-4.2879e-11
-1.03016e-11
-4.21933e-11
-1.7566e-11
-4.10141e-11
-2.46587e-11
-3.93974e-11
-3.13765e-11
-3.74125e-11
-3.75708e-11
-3.51399e-11
-4.31374e-11
-3.26617e-11
-4.8034e-11
-3.00427e-11
-5.22796e-11
-2.73335e-11
-5.59354e-11
-2.45654e-11
-5.9081e-11
-2.17433e-11
-6.1807e-11
-1.88597e-11
-6.4182e-11
-1.58967e-11
-6.62437e-11
-1.28373e-11
-6.79869e-11
-9.67195e-12
-6.93678e-11
-6.40822e-12
-7.03074e-11
-3.07129e-12
-7.07145e-11
2.92836e-13
-7.0495e-11
3.62689e-12
-6.9561e-11
6.84249e-12
-6.78907e-11
9.86133e-12
-6.54689e-11
1.26038e-11
-6.23627e-11
1.50029e-11
-5.86929e-11
1.70137e-11
-5.46347e-11
1.86182e-11
-5.03883e-11
1.98365e-11
-4.61832e-11
2.0704e-11
-4.22263e-11
2.12949e-11
-3.87193e-11
2.17003e-11
-3.58069e-11
2.20264e-11
-3.35837e-11
2.23814e-11
-3.20739e-11
2.28709e-11
-3.12397e-11
2.35842e-11
-3.0972e-11
2.45939e-11
-3.11146e-11
2.59469e-11
-3.14647e-11
2.7665e-11
-3.17989e-11
2.97427e-11
-3.18789e-11
3.21513e-11
-3.14776e-11
3.48403e-11
-3.03811e-11
3.77434e-11
-2.84034e-11
4.07816e-11
-2.53876e-11
4.38692e-11
-2.12115e-11
4.69157e-11
-1.57843e-11
4.98318e-11
-9.04426e-12
5.25271e-11
-9.63915e-13
5.49184e-11
8.47207e-12
5.69259e-11
1.92581e-11
5.84739e-11
3.13938e-11
5.94768e-11
4.48708e-11
5.98499e-11
5.96966e-11
5.94964e-11
7.58901e-11
5.83012e-11
9.34865e-11
5.61155e-11
1.12526e-10
5.27714e-11
1.32823e-10
4.81058e-11
1.53854e-10
4.21749e-11
1.70788e-10
3.57993e-11
1.67428e-10
1.02229e-10
3.16176e-11
-6.73424e-13
1.36582e-11
-1.47345e-12
2.12772e-11
-2.10216e-12
2.38044e-11
-2.575e-12
2.39699e-11
-2.98298e-12
2.38177e-11
-3.40527e-12
2.38879e-11
-3.9222e-12
2.43347e-11
-4.59983e-12
2.50811e-11
-5.48133e-12
2.59864e-11
-6.56928e-12
2.6848e-11
-7.82533e-12
2.7448e-11
-9.17574e-12
2.76097e-11
-1.05249e-11
2.72091e-11
-1.17658e-11
2.62186e-11
-1.28049e-11
2.46849e-11
-1.35621e-11
2.27495e-11
-1.39975e-11
2.06165e-11
-1.41052e-11
1.85241e-11
-1.39218e-11
1.67243e-11
-1.35172e-11
1.5437e-11
-1.29873e-11
1.48413e-11
-1.24448e-11
1.50407e-11
-1.20062e-11
1.60724e-11
-1.1784e-11
1.7895e-11
-1.18772e-11
2.04014e-11
-1.2364e-11
2.34224e-11
-1.32953e-11
2.67389e-11
-1.46898e-11
3.00987e-11
-1.65318e-11
3.32338e-11
-1.87728e-11
3.58851e-11
-2.13356e-11
3.78245e-11
-2.4124e-11
3.88769e-11
-2.70343e-11
3.89319e-11
-2.9965e-11
3.79423e-11
-3.28246e-11
3.59128e-11
-3.55335e-11
3.28813e-11
-3.80212e-11
2.89017e-11
-4.02218e-11
2.40344e-11
-4.20694e-11
1.83456e-11
-4.34973e-11
1.1918e-11
-4.44424e-11
4.86468e-12
-4.48489e-11
-2.66635e-12
-4.46895e-11
-1.04602e-11
-4.39578e-11
-1.82968e-11
-4.26878e-11
-2.59278e-11
-4.09382e-11
-3.31253e-11
-3.87956e-11
-3.97125e-11
-3.63579e-11
-4.55742e-11
-3.37168e-11
-5.06743e-11
-3.09504e-11
-5.50451e-11
-2.81177e-11
-5.87673e-11
-2.52447e-11
-6.19533e-11
-2.23361e-11
-6.4715e-11
-1.93745e-11
-6.71429e-11
-1.6332e-11
-6.92857e-11
-1.31815e-11
-7.11368e-11
-9.90668e-12
-7.26422e-11
-6.5088e-12
-7.37048e-11
-3.01449e-12
-7.42084e-11
5.24115e-13
-7.40332e-11
4.03935e-12
-7.30759e-11
7.43976e-12
-7.12908e-11
1.06315e-11
-6.86603e-11
1.35172e-11
-6.5248e-11
1.60164e-11
-6.11917e-11
1.80735e-11
-5.66914e-11
1.96707e-11
-5.19851e-11
2.08211e-11
-4.73331e-11
2.15755e-11
-4.29803e-11
2.20174e-11
-3.91607e-11
2.22505e-11
-3.60394e-11
2.23986e-11
-3.37312e-11
2.25867e-11
-3.22613e-11
2.29361e-11
-3.15885e-11
2.35501e-11
-3.15853e-11
2.45111e-11
-3.20749e-11
2.58705e-11
-3.28234e-11
2.7654e-11
-3.35816e-11
2.98541e-11
-3.40782e-11
3.24378e-11
-3.40605e-11
3.53488e-11
-3.32914e-11
3.85129e-11
-3.1567e-11
4.18425e-11
-2.87168e-11
4.52438e-11
-2.46126e-11
4.86189e-11
-1.91591e-11
5.18719e-11
-1.2297e-11
5.49077e-11
-3.99958e-12
5.76357e-11
5.74426e-12
5.99786e-11
1.69153e-11
6.18575e-11
2.95149e-11
6.31957e-11
4.35326e-11
6.39066e-11
5.89857e-11
6.39042e-11
7.58925e-11
6.30628e-11
9.4328e-11
6.12311e-11
1.14358e-10
5.82008e-11
1.35854e-10
5.37771e-11
1.58278e-10
4.79576e-11
1.76608e-10
4.15757e-11
1.7381e-10
1.06449e-10
3.73563e-11
-8.07607e-13
1.44661e-11
-1.67807e-12
2.21483e-11
-2.27009e-12
2.43969e-11
-2.66011e-12
2.43606e-11
-2.96924e-12
2.41275e-11
-3.296e-12
2.42153e-11
-3.73811e-12
2.47775e-11
-4.3791e-12
2.57228e-11
-5.27385e-12
2.68818e-11
-6.42663e-12
2.80014e-11
-7.79248e-12
2.88144e-11
-9.28173e-12
2.90995e-11
-1.0779e-11
2.87068e-11
-1.21532e-11
2.75933e-11
-1.32901e-11
2.58222e-11
-1.40948e-11
2.35545e-11
-1.45162e-11
2.10382e-11
-1.45499e-11
1.8558e-11
-1.42361e-11
1.64107e-11
-1.36589e-11
1.48599e-11
-1.29298e-11
1.41123e-11
-1.21805e-11
1.42915e-11
-1.15457e-11
1.54377e-11
-1.11554e-11
1.75048e-11
-1.11232e-11
2.03694e-11
-1.15394e-11
2.38388e-11
-1.24631e-11
2.76628e-11
-1.39159e-11
3.15517e-11
-1.58805e-11
3.51987e-11
-1.83001e-11
3.8305e-11
-2.10845e-11
4.06092e-11
-2.41217e-11
4.19146e-11
-2.7292e-11
4.21026e-11
-3.04814e-11
4.11321e-11
-3.359e-11
3.90219e-11
-3.65345e-11
3.58263e-11
-3.92429e-11
3.16106e-11
-4.16475e-11
2.64396e-11
-4.36783e-11
2.03769e-11
-4.52609e-11
1.35012e-11
-4.63205e-11
5.92486e-12
-4.67969e-11
-2.1892e-12
-4.66431e-11
-1.06132e-11
-4.58589e-11
-1.90802e-11
-4.44793e-11
-2.73067e-11
-4.25762e-11
-3.50276e-11
-4.02537e-11
-4.20341e-11
-3.76256e-11
-4.82015e-11
-3.48023e-11
-5.34967e-11
-3.1877e-11
-5.79696e-11
-2.89107e-11
-6.17328e-11
-2.59332e-11
-6.49301e-11
-2.29421e-11
-6.77053e-11
-1.9909e-11
-7.01754e-11
-1.67943e-11
-7.23998e-11
-1.35567e-11
-7.43739e-11
-1.01707e-11
-7.60277e-11
-6.63274e-12
-7.72424e-11
-2.968e-12
-7.78728e-11
7.72413e-13
-7.77733e-11
4.49938e-12
-7.68025e-11
8.1126e-12
-7.49036e-11
1.14958e-11
-7.20431e-11
1.45368e-11
-6.82886e-11
1.71412e-11
-6.37958e-11
1.92472e-11
-5.87969e-11
2.08307e-11
-5.35681e-11
2.19048e-11
-4.84067e-11
2.25265e-11
-4.36014e-11
2.27916e-11
-3.94252e-11
2.28215e-11
-3.60686e-11
2.27593e-11
-3.36684e-11
2.275e-11
-3.22514e-11
2.29338e-11
-3.17717e-11
2.34286e-11
-3.20794e-11
2.43283e-11
-3.29738e-11
2.569e-11
-3.41844e-11
2.75403e-11
-3.54312e-11
2.98707e-11
-3.6408e-11
3.26433e-11
-3.68325e-11
3.57942e-11
-3.64419e-11
3.92404e-11
-3.50128e-11
4.28848e-11
-3.23607e-11
4.66241e-11
-2.83516e-11
5.03523e-11
-2.28869e-11
5.39654e-11
-1.59098e-11
5.73628e-11
-7.39667e-12
6.04509e-11
2.65633e-12
6.31464e-11
1.42198e-11
6.5374e-11
2.72874e-11
6.70705e-11
4.18362e-11
6.81462e-11
5.79101e-11
6.8525e-11
7.55138e-11
6.8079e-11
9.47743e-11
6.66444e-11
1.15793e-10
6.39787e-11
1.3852e-10
5.98318e-11
1.62425e-10
5.41232e-11
1.82317e-10
4.76759e-11
1.80257e-10
1.10749e-10
4.3375e-11
-9.67564e-13
1.5434e-11
-1.92067e-12
2.31019e-11
-2.46911e-12
2.49459e-11
-2.7603e-12
2.46523e-11
-2.94907e-12
2.43168e-11
-3.15719e-12
2.44241e-11
-3.50456e-12
2.51255e-11
-4.09678e-12
2.63156e-11
-5.00347e-12
2.77891e-11
-6.23266e-12
2.92311e-11
-7.7297e-12
3.03119e-11
-9.38699e-12
3.07572e-11
-1.10629e-11
3.03831e-11
-1.26009e-11
2.91316e-11
-1.38576e-11
2.70793e-11
-1.47221e-11
2.44193e-11
-1.51316e-11
2.1448e-11
-1.508e-11
1.85067e-11
-1.46158e-11
1.59468e-11
-1.3837e-11
1.40814e-11
-1.28761e-11
1.31517e-11
-1.1886e-11
1.33017e-11
-1.10236e-11
1.45756e-11
-1.04374e-11
1.69188e-11
-1.02584e-11
2.01907e-11
-1.05905e-11
2.41713e-11
-1.15019e-11
2.85745e-11
-1.30179e-11
3.30681e-11
-1.51193e-11
3.73005e-11
-1.77397e-11
4.09258e-11
-2.07733e-11
4.36432e-11
-2.40888e-11
4.52305e-11
-2.75472e-11
4.55614e-11
-3.10195e-11
4.46048e-11
-3.43976e-11
4.24004e-11
-3.75955e-11
3.90247e-11
-4.05419e-11
3.45574e-11
-4.31688e-11
2.9067e-11
-4.54021e-11
2.26106e-11
-4.71585e-11
1.52582e-11
-4.83507e-11
7.11755e-12
-4.89025e-11
-1.63681e-12
-4.87566e-11
-1.07584e-11
-4.79102e-11
-1.9926e-11
-4.64017e-11
-2.88145e-11
-4.43198e-11
-3.71087e-11
-4.17878e-11
-4.45653e-11
-3.89419e-11
-5.10466e-11
-3.59147e-11
-5.6523e-11
-3.28127e-11
-6.10709e-11
-2.97063e-11
-6.48384e-11
-2.66251e-11
-6.80106e-11
-2.35574e-11
-7.07723e-11
-2.04653e-11
-7.32668e-11
-1.72865e-11
-7.5578e-11
-1.39681e-11
-7.76916e-11
-1.04719e-11
-7.95233e-11
-6.78705e-12
-8.09266e-11
-2.93927e-12
-8.172e-11
1.00205e-12
-8.17141e-11
4.97355e-12
-8.07735e-11
8.82968e-12
-7.87593e-11
1.24345e-11
-7.56474e-11
1.56564e-11
-7.15101e-11
1.83856e-11
-6.65244e-11
2.05469e-11
-6.09577e-11
2.21112e-11
-5.51318e-11
2.30939e-11
-4.93888e-11
2.35589e-11
-4.40658e-11
2.36177e-11
-3.94833e-11
2.34109e-11
-3.58612e-11
2.31056e-11
-3.33625e-11
2.28658e-11
-3.2011e-11
2.28555e-11
-3.17608e-11
2.32074e-11
-3.24307e-11
2.40287e-11
-3.37946e-11
2.53843e-11
-3.55394e-11
2.73044e-11
-3.73508e-11
2.97758e-11
-3.88788e-11
3.27542e-11
-3.98104e-11
3.61655e-11
-3.98528e-11
3.99169e-11
-3.87638e-11
4.38997e-11
-3.63431e-11
4.80027e-11
-3.24542e-11
5.21092e-11
-2.69931e-11
5.61064e-11
-1.99065e-11
5.98884e-11
-1.11783e-11
6.33557e-11
-8.10737e-13
6.64283e-11
1.11474e-11
6.90269e-11
2.46889e-11
7.10953e-11
3.9768e-11
7.25647e-11
5.64409e-11
7.3354e-11
7.47248e-11
7.33448e-11
9.47839e-11
7.23621e-11
1.16776e-10
7.01292e-11
1.40753e-10
6.63165e-11
1.66238e-10
6.07284e-11
1.87905e-10
5.41585e-11
1.86827e-10
1.15196e-10
4.9712e-11
-1.15448e-12
1.65888e-11
-2.20295e-12
2.41508e-11
-2.70206e-12
2.54455e-11
-2.87743e-12
2.48281e-11
-2.92098e-12
2.43609e-11
-2.9827e-12
2.44863e-11
-3.21046e-12
2.53537e-11
-3.73914e-12
2.68447e-11
-4.65658e-12
2.87069e-11
-5.97536e-12
3.05502e-11
-7.63041e-12
3.19673e-11
-9.49052e-12
3.26176e-11
-1.13834e-11
3.22762e-11
-1.31195e-11
3.08679e-11
-1.45234e-11
2.84835e-11
-1.54625e-11
2.53586e-11
-1.58608e-11
2.18466e-11
-1.57111e-11
1.83573e-11
-1.50716e-11
1.53076e-11
-1.4058e-11
1.30682e-11
-1.28274e-11
1.19215e-11
-1.15578e-11
1.20325e-11
-1.04311e-11
1.34493e-11
-9.61732e-12
1.61054e-11
-9.2668e-12
1.98406e-11
-9.49894e-12
2.44039e-11
-1.03922e-11
2.94682e-11
-1.19769e-11
3.46533e-11
-1.42318e-11
3.95559e-11
-1.70795e-11
4.37739e-11
-2.03952e-11
4.69594e-11
-2.40236e-11
4.88593e-11
-2.78017e-11
4.93399e-11
-3.15833e-11
4.83868e-11
-3.52517e-11
4.60692e-11
-3.87204e-11
4.24937e-11
-4.19208e-11
3.77582e-11
-4.47876e-11
3.19341e-11
-4.72433e-11
2.50666e-11
-4.91949e-11
1.72101e-11
-5.05384e-11
8.4615e-12
-5.1177e-11
-9.97716e-13
-5.10459e-11
-1.0889e-11
-5.01246e-11
-2.08468e-11
-4.8466e-11
-3.04724e-11
-4.61747e-11
-3.93994e-11
-4.33987e-11
-4.73407e-11
-4.03035e-11
-5.41412e-11
-3.70452e-11
-5.97807e-11
-3.37497e-11
-6.43657e-11
-3.0497e-11
-6.80905e-11
-2.73138e-11
-7.11932e-11
-2.41831e-11
-7.39024e-11
-2.10424e-11
-7.64069e-11
-1.78163e-11
-7.88035e-11
-1.44253e-11
-8.10819e-11
-1.08205e-11
-8.31274e-11
-6.98221e-12
-8.47642e-11
-2.93356e-12
-8.5768e-11
1.26302e-12
-8.591e-11
5.49074e-12
-8.50006e-11
9.61452e-12
-8.28824e-11
1.34722e-11
-7.95045e-11
1.69032e-11
-7.49405e-11
1.97734e-11
-6.93941e-11
2.19962e-11
-6.318e-11
2.35375e-11
-5.66726e-11
2.44103e-11
-5.0261e-11
2.46906e-11
-4.43455e-11
2.4507e-11
-3.92992e-11
2.40249e-11
-3.53785e-11
2.34307e-11
-3.27678e-11
2.29226e-11
-3.15023e-11
2.26821e-11
-3.15199e-11
2.28659e-11
-3.2614e-11
2.3595e-11
-3.45232e-11
2.49388e-11
-3.68828e-11
2.69317e-11
-3.93433e-11
2.95544e-11
-4.15012e-11
3.27564e-11
-4.30121e-11
3.64526e-11
-4.35487e-11
4.05364e-11
-4.28472e-11
4.48882e-11
-4.06945e-11
4.93827e-11
-3.69483e-11
5.38949e-11
-3.15048e-11
5.83023e-11
-2.43135e-11
6.24912e-11
-1.53669e-11
6.63607e-11
-4.67999e-12
6.98239e-11
7.68448e-12
7.28157e-11
2.16973e-11
7.52761e-11
3.73078e-11
7.7158e-11
5.45593e-11
7.83886e-11
7.34945e-11
7.88601e-11
9.43125e-11
7.84015e-11
1.17235e-10
7.66879e-11
1.42467e-10
7.33099e-11
1.69616e-10
6.78973e-11
1.93317e-10
6.12031e-11
1.93521e-10
1.19791e-10
5.6608e-11
-1.3686e-12
1.79576e-11
-2.52595e-12
2.53086e-11
-2.97226e-12
2.58922e-11
-3.01447e-12
2.48707e-11
-2.88435e-12
2.42311e-11
-2.76606e-12
2.43683e-11
-2.84353e-12
2.54315e-11
-3.29033e-12
2.72917e-11
-4.21648e-12
2.96333e-11
-5.6387e-12
3.19726e-11
-7.48339e-12
3.38121e-11
-9.58872e-12
3.47231e-11
-1.17455e-11
3.44332e-11
-1.37221e-11
3.28446e-11
-1.53062e-11
3.00679e-11
-1.63372e-11
2.63899e-11
-1.67255e-11
2.22352e-11
-1.64626e-11
1.80946e-11
-1.56184e-11
1.44639e-11
-1.43313e-11
1.17814e-11
-1.27869e-11
1.03775e-11
-1.11939e-11
1.04399e-11
-9.76131e-12
1.20171e-11
-8.68425e-12
1.50289e-11
-8.13385e-12
1.92907e-11
-8.24763e-12
2.45181e-11
-9.11545e-12
3.03365e-11
-1.07733e-11
3.63117e-11
-1.32001e-11
4.19832e-11
-1.63054e-11
4.68797e-11
-1.9941e-11
5.05955e-11
-2.39215e-11
5.28402e-11
-2.80548e-11
5.34737e-11
-3.21741e-11
5.25066e-11
-3.61542e-11
5.00497e-11
-3.99103e-11
4.62501e-11
-4.33808e-11
4.12291e-11
-4.65062e-11
3.50598e-11
-4.92073e-11
2.77681e-11
-5.13797e-11
1.93829e-11
-5.28984e-11
9.98051e-12
-5.36432e-11
-2.52501e-13
-5.35263e-11
-1.10055e-11
-5.25204e-11
-2.18524e-11
-5.06866e-11
-3.23058e-11
-4.81491e-11
-4.19364e-11
-4.50889e-11
-5.04003e-11
-4.17059e-11
-5.75238e-11
-3.81864e-11
-6.32997e-11
-3.46812e-11
-6.78704e-11
-3.1275e-11
-7.14961e-11
-2.7999e-11
-7.44687e-11
-2.48167e-11
-7.70841e-11
-2.16503e-11
-7.95726e-11
-1.8391e-11
-8.20621e-11
-1.49433e-11
-8.45289e-11
-1.12323e-11
-8.68376e-11
-7.23298e-12
-8.87628e-11
-2.96567e-12
-9.00345e-11
1.49813e-12
-9.0373e-11
6.0298e-12
-8.95315e-11
1.04668e-11
-8.73187e-11
1.46178e-11
-8.36548e-11
1.82904e-11
-7.86124e-11
2.13251e-11
-7.24282e-11
2.36192e-11
-6.54735e-11
2.51305e-11
-5.81833e-11
2.58759e-11
-5.10058e-11
2.59405e-11
-4.44095e-11
2.54713e-11
-3.88295e-11
2.46601e-11
-3.45668e-11
2.37326e-11
-3.18399e-11
2.29101e-11
-3.06794e-11
2.24049e-11
-3.10144e-11
2.23915e-11
-3.26002e-11
2.30086e-11
-3.514e-11
2.43357e-11
-3.82097e-11
2.64035e-11
-4.14108e-11
2.9192e-11
-4.42895e-11
3.26391e-11
-4.64589e-11
3.6648e-11
-4.75572e-11
4.10957e-11
-4.72946e-11
4.5848e-11
-4.54463e-11
5.07648e-11
-4.18646e-11
5.57116e-11
-3.64512e-11
6.05555e-11
-2.9157e-11
6.51762e-11
-1.99873e-11
6.94666e-11
-8.97009e-12
7.33416e-11
3.80966e-12
7.67376e-11
1.83017e-11
7.96114e-11
3.44343e-11
8.1913e-11
5.22579e-11
8.362e-11
7.17877e-11
8.46199e-11
9.33127e-11
8.47684e-11
1.17087e-10
8.36973e-11
1.43538e-10
8.09128e-11
1.724e-10
7.58327e-11
1.98397e-10
6.91034e-11
2.0025e-10
1.24414e-10
6.448e-11
-1.60976e-12
1.95676e-11
-2.89004e-12
2.65893e-11
-3.28455e-12
2.6287e-11
-3.17657e-12
2.4763e-11
-2.83941e-12
2.38942e-11
-2.49953e-12
2.40286e-11
-2.38858e-12
2.53207e-11
-2.73133e-12
2.76346e-11
-3.6622e-12
3.05642e-11
-5.20631e-12
3.35168e-11
-7.27839e-12
3.58843e-11
-9.68172e-12
3.71265e-11
-1.21585e-11
3.69102e-11
-1.44266e-11
3.51129e-11
-1.62299e-11
3.18714e-11
-1.73738e-11
2.75341e-11
-1.77535e-11
2.26152e-11
-1.73586e-11
1.77e-11
-1.62747e-11
1.33803e-11
-1.46665e-11
1.01737e-11
-1.27557e-11
8.46715e-12
-1.07869e-11
8.47152e-12
-9.00087e-12
1.02315e-11
-7.61972e-12
1.36482e-11
-6.83776e-12
1.85093e-11
-6.81294e-12
2.44939e-11
-7.64722e-12
3.11714e-11
-9.38431e-12
3.80493e-11
-1.20056e-11
4.4605e-11
-1.54058e-11
5.02805e-11
-1.94077e-11
5.45981e-11
-2.37879e-11
5.7221e-11
-2.83175e-11
5.80038e-11
-3.28049e-11
5.69945e-11
-3.7117e-11
5.43623e-11
-4.1175e-11
5.03086e-11
-4.49304e-11
4.49848e-11
-4.83341e-11
3.84639e-11
-5.1307e-11
3.07414e-11
-5.37312e-11
2.18073e-11
-5.54552e-11
1.17048e-11
-5.63264e-11
6.18926e-13
-5.62277e-11
-1.1104e-11
-5.51256e-11
-2.29542e-11
-5.3082e-11
-3.43492e-11
-5.02531e-11
-4.4765e-11
-4.68583e-11
-5.37949e-11
-4.31386e-11
-6.12431e-11
-3.93238e-11
-6.71142e-11
-3.5582e-11
-7.16119e-11
-3.20204e-11
-7.50574e-11
-2.86563e-11
-7.78324e-11
-2.54456e-11
-8.02943e-11
-2.22773e-11
-8.27403e-11
-1.90118e-11
-8.53269e-11
-1.55216e-11
-8.80184e-11
-1.17146e-11
-9.06438e-11
-7.54803e-12
-9.29286e-11
-3.04417e-12
-9.45375e-11
1.71751e-12
-9.51339e-11
6.5931e-12
-9.44063e-11
1.13905e-11
-9.21154e-11
1.5882e-11
-8.81456e-11
1.98351e-11
-8.2565e-11
2.30588e-11
-7.56514e-11
2.54372e-11
-6.78514e-11
2.69113e-11
-5.96569e-11
2.75072e-11
-5.16012e-11
2.73206e-11
-4.42225e-11
2.65153e-11
-3.80237e-11
2.53239e-11
-3.3375e-11
2.40049e-11
-3.05205e-11
2.2815e-11
-2.94891e-11
2.19991e-11
-3.01981e-11
2.17591e-11
-3.23599e-11
2.22453e-11
-3.5626e-11
2.35484e-11
-3.95126e-11
2.56973e-11
-4.35595e-11
2.86671e-11
-4.72592e-11
3.2384e-11
-5.01756e-11
3.6736e-11
-5.1909e-11
4.15807e-11
-5.2139e-11
4.67661e-11
-5.06314e-11
5.21393e-11
-4.72376e-11
5.75537e-11
-4.18652e-11
6.28662e-11
-3.44693e-11
6.79448e-11
-2.50657e-11
7.26788e-11
-1.37039e-11
7.69808e-11
-4.92141e-13
8.07961e-11
1.44867e-11
8.40875e-11
3.11431e-11
8.68303e-11
4.95152e-11
8.90297e-11
6.95884e-11
9.06102e-11
9.17322e-11
9.1457e-11
1.1624e-10
9.11864e-11
1.43808e-10
8.92334e-11
1.74353e-10
8.47663e-11
2.02864e-10
7.8276e-11
2.0674e-10
1.28874e-10
7.38158e-11
-1.87537e-12
2.14432e-11
-3.29348e-12
2.80076e-11
-3.64474e-12
2.66385e-11
-3.3712e-12
2.44897e-11
-2.78773e-12
2.33109e-11
-2.17427e-12
2.34153e-11
-1.82828e-12
2.49748e-11
-2.04363e-12
2.785e-11
-2.97357e-12
3.14942e-11
-4.65848e-12
3.52018e-11
-7.00129e-12
3.82272e-11
-9.76598e-12
3.98913e-11
-1.263e-11
3.97744e-11
-1.52522e-11
3.77353e-11
-1.73202e-11
3.39397e-11
-1.86029e-11
2.8817e-11
-1.89745e-11
2.29871e-11
-1.84261e-11
1.71519e-11
-1.70598e-11
1.20144e-11
-1.5076e-11
8.19016e-12
-1.27367e-11
6.12824e-12
-1.03329e-11
6.06809e-12
-8.13893e-12
8.03799e-12
-6.40781e-12
1.19175e-11
-5.35865e-12
1.74606e-11
-5.17264e-12
2.43083e-11
-5.96298e-12
3.19622e-11
-7.7842e-12
3.98711e-11
-1.06258e-11
4.74472e-11
-1.43652e-11
5.40205e-11
-1.87892e-11
5.90227e-11
-2.3626e-11
6.20584e-11
-2.85991e-11
6.29775e-11
-3.34871e-11
6.18832e-11
-3.81503e-11
5.90261e-11
-4.25222e-11
5.4681e-11
-4.65749e-11
4.9038e-11
-5.02772e-11
4.21666e-11
-5.35518e-11
3.40163e-11
-5.62649e-11
2.45208e-11
-5.82318e-11
1.3672e-11
-5.92562e-11
1.64345e-12
-5.91853e-11
-1.11747e-11
-5.79647e-11
-2.41748e-11
-5.56724e-11
-3.66413e-11
-5.24972e-11
-4.79401e-11
-4.87052e-11
-5.75868e-11
-4.45933e-11
-6.53549e-11
-4.04353e-11
-7.12721e-11
-3.64354e-11
-7.56117e-11
-3.27091e-11
-7.87835e-11
-2.92741e-11
-8.12671e-11
-2.60613e-11
-8.35067e-11
-2.29261e-11
-8.5875e-11
-1.96885e-11
-8.85639e-11
-1.61789e-11
-9.15273e-11
-1.22833e-11
-9.45387e-11
-7.94638e-12
-9.72648e-11
-3.1853e-12
-9.92979e-11
1.9102e-12
-1.00229e-10
7.17795e-12
-9.96734e-11
1.23925e-11
-9.73294e-11
1.72811e-11
-9.30337e-11
2.15608e-11
-8.68443e-11
2.5003e-11
-7.90931e-11
2.74756e-11
-7.03236e-11
2.89087e-11
-6.10897e-11
2.93303e-11
-5.20224e-11
2.88483e-11
-4.37401e-11
2.76521e-11
-3.68272e-11
2.6015e-11
-3.17376e-11
2.42379e-11
-2.87431e-11
2.26234e-11
-2.78743e-11
2.14474e-11
-2.90218e-11
2.09428e-11
-3.1855e-11
2.12765e-11
-3.59595e-11
2.25494e-11
-4.07854e-11
2.47859e-11
-4.57959e-11
2.79573e-11
-5.04304e-11
3.19722e-11
-5.41904e-11
3.67029e-11
-5.66395e-11
4.19816e-11
-5.74174e-11
4.76375e-11
-5.62871e-11
5.35042e-11
-5.31041e-11
5.94213e-11
-4.77823e-11
6.52365e-11
-4.02844e-11
7.08003e-11
-3.06294e-11
7.60012e-11
-1.89047e-11
8.07433e-11
-5.23396e-12
8.49888e-11
1.02413e-11
8.87023e-11
2.74298e-11
9.18964e-11
4.63212e-11
9.45993e-11
6.68855e-11
9.6804e-11
8.95275e-11
9.84526e-11
1.14591e-10
9.91773e-11
1.43083e-10
9.84042e-11
1.75126e-10
9.50327e-11
2.06236e-10
8.93742e-11
2.12399e-10
1.3277e-10
8.54777e-11
-2.16368e-12
2.3607e-11
-3.73676e-12
2.95809e-11
-4.06392e-12
2.69658e-11
-3.61157e-12
2.40375e-11
-2.73323e-12
2.24326e-11
-1.78031e-12
2.24624e-11
-1.1467e-12
2.43412e-11
-1.20621e-12
2.79095e-11
-2.12078e-12
3.24088e-11
-3.96159e-12
3.70426e-11
-6.63029e-12
4.0896e-11
-9.83294e-12
4.30942e-11
-1.31687e-11
4.31103e-11
-1.62182e-11
4.0785e-11
-1.86075e-11
3.63292e-11
-2.00578e-11
3.02676e-11
-2.04227e-11
2.33523e-11
-1.96931e-11
1.64226e-11
-1.79931e-11
1.03147e-11
-1.55668e-11
5.76423e-12
-1.27272e-11
3.28895e-12
-9.82169e-12
3.16284e-12
-7.161e-12
5.37761e-12
-5.03047e-12
9.78729e-12
-3.67623e-12
1.61067e-11
-3.30603e-12
2.39385e-11
-4.03786e-12
3.26945e-11
-5.9442e-12
4.17779e-11
-9.03407e-12
5.05376e-11
-1.31648e-11
5.81518e-11
-1.8076e-11
6.39345e-11
-2.34351e-11
6.74183e-11
-2.89038e-11
6.84469e-11
-3.42244e-11
6.72045e-11
-3.92542e-11
6.40564e-11
-4.39457e-11
5.93732e-11
-4.83036e-11
5.33964e-11
-5.23235e-11
4.61871e-11
-5.59337e-11
3.76269e-11
-5.89822e-11
2.75697e-11
-6.12419e-11
1.59319e-11
-6.2458e-11
2.85976e-12
-6.24278e-11
-1.12047e-11
-6.10702e-11
-2.55323e-11
-5.84835e-11
-3.9228e-11
-5.48968e-11
-5.15267e-11
-5.06354e-11
-6.18481e-11
-4.60649e-11
-6.99253e-11
-4.15145e-11
-7.58225e-11
-3.72275e-11
-7.98985e-11
-3.3337e-11
-8.26739e-11
-2.98477e-11
-8.47561e-11
-2.66681e-11
-8.66861e-11
-2.36146e-11
-8.89282e-11
-2.04415e-11
-9.17365e-11
-1.69415e-11
-9.50269e-11
-1.29699e-11
-9.85098e-11
-8.45503e-12
-1.01779e-10
-3.41236e-12
-1.0434e-10
2.06063e-12
-1.05701e-10
7.77768e-12
-1.0539e-10
1.34763e-11
-1.03028e-10
1.88305e-11
-9.83875e-11
2.34922e-11
-9.15056e-11
2.7187e-11
-8.27877e-11
2.9768e-11
-7.29043e-11
3.11551e-11
-6.24765e-11
3.13729e-11
-5.22399e-11
3.05451e-11
-4.2912e-11
2.88949e-11
-3.51767e-11
2.67377e-11
-2.95801e-11
2.44265e-11
-2.64315e-11
2.23182e-11
-2.57656e-11
2.07271e-11
-2.74304e-11
1.99153e-11
-3.10429e-11
2.00733e-11
-3.61173e-11
2.13093e-11
-4.20212e-11
2.36419e-11
-4.81284e-11
2.70368e-11
-5.38253e-11
3.13817e-11
-5.85352e-11
3.653e-11
-6.17877e-11
4.22844e-11
-6.31718e-11
4.84523e-11
-6.24549e-11
5.48516e-11
-5.95034e-11
6.13114e-11
-5.42421e-11
6.76649e-11
-4.66379e-11
7.37454e-11
-3.67099e-11
7.94348e-11
-2.4594e-11
8.46331e-11
-1.04321e-11
8.93175e-11
5.55708e-12
9.34577e-11
2.32899e-11
9.7099e-11
4.268e-11
1.00327e-10
6.36572e-11
1.03188e-10
8.66667e-11
1.05756e-10
1.12024e-10
1.07709e-10
1.4113e-10
1.08597e-10
1.74238e-10
1.07095e-10
2.07738e-10
1.03333e-10
2.1616e-10
1.35317e-10
1.00786e-10
-2.4756e-12
2.60827e-11
-4.22599e-12
3.13315e-11
-4.56175e-12
2.73017e-11
-3.91992e-12
2.33957e-11
-2.68444e-12
2.11972e-11
-1.30501e-12
2.1083e-11
-3.37474e-13
2.33737e-11
-1.86531e-13
2.77586e-11
-1.06395e-12
3.32863e-11
-3.08445e-12
3.90633e-11
-6.14392e-12
4.39557e-11
-9.87959e-12
4.683e-11
-1.37871e-11
4.70181e-11
-1.73539e-11
4.43522e-11
-2.01316e-11
3.91072e-11
-2.17842e-11
3.19204e-11
-2.21436e-11
2.3712e-11
-2.12002e-11
1.54794e-11
-1.91035e-11
8.21828e-12
-1.61561e-11
2.81705e-12
-1.27322e-11
-1.34741e-13
-9.24846e-12
-3.20644e-13
-6.05329e-12
2.18266e-12
-3.47019e-12
7.20444e-12
-1.77272e-12
1.44095e-11
-1.19963e-12
2.33658e-11
-1.84765e-12
3.33429e-11
-3.83211e-12
4.37629e-11
-7.20287e-12
5.39089e-11
-1.17889e-11
6.27384e-11
-1.72678e-11
6.94141e-11
-2.3231e-11
7.33821e-11
-2.92562e-11
7.44727e-11
-3.50427e-11
7.29917e-11
-4.04499e-11
6.94643e-11
-4.54593e-11
6.43832e-11
-5.01238e-11
5.80614e-11
-5.44799e-11
5.05437e-11
-5.84645e-11
4.16119e-11
-6.19052e-11
3.10107e-11
-6.45213e-11
1.85483e-11
-6.59786e-11
4.31732e-12
-6.60075e-11
-1.11757e-11
-6.44877e-11
-2.7052e-11
-6.1548e-11
-4.21676e-11
-5.74693e-11
-5.56053e-11
-5.26468e-11
-6.66706e-11
-4.75357e-11
-7.50364e-11
-4.25344e-11
-8.08237e-11
-3.79295e-11
-8.45033e-11
-3.38731e-11
-8.67302e-11
-3.03554e-11
-8.82736e-11
-2.72634e-11
-8.9778e-11
-2.43451e-11
-9.18462e-11
-2.12893e-11
-9.47921e-11
-1.78373e-11
-9.84787e-11
-1.38064e-11
-1.0254e-10
-9.10864e-12
-1.06477e-10
-3.75858e-12
-1.0969e-10
2.13808e-12
-1.11598e-10
8.37124e-12
-1.11623e-10
1.46343e-11
-1.09291e-10
2.05366e-11
-1.0429e-10
2.56456e-11
-9.66146e-11
2.96322e-11
-8.67741e-11
3.23313e-11
-7.56033e-11
3.36755e-11
-6.38206e-11
3.36533e-11
-5.22175e-11
3.2419e-11
-4.16775e-11
3.02297e-11
-3.29872e-11
2.74652e-11
-2.68153e-11
2.4539e-11
-2.3505e-11
2.18614e-11
-2.30877e-11
1.97887e-11
-2.53575e-11
1.86233e-11
-2.98771e-11
1.85781e-11
-3.60719e-11
1.97707e-11
-4.32137e-11
2.2209e-11
-5.05667e-11
2.58546e-11
-5.74708e-11
3.05672e-11
-6.32478e-11
3.618e-11
-6.74005e-11
4.24587e-11
-6.94506e-11
4.91851e-11
-6.91814e-11
5.61615e-11
-6.648e-11
6.32095e-11
-6.12902e-11
7.01439e-11
-5.35724e-11
7.67811e-11
-4.3347e-11
8.29881e-11
-3.08009e-11
8.86608e-11
-1.61047e-11
9.37982e-11
4.19846e-13
9.83692e-11
1.8719e-11
1.02462e-10
3.85872e-11
1.06226e-10
5.98937e-11
1.09778e-10
8.31147e-11
1.1337e-10
1.08432e-10
1.16804e-10
1.37697e-10
1.19968e-10
1.71074e-10
1.21451e-10
2.06256e-10
1.21294e-10
2.16317e-10
1.35346e-10
1.21266e-10
-2.82768e-12
2.89105e-11
-4.78996e-12
3.3294e-11
-5.17887e-12
2.76908e-11
-4.33447e-12
2.25514e-11
-2.65614e-12
1.9519e-11
-7.32337e-13
1.91593e-11
6.60965e-13
2.19805e-11
1.17226e-12
2.72474e-11
3.43465e-13
3.41153e-11
-1.95354e-12
4.13605e-11
-5.5217e-12
4.75241e-11
-9.90196e-12
5.12106e-11
-1.45004e-11
5.16168e-11
-1.8696e-11
4.85481e-11
-2.19432e-11
4.23546e-11
-2.38393e-11
3.38168e-11
-2.41946e-11
2.40675e-11
-2.29984e-11
1.42834e-11
-2.04259e-11
5.64601e-12
-1.68198e-11
-7.88826e-13
-1.2766e-11
-4.18847e-12
-8.6115e-12
-4.47494e-12
-4.82029e-12
-1.60837e-12
-1.72614e-12
4.1105e-12
2.82284e-13
1.24013e-11
1.17165e-12
2.24767e-11
6.60665e-13
3.38542e-11
-1.4291e-12
4.5853e-11
-5.1049e-12
5.75851e-11
-1.02198e-11
6.78537e-11
-1.63598e-11
7.55547e-11
-2.3034e-11
8.00569e-11
-2.96874e-11
8.11267e-11
-3.5972e-11
7.92769e-11
-4.17619e-11
7.52548e-11
-4.70755e-11
6.96974e-11
-5.20406e-11
6.30271e-11
-5.67514e-11
5.5255e-11
-6.11552e-11
4.60162e-11
-6.50599e-11
3.49158e-11
-6.81171e-11
2.16058e-11
-6.98822e-11
6.08275e-12
-6.99974e-11
-1.10603e-11
-6.82827e-11
-2.87666e-11
-6.49205e-11
-4.55297e-11
-6.02514e-11
-6.02743e-11
-5.47545e-11
-7.21673e-11
-4.90069e-11
-8.07838e-11
-4.34826e-11
-8.63479e-11
-3.8527e-11
-8.94589e-11
-3.43115e-11
-9.09456e-11
-3.08032e-11
-9.17818e-11
-2.78593e-11
-9.27218e-11
-2.51557e-11
-9.45497e-11
-2.2284e-11
-9.76638e-11
-1.89277e-11
-1.01835e-10
-1.48625e-11
-1.06606e-10
-9.98027e-12
-1.11359e-10
-4.29756e-12
-1.15373e-10
2.07387e-12
-1.17969e-10
8.90112e-12
-1.1845e-10
1.58344e-11
-1.16224e-10
2.23808e-11
-1.10836e-10
2.80093e-11
-1.02243e-10
3.23273e-11
-9.10921e-11
3.51588e-11
-7.84348e-11
3.6428e-11
-6.50897e-11
3.61362e-11
-5.19255e-11
3.44332e-11
-3.99744e-11
3.16055e-11
-3.01593e-11
2.81234e-11
-2.3333e-11
2.44729e-11
-1.98542e-11
2.11329e-11
-1.97474e-11
1.85066e-11
-2.27309e-11
1.6933e-11
-2.83034e-11
1.66597e-11
-3.57985e-11
1.78048e-11
-4.43587e-11
2.03621e-11
-5.31239e-11
2.42927e-11
-6.14014e-11
2.9421e-11
-6.83761e-11
3.55603e-11
-7.354e-11
4.24272e-11
-7.63176e-11
4.97689e-11
-7.65233e-11
5.73773e-11
-7.40887e-11
6.50716e-11
-6.89846e-11
7.26459e-11
-6.11467e-11
7.98946e-11
-5.05956e-11
8.66754e-11
-3.75816e-11
9.28642e-11
-2.22934e-11
9.84942e-11
-5.21002e-12
1.03525e-10
1.36883e-11
1.08092e-10
3.40203e-11
1.1241e-10
5.5576e-11
1.16693e-10
7.88317e-11
1.21417e-10
1.03708e-10
1.26585e-10
1.32529e-10
1.32752e-10
1.64906e-10
1.38661e-10
2.00347e-10
1.44438e-10
2.1054e-10
1.31378e-10
1.48405e-10
-3.26518e-12
3.21758e-11
-5.49646e-12
3.55254e-11
-5.98801e-12
2.81824e-11
-4.92079e-12
2.14843e-11
-2.67656e-12
1.72748e-11
-8.86678e-14
1.65715e-11
1.92949e-12
1.99624e-11
2.83805e-12
2.6339e-11
2.09374e-12
3.48598e-11
-5.07189e-13
4.39616e-11
-4.67082e-12
5.16879e-11
-9.85887e-12
5.63989e-11
-1.53115e-11
5.70696e-11
-2.02822e-11
5.35191e-11
-2.41042e-11
4.61769e-11
-2.62925e-11
3.60053e-11
-2.66493e-11
2.44245e-11
-2.51534e-11
1.27877e-11
-2.20521e-11
2.5449e-12
-1.76694e-11
-5.17137e-12
-1.28289e-11
-9.02885e-12
-7.91094e-12
-9.39274e-12
-3.46789e-12
-6.05126e-12
1.54287e-13
4.88523e-13
2.74788e-12
9.80793e-12
3.9507e-12
2.12741e-11
3.58203e-12
3.42232e-11
1.43643e-12
4.79989e-11
-2.68284e-12
6.17047e-11
-8.43128e-12
7.36025e-11
-1.53621e-11
8.24859e-11
-2.28783e-11
8.75735e-11
-3.02482e-11
8.8497e-11
-3.70644e-11
8.60936e-11
-4.32353e-11
8.14261e-11
-4.88287e-11
7.52912e-11
-5.40753e-11
6.82741e-11
-5.91632e-11
6.03434e-11
-6.40406e-11
5.0894e-11
-6.85025e-11
3.93781e-11
-7.21173e-11
2.5221e-11
-7.4285e-11
8.25074e-12
-7.45338e-11
-1.08112e-11
-7.25851e-11
-3.07149e-11
-6.87269e-11
-4.93877e-11
-6.33388e-11
-6.56622e-11
-5.70383e-11
-7.84676e-11
-5.05401e-11
-8.72818e-11
-4.44153e-11
-9.24726e-11
-3.90779e-11
-9.47961e-11
-3.47282e-11
-9.52953e-11
-3.12777e-11
-9.52322e-11
-2.85725e-11
-9.5427e-11
-2.61906e-11
-9.69318e-11
-2.3591e-11
-1.00264e-10
-2.03936e-11
-1.05033e-10
-1.63321e-11
-1.10668e-10
-1.12698e-11
-1.16422e-10
-5.23379e-12
-1.21409e-10
1.66739e-12
-1.24871e-10
9.16177e-12
-1.25945e-10
1.68488e-11
-1.23911e-10
2.41536e-11
-1.18141e-10
3.03898e-11
-1.08479e-10
3.50796e-11
-9.5782e-11
3.8059e-11
-8.14142e-11
3.92491e-11
-6.62799e-11
3.8635e-11
-5.13114e-11
3.63771e-11
-3.77166e-11
3.27814e-11
-2.65635e-11
2.84512e-11
-1.90027e-11
2.39499e-11
-1.53527e-11
1.98478e-11
-1.56451e-11
1.65891e-11
-1.94721e-11
1.45465e-11
-2.62606e-11
1.40157e-11
-3.52676e-11
1.51067e-11
-4.54496e-11
1.77978e-11
-5.58148e-11
2.20623e-11
-6.5666e-11
2.76741e-11
-7.39879e-11
3.44301e-11
-8.02961e-11
4.19802e-11
-8.38679e-11
5.00217e-11
-8.4565e-11
5.8347e-11
-8.24141e-11
6.67881e-11
-7.74258e-11
7.511e-11
-6.94686e-11
8.30805e-11
-5.85661e-11
9.05344e-11
-4.50355e-11
9.73442e-11
-2.91031e-11
1.03602e-10
-1.14675e-11
1.09204e-10
8.0862e-12
1.14367e-10
2.88577e-11
1.19346e-10
5.05968e-11
1.24471e-10
7.3707e-11
1.30496e-10
9.76835e-11
1.3764e-10
1.25384e-10
1.4759e-10
1.54956e-10
1.59498e-10
1.88439e-10
1.73755e-10
1.96283e-10
1.22137e-10
1.82996e-10
-3.89416e-12
3.607e-11
-6.48813e-12
3.81195e-11
-7.1145e-12
2.8809e-11
-5.78408e-12
2.01541e-11
-2.75533e-12
1.42462e-11
6.01604e-13
1.32147e-11
3.39752e-12
1.71667e-11
4.85755e-12
2.48792e-11
4.24452e-12
3.5473e-11
1.33387e-12
4.68725e-11
-3.6153e-12
5.66374e-11
-9.79241e-12
6.25763e-11
-1.62881e-11
6.35655e-11
-2.22032e-11
5.94344e-11
-2.67221e-11
5.0696e-11
-2.92531e-11
3.85365e-11
-2.9623e-11
2.47946e-11
-2.77047e-11
1.08696e-11
-2.37959e-11
-1.3638e-12
-1.87266e-11
-1.02405e-11
-1.30459e-11
-1.47094e-11
-7.21892e-12
-1.52195e-11
-1.93888e-12
-1.13311e-11
2.22703e-12
-3.67718e-12
5.3268e-12
6.70839e-12
6.88832e-12
1.97128e-11
6.70177e-12
3.441e-11
4.53802e-12
5.01629e-11
-5.95838e-15
6.62489e-11
-6.54485e-12
8.01416e-11
-1.44299e-11
9.03712e-11
-2.29743e-11
9.61181e-11
-3.11629e-11
9.66858e-11
-3.85302e-11
9.34611e-11
-4.50866e-11
8.79828e-11
-5.09035e-11
8.11085e-11
-5.63949e-11
7.37658e-11
-6.18805e-11
6.58294e-11
-6.72942e-11
5.63081e-11
-7.24354e-11
4.45197e-11
-7.67725e-11
2.95585e-11
-7.94616e-11
1.09402e-11
-7.99295e-11
-1.0343e-11
-7.77139e-11
-3.29301e-11
-7.32823e-11
-5.3819e-11
-6.70656e-11
-7.18787e-11
-5.97878e-11
-8.57452e-11
-5.24135e-11
-9.46559e-11
-4.55856e-11
-9.93003e-11
-3.98431e-11
-1.00538e-10
-3.54268e-11
-9.97115e-11
-3.2161e-11
-9.84981e-11
-2.98483e-11
-9.77398e-11
-2.7934e-11
-9.88464e-11
-2.57092e-11
-1.02489e-10
-2.27589e-11
-1.07983e-10
-1.87553e-11
-1.14672e-10
-1.35265e-11
-1.21651e-10
-7.12771e-12
-1.27808e-10
3.46126e-13
-1.32345e-10
8.62625e-12
-1.34226e-10
1.71654e-11
-1.32451e-10
2.53437e-11
-1.2632e-10
3.22654e-11
-1.15401e-10
3.73491e-11
-1.00866e-10
4.04661e-11
-8.45314e-11
4.15374e-11
-6.73513e-11
4.0535e-11
-5.03091e-11
3.76255e-11
-3.48072e-11
3.308e-11
-2.20181e-11
2.76037e-11
-1.35264e-11
2.20092e-11
-9.75828e-12
1.7145e-11
-1.07808e-11
1.32371e-11
-1.55642e-11
1.07009e-11
-2.37243e-11
9.94058e-12
-3.45072e-11
1.10176e-11
-4.65266e-11
1.39028e-11
-5.86999e-11
1.85989e-11
-7.0362e-11
2.4796e-11
-8.01851e-11
3.22932e-11
-8.77934e-11
4.06675e-11
-9.22422e-11
4.9554e-11
-9.34516e-11
5.87781e-11
-9.16382e-11
6.81733e-11
-8.6821e-11
7.74711e-11
-7.87664e-11
8.64255e-11
-6.75205e-11
9.4834e-11
-5.34439e-11
1.02551e-10
-3.68203e-11
1.09763e-10
-1.86798e-11
1.16266e-10
1.58317e-12
1.22377e-10
2.2747e-11
1.28355e-10
4.46185e-11
1.34666e-10
6.73961e-11
1.42363e-10
8.99861e-11
1.51801e-10
1.15947e-10
1.66224e-10
1.40533e-10
1.85424e-10
1.69239e-10
2.09761e-10
1.71946e-10
1.08723e-10
2.23175e-10
-4.88174e-12
4.09519e-11
-8.00742e-12
4.12453e-11
-8.77651e-12
2.95782e-11
-7.1831e-12
1.85608e-11
-3.39319e-12
1.04565e-11
1.35667e-12
8.46499e-12
5.30427e-12
1.32192e-11
7.37529e-12
2.28083e-11
6.7955e-12
3.6053e-11
3.45073e-12
5.02175e-11
-2.41585e-12
6.25041e-11
-9.79354e-12
6.99541e-11
-1.75901e-11
7.13623e-11
-2.46757e-11
6.65202e-11
-3.00541e-11
5.60745e-11
-3.2977e-11
4.14595e-11
-3.34133e-11
2.52311e-11
-3.17968e-11
9.25337e-12
-2.63723e-11
-6.78811e-12
-2.02517e-11
-1.63609e-11
-1.35727e-11
-2.13882e-11
-6.73534e-12
-2.20567e-11
-7.7073e-13
-1.72955e-11
4.03175e-12
-8.47943e-12
8.06735e-12
2.673e-12
9.96448e-12
1.78159e-11
1.00296e-11
3.4345e-11
7.87413e-12
5.23185e-11
2.71411e-12
7.1409e-11
-4.75138e-12
8.76072e-11
-1.38239e-11
9.94438e-11
-2.369e-11
1.05984e-10
-3.28255e-11
1.05821e-10
-4.07853e-11
1.01421e-10
-4.77448e-11
9.49425e-11
-5.37201e-11
8.70839e-11
-5.94313e-11
7.94773e-11
-6.53932e-11
7.17917e-11
-7.14529e-11
6.23681e-11
-7.74715e-11
5.05387e-11
-8.28124e-11
3.48997e-11
-8.68286e-11
1.49567e-11
-8.7262e-11
-9.90937e-12
-8.46309e-11
-3.55609e-11
-7.95808e-11
-5.8869e-11
-7.24003e-11
-7.90589e-11
-6.39491e-11
-9.41963e-11
-5.55608e-11
-1.03044e-10
-4.79172e-11
-1.06944e-10
-4.17483e-11
-1.06707e-10
-3.73802e-11
-1.0408e-10
-3.44326e-11
-1.01446e-10
-3.27182e-11
-9.94544e-11
-3.14878e-11
-1.00077e-10
-2.97926e-11
-1.04184e-10
-2.72481e-11
-1.10528e-10
-2.34201e-11
-1.185e-10
-1.80661e-11
-1.27005e-10
-1.13125e-11
-1.34562e-10
-3.21188e-12
-1.40446e-10
5.90102e-12
-1.43339e-10
1.54184e-11
-1.41968e-10
2.45738e-11
-1.35475e-10
3.22495e-11
-1.23077e-10
3.7753e-11
-1.06369e-10
4.09761e-11
-8.77547e-11
4.18512e-11
-6.82265e-11
4.03618e-11
-4.88199e-11
3.67856e-11
-3.12312e-11
3.16647e-11
-1.68973e-11
2.5294e-11
-7.15581e-12
1.79533e-11
-2.41771e-12
1.17674e-11
-4.59495e-12
6.9182e-12
-1.07151e-11
3.78364e-12
-2.05898e-11
2.79372e-12
-3.35172e-11
3.8659e-12
-4.75986e-11
7.04664e-12
-6.18805e-11
1.24068e-11
-7.5722e-11
1.94707e-11
-8.72489e-11
2.80629e-11
-9.63856e-11
3.76481e-11
-1.01827e-10
4.77155e-11
-1.03519e-10
5.82085e-11
-1.02131e-10
6.89765e-11
-9.7589e-11
7.9733e-11
-8.9523e-11
9.02063e-11
-7.7994e-11
1.00167e-10
-6.34053e-11
1.09418e-10
-4.60713e-11
1.18346e-10
-2.76077e-11
1.26687e-10
-6.75785e-12
1.34563e-10
1.48709e-11
1.42349e-10
3.68321e-11
1.50686e-10
5.90587e-11
1.60948e-10
7.97234e-11
1.73211e-10
1.03684e-10
1.92837e-10
1.20906e-10
2.19468e-10
1.42609e-10
2.52656e-10
1.38758e-10
9.38696e-11
2.67509e-10
-6.6104e-12
4.75624e-11
-1.03128e-11
4.49478e-11
-1.11612e-11
3.04267e-11
-8.24454e-12
1.56442e-11
-3.27795e-12
5.48996e-12
2.01334e-12
3.1738e-12
6.66158e-12
8.5711e-12
9.68533e-12
1.97847e-11
9.48273e-12
3.62557e-11
5.54085e-12
5.41595e-11
-1.57315e-12
6.96182e-11
-1.04393e-11
7.88204e-11
-1.98566e-11
8.07797e-11
-2.8432e-11
7.50957e-11
-3.49362e-11
6.25789e-11
-3.83052e-11
4.48287e-11
-3.82814e-11
2.52074e-11
-3.50214e-11
5.99354e-12
-3.00957e-11
-1.17136e-11
-2.3063e-11
-2.33934e-11
-1.54127e-11
-2.90383e-11
-7.3322e-12
-3.0137e-11
-5.77144e-13
-2.40503e-11
4.68714e-12
-1.37435e-11
9.33562e-12
-1.9753e-12
1.16075e-11
1.55442e-11
1.20553e-11
3.38972e-11
1.00883e-11
5.42856e-11
4.09075e-12
7.74065e-11
-4.45381e-12
9.61517e-11
-1.49717e-11
1.09962e-10
-2.65412e-11
1.17554e-10
-3.67352e-11
1.16015e-10
-4.53128e-11
1.09999e-10
-5.28031e-11
1.02433e-10
-5.89388e-11
9.32197e-11
-6.49363e-11
8.54749e-11
-7.16098e-11
7.84654e-11
-7.85759e-11
6.93344e-11
-8.58654e-11
5.78284e-11
-9.21541e-11
4.11886e-11
-9.53599e-11
1.81627e-11
-9.87093e-11
-6.55987e-12
-9.58641e-11
-3.84059e-11
-9.02437e-11
-6.44892e-11
-8.18928e-11
-8.74097e-11
-7.19356e-11
-1.04153e-10
-6.23446e-11
-1.12635e-10
-5.36887e-11
-1.156e-10
-4.70926e-11
-1.13303e-10
-4.30644e-11
-1.08108e-10
-4.08089e-11
-1.03701e-10
-4.01219e-11
-1.00142e-10
-3.99284e-11
-1.00271e-10
-3.89374e-11
-1.05176e-10
-3.69902e-11
-1.12476e-10
-3.34389e-11
-1.22051e-10
-2.79034e-11
-1.32541e-10
-2.06859e-11
-1.4178e-10
-1.17485e-11
-1.49383e-10
-1.58848e-12
-1.53499e-10
8.87274e-12
-1.52429e-10
1.89129e-11
-1.45515e-10
2.73572e-11
-1.31521e-10
3.33052e-11
-1.12318e-10
3.66353e-11
-9.1085e-11
3.70198e-11
-6.86113e-11
3.42328e-11
-4.60331e-11
2.89432e-11
-2.59418e-11
2.22858e-11
-1.02401e-11
1.54414e-11
-3.11589e-13
7.98439e-12
5.03909e-12
1.53468e-12
1.85462e-12
-3.96915e-12
-5.21134e-12
-7.79117e-12
-1.67677e-11
-8.75028e-12
-3.2558e-11
-7.31753e-12
-4.90313e-11
-3.44741e-12
-6.57505e-11
3.01894e-12
-8.21883e-11
1.13655e-11
-9.55954e-11
2.15071e-11
-1.06527e-10
3.28277e-11
-1.13148e-10
4.45899e-11
-1.15281e-10
5.70421e-11
-1.14584e-10
6.99132e-11
-1.1046e-10
8.2891e-11
-1.02501e-10
9.57996e-11
-9.09028e-11
1.08384e-10
-7.59904e-11
1.20349e-10
-5.80362e-11
1.31774e-10
-3.9033e-11
1.42314e-10
-1.72983e-11
1.55147e-10
2.03715e-12
1.66718e-10
2.52607e-11
1.79049e-10
4.67273e-11
1.93545e-10
6.52272e-11
2.09969e-10
8.72601e-11
2.34144e-10
9.67314e-11
2.64353e-10
1.124e-10
2.95997e-10
1.07114e-10
8.98909e-11
2.99976e-10
-1.08046e-11
5.8367e-11
-1.48566e-11
4.9e-11
-1.64647e-11
3.20349e-11
-1.32755e-11
1.24551e-11
-5.35552e-12
-2.42989e-12
2.8357e-12
-5.01733e-12
1.02531e-11
1.1538e-12
1.46879e-11
1.53499e-11
1.40193e-11
3.69243e-11
8.41456e-12
5.97642e-11
-1.13559e-12
7.91684e-11
-1.30682e-11
9.07531e-11
-2.57735e-11
9.34851e-11
-3.702e-11
8.63423e-11
-4.52151e-11
7.07742e-11
-5.0278e-11
4.98918e-11
-5.16281e-11
2.65578e-11
-4.70491e-11
1.41478e-12
-3.77376e-11
-2.10248e-11
-2.85452e-11
-3.25855e-11
-1.9498e-11
-3.80853e-11
-9.43202e-12
-4.02026e-11
-1.55255e-12
-3.19295e-11
5.38854e-12
-2.06843e-11
1.11627e-11
-7.74926e-12
1.28639e-11
1.38432e-11
1.34905e-11
3.32707e-11
1.17325e-11
5.60436e-11
3.74791e-12
8.5391e-11
-6.95847e-12
1.06858e-10
-2.02504e-11
1.23253e-10
-3.53376e-11
1.32641e-10
-4.80381e-11
1.28716e-10
-5.85289e-11
1.20489e-10
-6.76956e-11
1.11599e-10
-7.46086e-11
1.00133e-10
-8.1403e-11
9.22694e-11
-8.93415e-11
8.64039e-11
-9.74022e-11
7.73951e-11
-1.06342e-10
6.67683e-11
-1.1518e-10
5.00268e-11
-1.2094e-10
2.39229e-11
-1.20993e-10
-6.5067e-12
-1.16172e-10
-4.3227e-11
-1.09143e-10
-7.15183e-11
-9.87321e-11
-9.78206e-11
-8.60459e-11
-1.1684e-10
-7.45564e-11
-1.24124e-10
-6.43079e-11
-1.25848e-10
-5.71502e-11
-1.20461e-10
-5.42873e-11
-1.10971e-10
-5.40066e-11
-1.03982e-10
-5.54697e-11
-9.86785e-11
-5.71655e-11
-9.8575e-11
-5.73331e-11
-1.05008e-10
-5.65236e-11
-1.13285e-10
-5.3702e-11
-1.24873e-10
-4.80545e-11
-1.38188e-10
-4.02249e-11
-1.4961e-10
-2.99965e-11
-1.59612e-10
-1.83956e-11
-1.651e-10
-7.20738e-12
-1.63618e-10
2.696e-12
-1.55419e-10
1.17499e-11
-1.40575e-10
1.90785e-11
-1.19646e-10
2.37747e-11
-9.57816e-11
2.47564e-11
-6.95934e-11
2.19049e-11
-4.31821e-11
1.59381e-11
-1.99753e-11
8.05857e-12
-2.36099e-12
-1.33394e-12
9.08057e-12
-1.10695e-11
1.47743e-11
-1.82657e-11
9.05056e-12
-2.4244e-11
7.6678e-13
-2.85376e-11
-1.24742e-11
-2.8728e-11
-3.23675e-11
-2.62221e-11
-5.15371e-11
-2.08626e-11
-7.11098e-11
-1.20031e-11
-9.10477e-11
-1.57236e-12
-1.06026e-10
1.07002e-11
-1.188e-10
2.44682e-11
-1.26916e-10
3.88854e-11
-1.29698e-10
5.45971e-11
-1.30295e-10
7.07851e-11
-1.26649e-10
8.66417e-11
-1.18358e-10
1.03485e-10
-1.07746e-10
1.20831e-10
-9.33377e-11
1.38554e-10
-7.57594e-11
1.56167e-10
-5.66463e-11
1.72884e-10
-3.40163e-11
1.89794e-10
-1.48738e-11
2.06703e-10
8.35079e-12
2.26987e-10
2.64429e-11
2.4718e-10
4.50337e-11
2.74007e-10
6.04337e-11
2.95802e-10
7.49357e-11
3.20028e-10
8.81744e-11
3.31044e-10
9.60983e-11
1.029e-10
3.18035e-10
-3.00385e-12
6.13709e-11
5.63804e-12
4.03639e-11
9.59558e-12
2.80844e-11
7.87553e-12
1.41816e-11
2.1786e-12
3.27302e-12
7.7442e-12
-1.05771e-11
1.32901e-11
-4.38707e-12
2.84918e-12
2.57942e-11
-1.76599e-11
5.74346e-11
-3.29815e-11
7.50859e-11
-4.75085e-11
9.36961e-11
-6.07991e-11
1.04046e-10
-7.11088e-11
1.038e-10
-7.61467e-11
9.13883e-11
-7.53396e-11
6.9978e-11
-6.8615e-11
4.31816e-11
-5.56797e-11
1.36408e-11
-4.02977e-11
-1.39452e-11
-2.96676e-11
-3.16307e-11
-2.1088e-11
-4.11403e-11
-1.36364e-11
-4.55126e-11
-6.92118e-12
-4.68942e-11
-1.87531e-12
-3.69517e-11
1.06954e-12
-2.36055e-11
-3.26981e-13
-6.33047e-12
-9.00952e-12
2.25439e-11
-2.15977e-11
4.58704e-11
-3.91009e-11
7.35501e-11
-5.99518e-11
1.06237e-10
-8.09085e-11
1.27803e-10
-1.00952e-10
1.4328e-10
-1.18889e-10
1.50555e-10
-1.4661e-10
1.56412e-10
-1.63253e-10
1.37109e-10
-1.66899e-10
1.15225e-10
-1.67432e-10
1.00651e-10
-1.68737e-10
9.35679e-11
-1.69591e-10
8.72563e-11
-1.68669e-10
7.64754e-11
-1.66152e-10
6.42551e-11
-1.57896e-10
4.17743e-11
-1.42478e-10
8.5073e-12
-1.28189e-10
-2.07956e-11
-1.20042e-10
-5.13751e-11
-1.09884e-10
-8.168e-11
-9.7302e-11
-1.10408e-10
-8.42549e-11
-1.29894e-10
-7.2281e-11
-1.36104e-10
-6.26886e-11
-1.35443e-10
-5.63859e-11
-1.26762e-10
-5.47284e-11
-1.12624e-10
-5.90109e-11
-9.96955e-11
-6.19313e-11
-9.57556e-11
-6.30611e-11
-9.74441e-11
-6.28259e-11
-1.05242e-10
-6.08492e-11
-1.15259e-10
-5.61496e-11
-1.29569e-10
-4.85706e-11
-1.45763e-10
-3.81142e-11
-1.60062e-10
-2.59752e-11
-1.71748e-10
-1.46682e-11
-1.76404e-10
-6.94115e-12
-1.71344e-10
-3.20423e-12
-1.59158e-10
6.91659e-13
-1.4448e-10
5.08012e-12
-1.24051e-10
5.20845e-12
-9.59339e-11
6.92565e-13
-6.51063e-11
-5.47398e-12
-3.7046e-11
-1.37488e-11
-1.17307e-11
-2.43003e-11
8.16065e-12
-3.62418e-11
2.09919e-11
-4.47534e-11
2.32558e-11
-4.78636e-11
1.21333e-11
-4.89089e-11
1.79089e-12
-4.87519e-11
-1.26429e-11
-4.48024e-11
-3.6319e-11
-3.72304e-11
-5.91043e-11
-2.49974e-11
-8.33357e-11
-1.12068e-11
-1.04832e-10
3.7458e-12
-1.20975e-10
1.82811e-11
-1.33333e-10
3.35224e-11
-1.42157e-10
5.23491e-11
-1.4853e-10
7.1564e-11
-1.49525e-10
9.14483e-11
-1.46561e-10
1.07565e-10
-1.34516e-10
1.26902e-10
-1.27135e-10
1.45148e-10
-1.11641e-10
1.67958e-10
-9.86302e-11
1.86847e-10
-7.55991e-11
2.08378e-10
-5.56164e-11
2.3278e-10
-3.93498e-11
2.47689e-10
-6.63159e-12
2.75948e-10
-1.88007e-12
2.83885e-10
3.70539e-11
3.40747e-10
3.55638e-12
3.23631e-10
9.20579e-11
3.11289e-10
1.00533e-10
2.60394e-10
1.4701e-10
1.24745e-10
2.38561e-10
-1.16713e-12
6.25467e-11
-1.39835e-11
5.32031e-11
-2.90192e-11
4.31397e-11
-4.39465e-11
2.91255e-11
-5.7275e-11
1.66174e-11
-6.96986e-11
1.8623e-12
-8.22909e-11
8.21861e-12
-9.43245e-11
3.78362e-11
-1.06486e-10
6.96007e-11
-1.2121e-10
8.98147e-11
-1.35568e-10
1.08065e-10
-1.50363e-10
1.18862e-10
-1.65254e-10
1.18722e-10
-1.80139e-10
1.06315e-10
-1.94585e-10
8.44752e-11
-2.08496e-10
5.71579e-11
-2.23017e-10
2.824e-11
-2.34812e-10
-2.06343e-12
-2.46992e-10
-1.93623e-11
-2.58552e-10
-2.94943e-11
-2.69725e-10
-3.42595e-11
-2.8084e-10
-3.5704e-11
-2.89615e-10
-2.81027e-11
-2.9858e-10
-1.45701e-11
-3.08082e-10
3.23207e-12
-3.16109e-10
3.06117e-11
-3.27445e-10
5.7222e-11
-3.39153e-10
8.52466e-11
-3.49256e-10
1.16305e-10
-3.61478e-10
1.3997e-10
-3.74481e-10
1.5621e-10
-3.89468e-10
1.65458e-10
-4.02677e-10
1.6953e-10
-4.22243e-10
1.56588e-10
-4.41846e-10
1.34759e-10
-4.57677e-10
1.16437e-10
-4.68627e-10
1.04501e-10
-4.76139e-10
9.47722e-11
-4.82051e-10
8.24002e-11
-4.852e-10
6.74167e-11
-4.88187e-10
4.47682e-11
-4.92801e-10
1.31207e-11
-4.951e-10
-1.85044e-11
-4.99073e-10
-4.74203e-11
-5.03996e-10
-7.67861e-11
-5.09793e-10
-1.04649e-10
-5.14326e-10
-1.25397e-10
-5.16032e-10
-1.34423e-10
-5.16391e-10
-1.35089e-10
-5.1531e-10
-1.27833e-10
-5.13739e-10
-1.14176e-10
-5.12243e-10
-1.01177e-10
-5.11273e-10
-9.67193e-11
-5.10704e-10
-9.80112e-11
-5.11353e-10
-1.04591e-10
-5.12032e-10
-1.14573e-10
-5.13034e-10
-1.28556e-10
-5.13946e-10
-1.44842e-10
-5.1404e-10
-1.59963e-10
-5.14104e-10
-1.71682e-10
-5.14177e-10
-1.76333e-10
-5.13887e-10
-1.71645e-10
-5.12353e-10
-1.60721e-10
-5.09198e-10
-1.47692e-10
-5.04308e-10
-1.29029e-10
-4.98023e-10
-1.02327e-10
-4.90999e-10
-7.22487e-11
-4.84168e-10
-4.39953e-11
-4.77798e-10
-1.82146e-11
-4.71998e-10
2.24688e-12
-4.66208e-10
1.50867e-11
-4.62047e-10
1.8983e-11
-4.60166e-10
1.0155e-11
-4.57062e-10
-1.38318e-12
-4.52438e-10
-1.73019e-11
-4.48883e-10
-3.98799e-11
-4.43803e-10
-6.41775e-11
-4.37803e-10
-8.93299e-11
-4.3063e-10
-1.12011e-10
-4.21872e-10
-1.29749e-10
-4.11829e-10
-1.43404e-10
-3.99464e-10
-1.54567e-10
-3.84887e-10
-1.63182e-10
-3.68387e-10
-1.66144e-10
-3.5107e-10
-1.64043e-10
-3.31341e-10
-1.54447e-10
-3.11443e-10
-1.47256e-10
-2.88746e-10
-1.34573e-10
-2.65808e-10
-1.21811e-10
-2.40685e-10
-1.00975e-10
-2.14737e-10
-8.18269e-11
-1.90491e-10
-6.38534e-11
-1.61741e-10
-3.56083e-11
-1.38354e-10
-2.54298e-11
-1.09752e-10
8.36844e-12
-9.32932e-11
-1.29159e-11
-7.81775e-11
7.6966e-11
-8.2812e-11
1.05195e-10
-8.77016e-11
1.5192e-10
1.49595e-10
-1.12517e-10
3.99884e-13
6.2174e-11
-1.61691e-11
6.97903e-11
-3.87252e-11
6.57082e-11
-6.28565e-11
5.32677e-11
-8.77635e-11
4.15369e-11
-1.16013e-10
3.0125e-11
-1.42912e-10
3.51271e-11
-1.6346e-10
5.839e-11
-1.80078e-10
8.62258e-11
-1.96041e-10
1.05793e-10
-2.10652e-10
1.22704e-10
-2.25084e-10
1.33334e-10
-2.40508e-10
1.34199e-10
-2.58074e-10
1.23947e-10
-2.78384e-10
1.04865e-10
-3.01314e-10
8.01814e-11
-3.26223e-10
5.32516e-11
-3.54453e-10
2.62694e-11
-3.81629e-10
7.90987e-12
-4.07619e-10
-3.41852e-12
-4.32026e-10
-9.77589e-12
-4.55825e-10
-1.18334e-11
-4.77272e-10
-6.58851e-12
-4.96815e-10
5.0298e-12
-5.14928e-10
2.13826e-11
-5.29477e-10
4.51705e-11
-5.43145e-10
7.08711e-11
-5.55452e-10
9.75073e-11
-5.64888e-10
1.25674e-10
-5.73888e-10
1.48887e-10
-5.83272e-10
1.65497e-10
-5.93486e-10
1.75567e-10
-6.03536e-10
1.7948e-10
-6.1866e-10
1.7163e-10
-6.38192e-10
1.54239e-10
-6.5845e-10
1.36674e-10
-6.762e-10
1.22256e-10
-6.90919e-10
1.09506e-10
-7.03481e-10
9.49741e-11
-7.13909e-10
7.78482e-11
-7.24174e-10
5.50255e-11
-7.36493e-10
2.54202e-11
-7.50125e-10
-4.90593e-12
-7.63521e-10
-3.40722e-11
-7.77958e-10
-6.24068e-11
-7.93805e-10
-8.88581e-11
-8.09458e-10
-1.09783e-10
-8.22537e-10
-1.21357e-10
-8.32775e-10
-1.2484e-10
-8.39642e-10
-1.20944e-10
-8.4286e-10
-1.10939e-10
-8.43399e-10
-1.00631e-10
-8.42933e-10
-9.71866e-11
-8.42456e-10
-9.84907e-11
-8.42887e-10
-1.04158e-10
-8.44129e-10
-1.13327e-10
-8.46627e-10
-1.26056e-10
-8.50466e-10
-1.41006e-10
-8.55191e-10
-1.55245e-10
-8.60746e-10
-1.66138e-10
-8.66393e-10
-1.70707e-10
-8.70759e-10
-1.6732e-10
-8.72882e-10
-1.58673e-10
-8.72666e-10
-1.48017e-10
-8.69587e-10
-1.32241e-10
-8.63247e-10
-1.0881e-10
-8.53766e-10
-8.18672e-11
-8.41967e-10
-5.5925e-11
-8.28395e-10
-3.19155e-11
-8.13543e-10
-1.27359e-11
-7.98206e-10
-3.78765e-13
-7.84413e-10
5.07518e-12
-7.7377e-10
-5.72999e-13
-7.64207e-10
-1.09956e-11
-7.55536e-10
-2.59928e-11
-7.48495e-10
-4.69314e-11
-7.4227e-10
-7.0421e-11
-7.36783e-10
-9.4854e-11
-7.31472e-10
-1.17377e-10
-7.25302e-10
-1.35991e-10
-7.17773e-10
-1.51028e-10
-7.0853e-10
-1.63942e-10
-6.97397e-10
-1.74499e-10
-6.84348e-10
-1.79428e-10
-6.69327e-10
-1.79337e-10
-6.51517e-10
-1.72547e-10
-6.32319e-10
-1.6675e-10
-6.1108e-10
-1.56113e-10
-5.88663e-10
-1.44539e-10
-5.64281e-10
-1.25675e-10
-5.38944e-10
-1.07473e-10
-5.14262e-10
-8.88037e-11
-4.86781e-10
-6.32829e-11
-4.63141e-10
-4.91717e-11
-4.3568e-10
-1.91207e-11
-4.27859e-10
-2.07315e-11
-4.0862e-10
5.77287e-11
-4.00577e-10
9.71416e-11
-3.96219e-10
1.47558e-10
1.63018e-10
-4.09608e-10
-8.10972e-13
6.2998e-11
-1.84071e-11
8.73723e-11
-4.39561e-11
9.12407e-11
-7.37102e-11
8.30091e-11
-1.05968e-10
7.37896e-11
-1.4151e-10
6.56682e-11
-1.75897e-10
6.95174e-11
-2.04297e-10
8.67945e-11
-2.26999e-10
1.08936e-10
-2.47187e-10
1.25998e-10
-2.64956e-10
1.40498e-10
-2.81547e-10
1.49957e-10
-2.98639e-10
1.51326e-10
-3.17969e-10
1.43313e-10
-3.40618e-10
1.27553e-10
-3.66917e-10
1.0652e-10
-3.96675e-10
8.30471e-11
-4.30123e-10
5.97445e-11
-4.64163e-10
4.19631e-11
-4.97476e-10
2.98935e-11
-5.29956e-10
2.2693e-11
-5.61675e-10
1.98719e-11
-5.91456e-10
2.31786e-11
-6.18814e-10
3.23727e-11
-6.43893e-10
4.64416e-11
-6.65125e-10
6.63762e-11
-6.83421e-10
8.91356e-11
-6.98986e-10
1.13039e-10
-7.1101e-10
1.37668e-10
-7.21026e-10
1.58875e-10
-7.30226e-10
1.74668e-10
-7.39295e-10
1.84607e-10
-7.48299e-10
1.88455e-10
-7.60337e-10
1.83646e-10
-7.76729e-10
1.7062e-10
-7.95508e-10
1.55453e-10
-8.14161e-10
1.40912e-10
-8.31403e-10
1.26747e-10
-8.47335e-10
1.10895e-10
-8.61996e-10
9.24868e-11
-8.76703e-10
6.97008e-11
-8.93352e-10
4.20299e-11
-9.11272e-10
1.29681e-11
-9.3e-10
-1.53974e-11
-9.49659e-10
-4.2802e-11
-9.70539e-10
-6.80266e-11
-9.91704e-10
-8.86499e-11
-1.01117e-09
-1.01901e-10
-1.02798e-09
-1.08027e-10
-1.04125e-09
-1.07668e-10
-1.05016e-09
-1.02031e-10
-1.05518e-09
-9.56177e-11
-1.05821e-09
-9.4177e-11
-1.06027e-09
-9.64542e-11
-1.06233e-09
-1.02118e-10
-1.06486e-09
-1.10825e-10
-1.0685e-09
-1.22441e-10
-1.07369e-09
-1.35846e-10
-1.08028e-09
-1.48683e-10
-1.08798e-09
-1.58464e-10
-1.09588e-09
-1.62837e-10
-1.1025e-09
-1.60739e-10
-1.10694e-09
-1.54274e-10
-1.10923e-09
-1.45787e-10
-1.10867e-09
-1.32852e-10
-1.10418e-09
-1.13347e-10
-1.09556e-09
-9.05157e-11
-1.08346e-09
-6.80529e-11
-1.06826e-09
-4.71333e-11
-1.05089e-09
-3.01382e-11
-1.03267e-09
-1.86374e-11
-1.01428e-09
-1.33521e-11
-9.9823e-10
-1.66629e-11
-9.8378e-10
-2.54873e-11
-9.70807e-10
-3.90159e-11
-9.6005e-10
-5.77558e-11
-9.51161e-10
-7.93998e-11
-9.43941e-10
-1.02185e-10
-9.37785e-10
-1.2366e-10
-9.31646e-10
-1.4227e-10
-9.24859e-10
-1.57968e-10
-9.17182e-10
-1.71793e-10
-9.08531e-10
-1.83338e-10
-8.9832e-10
-1.89833e-10
-8.86336e-10
-1.91507e-10
-8.7159e-10
-1.87465e-10
-8.55579e-10
-1.82922e-10
-8.37702e-10
-1.74151e-10
-8.18997e-10
-1.63407e-10
-7.98398e-10
-1.46431e-10
-7.77294e-10
-1.28712e-10
-7.56642e-10
-1.09553e-10
-7.34465e-10
-8.55181e-11
-7.15583e-10
-6.80849e-11
-6.95178e-10
-3.9555e-11
-6.88685e-10
-2.72765e-11
-6.71137e-10
4.01059e-11
-6.58643e-10
8.457e-11
-6.46592e-10
1.35453e-10
1.61237e-10
-6.44838e-10
-3.19097e-12
6.61815e-11
-2.23492e-11
1.06482e-10
-4.96478e-11
1.18495e-10
-8.21994e-11
1.15527e-10
-1.17895e-10
1.09465e-10
-1.56394e-10
1.04158e-10
-1.94072e-10
1.07191e-10
-2.27088e-10
1.19809e-10
-2.54813e-10
1.36665e-10
-2.79472e-10
1.50668e-10
-3.0141e-10
1.62449e-10
-3.21617e-10
1.70176e-10
-3.41672e-10
1.71386e-10
-3.63325e-10
1.64962e-10
-3.87792e-10
1.52006e-10
-4.1569e-10
1.34395e-10
-4.47142e-10
1.14466e-10
-4.81998e-10
9.45502e-11
-5.18363e-10
7.82592e-11
-5.54988e-10
6.64361e-11
-5.91331e-10
5.89463e-11
-6.27165e-10
5.56177e-11
-6.61548e-10
5.74827e-11
-6.93798e-10
6.45539e-11
-7.23603e-10
7.61886e-11
-7.49855e-10
9.25825e-11
-7.72615e-10
1.11868e-10
-7.92013e-10
1.32429e-10
-8.07663e-10
1.53332e-10
-8.20519e-10
1.71762e-10
-8.31654e-10
1.85839e-10
-8.41854e-10
1.94842e-10
-8.51662e-10
1.98291e-10
-8.62961e-10
1.94965e-10
-8.77304e-10
1.84976e-10
-8.93919e-10
1.72072e-10
-9.11355e-10
1.58338e-10
-9.28557e-10
1.43924e-10
-9.4536e-10
1.27659e-10
-9.61773e-10
1.0885e-10
-9.78608e-10
8.64794e-11
-9.97077e-10
6.04418e-11
-1.01699e-09
3.28284e-11
-1.03799e-09
5.53758e-12
-1.06005e-09
-2.07893e-11
-1.08316e-09
-4.49648e-11
-1.10665e-09
-6.51887e-11
-1.12907e-09
-7.94994e-11
-1.14935e-09
-8.77572e-11
-1.16652e-09
-9.05035e-11
-1.17967e-09
-8.89024e-11
-1.18892e-09
-8.63962e-11
-1.19583e-09
-8.73103e-11
-1.20124e-09
-9.10783e-11
-1.20597e-09
-9.74339e-11
-1.21063e-09
-1.06216e-10
-1.21591e-09
-1.17209e-10
-1.22235e-09
-1.29449e-10
-1.23002e-09
-1.41057e-10
-1.2386e-09
-1.49913e-10
-1.24726e-09
-1.542e-10
-1.25476e-09
-1.53263e-10
-1.26037e-09
-1.48665e-10
-1.26413e-09
-1.42022e-10
-1.26536e-09
-1.31601e-10
-1.2628e-09
-1.15859e-10
-1.25605e-09
-9.71982e-11
-1.24552e-09
-7.85171e-11
-1.23152e-09
-6.107e-11
-1.21488e-09
-4.67355e-11
-1.19656e-09
-3.69297e-11
-1.17742e-09
-3.24879e-11
-1.15928e-09
-3.48276e-11
-1.14239e-09
-4.24351e-11
-1.12691e-09
-5.45928e-11
-1.11352e-09
-7.12686e-11
-1.10225e-09
-9.08237e-11
-1.09297e-09
-1.11634e-10
-1.08516e-09
-1.31654e-10
-1.078e-09
-1.4962e-10
-1.07088e-09
-1.6528e-10
-1.06365e-09
-1.7921e-10
-1.05622e-09
-1.90941e-10
-1.0479e-09
-1.98278e-10
-1.03831e-09
-2.01192e-10
-1.02667e-09
-1.99178e-10
-1.01405e-09
-1.95594e-10
-1.00017e-09
-1.88072e-10
-9.85812e-10
-1.77807e-10
-9.70236e-10
-1.62022e-10
-9.54582e-10
-1.44355e-10
-9.39614e-10
-1.24493e-10
-9.24232e-10
-1.0088e-10
-9.11719e-10
-8.06132e-11
-8.98863e-10
-5.2476e-11
-8.94392e-10
-3.18541e-11
-8.80181e-10
2.57739e-11
-8.6609e-10
7.03746e-11
-8.48628e-10
1.17919e-10
1.46233e-10
-8.33678e-10
-6.09813e-12
7.22502e-11
-2.68216e-11
1.27129e-10
-5.54366e-11
1.47044e-10
-8.9334e-11
1.49374e-10
-1.26419e-10
1.46515e-10
-1.65755e-10
1.43471e-10
-2.04546e-10
1.45962e-10
-2.3992e-10
1.55167e-10
-2.71056e-10
1.67787e-10
-2.99287e-10
1.78888e-10
-3.24987e-10
1.88134e-10
-3.48885e-10
1.9405e-10
-3.72254e-10
1.94717e-10
-3.96582e-10
1.89236e-10
-4.22997e-10
1.78353e-10
-4.52187e-10
1.63504e-10
-4.84401e-10
1.46586e-10
-5.19524e-10
1.29561e-10
-5.56393e-10
1.15001e-10
-5.94042e-10
1.03948e-10
-6.31831e-10
9.65978e-11
-6.69366e-10
9.30242e-11
-7.05869e-10
9.38738e-11
-7.40638e-10
9.92313e-11
-7.73177e-10
1.08657e-10
-8.02629e-10
1.2199e-10
-8.28725e-10
1.37951e-10
-8.51414e-10
1.55139e-10
-8.70493e-10
1.72463e-10
-8.86545e-10
1.87887e-10
-9.00407e-10
1.99783e-10
-9.12825e-10
2.07335e-10
-9.24476e-10
2.10002e-10
-9.36625e-10
2.07153e-10
-9.50521e-10
1.9889e-10
-9.65999e-10
1.87543e-10
-9.82329e-10
1.74638e-10
-9.98882e-10
1.60427e-10
-1.01553e-09
1.44244e-10
-1.03235e-09
1.25589e-10
-1.04986e-09
1.03916e-10
-1.06881e-09
7.93298e-11
-1.08925e-09
5.32064e-11
-1.11091e-09
2.71336e-11
-1.13367e-09
1.92146e-12
-1.15736e-09
-2.13113e-11
-1.18143e-09
-4.11526e-11
-1.20479e-09
-5.61734e-11
-1.22646e-09
-6.61174e-11
-1.24555e-09
-7.14489e-11
-1.26124e-09
-7.32539e-11
-1.27351e-09
-7.41617e-11
-1.2835e-09
-7.73658e-11
-1.2919e-09
-8.27332e-11
-1.29929e-09
-9.00865e-11
-1.30625e-09
-9.93049e-11
-1.31339e-09
-1.10117e-10
-1.32121e-09
-1.21678e-10
-1.32981e-09
-1.32485e-10
-1.33895e-09
-1.40805e-10
-1.3479e-09
-1.45256e-10
-1.35572e-09
-1.45436e-10
-1.36189e-09
-1.42471e-10
-1.36639e-09
-1.37468e-10
-1.36864e-09
-1.2927e-10
-1.36753e-09
-1.16863e-10
-1.3626e-09
-1.02015e-10
-1.35404e-09
-8.69659e-11
-1.34208e-09
-7.29285e-11
-1.32731e-09
-6.14185e-11
-1.3105e-09
-5.36811e-11
-1.29246e-09
-5.05048e-11
-1.27452e-09
-5.2796e-11
-1.25723e-09
-5.98004e-11
-1.24099e-09
-7.09519e-11
-1.22644e-09
-8.59764e-11
-1.21379e-09
-1.03643e-10
-1.20305e-09
-1.22556e-10
-1.19385e-09
-1.41045e-10
-1.18563e-09
-1.58046e-10
-1.17791e-09
-1.73185e-10
-1.1706e-09
-1.86679e-10
-1.16362e-09
-1.98038e-10
-1.15638e-09
-2.05581e-10
-1.14847e-09
-2.09129e-10
-1.13931e-09
-2.08329e-10
-1.12966e-09
-2.05242e-10
-1.11942e-09
-1.98292e-10
-1.10914e-09
-1.88034e-10
-1.09844e-09
-1.72643e-10
-1.08819e-09
-1.54504e-10
-1.07895e-09
-1.33638e-10
-1.07021e-09
-1.09578e-10
-1.06391e-09
-8.6945e-11
-1.05772e-09
-5.87578e-11
-1.05574e-09
-3.39537e-11
-1.04503e-09
1.49559e-11
-1.03053e-09
5.57936e-11
-1.0093e-09
9.66359e-11
1.21077e-10
-9.84184e-10
-8.6192e-12
8.08211e-11
-3.08127e-11
1.49228e-10
-6.04858e-11
1.7664e-10
-9.50985e-11
1.83926e-10
-1.32675e-10
1.84044e-10
-1.72038e-10
1.8279e-10
-2.11035e-10
1.84915e-10
-2.47557e-10
1.91643e-10
-2.80825e-10
2.01009e-10
-3.11594e-10
2.09607e-10
-3.4019e-10
2.16674e-10
-3.67165e-10
2.20956e-10
-3.93501e-10
2.20968e-10
-4.20375e-10
2.16009e-10
-4.48735e-10
2.066e-10
-4.79212e-10
1.93861e-10
-5.12082e-10
1.79326e-10
-5.47294e-10
1.64635e-10
-5.84133e-10
1.51695e-10
-6.21871e-10
1.41539e-10
-6.59939e-10
1.34527e-10
-6.97897e-10
1.30859e-10
-7.35097e-10
1.3097e-10
-7.70891e-10
1.34944e-10
-8.04747e-10
1.42457e-10
-8.35981e-10
1.53195e-10
-8.64221e-10
1.66194e-10
-8.8931e-10
1.80266e-10
-9.11111e-10
1.94332e-10
-9.29977e-10
2.06841e-10
-9.46526e-10
2.16424e-10
-9.61393e-10
2.22284e-10
-9.75229e-10
2.239e-10
-9.88948e-10
2.20907e-10
-1.00348e-09
2.13425e-10
-1.0189e-09
2.02939e-10
-1.03488e-09
1.90567e-10
-1.0511e-09
1.76579e-10
-1.06755e-09
1.60608e-10
-1.08435e-09
1.4231e-10
-1.10193e-09
1.21411e-10
-1.12077e-09
9.81075e-11
-1.14102e-09
7.33896e-11
-1.16248e-09
4.85421e-11
-1.18502e-09
2.4416e-11
-1.20841e-09
2.03182e-12
-1.23214e-09
-1.74662e-11
-1.25536e-09
-3.29998e-11
-1.27723e-09
-4.43002e-11
-1.29696e-09
-5.17621e-11
-1.31391e-09
-5.63588e-11
-1.328e-09
-6.01039e-11
-1.34005e-09
-6.53542e-11
-1.35059e-09
-7.22238e-11
-1.36009e-09
-8.06219e-11
-1.36899e-09
-9.04299e-11
-1.37779e-09
-1.01344e-10
-1.38687e-09
-1.1262e-10
-1.39633e-09
-1.2304e-10
-1.40593e-09
-1.31217e-10
-1.41509e-09
-1.36096e-10
-1.42309e-09
-1.37416e-10
-1.42955e-09
-1.35972e-10
-1.43443e-09
-1.32527e-10
-1.43725e-09
-1.26363e-10
-1.43713e-09
-1.1688e-10
-1.43363e-09
-1.05402e-10
-1.42683e-09
-9.36642e-11
-1.41689e-09
-8.27817e-11
-1.40422e-09
-7.40061e-11
-1.38944e-09
-6.84018e-11
-1.37325e-09
-6.66719e-11
-1.35664e-09
-6.94325e-11
-1.34021e-09
-7.63004e-11
-1.32443e-09
-8.68273e-11
-1.30989e-09
-1.00638e-10
-1.2969e-09
-1.16769e-10
-1.28554e-09
-1.34049e-10
-1.27561e-09
-1.51122e-10
-1.26674e-09
-1.67069e-10
-1.25861e-09
-1.81446e-10
-1.25118e-09
-1.94215e-10
-1.24438e-09
-2.04894e-10
-1.23777e-09
-2.12204e-10
-1.23101e-09
-2.15878e-10
-1.22373e-09
-2.15593e-10
-1.21643e-09
-2.12523e-10
-1.20915e-09
-2.05533e-10
-1.2023e-09
-1.94796e-10
-1.19574e-09
-1.79086e-10
-1.19013e-09
-1.59993e-10
-1.18587e-09
-1.37802e-10
-1.1827e-09
-1.12728e-10
-1.18158e-09
-8.81037e-11
-1.18052e-09
-5.98884e-11
-1.18083e-09
-3.3727e-11
-1.17289e-09
6.96403e-12
-1.15836e-09
4.12339e-11
-1.13436e-09
7.26218e-11
8.86336e-11
-1.10193e-09
-1.05087e-11
9.127e-11
-3.39573e-11
1.7258e-10
-6.44773e-11
2.07081e-10
-9.95276e-11
2.18911e-10
-1.37248e-10
2.21702e-10
-1.76405e-10
2.21879e-10
-2.1531e-10
2.23743e-10
-2.52401e-10
2.28649e-10
-2.87001e-10
2.3552e-10
-3.19515e-10
2.42025e-10
-3.50216e-10
2.47272e-10
-3.79547e-10
2.50173e-10
-4.08269e-10
2.49564e-10
-4.37295e-10
2.44901e-10
-4.67387e-10
2.36558e-10
-4.99079e-10
2.25421e-10
-5.32621e-10
2.1274e-10
-5.67991e-10
1.9988e-10
-6.0473e-10
1.88315e-10
-6.4229e-10
1.78988e-10
-6.80192e-10
1.72334e-10
-7.18017e-10
1.68605e-10
-7.55222e-10
1.68113e-10
-7.91242e-10
1.70919e-10
-8.25577e-10
1.76763e-10
-8.57672e-10
1.85278e-10
-8.87152e-10
1.95685e-10
-9.13827e-10
2.06976e-10
-9.3759e-10
2.18151e-10
-9.58658e-10
2.27977e-10
-9.77481e-10
2.35318e-10
-9.94577e-10
2.39439e-10
-1.01051e-09
2.39872e-10
-1.02596e-09
2.36374e-10
-1.04162e-09
2.29071e-10
-1.05766e-09
2.18931e-10
-1.07393e-09
2.0678e-10
-1.09031e-09
1.92885e-10
-1.10685e-09
1.77065e-10
-1.12373e-09
1.59109e-10
-1.14129e-09
1.38898e-10
-1.15992e-09
1.16666e-10
-1.17975e-09
9.31694e-11
-1.2007e-09
6.9441e-11
-1.22263e-09
4.62997e-11
-1.2453e-09
2.46526e-11
-1.26826e-09
5.44424e-12
-1.29083e-09
-1.04929e-11
-1.31228e-09
-2.29085e-11
-1.33195e-09
-3.21341e-11
-1.34934e-09
-3.90114e-11
-1.36437e-09
-4.50881e-11
-1.37762e-09
-5.21128e-11
-1.38952e-09
-6.0327e-11
-1.40042e-09
-6.97094e-11
-1.4107e-09
-8.0142e-11
-1.42072e-09
-9.13148e-11
-1.43076e-09
-1.02575e-10
-1.44087e-09
-1.12928e-10
-1.45083e-09
-1.21269e-10
-1.46015e-09
-1.26783e-10
-1.46828e-09
-1.29281e-10
-1.47492e-09
-1.2931e-10
-1.48001e-09
-1.27407e-10
-1.48316e-09
-1.23164e-10
-1.48371e-09
-1.16282e-10
-1.48129e-09
-1.07774e-10
-1.47591e-09
-9.90006e-11
-1.46768e-09
-9.09597e-11
-1.45693e-09
-8.47024e-11
-1.44416e-09
-8.11313e-11
-1.42995e-09
-8.08584e-11
-1.41506e-09
-8.43272e-11
-1.40006e-09
-9.13333e-11
-1.38541e-09
-1.01517e-10
-1.37162e-09
-1.14471e-10
-1.35902e-09
-1.29413e-10
-1.34775e-09
-1.45365e-10
-1.33772e-09
-1.61215e-10
-1.3287e-09
-1.76151e-10
-1.32052e-09
-1.89691e-10
-1.31313e-09
-2.01634e-10
-1.30653e-09
-2.11511e-10
-1.3004e-09
-2.18331e-10
-1.29451e-09
-2.21771e-10
-1.28863e-09
-2.21475e-10
-1.28314e-09
-2.18017e-10
-1.27813e-09
-2.10506e-10
-1.27397e-09
-1.98885e-10
-1.27064e-09
-1.82319e-10
-1.26864e-09
-1.61907e-10
-1.26823e-09
-1.38151e-10
-1.26919e-09
-1.11763e-10
-1.27182e-09
-8.55036e-11
-1.27422e-09
-5.75247e-11
-1.276e-09
-3.19527e-11
-1.26974e-09
7.06068e-13
-1.255e-09
2.65087e-11
-1.22884e-09
4.64659e-11
5.11124e-11
-1.19132e-09
-1.18356e-11
1.03044e-10
-3.62813e-11
1.96942e-10
-6.74658e-11
2.38196e-10
-1.02807e-10
2.54184e-10
-1.40543e-10
2.59362e-10
-1.7947e-10
2.60713e-10
-2.18229e-10
2.62391e-10
-2.5563e-10
2.65928e-10
-2.91102e-10
2.70863e-10
-3.24842e-10
2.75632e-10
-3.57076e-10
2.79366e-10
-3.88171e-10
2.81124e-10
-4.18732e-10
2.79977e-10
-4.49468e-10
2.75496e-10
-4.80989e-10
2.67952e-10
-5.1373e-10
2.58051e-10
-5.479e-10
2.46817e-10
-5.83483e-10
2.35386e-10
-6.20164e-10
2.24934e-10
-6.57518e-10
2.16296e-10
-6.95141e-10
2.09928e-10
-7.32653e-10
2.061e-10
-7.69594e-10
2.05047e-10
-8.05483e-10
2.06803e-10
-8.39873e-10
2.11149e-10
-8.72311e-10
2.17713e-10
-9.0246e-10
2.25836e-10
-9.30133e-10
2.3466e-10
-9.55246e-10
2.43285e-10
-9.7794e-10
2.50699e-10
-9.98551e-10
2.55957e-10
-1.01749e-09
2.58403e-10
-1.03523e-09
2.57622e-10
-1.0523e-09
2.53434e-10
-1.06921e-09
2.45951e-10
-1.08614e-09
2.35819e-10
-1.10307e-09
2.23654e-10
-1.11996e-09
2.0971e-10
-1.1369e-09
1.9393e-10
-1.15406e-09
1.76207e-10
-1.17174e-09
1.56523e-10
-1.19025e-09
1.35123e-10
-1.20973e-09
1.1261e-10
-1.23015e-09
8.98215e-11
-1.2514e-09
6.75063e-11
-1.27325e-09
4.64575e-11
-1.29533e-09
2.74617e-11
-1.31706e-09
1.11753e-11
-1.33783e-09
-2.18562e-12
-1.35711e-09
-1.28898e-11
-1.37448e-09
-2.16498e-11
-1.3899e-09
-2.96584e-11
-1.40376e-09
-3.82227e-11
-1.41641e-09
-4.76365e-11
-1.42815e-09
-5.79253e-11
-1.43928e-09
-6.89784e-11
-1.45006e-09
-8.04997e-11
-1.46069e-09
-9.19227e-11
-1.47118e-09
-1.02435e-10
-1.48132e-09
-1.11153e-10
-1.4907e-09
-1.17436e-10
-1.49888e-09
-1.21129e-10
-1.50562e-09
-1.22601e-10
-1.51081e-09
-1.22236e-10
-1.51416e-09
-1.19834e-10
-1.51518e-09
-1.153e-10
-1.51355e-09
-1.0943e-10
-1.50928e-09
-1.03302e-10
-1.50244e-09
-9.77979e-11
-1.49332e-09
-9.38099e-11
-1.48232e-09
-9.21056e-11
-1.46993e-09
-9.32123e-11
-1.45677e-09
-9.74644e-11
-1.44332e-09
-1.04746e-10
-1.43003e-09
-1.14764e-10
-1.41733e-09
-1.27119e-10
-1.40553e-09
-1.41158e-10
-1.39479e-09
-1.56053e-10
-1.3851e-09
-1.70874e-10
-1.37633e-09
-1.84894e-10
-1.36839e-09
-1.97615e-10
-1.36127e-09
-2.08735e-10
-1.35497e-09
-2.17795e-10
-1.34931e-09
-2.23998e-10
-1.34414e-09
-2.26966e-10
-1.33935e-09
-2.26298e-10
-1.33522e-09
-2.22159e-10
-1.33192e-09
-2.13801e-10
-1.32973e-09
-2.0103e-10
-1.32874e-09
-1.83268e-10
-1.32928e-09
-1.61329e-10
-1.33152e-09
-1.35911e-10
-1.33515e-09
-1.0814e-10
-1.34001e-09
-8.06485e-11
-1.34422e-09
-5.33042e-11
-1.34643e-09
-2.97052e-11
-1.34066e-09
-5.02743e-12
-1.32528e-09
1.11341e-11
-1.29731e-09
1.8493e-11
1.01466e-11
-1.25637e-09
-1.27427e-11
1.15734e-10
-3.79464e-11
2.22087e-10
-6.9641e-11
2.69838e-10
-1.05181e-10
2.89662e-10
-1.42889e-10
2.96985e-10
-1.8162e-10
2.99334e-10
-2.20252e-10
3.00892e-10
-2.57852e-10
3.03383e-10
-2.93936e-10
3.06798e-10
-3.28581e-10
3.10125e-10
-3.61964e-10
3.12598e-10
-3.94398e-10
3.13408e-10
-4.26368e-10
3.11805e-10
-4.58436e-10
3.07441e-10
-4.91091e-10
3.00508e-10
-5.24685e-10
2.91574e-10
-5.59388e-10
2.81476e-10
-5.95184e-10
2.71162e-10
-6.31839e-10
2.6159e-10
-6.69014e-10
2.5349e-10
-7.06362e-10
2.4731e-10
-7.43539e-10
2.43316e-10
-7.80152e-10
2.41695e-10
-8.15789e-10
2.42463e-10
-8.50059e-10
2.45427e-10
-8.82589e-10
2.50235e-10
-9.1309e-10
2.56317e-10
-9.41391e-10
2.62938e-10
-9.67431e-10
2.69303e-10
-9.9131e-10
2.7456e-10
-1.01328e-09
2.77918e-10
-1.03369e-09
2.78797e-10
-1.05291e-09
2.7683e-10
-1.07136e-09
2.71868e-10
-1.08944e-09
2.64e-10
-1.10732e-09
2.53667e-10
-1.12504e-09
2.41332e-10
-1.14261e-09
2.27231e-10
-1.16011e-09
2.11387e-10
-1.17771e-09
1.93777e-10
-1.19567e-09
1.74448e-10
-1.21423e-09
1.53646e-10
-1.23351e-09
1.31873e-10
-1.25353e-09
1.09815e-10
-1.2742e-09
8.81388e-11
-1.29531e-09
6.7532e-11
-1.31655e-09
4.86525e-11
-1.33745e-09
3.20259e-11
-1.3575e-09
1.78354e-11
-1.37626e-09
5.86065e-12
-1.39341e-09
-4.48575e-12
-1.40889e-09
-1.41292e-11
-1.42301e-09
-2.4054e-11
-1.43603e-09
-3.45592e-11
-1.4482e-09
-4.5697e-11
-1.45977e-09
-5.73682e-11
-1.47093e-09
-6.93031e-11
-1.48183e-09
-8.10166e-11
-1.49245e-09
-9.1843e-11
-1.50258e-09
-1.01074e-10
-1.51189e-09
-1.08197e-10
-1.52002e-09
-1.13075e-10
-1.52675e-09
-1.1595e-10
-1.53196e-09
-1.17102e-10
-1.53542e-09
-1.16467e-10
-1.53674e-09
-1.14075e-10
-1.5357e-09
-1.10566e-10
-1.53227e-09
-1.06807e-10
-1.52655e-09
-1.03569e-10
-1.51875e-09
-1.01616e-10
-1.50923e-09
-1.01604e-10
-1.49841e-09
-1.03984e-10
-1.48679e-09
-1.09018e-10
-1.47481e-09
-1.16638e-10
-1.46285e-09
-1.26601e-10
-1.45131e-09
-1.38538e-10
-1.44045e-09
-1.51886e-10
-1.43045e-09
-1.65935e-10
-1.42133e-09
-1.79891e-10
-1.41303e-09
-1.93096e-10
-1.40552e-09
-2.05051e-10
-1.39881e-09
-2.15393e-10
-1.39291e-09
-2.23666e-10
-1.38773e-09
-2.2919e-10
-1.38318e-09
-2.31543e-10
-1.37924e-09
-2.30272e-10
-1.37614e-09
-2.25277e-10
-1.37404e-09
-2.15894e-10
-1.37322e-09
-2.01851e-10
-1.37376e-09
-1.82744e-10
-1.37588e-09
-1.59237e-10
-1.37961e-09
-1.32217e-10
-1.38457e-09
-1.03198e-10
-1.39026e-09
-7.49501e-11
-1.39483e-09
-4.87145e-11
-1.39641e-09
-2.80899e-11
-1.39007e-09
-1.13581e-11
-1.37352e-09
-5.42451e-12
-1.34395e-09
-1.11103e-11
-3.30687e-11
-1.30079e-09
-1.33558e-11
1.29054e-10
-3.91234e-11
2.47828e-10
-7.12034e-11
3.01888e-10
-1.06881e-10
3.2529e-10
-1.44547e-10
3.34571e-10
-1.83124e-10
3.37803e-10
-2.21665e-10
3.39306e-10
-2.59414e-10
3.40996e-10
-2.9596e-10
3.43207e-10
-3.31304e-10
3.45333e-10
-3.65586e-10
3.46745e-10
-3.99063e-10
3.46759e-10
-4.3213e-10
3.44762e-10
-4.65239e-10
3.40461e-10
-4.98784e-10
3.33994e-10
-5.33053e-10
3.25814e-10
-5.68185e-10
3.16606e-10
-6.04161e-10
3.0716e-10
-6.40798e-10
2.98269e-10
-6.77819e-10
2.90568e-10
-7.14921e-10
2.84476e-10
-7.51792e-10
2.8025e-10
-7.88091e-10
2.78043e-10
-8.23461e-10
2.77861e-10
-8.57563e-10
2.79531e-10
-8.90083e-10
2.82732e-10
-9.20777e-10
2.86968e-10
-9.49498e-10
2.91606e-10
-9.76198e-10
2.95948e-10
-1.00096e-09
2.9927e-10
-1.02397e-09
3.00899e-10
-1.04553e-09
3.00326e-10
-1.06594e-09
2.97223e-10
-1.08554e-09
2.91456e-10
-1.10464e-09
2.83088e-10
-1.12341e-09
2.72426e-10
-1.14191e-09
2.5982e-10
-1.16018e-09
2.45487e-10
-1.1783e-09
2.29501e-10
-1.19643e-09
2.11898e-10
-1.21477e-09
1.92772e-10
-1.23349e-09
1.72367e-10
-1.25274e-09
1.51112e-10
-1.27251e-09
1.2958e-10
-1.29274e-09
1.08356e-10
-1.31326e-09
8.80322e-11
-1.33379e-09
6.91631e-11
-1.35397e-09
5.21749e-11
-1.37336e-09
3.72206e-11
-1.3916e-09
2.41206e-11
-1.40845e-09
1.2396e-11
-1.42386e-09
1.32769e-12
-1.43804e-09
-9.83097e-12
-1.4512e-09
-2.13573e-11
-1.46356e-09
-3.33136e-11
-1.4753e-09
-4.56136e-11
-1.48659e-09
-5.80189e-11
-1.49752e-09
-7.0119e-11
-1.50806e-09
-8.13678e-11
-1.51802e-09
-9.11944e-11
-1.52714e-09
-9.91847e-11
-1.5351e-09
-1.05213e-10
-1.54172e-09
-1.09437e-10
-1.54687e-09
-1.12065e-10
-1.55034e-09
-1.13114e-10
-1.55186e-09
-1.12687e-10
-1.55123e-09
-1.11308e-10
-1.54845e-09
-1.09685e-10
-1.54359e-09
-1.08486e-10
-1.53685e-09
-1.0837e-10
-1.52854e-09
-1.09895e-10
-1.51902e-09
-1.13447e-10
-1.50871e-09
-1.19238e-10
-1.498e-09
-1.27227e-10
-1.48724e-09
-1.37212e-10
-1.47677e-09
-1.48857e-10
-1.46684e-09
-1.61669e-10
-1.4576e-09
-1.75026e-10
-1.44911e-09
-1.88242e-10
-1.44135e-09
-2.00717e-10
-1.43433e-09
-2.11961e-10
-1.42808e-09
-2.21574e-10
-1.42261e-09
-2.29098e-10
-1.41788e-09
-2.33918e-10
-1.41386e-09
-2.35571e-10
-1.41055e-09
-2.33572e-10
-1.40818e-09
-2.27648e-10
-1.40688e-09
-2.17191e-10
-1.40689e-09
-2.01881e-10
-1.40825e-09
-1.81438e-10
-1.4111e-09
-1.56468e-10
-1.41532e-09
-1.28058e-10
-1.42047e-09
-9.80925e-11
-1.42581e-09
-6.96237e-11
-1.42953e-09
-4.49976e-11
-1.42956e-09
-2.80647e-11
-1.42175e-09
-1.91901e-11
-1.4036e-09
-2.36085e-11
-1.37254e-09
-4.22132e-11
-7.76673e-11
-1.328e-09
-1.37682e-11
1.42807e-10
-3.99517e-11
2.74021e-10
-7.23208e-11
3.34253e-10
-1.08096e-10
3.61036e-10
-1.45718e-10
3.72136e-10
-1.84179e-10
3.76185e-10
-2.22662e-10
3.77697e-10
-2.60538e-10
3.78779e-10
-2.97451e-10
3.80028e-10
-3.33361e-10
3.81153e-10
-3.68365e-10
3.81663e-10
-4.02679e-10
3.80993e-10
-4.36621e-10
3.78638e-10
-4.70556e-10
3.7435e-10
-5.04807e-10
3.68222e-10
-5.39611e-10
3.60615e-10
-5.7508e-10
3.5209e-10
-6.11196e-10
3.43307e-10
-6.47811e-10
3.34927e-10
-6.84693e-10
3.27501e-10
-7.21575e-10
3.21412e-10
-7.58178e-10
3.169e-10
-7.94199e-10
3.14096e-10
-8.29325e-10
3.12997e-10
-8.63263e-10
3.13452e-10
-8.95743e-10
3.15173e-10
-9.26559e-10
3.17728e-10
-9.55586e-10
3.20567e-10
-9.82787e-10
3.23084e-10
-1.00823e-09
3.24655e-10
-1.03207e-09
3.24703e-10
-1.05454e-09
3.22781e-10
-1.07591e-09
3.18592e-10
-1.09645e-09
3.1201e-10
-1.11642e-09
3.03073e-10
-1.13598e-09
2.91999e-10
-1.1552e-09
2.79057e-10
-1.17413e-09
2.64441e-10
-1.19287e-09
2.48255e-10
-1.21152e-09
2.30577e-10
-1.23026e-09
2.11533e-10
-1.24924e-09
1.91361e-10
-1.26854e-09
1.70437e-10
-1.28819e-09
1.49248e-10
-1.30812e-09
1.28303e-10
-1.3282e-09
1.08114e-10
-1.34818e-09
8.91497e-11
-1.36777e-09
7.1759e-11
-1.38661e-09
5.60698e-11
-1.4044e-09
4.19375e-11
-1.42096e-09
2.89754e-11
-1.43624e-09
1.66238e-11
-1.45039e-09
4.31819e-12
-1.46358e-09
-8.18694e-12
-1.47597e-09
-2.09506e-11
-1.48774e-09
-3.38991e-11
-1.49899e-09
-4.68263e-11
-1.50981e-09
-5.93872e-11
-1.52014e-09
-7.11339e-11
-1.52984e-09
-8.1605e-11
-1.53867e-09
-9.04645e-11
-1.54638e-09
-9.75993e-11
-1.55281e-09
-1.03111e-10
-1.55781e-09
-1.0716e-10
-1.56122e-09
-1.09806e-10
-1.56283e-09
-1.11192e-10
-1.56248e-09
-1.11752e-10
-1.56017e-09
-1.12072e-10
-1.55598e-09
-1.12729e-10
-1.55008e-09
-1.14287e-10
-1.54273e-09
-1.17222e-10
-1.53426e-09
-1.21864e-10
-1.52503e-09
-1.28388e-10
-1.51538e-09
-1.36768e-10
-1.50564e-09
-1.46833e-10
-1.49609e-09
-1.58278e-10
-1.48697e-09
-1.70664e-10
-1.47842e-09
-1.83442e-10
-1.47051e-09
-1.9601e-10
-1.46326e-09
-2.07822e-10
-1.4567e-09
-2.18404e-10
-1.45086e-09
-2.27333e-10
-1.44578e-09
-2.34139e-10
-1.44142e-09
-2.38247e-10
-1.43778e-09
-2.39168e-10
-1.43492e-09
-2.36395e-10
-1.43299e-09
-2.29553e-10
-1.43212e-09
-2.18064e-10
-1.43248e-09
-2.01584e-10
-1.43408e-09
-1.79929e-10
-1.43693e-09
-1.5372e-10
-1.44082e-09
-1.24249e-10
-1.44522e-09
-9.37565e-11
-1.44926e-09
-6.56305e-11
-1.45121e-09
-4.30967e-11
-1.44897e-09
-3.03509e-11
-1.43903e-09
-2.91652e-11
-1.41895e-09
-4.372e-11
-1.38648e-09
-7.47087e-11
-1.23046e-10
-1.34114e-09
-1.40452e-11
1.5686e-10
-4.05359e-11
3.00556e-10
-7.31224e-11
3.66866e-10
-1.08968e-10
3.96887e-10
-1.46553e-10
4.09706e-10
-1.84931e-10
4.14538e-10
-2.23383e-10
4.16123e-10
-2.61374e-10
4.16748e-10
-2.98594e-10
4.17227e-10
-3.34971e-10
4.17509e-10
-3.70574e-10
4.17242e-10
-4.05573e-10
4.15968e-10
-4.40227e-10
4.13273e-10
-4.74832e-10
4.08943e-10
-5.09655e-10
4.03038e-10
-5.44887e-10
3.95846e-10
-5.80624e-10
3.87827e-10
-6.16846e-10
3.79533e-10
-6.53433e-10
3.7152e-10
-6.90186e-10
3.64263e-10
-7.26873e-10
3.58106e-10
-7.63241e-10
3.5327e-10
-7.9902e-10
3.49867e-10
-8.33936e-10
3.47892e-10
-8.67728e-10
3.47211e-10
-9.00168e-10
3.47567e-10
-9.31078e-10
3.48583e-10
-9.6035e-10
3.49784e-10
-9.87955e-10
3.5064e-10
-1.01395e-09
3.50612e-10
-1.03846e-09
3.49202e-10
-1.06168e-09
3.46013e-10
-1.08385e-09
3.40779e-10
-1.10518e-09
3.33378e-10
-1.1259e-09
3.23829e-10
-1.14614e-09
3.12286e-10
-1.166e-09
2.98959e-10
-1.18553e-09
2.84021e-10
-1.20481e-09
2.67591e-10
-1.22396e-09
2.49775e-10
-1.2431e-09
2.30717e-10
-1.26234e-09
2.10649e-10
-1.28176e-09
1.89904e-10
-1.30137e-09
1.68902e-10
-1.32111e-09
1.48087e-10
-1.34087e-09
1.27901e-10
-1.36044e-09
1.0874e-10
-1.37957e-09
9.08972e-11
-1.39797e-09
7.44784e-11
-1.4154e-09
5.93696e-11
-1.43171e-09
4.52629e-11
-1.44686e-09
3.17261e-11
-1.46094e-09
1.83316e-11
-1.4741e-09
4.87712e-12
-1.48647e-09
-8.69203e-12
-1.49818e-09
-2.2311e-11
-1.50932e-09
-3.58045e-11
-1.51994e-09
-4.88847e-11
-1.53001e-09
-6.11847e-11
-1.53938e-09
-7.23318e-11
-1.54788e-09
-8.20543e-11
-1.55529e-09
-9.02538e-11
-1.56146e-09
-9.69967e-11
-1.56626e-09
-1.02407e-10
-1.56955e-09
-1.06569e-10
-1.57116e-09
-1.09639e-10
-1.57099e-09
-1.11983e-10
-1.56902e-09
-1.1409e-10
-1.56533e-09
-1.16454e-10
-1.56007e-09
-1.19557e-10
-1.55349e-09
-1.238e-10
-1.54585e-09
-1.29467e-10
-1.53748e-09
-1.36704e-10
-1.52869e-09
-1.45495e-10
-1.51977e-09
-1.55689e-10
-1.51098e-09
-1.67006e-10
-1.50252e-09
-1.7905e-10
-1.49454e-09
-1.91333e-10
-1.48711e-09
-2.03329e-10
-1.48028e-09
-2.14538e-10
-1.47409e-09
-2.24504e-10
-1.46857e-09
-2.32785e-10
-1.46375e-09
-2.38905e-10
-1.45963e-09
-2.42313e-10
-1.45623e-09
-2.42509e-10
-1.45359e-09
-2.3898e-10
-1.45184e-09
-2.31282e-10
-1.45107e-09
-2.1886e-10
-1.45136e-09
-2.01365e-10
-1.45269e-09
-1.78702e-10
-1.45495e-09
-1.51557e-10
-1.45786e-09
-1.21435e-10
-1.46079e-09
-9.08956e-11
-1.46283e-09
-6.36639e-11
-1.46234e-09
-4.36566e-11
-1.45731e-09
-3.5424e-11
-1.44481e-09
-4.16887e-11
-1.4226e-09
-6.59383e-11
-1.38881e-09
-1.08513e-10
-1.68817e-10
-1.34307e-09
-1.42319e-11
1.71123e-10
-4.0952e-11
3.27349e-10
-7.3704e-11
3.99675e-10
-1.09604e-10
4.32833e-10
-1.47162e-10
4.47306e-10
-1.85484e-10
4.52907e-10
-2.23928e-10
4.54623e-10
-2.62031e-10
4.54912e-10
-2.99512e-10
4.54768e-10
-3.36286e-10
4.54333e-10
-3.72391e-10
4.53385e-10
-4.07962e-10
4.51566e-10
-4.43207e-10
4.48535e-10
-4.78367e-10
4.44109e-10
-5.1366e-10
4.38323e-10
-5.49245e-10
4.31409e-10
-5.85199e-10
4.23744e-10
-6.21505e-10
4.15792e-10
-6.58059e-10
4.08021e-10
-6.94695e-10
4.00843e-10
-7.31207e-10
3.94563e-10
-7.67369e-10
3.89378e-10
-8.0294e-10
3.85386e-10
-8.37675e-10
3.82579e-10
-8.71347e-10
3.80838e-10
-9.03755e-10
3.79935e-10
-9.34746e-10
3.7954e-10
-9.64229e-10
3.79239e-10
-9.92178e-10
3.78571e-10
-1.01864e-09
3.77068e-10
-1.04372e-09
3.74297e-10
-1.06758e-09
3.69908e-10
-1.09042e-09
3.63662e-10
-1.11243e-09
3.5544e-10
-1.13379e-09
3.45246e-10
-1.15463e-09
3.33192e-10
-1.17505e-09
3.19443e-10
-1.19511e-09
3.04151e-10
-1.21489e-09
2.87442e-10
-1.23448e-09
2.69435e-10
-1.25398e-09
2.50285e-10
-1.27348e-09
2.30216e-10
-1.29304e-09
2.09527e-10
-1.31266e-09
1.88582e-10
-1.33228e-09
1.67769e-10
-1.35181e-09
1.47469e-10
-1.37107e-09
1.28025e-10
-1.38985e-09
1.09679e-10
-1.40791e-09
9.25248e-11
-1.42506e-09
7.64748e-11
-1.44117e-09
6.12892e-11
-1.4562e-09
4.66386e-11
-1.47022e-09
3.22033e-11
-1.48333e-09
1.78215e-11
-1.49565e-09
3.44851e-12
-1.50726e-09
-1.08615e-11
-1.51825e-09
-2.49601e-11
-1.52866e-09
-3.86093e-11
-1.53843e-09
-5.15095e-11
-1.54747e-09
-6.33612e-11
-1.55561e-09
-7.39463e-11
-1.5627e-09
-8.31818e-11
-1.56858e-09
-9.11112e-11
-1.57315e-09
-9.78331e-11
-1.57629e-09
-1.03439e-10
-1.57784e-09
-1.08087e-10
-1.57775e-09
-1.12089e-10
-1.57601e-09
-1.15854e-10
-1.57269e-09
-1.19802e-10
-1.56794e-09
-1.2434e-10
-1.56194e-09
-1.29807e-10
-1.55496e-09
-1.36446e-10
-1.54727e-09
-1.44383e-10
-1.53915e-09
-1.53603e-10
-1.53088e-09
-1.63966e-10
-1.52268e-09
-1.75214e-10
-1.51473e-09
-1.86986e-10
-1.50718e-09
-1.98852e-10
-1.5001e-09
-2.10348e-10
-1.49357e-09
-2.21016e-10
-1.48762e-09
-2.30411e-10
-1.48229e-09
-2.38084e-10
-1.47761e-09
-2.43557e-10
-1.47359e-09
-2.46299e-10
-1.47024e-09
-2.45813e-10
-1.46761e-09
-2.41581e-10
-1.46578e-09
-2.33121e-10
-1.4648e-09
-2.19894e-10
-1.46467e-09
-2.0157e-10
-1.4653e-09
-1.78152e-10
-1.46651e-09
-1.50424e-10
-1.46793e-09
-1.20094e-10
-1.46889e-09
-9.00031e-11
-1.46844e-09
-6.41777e-11
-1.46506e-09
-4.70732e-11
-1.45694e-09
-4.35586e-11
-1.44165e-09
-5.69864e-11
-1.41725e-09
-9.03505e-11
-1.38223e-09
-1.43562e-10
-2.14743e-10
-1.33635e-09
-1.43587e-11
1.8553e-10
-4.12542e-11
3.54338e-10
-7.41358e-11
4.32641e-10
-1.10082e-10
4.68866e-10
-1.47624e-10
4.84949e-10
-1.85915e-10
4.91315e-10
-2.24371e-10
4.93212e-10
-2.62583e-10
4.93257e-10
-3.00295e-10
4.92605e-10
-3.37411e-10
4.91554e-10
-3.73944e-10
4.90002e-10
-4.09998e-10
4.8768e-10
-4.45741e-10
4.84313e-10
-4.81367e-10
4.79743e-10
-5.17055e-10
4.73991e-10
-5.52936e-10
4.67238e-10
-5.89072e-10
4.59802e-10
-6.25445e-10
4.52068e-10
-6.61969e-10
4.44438e-10
-6.985e-10
4.37264e-10
-7.34858e-10
4.30814e-10
-7.7084e-10
4.25263e-10
-8.06232e-10
4.20695e-10
-8.40815e-10
4.17099e-10
-8.74388e-10
4.14368e-10
-9.06776e-10
4.12299e-10
-9.37846e-10
4.10602e-10
-9.67519e-10
4.08914e-10
-9.9577e-10
4.06835e-10
-1.02264e-09
4.03958e-10
-1.04821e-09
3.99906e-10
-1.07263e-09
3.94371e-10
-1.09606e-09
3.87138e-10
-1.11865e-09
3.78096e-10
-1.14058e-09
3.67235e-10
-1.16196e-09
3.54639e-10
-1.18288e-09
3.40436e-10
-1.20341e-09
3.24761e-10
-1.22362e-09
3.07737e-10
-1.2436e-09
2.89493e-10
-1.26343e-09
2.70186e-10
-1.28317e-09
2.50029e-10
-1.30286e-09
2.29292e-10
-1.32251e-09
2.08294e-10
-1.34207e-09
1.87375e-10
-1.36143e-09
1.66867e-10
-1.38046e-09
1.47063e-10
-1.39897e-09
1.28172e-10
-1.41678e-09
1.10276e-10
-1.43371e-09
9.33127e-11
-1.44966e-09
7.71021e-11
-1.46459e-09
6.13983e-11
-1.47855e-09
4.59656e-11
-1.49161e-09
3.06787e-11
-1.50385e-09
1.55023e-11
-1.51536e-09
4.81547e-13
-1.5262e-09
-1.42606e-11
-1.53638e-09
-2.85279e-11
-1.54587e-09
-4.20772e-11
-1.55458e-09
-5.46693e-11
-1.56238e-09
-6.61302e-11
-1.56915e-09
-7.63905e-11
-1.57475e-09
-8.54779e-11
-1.57908e-09
-9.34705e-11
-1.58202e-09
-1.0046e-10
-1.58349e-09
-1.06598e-10
-1.58343e-09
-1.12153e-10
-1.58183e-09
-1.17464e-10
-1.57878e-09
-1.22889e-10
-1.57439e-09
-1.28765e-10
-1.56884e-09
-1.35384e-10
-1.56236e-09
-1.42951e-10
-1.5552e-09
-1.51576e-10
-1.54761e-09
-1.61239e-10
-1.53983e-09
-1.71809e-10
-1.53206e-09
-1.83041e-10
-1.52449e-09
-1.94613e-10
-1.51723e-09
-2.06141e-10
-1.51039e-09
-2.17213e-10
-1.50402e-09
-2.27405e-10
-1.49818e-09
-2.36281e-10
-1.49291e-09
-2.43394e-10
-1.48822e-09
-2.4827e-10
-1.48413e-09
-2.50402e-10
-1.48067e-09
-2.49298e-10
-1.47785e-09
-2.44438e-10
-1.47571e-09
-2.35319e-10
-1.47423e-09
-2.2143e-10
-1.47338e-09
-2.02485e-10
-1.47298e-09
-1.78593e-10
-1.47279e-09
-1.50658e-10
-1.47235e-09
-1.20567e-10
-1.47099e-09
-9.13999e-11
-1.46775e-09
-6.74419e-11
-1.46127e-09
-5.35609e-11
-1.44994e-09
-5.48823e-11
-1.4318e-09
-7.5148e-11
-1.40523e-09
-1.1696e-10
-1.3691e-09
-1.79777e-10
-2.60658e-10
-1.32329e-09
-1.44464e-11
2.00036e-10
-4.14812e-11
3.81476e-10
-7.44688e-11
4.65732e-10
-1.10458e-10
5.04975e-10
-1.47999e-10
5.22635e-10
-1.86279e-10
5.29765e-10
-2.24766e-10
5.31878e-10
-2.63087e-10
5.31754e-10
-3.01007e-10
5.30681e-10
-3.3842e-10
5.29097e-10
-3.75323e-10
5.27006e-10
-4.11791e-10
5.2422e-10
-4.47957e-10
5.20519e-10
-4.8398e-10
5.15771e-10
-5.20006e-10
5.09982e-10
-5.5614e-10
5.03302e-10
-5.92431e-10
4.95992e-10
-6.28863e-10
4.88379e-10
-6.65361e-10
4.80804e-10
-7.01801e-10
4.73571e-10
-7.38025e-10
4.66911e-10
-7.73854e-10
4.60978e-10
-8.09094e-10
4.55844e-10
-8.43551e-10
4.51495e-10
-8.77046e-10
4.47832e-10
-9.09426e-10
4.44674e-10
-9.40575e-10
4.41763e-10
-9.70423e-10
4.38784e-10
-9.98948e-10
4.35387e-10
-1.02618e-09
4.31219e-10
-1.05219e-09
4.25952e-10
-1.0771e-09
4.19318e-10
-1.10105e-09
4.11122e-10
-1.12417e-09
4.01262e-10
-1.14661e-09
3.89721e-10
-1.16847e-09
3.76557e-10
-1.18983e-09
3.61873e-10
-1.21078e-09
3.45786e-10
-1.23138e-09
3.28414e-10
-1.25171e-09
3.09888e-10
-1.27182e-09
2.90364e-10
-1.29178e-09
2.70043e-10
-1.31161e-09
2.49171e-10
-1.3313e-09
2.28029e-10
-1.35081e-09
2.06916e-10
-1.37005e-09
1.86122e-10
-1.3889e-09
1.65901e-10
-1.40721e-09
1.46433e-10
-1.42481e-09
1.27795e-10
-1.44157e-09
1.09949e-10
-1.4574e-09
9.27636e-11
-1.47224e-09
7.60618e-11
-1.48614e-09
5.96727e-11
-1.49914e-09
4.3501e-11
-1.51132e-09
2.75184e-11
-1.52272e-09
1.1762e-11
-1.53341e-09
-3.66691e-12
-1.54338e-09
-1.86073e-11
-1.5526e-09
-3.28625e-11
-1.56102e-09
-4.62417e-11
-1.56851e-09
-5.86057e-11
-1.57497e-09
-6.98946e-11
-1.58029e-09
-8.01238e-11
-1.58438e-09
-8.93551e-11
-1.58714e-09
-9.76758e-11
-1.5885e-09
-1.05228e-10
-1.58842e-09
-1.12242e-10
-1.58691e-09
-1.19002e-10
-1.58404e-09
-1.25805e-10
-1.57992e-09
-1.32935e-10
-1.57471e-09
-1.4064e-10
-1.56861e-09
-1.49099e-10
-1.56185e-09
-1.58401e-10
-1.55465e-09
-1.68523e-10
-1.54722e-09
-1.79333e-10
-1.53976e-09
-1.90607e-10
-1.53243e-09
-2.0205e-10
-1.52536e-09
-2.13323e-10
-1.51863e-09
-2.24051e-10
-1.51232e-09
-2.33833e-10
-1.50647e-09
-2.42249e-10
-1.50111e-09
-2.48856e-10
-1.49628e-09
-2.53197e-10
-1.49199e-09
-2.54788e-10
-1.48824e-09
-2.5314e-10
-1.48504e-09
-2.47737e-10
-1.48237e-09
-2.38074e-10
-1.48018e-09
-2.23682e-10
-1.47835e-09
-2.04341e-10
-1.47668e-09
-1.80277e-10
-1.47483e-09
-1.52508e-10
-1.47232e-09
-1.23084e-10
-1.46844e-09
-9.52786e-11
-1.46228e-09
-7.35946e-11
-1.45263e-09
-6.32023e-11
-1.43813e-09
-6.94017e-11
-1.4172e-09
-9.61382e-11
-1.38859e-09
-1.45675e-10
-1.35147e-09
-2.17035e-10
-3.06416e-10
-1.30586e-09
-1.45095e-11
2.14609e-10
-4.16603e-11
4.08726e-10
-7.47402e-11
4.98919e-10
-1.10775e-10
5.41143e-10
-1.48329e-10
5.60353e-10
-1.8662e-10
5.68241e-10
-2.25152e-10
5.70598e-10
-2.63583e-10
5.70357e-10
-3.01692e-10
5.68937e-10
-3.39368e-10
5.66892e-10
-3.76592e-10
5.64322e-10
-4.13417e-10
5.6111e-10
-4.49949e-10
5.57086e-10
-4.86314e-10
5.52138e-10
-5.22632e-10
5.46266e-10
-5.58986e-10
5.39589e-10
-5.95414e-10
5.32327e-10
-6.319e-10
5.24757e-10
-6.68379e-10
5.17167e-10
-7.04743e-10
5.09818e-10
-7.40855e-10
5.02911e-10
-7.76555e-10
4.96579e-10
-8.11669e-10
4.90882e-10
-8.46024e-10
4.85803e-10
-8.79462e-10
4.81252e-10
-9.11847e-10
4.77065e-10
-9.43077e-10
4.73012e-10
-9.73091e-10
4.68818e-10
-1.00187e-09
4.6418e-10
-1.02943e-09
4.58792e-10
-1.05584e-09
4.5237e-10
-1.08119e-09
4.44678e-10
-1.1056e-09
4.35544e-10
-1.1292e-09
4.24873e-10
-1.15209e-09
4.12642e-10
-1.17439e-09
3.9889e-10
-1.19616e-09
3.837e-10
-1.2175e-09
3.67172e-10
-1.23845e-09
3.49417e-10
-1.25908e-09
3.30565e-10
-1.27945e-09
3.1077e-10
-1.2996e-09
2.90221e-10
-1.31955e-09
2.69141e-10
-1.33929e-09
2.4778e-10
-1.35877e-09
2.26403e-10
-1.37792e-09
2.05262e-10
-1.39663e-09
1.84581e-10
-1.41478e-09
1.64519e-10
-1.43222e-09
1.45147e-10
-1.44884e-09
1.2645e-10
-1.46456e-09
1.08339e-10
-1.47933e-09
9.0689e-11
-1.49317e-09
7.33784e-11
-1.50611e-09
5.63346e-11
-1.51821e-09
3.9535e-11
-1.52952e-09
2.30098e-11
-1.54006e-09
6.84322e-12
-1.54984e-09
-8.83243e-12
-1.55883e-09
-2.38571e-11
-1.56697e-09
-3.80774e-11
-1.57419e-09
-5.13792e-11
-1.58037e-09
-6.37083e-11
-1.58544e-09
-7.50693e-11
-1.58929e-09
-8.5511e-11
-1.59187e-09
-9.51154e-11
-1.59311e-09
-1.04014e-10
-1.59298e-09
-1.12405e-10
-1.59151e-09
-1.20524e-10
-1.58876e-09
-1.28618e-10
-1.58483e-09
-1.36929e-10
-1.57987e-09
-1.45668e-10
-1.57406e-09
-1.54988e-10
-1.56759e-09
-1.64961e-10
-1.56067e-09
-1.75554e-10
-1.5535e-09
-1.8664e-10
-1.54624e-09
-1.9801e-10
-1.53905e-09
-2.09398e-10
-1.53206e-09
-2.20495e-10
-1.52535e-09
-2.30953e-10
-1.51898e-09
-2.40391e-10
-1.513e-09
-2.48403e-10
-1.50745e-09
-2.54567e-10
-1.50235e-09
-2.58445e-10
-1.49772e-09
-2.5957e-10
-1.49354e-09
-2.57463e-10
-1.48979e-09
-2.51613e-10
-1.48642e-09
-2.41534e-10
-1.48333e-09
-2.26819e-10
-1.48036e-09
-2.07327e-10
-1.47723e-09
-1.83394e-10
-1.47358e-09
-1.56151e-10
-1.46886e-09
-1.27784e-10
-1.46239e-09
-1.01733e-10
-1.45332e-09
-8.26683e-11
-1.44058e-09
-7.59626e-11
-1.42306e-09
-8.7001e-11
-1.39952e-09
-1.19794e-10
-1.36904e-09
-1.76303e-10
-1.33106e-09
-2.55162e-10
-3.51881e-10
-1.28574e-09
-1.4558e-11
2.29224e-10
-4.18111e-11
4.3606e-10
-7.49773e-11
5.3218e-10
-1.11064e-10
5.77353e-10
-1.48647e-10
5.98085e-10
-1.86969e-10
6.06722e-10
-2.2556e-10
6.09339e-10
-2.64102e-10
6.09028e-10
-3.02384e-10
6.07321e-10
-3.40294e-10
6.04881e-10
-3.77799e-10
6.0189e-10
-4.14935e-10
5.98294e-10
-4.51784e-10
5.93965e-10
-4.88448e-10
5.88809e-10
-5.25022e-10
5.82822e-10
-5.61571e-10
5.761e-10
-5.98123e-10
5.68826e-10
-6.34661e-10
5.61235e-10
-6.71129e-10
5.53571e-10
-7.07434e-10
5.46056e-10
-7.43456e-10
5.38865e-10
-7.7905e-10
5.32112e-10
-8.14064e-10
5.25847e-10
-8.48341e-10
5.20052e-10
-8.81742e-10
5.14643e-10
-9.14145e-10
5.09471e-10
-9.45461e-10
5.04334e-10
-9.75633e-10
4.98991e-10
-1.00464e-09
4.93179e-10
-1.03251e-09
4.86633e-10
-1.05927e-09
4.79109e-10
-1.08503e-09
4.70399e-10
-1.10986e-09
4.60352e-10
-1.13389e-09
4.48878e-10
-1.1572e-09
4.3595e-10
-1.1799e-09
4.21593e-10
-1.20205e-09
4.05871e-10
-1.22374e-09
3.88872e-10
-1.24501e-09
3.707e-10
-1.26592e-09
3.51483e-10
-1.28652e-09
3.31369e-10
-1.30685e-09
3.10537e-10
-1.32691e-09
2.89189e-10
-1.3467e-09
2.6755e-10
-1.36616e-09
2.45853e-10
-1.38524e-09
2.24322e-10
-1.40384e-09
2.03152e-10
-1.42185e-09
1.82485e-10
-1.43916e-09
1.62393e-10
-1.45566e-09
1.42876e-10
-1.47129e-09
1.23881e-10
-1.48598e-09
1.05323e-10
-1.49976e-09
8.71139e-11
-1.51264e-09
6.91997e-11
-1.52467e-09
5.15621e-11
-1.53588e-09
3.42272e-11
-1.54629e-09
1.72669e-11
-1.5559e-09
7.91815e-13
-1.56468e-09
-1.50655e-11
-1.57259e-09
-3.01793e-11
-1.57955e-09
-4.4452e-11
-1.58548e-09
-5.78314e-11
-1.59031e-09
-7.03138e-11
-1.59395e-09
-8.19389e-11
-1.59635e-09
-9.27835e-11
-1.59747e-09
-1.02969e-10
-1.59728e-09
-1.12663e-10
-1.59582e-09
-1.22065e-10
-1.59314e-09
-1.3138e-10
-1.58934e-09
-1.40813e-10
-1.58456e-09
-1.50545e-10
-1.57895e-09
-1.60705e-10
-1.5727e-09
-1.71343e-10
-1.56597e-09
-1.82422e-10
-1.55896e-09
-1.93815e-10
-1.55181e-09
-2.05332e-10
-1.54468e-09
-2.1673e-10
-1.53768e-09
-2.2772e-10
-1.5309e-09
-2.37972e-10
-1.52439e-09
-2.47124e-10
-1.51819e-09
-2.54793e-10
-1.51235e-09
-2.60581e-10
-1.50689e-09
-2.64072e-10
-1.5018e-09
-2.64816e-10
-1.49707e-09
-2.62341e-10
-1.49264e-09
-2.56157e-10
-1.48843e-09
-2.45815e-10
-1.48431e-09
-2.30976e-10
-1.48007e-09
-2.11585e-10
-1.47539e-09
-1.88077e-10
-1.46985e-09
-1.61687e-10
-1.4629e-09
-1.34724e-10
-1.45388e-09
-1.10762e-10
-1.442e-09
-9.45895e-11
-1.42636e-09
-9.16856e-11
-1.40604e-09
-1.07442e-10
-1.38013e-09
-1.45842e-10
-1.34798e-09
-2.08583e-10
-1.30929e-09
-2.93967e-10
-3.96968e-10
-1.26431e-09
-1.45992e-11
2.43866e-10
-4.19474e-11
4.63459e-10
-7.51999e-11
5.65499e-10
-1.11348e-10
6.13591e-10
-1.48977e-10
6.35818e-10
-1.87346e-10
6.45191e-10
-2.26008e-10
6.48082e-10
-2.64661e-10
6.47737e-10
-3.03104e-10
6.45801e-10
-3.41222e-10
6.43027e-10
-3.78975e-10
6.3967e-10
-4.16384e-10
6.35732e-10
-4.53513e-10
6.3112e-10
-4.90442e-10
6.25756e-10
-5.27243e-10
6.19633e-10
-5.63968e-10
6.12829e-10
-6.00634e-10
6.05496e-10
-6.37226e-10
5.97831e-10
-6.73694e-10
5.90042e-10
-7.09957e-10
5.82316e-10
-7.45909e-10
5.74804e-10
-7.81423e-10
5.67606e-10
-8.1636e-10
5.60764e-10
-8.50583e-10
5.54259e-10
-8.83965e-10
5.48014e-10
-9.16399e-10
5.41894e-10
-9.47806e-10
5.35722e-10
-9.78133e-10
5.29286e-10
-1.00736e-09
5.2236e-10
-1.0355e-09
5.14714e-10
-1.0626e-09
5.06136e-10
-1.08872e-09
4.96447e-10
-1.11394e-09
4.8551e-10
-1.13836e-09
4.73242e-10
-1.16206e-09
4.59611e-10
-1.18513e-09
4.44631e-10
-1.20764e-09
4.28353e-10
-1.22964e-09
4.10854e-10
-1.25121e-09
3.92235e-10
-1.27238e-09
3.72617e-10
-1.29319e-09
3.52144e-10
-1.31368e-09
3.30984e-10
-1.33385e-09
3.0932e-10
-1.35368e-09
2.87355e-10
-1.37314e-09
2.65295e-10
-1.39216e-09
2.43339e-10
-1.41067e-09
2.21658e-10
-1.42857e-09
2.0038e-10
-1.44577e-09
1.79577e-10
-1.46217e-09
1.59266e-10
-1.4777e-09
1.39417e-10
-1.49233e-09
1.19974e-10
-1.50604e-09
1.00877e-10
-1.51887e-09
8.20828e-11
-1.53082e-09
6.35787e-11
-1.54194e-09
4.53906e-11
-1.55223e-09
2.7583e-11
-1.56168e-09
1.02514e-11
-1.57028e-09
-6.49235e-12
-1.57797e-09
-2.25408e-11
-1.5847e-09
-3.78074e-11
-1.5904e-09
-5.22407e-11
-1.59501e-09
-6.58316e-11
-1.59846e-09
-7.86145e-11
-1.60069e-09
-9.06617e-11
-1.60169e-09
-1.02083e-10
-1.60143e-09
-1.13024e-10
-1.59995e-09
-1.23648e-10
-1.5973e-09
-1.34131e-10
-1.59359e-09
-1.44645e-10
-1.58893e-09
-1.55341e-10
-1.58347e-09
-1.66323e-10
-1.57736e-09
-1.77623e-10
-1.57076e-09
-1.89195e-10
-1.56382e-09
-2.00923e-10
-1.55672e-09
-2.12631e-10
-1.54958e-09
-2.2409e-10
-1.5425e-09
-2.35027e-10
-1.53557e-09
-2.45127e-10
-1.52885e-09
-2.5405e-10
-1.52236e-09
-2.6144e-10
-1.51615e-09
-2.66927e-10
-1.51024e-09
-2.70114e-10
-1.50461e-09
-2.70567e-10
-1.49922e-09
-2.67829e-10
-1.49402e-09
-2.61444e-10
-1.48888e-09
-2.51008e-10
-1.48364e-09
-2.36255e-10
-1.47805e-09
-2.17207e-10
-1.47177e-09
-1.9439e-10
-1.46434e-09
-1.6914e-10
-1.45522e-09
-1.43874e-10
-1.44376e-09
-1.22269e-10
-1.42926e-09
-1.09176e-10
-1.41095e-09
-1.10104e-10
-1.38812e-09
-1.30392e-10
-1.36012e-09
-1.73947e-10
-1.32654e-09
-2.42238e-10
-1.28728e-09
-3.33281e-10
-4.41646e-10
-1.24267e-09
-1.46385e-11
2.58528e-10
-4.20795e-11
4.90916e-10
-7.54226e-11
5.98873e-10
-1.11646e-10
6.49857e-10
-1.49337e-10
6.73551e-10
-1.87768e-10
6.83648e-10
-2.26509e-10
6.86823e-10
-2.65272e-10
6.86478e-10
-3.03863e-10
6.84363e-10
-3.42169e-10
6.8131e-10
-3.80143e-10
6.77639e-10
-4.17795e-10
6.73396e-10
-4.55173e-10
6.68521e-10
-4.92338e-10
6.62949e-10
-5.29345e-10
6.56673e-10
-5.66231e-10
6.49757e-10
-6.03008e-10
6.42325e-10
-6.39658e-10
6.34542e-10
-6.76138e-10
6.26581e-10
-7.12377e-10
6.18603e-10
-7.48281e-10
6.10739e-10
-7.83737e-10
6.03074e-10
-8.18621e-10
5.95646e-10
-8.52811e-10
5.88437e-10
-8.86193e-10
5.81376e-10
-9.18671e-10
5.74343e-10
-9.50173e-10
5.6718e-10
-9.80652e-10
5.59704e-10
-1.01009e-09
5.51718e-10
-1.03849e-09
5.43025e-10
-1.06589e-09
5.3344e-10
-1.09234e-09
5.22804e-10
-1.11792e-09
5.10998e-10
-1.1427e-09
4.97941e-10
-1.16676e-09
4.836e-10
-1.19018e-09
4.67981e-10
-1.21301e-09
4.51125e-10
-1.23532e-09
4.33103e-10
-1.25716e-09
4.14009e-10
-1.27857e-09
3.93962e-10
-1.29958e-09
3.73098e-10
-1.32022e-09
3.51573e-10
-1.34049e-09
3.29554e-10
-1.36037e-09
3.07222e-10
-1.37983e-09
2.84761e-10
-1.39881e-09
2.62347e-10
-1.41725e-09
2.40132e-10
-1.43506e-09
2.18233e-10
-1.45216e-09
1.96723e-10
-1.46846e-09
1.75628e-10
-1.48391e-09
1.54941e-10
-1.49847e-09
1.34624e-10
-1.51212e-09
1.14636e-10
-1.52488e-09
9.49441e-11
-1.53677e-09
7.55444e-11
-1.5478e-09
5.64652e-11
-1.55797e-09
3.77676e-11
-1.56728e-09
1.95372e-11
-1.5757e-09
1.8706e-12
-1.5832e-09
-1.51374e-11
-1.58972e-09
-3.14082e-11
-1.59522e-09
-4.68917e-11
-1.59962e-09
-6.15775e-11
-1.60288e-09
-7.54969e-11
-1.60496e-09
-8.87178e-11
-1.60583e-09
-1.01338e-10
-1.6055e-09
-1.13482e-10
-1.60398e-09
-1.25287e-10
-1.60134e-09
-1.36899e-10
-1.59768e-09
-1.48465e-10
-1.5931e-09
-1.60103e-10
-1.58773e-09
-1.71892e-10
-1.5817e-09
-1.83848e-10
-1.57517e-09
-1.95921e-10
-1.56826e-09
-2.08004e-10
-1.56114e-09
-2.19936e-10
-1.55393e-09
-2.31498e-10
-1.54672e-09
-2.42428e-10
-1.53959e-09
-2.52428e-10
-1.53258e-09
-2.61184e-10
-1.52575e-09
-2.68369e-10
-1.51912e-09
-2.73636e-10
-1.51269e-09
-2.76607e-10
-1.50645e-09
-2.76866e-10
-1.50035e-09
-2.73982e-10
-1.4943e-09
-2.67537e-10
-1.48817e-09
-2.57181e-10
-1.48176e-09
-2.4271e-10
-1.4748e-09
-2.24219e-10
-1.46692e-09
-2.02323e-10
-1.45766e-09
-1.78452e-10
-1.44647e-09
-1.5512e-10
-1.43275e-09
-1.36068e-10
-1.41586e-09
-1.26161e-10
-1.39517e-09
-1.30883e-10
-1.37014e-09
-1.55488e-10
-1.34034e-09
-2.0378e-10
-1.30557e-09
-2.77019e-10
-1.2659e-09
-3.72975e-10
-4.85917e-10
-1.22169e-09
-1.46797e-11
2.73209e-10
-4.22142e-11
5.18436e-10
-7.56554e-11
6.32309e-10
-1.11966e-10
6.86163e-10
-1.49735e-10
7.11302e-10
-1.88242e-10
7.22112e-10
-2.2707e-10
7.2558e-10
-2.6594e-10
7.25266e-10
-3.04669e-10
7.23015e-10
-3.43145e-10
7.1973e-10
-3.81318e-10
7.15783e-10
-4.19189e-10
7.11263e-10
-4.56792e-10
7.06136e-10
-4.94172e-10
7.00353e-10
-5.31368e-10
6.93908e-10
-5.68407e-10
6.8685e-10
-6.05292e-10
6.79283e-10
-6.42006e-10
6.71342e-10
-6.78511e-10
6.63171e-10
-7.14744e-10
6.54909e-10
-7.50621e-10
6.46666e-10
-7.86041e-10
6.3852e-10
-8.20895e-10
6.30503e-10
-8.55072e-10
6.22599e-10
-8.88471e-10
6.14744e-10
-9.21005e-10
6.06831e-10
-9.52608e-10
5.98721e-10
-9.83235e-10
5.90255e-10
-1.01287e-09
5.81261e-10
-1.04151e-09
5.71569e-10
-1.06919e-09
5.61018e-10
-1.09595e-09
5.49466e-10
-1.12186e-09
5.36806e-10
-1.14698e-09
5.22964e-10
-1.17138e-09
5.07906e-10
-1.19512e-09
4.91634e-10
-1.21827e-09
4.74183e-10
-1.24086e-09
4.55618e-10
-1.26296e-09
4.3603e-10
-1.28459e-09
4.1553e-10
-1.30578e-09
3.94247e-10
-1.32656e-09
3.72323e-10
-1.34692e-09
3.49911e-10
-1.36686e-09
3.27172e-10
-1.38632e-09
3.04271e-10
-1.40528e-09
2.81364e-10
-1.42366e-09
2.58588e-10
-1.44139e-09
2.36051e-10
-1.45841e-09
2.13825e-10
-1.47463e-09
1.91948e-10
-1.49001e-09
1.70423e-10
-1.50449e-09
1.49231e-10
-1.51808e-09
1.28342e-10
-1.53078e-09
1.07736e-10
-1.5426e-09
8.74183e-11
-1.55354e-09
6.74224e-11
-1.5636e-09
4.78087e-11
-1.57277e-09
2.86553e-11
-1.58103e-09
1.00479e-11
-1.58835e-09
-7.92921e-12
-1.59468e-09
-2.52044e-11
-1.59998e-09
-4.17315e-11
-1.60419e-09
-5.7501e-11
-1.60728e-09
-7.25425e-11
-1.60921e-09
-8.69174e-11
-1.60996e-09
-1.00711e-10
-1.60954e-09
-1.14027e-10
-1.60798e-09
-1.26982e-10
-1.60533e-09
-1.39698e-10
-1.60169e-09
-1.5229e-10
-1.59715e-09
-1.64852e-10
-1.59182e-09
-1.77433e-10
-1.58584e-09
-1.90037e-10
-1.57931e-09
-2.02618e-10
-1.5724e-09
-2.15077e-10
-1.56521e-09
-2.27262e-10
-1.55788e-09
-2.38967e-10
-1.55049e-09
-2.49938e-10
-1.5431e-09
-2.599e-10
-1.53578e-09
-2.68562e-10
-1.52856e-09
-2.75624e-10
-1.52145e-09
-2.80758e-10
-1.51447e-09
-2.83603e-10
-1.50757e-09
-2.83768e-10
-1.50071e-09
-2.80854e-10
-1.49378e-09
-2.74487e-10
-1.48663e-09
-2.64367e-10
-1.47904e-09
-2.50346e-10
-1.47072e-09
-2.3259e-10
-1.46129e-09
-2.11804e-10
-1.45028e-09
-1.89509e-10
-1.43717e-09
-1.6829e-10
-1.42139e-09
-1.51919e-10
-1.40238e-09
-1.4524e-10
-1.37962e-09
-1.5368e-10
-1.35272e-09
-1.82392e-10
-1.32143e-09
-2.35051e-10
-1.28572e-09
-3.12714e-10
-1.24576e-09
-4.12939e-10
-5.2978e-10
-1.20197e-09
-1.47248e-11
2.87917e-10
-4.23561e-11
5.46032e-10
-7.59045e-11
6.65828e-10
-1.12316e-10
7.22536e-10
-1.50176e-10
7.491e-10
-1.88771e-10
7.60616e-10
-2.27689e-10
7.64387e-10
-2.66666e-10
7.64129e-10
-3.05525e-10
7.61775e-10
-3.44157e-10
7.5829e-10
-3.82512e-10
7.54094e-10
-4.20584e-10
7.49312e-10
-4.58394e-10
7.43935e-10
-4.95971e-10
7.37932e-10
-5.33345e-10
7.31295e-10
-5.70529e-10
7.24068e-10
-6.07523e-10
7.16333e-10
-6.4431e-10
7.082e-10
-6.80854e-10
6.99789e-10
-7.17098e-10
6.91217e-10
-7.52968e-10
6.82579e-10
-7.88373e-10
6.73945e-10
-8.23217e-10
6.65344e-10
-8.574e-10
6.5676e-10
-8.90831e-10
6.48137e-10
-9.23432e-10
6.3938e-10
-9.55141e-10
6.30366e-10
-9.85916e-10
6.20958e-10
-1.01574e-09
6.11005e-10
-1.04461e-09
6.00357e-10
-1.07255e-09
5.88874e-10
-1.09961e-09
5.76432e-10
-1.12582e-09
5.62932e-10
-1.15126e-09
5.48309e-10
-1.17597e-09
5.32529e-10
-1.20002e-09
5.15594e-10
-1.22346e-09
4.97534e-10
-1.24632e-09
4.78411e-10
-1.26866e-09
4.58311e-10
-1.2905e-09
4.37337e-10
-1.31186e-09
4.15607e-10
-1.33277e-09
3.9325e-10
-1.35323e-09
3.70405e-10
-1.37322e-09
3.47217e-10
-1.39271e-09
3.23832e-10
-1.41164e-09
3.00392e-10
-1.42998e-09
2.77021e-10
-1.44765e-09
2.53821e-10
-1.4646e-09
2.30864e-10
-1.48075e-09
2.08195e-10
-1.49605e-09
1.85828e-10
-1.51048e-09
1.63754e-10
-1.524e-09
1.41955e-10
-1.53664e-09
1.20424e-10
-1.54838e-09
9.9176e-11
-1.55923e-09
7.82521e-11
-1.56919e-09
5.77122e-11
-1.57823e-09
3.76275e-11
-1.58634e-09
1.80745e-11
-1.59349e-09
-8.7188e-13
-1.59964e-09
-1.91481e-11
-1.60475e-09
-3.67135e-11
-1.60879e-09
-5.35608e-11
-1.61171e-09
-6.97163e-11
-1.6135e-09
-8.52321e-11
-1.61414e-09
-1.00179e-10
-1.61363e-09
-1.14644e-10
-1.612e-09
-1.28724e-10
-1.60932e-09
-1.42518e-10
-1.60567e-09
-1.56116e-10
-1.60114e-09
-1.6958e-10
-1.59582e-09
-1.82941e-10
-1.58983e-09
-1.96193e-10
-1.58329e-09
-2.09294e-10
-1.57631e-09
-2.22155e-10
-1.56903e-09
-2.3463e-10
-1.56153e-09
-2.46523e-10
-1.55392e-09
-2.57595e-10
-1.54625e-09
-2.67591e-10
-1.53858e-09
-2.76243e-10
-1.53094e-09
-2.83268e-10
-1.52334e-09
-2.88356e-10
-1.51576e-09
-2.91162e-10
-1.50818e-09
-2.91327e-10
-1.50053e-09
-2.88491e-10
-1.4927e-09
-2.82321e-10
-1.48453e-09
-2.72562e-10
-1.47577e-09
-2.59126e-10
-1.46614e-09
-2.42252e-10
-1.45523e-09
-2.22732e-10
-1.4426e-09
-2.02167e-10
-1.42774e-09
-1.83188e-10
-1.41013e-09
-1.69571e-10
-1.38927e-09
-1.66121e-10
-1.36476e-09
-1.78188e-10
-1.33631e-09
-2.10809e-10
-1.30383e-09
-2.67503e-10
-1.2674e-09
-3.49129e-10
-1.22729e-09
-4.53063e-10
-5.73213e-10
-1.18392e-09
-1.47741e-11
3.02667e-10
-4.25072e-11
5.73725e-10
-7.61726e-11
6.99455e-10
-1.12697e-10
7.59007e-10
-1.50661e-10
7.86983e-10
-1.89352e-10
7.992e-10
-2.28366e-10
8.03281e-10
-2.67449e-10
8.03096e-10
-3.06432e-10
8.00661e-10
-3.45211e-10
7.96997e-10
-3.83737e-10
7.92564e-10
-4.21995e-10
7.87522e-10
-4.59997e-10
7.8189e-10
-4.9776e-10
7.7565e-10
-5.35301e-10
7.68802e-10
-5.72626e-10
7.61378e-10
-6.09732e-10
7.53445e-10
-6.466e-10
7.45093e-10
-6.83196e-10
7.36418e-10
-7.19468e-10
7.27519e-10
-7.5535e-10
7.18478e-10
-7.90761e-10
7.09357e-10
-8.25614e-10
7.00181e-10
-8.5982e-10
6.90937e-10
-8.93299e-10
6.81575e-10
-9.25976e-10
6.7201e-10
-9.57797e-10
6.62135e-10
-9.8872e-10
6.51829e-10
-1.01873e-09
6.4096e-10
-1.04782e-09
6.29397e-10
-1.07601e-09
6.17015e-10
-1.10334e-09
6.03704e-10
-1.12984e-09
5.89378e-10
-1.15557e-09
5.73978e-10
-1.18059e-09
5.57474e-10
-1.20492e-09
5.39868e-10
-1.22864e-09
5.2119e-10
-1.25176e-09
5.01496e-10
-1.27432e-09
4.80866e-10
-1.29635e-09
4.59394e-10
-1.31789e-09
4.37185e-10
-1.33893e-09
4.14357e-10
-1.35948e-09
3.91033e-10
-1.37953e-09
3.67347e-10
-1.39904e-09
3.43433e-10
-1.41797e-09
3.19417e-10
-1.43628e-09
2.95415e-10
-1.4539e-09
2.71524e-10
-1.47078e-09
2.47819e-10
-1.48687e-09
2.24346e-10
-1.50212e-09
2.01129e-10
-1.51648e-09
1.78166e-10
-1.52995e-09
1.55452e-10
-1.54252e-09
1.32994e-10
-1.55419e-09
1.10816e-10
-1.56495e-09
8.89645e-11
-1.5748e-09
6.74983e-11
-1.58372e-09
4.64825e-11
-1.59168e-09
2.59846e-11
-1.59867e-09
6.0702e-12
-1.60465e-09
-1.32056e-11
-1.60959e-09
-3.18085e-11
-1.61346e-09
-4.97321e-11
-1.61623e-09
-6.69964e-11
-1.61787e-09
-8.36415e-11
-1.61839e-09
-9.97238e-11
-1.61779e-09
-1.15315e-10
-1.61609e-09
-1.30494e-10
-1.61337e-09
-1.45343e-10
-1.60968e-09
-1.59923e-10
-1.60512e-09
-1.74273e-10
-1.59978e-09
-1.88409e-10
-1.59375e-09
-2.02319e-10
-1.58715e-09
-2.15965e-10
-1.58009e-09
-2.29263e-10
-1.57267e-09
-2.42075e-10
-1.56498e-09
-2.54213e-10
-1.55712e-09
-2.65457e-10
-1.54915e-09
-2.75568e-10
-1.5411e-09
-2.84296e-10
-1.53302e-09
-2.91368e-10
-1.5249e-09
-2.96487e-10
-1.51672e-09
-2.99335e-10
-1.50844e-09
-2.99586e-10
-1.5e-09
-2.96919e-10
-1.49127e-09
-2.91041e-10
-1.48209e-09
-2.81744e-10
-1.4722e-09
-2.69001e-10
-1.4613e-09
-2.53132e-10
-1.44902e-09
-2.35008e-10
-1.43491e-09
-2.16286e-10
-1.41849e-09
-1.99627e-10
-1.39928e-09
-1.88794e-10
-1.37686e-09
-1.88544e-10
-1.35089e-09
-2.04139e-10
-1.32121e-09
-2.40471e-10
-1.28781e-09
-3.00888e-10
-1.25088e-09
-3.86063e-10
-1.21072e-09
-4.9323e-10
-6.162e-10
-1.16776e-09
-1.48269e-11
3.1747e-10
-4.26677e-11
6.01534e-10
-7.64598e-11
7.33214e-10
-1.13108e-10
7.95604e-10
-1.51187e-10
8.24985e-10
-1.89981e-10
8.37899e-10
-2.29096e-10
8.42295e-10
-2.68285e-10
8.42192e-10
-3.0739e-10
8.39687e-10
-3.46313e-10
8.35851e-10
-3.85001e-10
8.31185e-10
-4.23436e-10
8.2588e-10
-4.61619e-10
8.19982e-10
-4.99557e-10
8.13491e-10
-5.37258e-10
8.06409e-10
-5.74723e-10
7.98764e-10
-6.11943e-10
7.9061e-10
-6.489e-10
7.82014e-10
-6.85561e-10
7.73058e-10
-7.21877e-10
7.6382e-10
-7.57788e-10
7.54373e-10
-7.93223e-10
7.4477e-10
-8.28102e-10
7.35033e-10
-8.62349e-10
7.2515e-10
-8.95887e-10
7.15076e-10
-9.28652e-10
7.04738e-10
-9.60589e-10
6.94042e-10
-9.91662e-10
6.82878e-10
-1.02185e-09
6.71133e-10
-1.05115e-09
6.5869e-10
-1.07958e-09
6.45438e-10
-1.10717e-09
6.3128e-10
-1.13395e-09
6.16142e-10
-1.15996e-09
5.99972e-10
-1.18526e-09
5.82745e-10
-1.20987e-09
5.64463e-10
-1.23384e-09
5.45158e-10
-1.2572e-09
5.24879e-10
-1.27998e-09
5.03697e-10
-1.3022e-09
4.81697e-10
-1.3239e-09
4.58971e-10
-1.34507e-09
4.35626e-10
-1.36572e-09
4.11777e-10
-1.38584e-09
3.87545e-10
-1.40538e-09
3.63054e-10
-1.42431e-09
3.38422e-10
-1.4426e-09
3.13757e-10
-1.46019e-09
2.89151e-10
-1.47702e-09
2.6468e-10
-1.49305e-09
2.40394e-10
-1.50824e-09
2.1632e-10
-1.52255e-09
1.92467e-10
-1.53596e-09
1.68841e-10
-1.54847e-09
1.45459e-10
-1.56006e-09
1.22357e-10
-1.57074e-09
9.95823e-11
-1.58048e-09
7.71924e-11
-1.58927e-09
5.52457e-11
-1.5971e-09
3.38014e-11
-1.60393e-09
1.29164e-11
-1.60975e-09
-7.36262e-12
-1.61453e-09
-2.70062e-11
-1.61823e-09
-4.60062e-11
-1.62085e-09
-6.43733e-11
-1.62237e-09
-8.2134e-11
-1.62277e-09
-9.93312e-11
-1.62206e-09
-1.16024e-10
-1.62029e-09
-1.32278e-10
-1.61749e-09
-1.48156e-10
-1.61375e-09
-1.63699e-10
-1.60914e-09
-1.78927e-10
-1.60374e-09
-1.93844e-10
-1.59765e-09
-2.08437e-10
-1.59097e-09
-2.22666e-10
-1.58378e-09
-2.36447e-10
-1.5762e-09
-2.49649e-10
-1.56831e-09
-2.62097e-10
-1.56018e-09
-2.73585e-10
-1.55188e-09
-2.83891e-10
-1.54344e-09
-2.92771e-10
-1.5349e-09
-2.99963e-10
-1.52624e-09
-3.05187e-10
-1.51745e-09
-3.08151e-10
-1.50848e-09
-3.08565e-10
-1.49925e-09
-3.06144e-10
-1.48964e-09
-3.00637e-10
-1.47947e-09
-2.91887e-10
-1.4685e-09
-2.79935e-10
-1.45642e-09
-2.65175e-10
-1.44288e-09
-2.48542e-10
-1.42744e-09
-2.31737e-10
-1.40965e-09
-2.17432e-10
-1.38908e-09
-2.09377e-10
-1.36535e-09
-2.12272e-10
-1.33822e-09
-2.31271e-10
-1.3076e-09
-2.71109e-10
-1.27354e-09
-3.34955e-10
-1.23627e-09
-4.23325e-10
-1.19615e-09
-5.33346e-10
-6.58759e-10
-1.15359e-09
-1.48815e-11
3.32338e-10
-4.28368e-11
6.2947e-10
-7.67642e-11
7.67117e-10
-1.13546e-10
8.32345e-10
-1.51747e-10
8.63124e-10
-1.90652e-10
8.76733e-10
-2.29873e-10
8.81444e-10
-2.69174e-10
8.81428e-10
-3.08403e-10
8.78856e-10
-3.47467e-10
8.7485e-10
-3.86314e-10
8.6995e-10
-4.24919e-10
8.64378e-10
-4.63274e-10
8.58207e-10
-5.01379e-10
8.51452e-10
-5.39235e-10
8.44121e-10
-5.76837e-10
8.36237e-10
-6.14175e-10
8.27839e-10
-6.51228e-10
8.18982e-10
-6.87964e-10
8.09727e-10
-7.24339e-10
8.00142e-10
-7.60297e-10
7.90287e-10
-7.95771e-10
7.80207e-10
-8.30695e-10
7.6992e-10
-8.64996e-10
7.59417e-10
-8.98608e-10
7.48658e-10
-9.31469e-10
7.37577e-10
-9.63529e-10
7.26093e-10
-9.94753e-10
7.14109e-10
-1.02512e-09
7.01523e-10
-1.05463e-09
6.88231e-10
-1.08329e-09
6.74136e-10
-1.11113e-09
6.59153e-10
-1.13817e-09
6.43217e-10
-1.16445e-09
6.26284e-10
-1.19001e-09
6.08335e-10
-1.21488e-09
5.89374e-10
-1.2391e-09
5.69429e-10
-1.26269e-09
5.48546e-10
-1.28568e-09
5.26787e-10
-1.30809e-09
5.04223e-10
-1.32994e-09
4.80939e-10
-1.35124e-09
4.57032e-10
-1.372e-09
4.32609e-10
-1.39218e-09
4.07787e-10
-1.41176e-09
3.82681e-10
-1.43071e-09
3.574e-10
-1.44899e-09
3.32046e-10
-1.46655e-09
3.06708e-10
-1.48334e-09
2.8146e-10
-1.49933e-09
2.56354e-10
-1.51447e-09
2.31422e-10
-1.52872e-09
2.06679e-10
-1.54208e-09
1.82145e-10
-1.55452e-09
1.57846e-10
-1.56604e-09
1.33825e-10
-1.57662e-09
1.1013e-10
-1.58626e-09
8.6815e-11
-1.59493e-09
6.3932e-11
-1.60263e-09
4.15336e-11
-1.60932e-09
1.9669e-11
-1.61498e-09
-1.62175e-12
-1.6196e-09
-2.23114e-11
-1.62316e-09
-4.2387e-11
-1.62563e-09
-6.18481e-11
-1.62701e-09
-8.07083e-11
-1.62729e-09
-9.89997e-11
-1.62648e-09
-1.16771e-10
-1.62461e-09
-1.34078e-10
-1.62174e-09
-1.50966e-10
-1.61792e-09
-1.6746e-10
-1.61323e-09
-1.83568e-10
-1.60776e-09
-1.99286e-10
-1.60158e-09
-2.14593e-10
-1.59478e-09
-2.29446e-10
-1.58746e-09
-2.43759e-10
-1.5797e-09
-2.57406e-10
-1.57157e-09
-2.70224e-10
-1.56316e-09
-2.82023e-10
-1.55451e-09
-2.9259e-10
-1.54567e-09
-3.01689e-10
-1.53666e-09
-3.09066e-10
-1.52746e-09
-3.14461e-10
-1.51806e-09
-3.17614e-10
-1.5084e-09
-3.18264e-10
-1.4984e-09
-3.16162e-10
-1.48793e-09
-3.111e-10
-1.47682e-09
-3.02977e-10
-1.46483e-09
-2.91901e-10
-1.45167e-09
-2.78329e-10
-1.43698e-09
-2.63247e-10
-1.42035e-09
-2.48386e-10
-1.40138e-09
-2.3643e-10
-1.37967e-09
-2.31113e-10
-1.3549e-09
-2.37067e-10
-1.32688e-09
-2.59324e-10
-1.29555e-09
-3.02456e-10
-1.26104e-09
-3.69475e-10
-1.22361e-09
-4.60764e-10
-1.1836e-09
-5.73358e-10
-7.00942e-10
-1.14142e-09
-1.49364e-11
3.47272e-10
-4.3013e-11
6.57532e-10
-7.70832e-11
8.01165e-10
-1.14006e-10
8.69232e-10
-1.52337e-10
9.01406e-10
-1.91361e-10
9.15706e-10
-2.30695e-10
9.2073e-10
-2.70113e-10
9.20801e-10
-3.0947e-10
9.18164e-10
-3.48678e-10
9.13991e-10
-3.87682e-10
9.08858e-10
-4.26451e-10
9.03022e-10
-4.64972e-10
8.96577e-10
-5.03238e-10
8.89552e-10
-5.41243e-10
8.81962e-10
-5.78981e-10
8.73823e-10
-6.1644e-10
8.65165e-10
-6.53597e-10
8.56028e-10
-6.9042e-10
8.46461e-10
-7.26867e-10
8.36518e-10
-7.62885e-10
8.2625e-10
-7.98416e-10
8.15693e-10
-8.33398e-10
8.04865e-10
-8.67769e-10
7.93756e-10
-9.01465e-10
7.82331e-10
-9.34432e-10
7.70533e-10
-9.66621e-10
7.5829e-10
-9.97999e-10
7.45515e-10
-1.02855e-09
7.32119e-10
-1.05826e-09
7.18007e-10
-1.08714e-09
7.03093e-10
-1.11522e-09
6.87304e-10
-1.14251e-09
6.70584e-10
-1.16905e-09
6.52896e-10
-1.19486e-09
6.34225e-10
-1.21998e-09
6.14578e-10
-1.24444e-09
5.9398e-10
-1.26825e-09
5.7247e-10
-1.29144e-09
5.50101e-10
-1.31403e-09
5.26936e-10
-1.33604e-09
5.03053e-10
-1.35748e-09
4.78542e-10
-1.37833e-09
4.53509e-10
-1.39859e-09
4.28062e-10
-1.41822e-09
4.0231e-10
-1.43719e-09
3.76357e-10
-1.45547e-09
3.50298e-10
-1.47301e-09
3.24217e-10
-1.48978e-09
2.98185e-10
-1.50572e-09
2.72255e-10
-1.52082e-09
2.46463e-10
-1.53503e-09
2.20833e-10
-1.54833e-09
1.95395e-10
-1.56071e-09
1.70184e-10
-1.57215e-09
1.45245e-10
-1.58264e-09
1.20626e-10
-1.59217e-09
9.63761e-11
-1.60073e-09
7.2544e-11
-1.6083e-09
4.91768e-11
-1.61485e-09
2.63181e-11
-1.62037e-09
4.0043e-12
-1.62485e-09
-1.7737e-11
-1.62825e-09
-3.88859e-11
-1.63059e-09
-5.94312e-11
-1.63183e-09
-7.93762e-11
-1.63198e-09
-9.8745e-11
-1.63106e-09
-1.17579e-10
-1.6291e-09
-1.35923e-10
-1.62613e-09
-1.53809e-10
-1.62222e-09
-1.71252e-10
-1.61744e-09
-1.88251e-10
-1.61186e-09
-2.04791e-10
-1.60557e-09
-2.20846e-10
-1.59865e-09
-2.3636e-10
-1.59117e-09
-2.51246e-10
-1.5832e-09
-2.65383e-10
-1.57483e-09
-2.78621e-10
-1.56612e-09
-2.90784e-10
-1.55712e-09
-3.01666e-10
-1.54786e-09
-3.11038e-10
-1.53837e-09
-3.18662e-10
-1.52863e-09
-3.24298e-10
-1.51862e-09
-3.27712e-10
-1.50828e-09
-3.28671e-10
-1.49753e-09
-3.2696e-10
-1.48624e-09
-3.22415e-10
-1.47424e-09
-3.14993e-10
-1.46131e-09
-3.0486e-10
-1.44715e-09
-2.92525e-10
-1.43143e-09
-2.79013e-10
-1.41378e-09
-2.66086e-10
-1.39381e-09
-2.56441e-10
-1.37116e-09
-2.53792e-10
-1.34558e-09
-2.62692e-10
-1.31689e-09
-2.88047e-10
-1.28509e-09
-3.34284e-10
-1.25032e-09
-4.04273e-10
-1.21285e-09
-4.98275e-10
-1.17302e-09
-6.13235e-10
-7.42801e-10
-1.13119e-09
-1.49913e-11
3.62264e-10
-4.31955e-11
6.85708e-10
-7.74139e-11
8.35345e-10
-1.14484e-10
9.06255e-10
-1.52951e-10
9.39821e-10
-1.92101e-10
9.5481e-10
-2.31557e-10
9.60146e-10
-2.711e-10
9.60303e-10
-3.10592e-10
9.57605e-10
-3.49947e-10
9.53271e-10
-3.89106e-10
9.47916e-10
-4.28037e-10
9.41825e-10
-4.66719e-10
9.35113e-10
-5.0514e-10
9.27821e-10
-5.43293e-10
9.19966e-10
-5.81168e-10
9.11561e-10
-6.1875e-10
9.02625e-10
-6.56017e-10
8.9319e-10
-6.92938e-10
8.83294e-10
-7.29468e-10
8.7298e-10
-7.65561e-10
8.62291e-10
-8.01163e-10
8.51256e-10
-8.36219e-10
8.39889e-10
-8.70671e-10
8.28183e-10
-9.04463e-10
8.16106e-10
-9.37544e-10
8.0361e-10
-9.69868e-10
7.9063e-10
-1.0014e-09
7.77091e-10
-1.03213e-09
7.62908e-10
-1.06204e-09
7.47999e-10
-1.09115e-09
7.32287e-10
-1.11946e-09
7.15709e-10
-1.14699e-09
6.98215e-10
-1.17377e-09
6.79777e-10
-1.19983e-09
6.60383e-10
-1.22519e-09
6.4004e-10
-1.24987e-09
6.1877e-10
-1.2739e-09
5.96608e-10
-1.29729e-09
5.73599e-10
-1.32006e-09
5.498e-10
-1.34223e-09
5.25284e-10
-1.3638e-09
5.00139e-10
-1.38476e-09
4.74466e-10
-1.40509e-09
4.4837e-10
-1.42477e-09
4.21955e-10
-1.44378e-09
3.95316e-10
-1.46206e-09
3.6854e-10
-1.4796e-09
3.41708e-10
-1.49634e-09
3.14886e-10
-1.51226e-09
2.88128e-10
-1.52731e-09
2.61473e-10
-1.54148e-09
2.34957e-10
-1.55473e-09
2.08615e-10
-1.56704e-09
1.82491e-10
-1.57841e-09
1.56628e-10
-1.58881e-09
1.31074e-10
-1.59824e-09
1.05874e-10
-1.60669e-09
8.1074e-11
-1.61414e-09
5.67184e-11
-1.62056e-09
3.28482e-11
-1.62595e-09
9.49865e-12
-1.63028e-09
-1.32998e-11
-1.63354e-09
-3.55198e-11
-1.63573e-09
-5.71418e-11
-1.63684e-09
-7.81625e-11
-1.63687e-09
-9.86e-11
-1.63583e-09
-1.18488e-10
-1.63376e-09
-1.37862e-10
-1.63069e-09
-1.56743e-10
-1.62668e-09
-1.75138e-10
-1.62179e-09
-1.93038e-10
-1.61609e-09
-2.1042e-10
-1.60968e-09
-2.27244e-10
-1.6026e-09
-2.43445e-10
-1.59494e-09
-2.58932e-10
-1.58676e-09
-2.73593e-10
-1.57813e-09
-2.87291e-10
-1.56911e-09
-2.99859e-10
-1.55974e-09
-3.11099e-10
-1.55007e-09
-3.20795e-10
-1.54009e-09
-3.28726e-10
-1.52981e-09
-3.34673e-10
-1.5192e-09
-3.38421e-10
-1.5082e-09
-3.39761e-10
-1.49673e-09
-3.3851e-10
-1.48466e-09
-3.3455e-10
-1.47183e-09
-3.27889e-10
-1.45802e-09
-3.18742e-10
-1.44296e-09
-3.07659e-10
-1.42634e-09
-2.95705e-10
-1.40779e-09
-2.84677e-10
-1.38699e-09
-2.77286e-10
-1.3636e-09
-2.77213e-10
-1.33741e-09
-2.88934e-10
-1.30827e-09
-3.17237e-10
-1.27619e-09
-3.6642e-10
-1.24133e-09
-4.39221e-10
-1.20394e-09
-5.35773e-10
-1.16433e-09
-6.52937e-10
-7.84354e-10
-1.12282e-09
-1.50471e-11
3.77304e-10
-4.33837e-11
7.1398e-10
-7.77535e-11
8.69642e-10
-1.14974e-10
9.43401e-10
-1.53583e-10
9.78359e-10
-1.92868e-10
9.94035e-10
-2.32454e-10
9.99682e-10
-2.72132e-10
9.99928e-10
-3.11766e-10
9.97175e-10
-3.51271e-10
9.92694e-10
-3.90588e-10
9.87133e-10
-4.29678e-10
9.80804e-10
-4.68518e-10
9.73838e-10
-5.07093e-10
9.66286e-10
-5.45391e-10
9.58163e-10
-5.83404e-10
9.49481e-10
-6.21114e-10
9.40252e-10
-6.58499e-10
9.30501e-10
-6.95524e-10
9.20258e-10
-7.3215e-10
9.09559e-10
-7.68331e-10
8.98437e-10
-8.04017e-10
8.86918e-10
-8.39158e-10
8.75013e-10
-8.73704e-10
8.62713e-10
-9.07603e-10
8.49994e-10
-9.40805e-10
8.36813e-10
-9.7327e-10
8.23113e-10
-1.00497e-09
8.08824e-10
-1.03588e-09
7.93873e-10
-1.06599e-09
7.78183e-10
-1.09531e-09
7.61689e-10
-1.12385e-09
7.44333e-10
-1.15161e-09
7.26074e-10
-1.17863e-09
7.06888e-10
-1.20493e-09
6.86767e-10
-1.23052e-09
6.65717e-10
-1.25542e-09
6.43759e-10
-1.27966e-09
6.20923e-10
-1.30324e-09
5.97248e-10
-1.32619e-09
5.72789e-10
-1.34852e-09
5.47615e-10
-1.37022e-09
5.21815e-10
-1.39129e-09
4.95486e-10
-1.4117e-09
4.68728e-10
-1.43144e-09
4.41638e-10
-1.45048e-09
4.14301e-10
-1.46878e-09
3.86799e-10
-1.48631e-09
3.59206e-10
-1.50304e-09
3.31586e-10
-1.51894e-09
3.03992e-10
-1.53396e-09
2.76471e-10
-1.54809e-09
2.49065e-10
-1.56129e-09
2.21817e-10
-1.57354e-09
1.94773e-10
-1.58483e-09
1.67976e-10
-1.59515e-09
1.4147e-10
-1.60449e-09
1.15299e-10
-1.61283e-09
8.95081e-11
-1.62016e-09
6.41423e-11
-1.62646e-09
3.92424e-11
-1.63172e-09
1.48447e-11
-1.63592e-09
-9.0161e-12
-1.63904e-09
-3.23071e-11
-1.64109e-09
-5.50035e-11
-1.64206e-09
-7.70982e-11
-1.64196e-09
-9.8604e-11
-1.64081e-09
-1.19546e-10
-1.63863e-09
-1.39949e-10
-1.63544e-09
-1.59824e-10
-1.63131e-09
-1.79173e-10
-1.6263e-09
-1.97979e-10
-1.62048e-09
-2.1621e-10
-1.61392e-09
-2.33814e-10
-1.60668e-09
-2.50715e-10
-1.59882e-09
-2.66823e-10
-1.59041e-09
-2.82035e-10
-1.58151e-09
-2.96222e-10
-1.57217e-09
-3.09228e-10
-1.56243e-09
-3.20866e-10
-1.55233e-09
-3.30936e-10
-1.54188e-09
-3.39235e-10
-1.53107e-09
-3.45558e-10
-1.51987e-09
-3.49706e-10
-1.50823e-09
-3.5149e-10
-1.49606e-09
-3.50761e-10
-1.48326e-09
-3.47442e-10
-1.46965e-09
-3.41584e-10
-1.45504e-09
-3.33443e-10
-1.43917e-09
-3.23607e-10
-1.42175e-09
-3.13186e-10
-1.40245e-09
-3.04015e-10
-1.38097e-09
-2.98807e-10
-1.35702e-09
-3.01209e-10
-1.3304e-09
-3.15624e-10
-1.30098e-09
-3.46738e-10
-1.2688e-09
-3.98726e-10
-1.23398e-09
-4.74191e-10
-1.19675e-09
-5.73144e-10
-1.15739e-09
-6.92386e-10
-8.25588e-10
-1.1162e-09
-1.51059e-11
3.92377e-10
-4.35771e-11
7.42336e-10
-7.80994e-11
9.04044e-10
-1.15474e-10
9.8066e-10
-1.54229e-10
1.01701e-09
-1.93656e-10
1.03337e-09
-2.33383e-10
1.03933e-09
-2.73205e-10
1.03967e-09
-3.12988e-10
1.03688e-09
-3.52648e-10
1.03227e-09
-3.92123e-10
1.02652e-09
-4.31372e-10
1.01997e-09
-4.70369e-10
1.01277e-09
-5.09096e-10
1.00496e-09
-5.47542e-10
9.9657e-10
-5.85695e-10
9.87599e-10
-6.23538e-10
9.78063e-10
-6.61047e-10
9.67978e-10
-6.98187e-10
9.57371e-10
-7.34918e-10
9.46272e-10
-7.71197e-10
9.34708e-10
-8.0698e-10
9.22698e-10
-8.42219e-10
9.10251e-10
-8.7687e-10
8.9736e-10
-9.10883e-10
8.84004e-10
-9.44215e-10
8.70145e-10
-9.76825e-10
8.55733e-10
-1.00869e-09
8.40706e-10
-1.03978e-09
8.24996e-10
-1.07009e-09
8.08537e-10
-1.09962e-09
7.91269e-10
-1.12838e-09
7.73144e-10
-1.15638e-09
7.54125e-10
-1.18363e-09
7.34192e-10
-1.21015e-09
7.13339e-10
-1.23597e-09
6.91574e-10
-1.26109e-09
6.68914e-10
-1.28553e-09
6.45386e-10
-1.30931e-09
6.21028e-10
-1.33244e-09
5.95892e-10
-1.35492e-09
5.70048e-10
-1.37675e-09
5.43581e-10
-1.39792e-09
5.16586e-10
-1.41842e-09
4.89156e-10
-1.43822e-09
4.61378e-10
-1.4573e-09
4.33332e-10
-1.47563e-09
4.05091e-10
-1.49317e-09
3.76724e-10
-1.5099e-09
3.48293e-10
-1.52577e-09
3.19855e-10
-1.54077e-09
2.9146e-10
-1.55486e-09
2.63159e-10
-1.56801e-09
2.34998e-10
-1.58021e-09
2.07023e-10
-1.59143e-09
1.79276e-10
-1.60167e-09
1.51798e-10
-1.61092e-09
1.24633e-10
-1.61917e-09
9.78292e-11
-1.62639e-09
7.14327e-11
-1.63257e-09
4.54866e-11
-1.6377e-09
2.00301e-11
-1.64177e-09
-4.89808e-12
-1.64476e-09
-2.92619e-11
-1.64667e-09
-5.30348e-11
-1.64751e-09
-7.62073e-11
-1.64728e-09
-9.8786e-11
-1.64601e-09
-1.20785e-10
-1.6437e-09
-1.42216e-10
-1.6404e-09
-1.63085e-10
-1.63615e-09
-1.83384e-10
-1.63101e-09
-2.03094e-10
-1.62505e-09
-2.22173e-10
-1.61832e-09
-2.40556e-10
-1.6109e-09
-2.58165e-10
-1.60283e-09
-2.74912e-10
-1.59418e-09
-2.90699e-10
-1.585e-09
-3.05404e-10
-1.57534e-09
-3.18881e-10
-1.56524e-09
-3.30957e-10
-1.55471e-09
-3.41448e-10
-1.54379e-09
-3.50167e-10
-1.53246e-09
-3.5692e-10
-1.52069e-09
-3.6152e-10
-1.50842e-09
-3.638e-10
-1.4956e-09
-3.63644e-10
-1.4821e-09
-3.6101e-10
-1.46777e-09
-3.55983e-10
-1.45243e-09
-3.48854e-10
-1.43584e-09
-3.40256e-10
-1.41772e-09
-3.31345e-10
-1.3978e-09
-3.23981e-10
-1.37579e-09
-3.20877e-10
-1.35143e-09
-3.25644e-10
-1.32454e-09
-3.42622e-10
-1.29501e-09
-3.76407e-10
-1.26286e-09
-4.31049e-10
-1.22819e-09
-5.09019e-10
-1.19119e-09
-6.10239e-10
-1.15212e-09
-7.31492e-10
-8.6649e-10
-1.11122e-09
-1.51697e-11
4.07479e-10
-4.37753e-11
7.70771e-10
-7.84492e-11
9.38552e-10
-1.15979e-10
1.01804e-09
-1.54885e-10
1.05579e-09
-1.94462e-10
1.07284e-09
-2.34338e-10
1.07911e-09
-2.74313e-10
1.07955e-09
-3.14252e-10
1.07672e-09
-3.54071e-10
1.072e-09
-3.93707e-10
1.06609e-09
-4.33116e-10
1.05934e-09
-4.72272e-10
1.05191e-09
-5.11153e-10
1.04385e-09
-5.4975e-10
1.03518e-09
-5.88047e-10
1.02591e-09
-6.26028e-10
1.01606e-09
-6.63666e-10
1.00562e-09
-7.00928e-10
9.94638e-10
-7.37774e-10
9.83128e-10
-7.74163e-10
9.71113e-10
-8.10053e-10
9.58607e-10
-8.45401e-10
9.45616e-10
-8.80165e-10
9.32134e-10
-9.14302e-10
9.18142e-10
-9.47769e-10
9.03608e-10
-9.80531e-10
8.88487e-10
-1.01256e-09
8.72725e-10
-1.04384e-09
8.56262e-10
-1.07435e-09
8.39039e-10
-1.10409e-09
8.21004e-10
-1.13307e-09
8.02115e-10
-1.16129e-09
7.8234e-10
-1.18877e-09
7.61662e-10
-1.21551e-09
7.40076e-10
-1.24155e-09
7.17589e-10
-1.26688e-09
6.94218e-10
-1.29153e-09
6.69989e-10
-1.3155e-09
6.44938e-10
-1.3388e-09
6.19116e-10
-1.36143e-09
5.92594e-10
-1.3834e-09
5.65453e-10
-1.40467e-09
5.37783e-10
-1.42526e-09
5.09669e-10
-1.44513e-09
4.81189e-10
-1.46425e-09
4.52416e-10
-1.48261e-09
4.23418e-10
-1.50017e-09
3.94261e-10
-1.5169e-09
3.65005e-10
-1.53277e-09
3.35711e-10
-1.54774e-09
3.06434e-10
-1.5618e-09
2.77229e-10
-1.57491e-09
2.48145e-10
-1.58705e-09
2.19226e-10
-1.59821e-09
1.9051e-10
-1.60838e-09
1.62039e-10
-1.61755e-09
1.33859e-10
-1.6257e-09
1.06022e-10
-1.63282e-09
7.85784e-11
-1.6389e-09
5.1574e-11
-1.64391e-09
2.50518e-11
-1.64785e-09
-9.47038e-13
-1.6507e-09
-2.6386e-11
-1.65248e-09
-5.12394e-11
-1.65318e-09
-7.54949e-11
-1.65283e-09
-9.91507e-11
-1.65143e-09
-1.22208e-10
-1.64901e-09
-1.44666e-10
-1.64558e-09
-1.66524e-10
-1.64121e-09
-1.87769e-10
-1.63593e-09
-2.08376e-10
-1.62981e-09
-2.28295e-10
-1.62291e-09
-2.47458e-10
-1.6153e-09
-2.65785e-10
-1.60701e-09
-2.83191e-10
-1.59811e-09
-2.99579e-10
-1.58865e-09
-3.14834e-10
-1.57866e-09
-3.28816e-10
-1.56819e-09
-3.41368e-10
-1.55725e-09
-3.52323e-10
-1.54587e-09
-3.61502e-10
-1.53402e-09
-3.68725e-10
-1.5217e-09
-3.73817e-10
-1.50884e-09
-3.76637e-10
-1.49539e-09
-3.77097e-10
-1.48124e-09
-3.75182e-10
-1.46625e-09
-3.71006e-10
-1.45024e-09
-3.64897e-10
-1.43301e-09
-3.5753e-10
-1.41431e-09
-3.50098e-10
-1.39388e-09
-3.44479e-10
-1.37146e-09
-3.43381e-10
-1.34683e-09
-3.50385e-10
-1.31981e-09
-3.6978e-10
-1.2903e-09
-4.06074e-10
-1.25829e-09
-4.63198e-10
-1.22386e-09
-5.43525e-10
-1.18715e-09
-6.46933e-10
-1.14839e-09
-7.70208e-10
-9.07074e-10
-1.10779e-09
-1.524e-11
4.22616e-10
-4.3977e-11
7.99298e-10
-7.88006e-11
9.73183e-10
-1.16486e-10
1.05555e-09
-1.55549e-10
1.0947e-09
-1.95283e-10
1.11244e-09
-2.35316e-10
1.11902e-09
-2.75451e-10
1.11957e-09
-3.15552e-10
1.11672e-09
-3.55535e-10
1.1119e-09
-3.95334e-10
1.10584e-09
-4.34907e-10
1.0989e-09
-4.74224e-10
1.09124e-09
-5.13264e-10
1.08293e-09
-5.52015e-10
1.07399e-09
-5.90461e-10
1.06441e-09
-6.28585e-10
1.05422e-09
-6.6636e-10
1.04342e-09
-7.03751e-10
1.03205e-09
-7.4072e-10
1.02013e-09
-7.77227e-10
1.00765e-09
-8.13234e-10
9.9465e-10
-8.48702e-10
9.81113e-10
-8.83589e-10
9.67038e-10
-9.17857e-10
9.52409e-10
-9.51466e-10
9.37199e-10
-9.84384e-10
9.2137e-10
-1.01658e-09
9.04874e-10
-1.04804e-09
8.8766e-10
-1.07875e-09
8.69678e-10
-1.10871e-09
8.50882e-10
-1.1379e-09
8.31235e-10
-1.16634e-09
8.10709e-10
-1.19404e-09
7.89289e-10
-1.221e-09
7.66971e-10
-1.24725e-09
7.43761e-10
-1.27279e-09
7.19676e-10
-1.29764e-09
6.9474e-10
-1.3218e-09
6.6899e-10
-1.34527e-09
6.42478e-10
-1.36806e-09
6.15272e-10
-1.39015e-09
5.87449e-10
-1.41153e-09
5.59092e-10
-1.4322e-09
5.30276e-10
-1.45214e-09
5.01074e-10
-1.47133e-09
4.71552e-10
-1.48972e-09
4.41776e-10
-1.50731e-09
4.11808e-10
-1.52404e-09
3.81713e-10
-1.53991e-09
3.51551e-10
-1.55487e-09
3.21383e-10
-1.5689e-09
2.91264e-10
-1.58197e-09
2.61244e-10
-1.59407e-09
2.31362e-10
-1.60518e-09
2.01658e-10
-1.61529e-09
1.72175e-10
-1.62438e-09
1.42963e-10
-1.63244e-09
1.14079e-10
-1.63947e-09
8.55785e-11
-1.64544e-09
5.75103e-11
-1.65033e-09
2.99206e-11
-1.65415e-09
2.85087e-12
-1.65688e-09
-2.36643e-11
-1.65853e-09
-4.96008e-11
-1.6591e-09
-7.49428e-11
-1.65862e-09
-9.96773e-11
-1.6571e-09
-1.23792e-10
-1.65455e-09
-1.47275e-10
-1.651e-09
-1.70116e-10
-1.64649e-09
-1.92301e-10
-1.64106e-09
-2.13799e-10
-1.63479e-09
-2.34556e-10
-1.62771e-09
-2.54505e-10
-1.61989e-09
-2.73566e-10
-1.61138e-09
-2.91655e-10
-1.60223e-09
-3.08676e-10
-1.59249e-09
-3.24513e-10
-1.58218e-09
-3.39037e-10
-1.57134e-09
-3.52103e-10
-1.56e-09
-3.63557e-10
-1.54816e-09
-3.7323e-10
-1.53582e-09
-3.80954e-10
-1.52296e-09
-3.86574e-10
-1.50954e-09
-3.89974e-10
-1.49549e-09
-3.91086e-10
-1.48074e-09
-3.89918e-10
-1.46514e-09
-3.86609e-10
-1.44853e-09
-3.81523e-10
-1.43074e-09
-3.7537e-10
-1.41155e-09
-3.69367e-10
-1.39071e-09
-3.65404e-10
-1.36801e-09
-3.66189e-10
-1.34323e-09
-3.75283e-10
-1.31619e-09
-3.96927e-10
-1.28681e-09
-4.35549e-10
-1.25503e-09
-4.94995e-10
-1.22091e-09
-5.77585e-10
-1.18456e-09
-6.83184e-10
-1.14614e-09
-8.08559e-10
-9.47386e-10
-1.10582e-09
-1.53162e-11
4.37804e-10
-4.41805e-11
8.27944e-10
-7.91516e-11
1.00797e-09
-1.16995e-10
1.09323e-09
-1.56218e-10
1.13379e-09
-1.96116e-10
1.1522e-09
-2.36314e-10
1.1591e-09
-2.76616e-10
1.15975e-09
-3.16883e-10
1.15689e-09
-3.57034e-10
1.15197e-09
-3.97001e-10
1.14576e-09
-4.36741e-10
1.13864e-09
-4.76224e-10
1.13076e-09
-5.15428e-10
1.12219e-09
-5.54338e-10
1.11296e-09
-5.92939e-10
1.10306e-09
-6.31211e-10
1.09253e-09
-6.69127e-10
1.08137e-09
-7.06653e-10
1.06961e-09
-7.43752e-10
1.05726e-09
-7.80388e-10
1.04433e-09
-8.16522e-10
1.03082e-09
-8.52117e-10
1.01674e-09
-8.87136e-10
1.00207e-09
-9.21543e-10
9.86802e-10
-9.553e-10
9.70917e-10
-9.88378e-10
9.5438e-10
-1.02075e-09
9.37152e-10
-1.0524e-09
9.19192e-10
-1.0833e-09
9.00456e-10
-1.11346e-09
8.80906e-10
-1.14287e-09
8.6051e-10
-1.17152e-09
8.39241e-10
-1.19943e-09
8.17085e-10
-1.22661e-09
7.94037e-10
-1.25307e-09
7.70104e-10
-1.27882e-09
7.45301e-10
-1.30386e-09
7.19655e-10
-1.32821e-09
6.93203e-10
-1.35185e-09
6.65995e-10
-1.37478e-09
6.38096e-10
-1.397e-09
6.09579e-10
-1.41849e-09
5.80517e-10
-1.43926e-09
5.50978e-10
-1.45927e-09
5.21029e-10
-1.47852e-09
4.90734e-10
-1.49696e-09
4.60158e-10
-1.51457e-09
4.29362e-10
-1.53133e-09
3.98413e-10
-1.5472e-09
3.67371e-10
-1.56215e-09
3.363e-10
-1.57616e-09
3.05254e-10
-1.5892e-09
2.7428e-10
-1.60126e-09
2.43418e-10
-1.61233e-09
2.12708e-10
-1.62238e-09
1.82197e-10
-1.6314e-09
1.51944e-10
-1.63939e-09
1.22007e-10
-1.64632e-09
9.24474e-11
-1.65219e-09
6.33166e-11
-1.65698e-09
3.46619e-11
-1.66068e-09
6.5234e-12
-1.66329e-09
-2.1068e-11
-1.66481e-09
-4.80889e-11
-1.66526e-09
-7.45178e-11
-1.66466e-09
-1.0033e-10
-1.66301e-09
-1.255e-10
-1.66033e-09
-1.50005e-10
-1.65665e-09
-1.73828e-10
-1.652e-09
-1.96951e-10
-1.64643e-09
-2.19338e-10
-1.63999e-09
-2.40938e-10
-1.63273e-09
-2.61685e-10
-1.62471e-09
-2.81503e-10
-1.61598e-09
-3.00305e-10
-1.60657e-09
-3.17992e-10
-1.59654e-09
-3.34449e-10
-1.58592e-09
-3.49553e-10
-1.57472e-09
-3.63172e-10
-1.56299e-09
-3.75159e-10
-1.55071e-09
-3.85358e-10
-1.5379e-09
-3.93616e-10
-1.52453e-09
-3.99802e-10
-1.51057e-09
-4.03816e-10
-1.49598e-09
-4.05608e-10
-1.48065e-09
-4.05204e-10
-1.4645e-09
-4.02766e-10
-1.44736e-09
-3.98687e-10
-1.42909e-09
-3.93704e-10
-1.40948e-09
-3.8905e-10
-1.38833e-09
-3.86628e-10
-1.36544e-09
-3.89155e-10
-1.34061e-09
-4.0018e-10
-1.31367e-09
-4.23899e-10
-1.28449e-09
-4.64687e-10
-1.25304e-09
-5.26351e-10
-1.2193e-09
-6.11191e-10
-1.18336e-09
-7.19042e-10
-1.1453e-09
-8.46604e-10
-9.87472e-10
-1.10523e-09
-1.53961e-11
4.53068e-10
-4.43836e-11
8.5674e-10
-7.9501e-11
1.04293e-09
-1.17505e-10
1.1311e-09
-1.56893e-10
1.17306e-09
-1.96962e-10
1.19215e-09
-2.37331e-10
1.19935e-09
-2.77805e-10
1.2001e-09
-3.18244e-10
1.19722e-09
-3.58566e-10
1.19222e-09
-3.98706e-10
1.18587e-09
-4.38618e-10
1.17855e-09
-4.78272e-10
1.17044e-09
-5.17645e-10
1.16161e-09
-5.5672e-10
1.15207e-09
-5.95479e-10
1.14186e-09
-6.33903e-10
1.13097e-09
-6.71964e-10
1.11945e-09
-7.09631e-10
1.10729e-09
-7.46869e-10
1.09451e-09
-7.8364e-10
1.08112e-09
-8.1991e-10
1.06711e-09
-8.55642e-10
1.05248e-09
-8.90802e-10
1.03722e-09
-9.25353e-10
1.02132e-09
-9.59264e-10
1.00476e-09
-9.92505e-10
9.87519e-10
-1.02505e-09
9.69567e-10
-1.05688e-09
9.50869e-10
-1.08798e-09
9.3139e-10
-1.11834e-09
9.11097e-10
-1.14795e-09
8.89961e-10
-1.17682e-09
8.67957e-10
-1.20495e-09
8.4507e-10
-1.23234e-09
8.21295e-10
-1.259e-09
7.96638e-10
-1.28495e-09
7.71116e-10
-1.31018e-09
7.44755e-10
-1.33471e-09
7.17593e-10
-1.35851e-09
6.8968e-10
-1.38159e-09
6.61077e-10
-1.40394e-09
6.31848e-10
-1.42555e-09
6.02059e-10
-1.44641e-09
5.71773e-10
-1.46651e-09
5.41053e-10
-1.48582e-09
5.09962e-10
-1.50431e-09
4.78565e-10
-1.52196e-09
4.46927e-10
-1.53874e-09
4.1511e-10
-1.55462e-09
3.83177e-10
-1.56957e-09
3.51189e-10
-1.58357e-09
3.19199e-10
-1.59659e-09
2.87253e-10
-1.60862e-09
2.55392e-10
-1.61964e-09
2.23661e-10
-1.62965e-09
1.92115e-10
-1.63861e-09
1.60817e-10
-1.64652e-09
1.2983e-10
-1.65337e-09
9.92148e-11
-1.65914e-09
6.90259e-11
-1.66383e-09
3.93096e-11
-1.66742e-09
1.01031e-11
-1.66992e-09
-1.85656e-11
-1.67133e-09
-4.6672e-11
-1.67167e-09
-7.41874e-11
-1.67094e-09
-1.01075e-10
-1.66917e-09
-1.27298e-10
-1.66636e-09
-1.52825e-10
-1.66256e-09
-1.77633e-10
-1.65777e-09
-2.01696e-10
-1.65205e-09
-2.2498e-10
-1.64545e-09
-2.47435e-10
-1.63801e-09
-2.69001e-10
-1.62978e-09
-2.89601e-10
-1.62083e-09
-3.09147e-10
-1.61118e-09
-3.27535e-10
-1.60087e-09
-3.44652e-10
-1.58993e-09
-3.6038e-10
-1.57839e-09
-3.74594e-10
-1.56627e-09
-3.87153e-10
-1.55358e-09
-3.97914e-10
-1.54031e-09
-4.06744e-10
-1.52647e-09
-4.13527e-10
-1.51201e-09
-4.18179e-10
-1.4969e-09
-4.20663e-10
-1.48105e-09
-4.21019e-10
-1.46439e-09
-4.19433e-10
-1.44678e-09
-4.16317e-10
-1.42809e-09
-4.1243e-10
-1.40815e-09
-4.09024e-10
-1.38677e-09
-4.08021e-10
-1.36378e-09
-4.12152e-10
-1.33898e-09
-4.24956e-10
-1.31221e-09
-4.506e-10
-1.28334e-09
-4.93443e-10
-1.25228e-09
-5.57287e-10
-1.219e-09
-6.44408e-10
-1.1835e-09
-7.54569e-10
-1.14581e-09
-8.84371e-10
-1.02735e-09
-1.10597e-09
-1.54759e-11
4.68432e-10
-4.45846e-11
8.85711e-10
-7.98494e-11
1.0781e-09
-1.18018e-10
1.16918e-09
-1.57577e-10
1.21253e-09
-1.97822e-10
1.23229e-09
-2.38368e-10
1.23979e-09
-2.79018e-10
1.24064e-09
-3.19633e-10
1.23775e-09
-3.60131e-10
1.23265e-09
-4.00447e-10
1.22615e-09
-4.40537e-10
1.21863e-09
-4.80367e-10
1.21028e-09
-5.19914e-10
1.20117e-09
-5.59157e-10
1.19133e-09
-5.98078e-10
1.18078e-09
-6.36657e-10
1.16955e-09
-6.74869e-10
1.15764e-09
-7.12682e-10
1.14509e-09
-7.50064e-10
1.13188e-09
-7.86979e-10
1.11803e-09
-8.23392e-10
1.10351e-09
-8.59269e-10
1.08833e-09
-8.94576e-10
1.07248e-09
-9.29279e-10
1.05595e-09
-9.63348e-10
1.03873e-09
-9.96755e-10
1.0208e-09
-1.02947e-09
1.00214e-09
-1.06149e-09
9.82714e-10
-1.09278e-09
9.62506e-10
-1.12333e-09
9.41483e-10
-1.15315e-09
9.19617e-10
-1.18223e-09
8.96885e-10
-1.21056e-09
8.7327e-10
-1.23816e-09
8.48767e-10
-1.26502e-09
8.23384e-10
-1.29117e-09
7.97137e-10
-1.31659e-09
7.70054e-10
-1.34129e-09
7.42173e-10
-1.36526e-09
7.13543e-10
-1.38848e-09
6.84219e-10
-1.41096e-09
6.54258e-10
-1.43269e-09
6.2372e-10
-1.45365e-09
5.92663e-10
-1.47383e-09
5.6115e-10
-1.49321e-09
5.29245e-10
-1.51177e-09
4.97013e-10
-1.52946e-09
4.64517e-10
-1.54626e-09
4.31821e-10
-1.56216e-09
3.98983e-10
-1.57711e-09
3.66063e-10
-1.5911e-09
3.3311e-10
-1.60411e-09
3.00173e-10
-1.61613e-09
2.67299e-10
-1.62712e-09
2.34539e-10
-1.63708e-09
2.01956e-10
-1.64599e-09
1.69616e-10
-1.65383e-09
1.37583e-10
-1.6606e-09
1.05918e-10
-1.66629e-09
7.4673e-11
-1.67088e-09
4.38938e-11
-1.67438e-09
1.36151e-11
-1.67678e-09
-1.61358e-11
-1.67809e-09
-4.53306e-11
-1.67832e-09
-7.3932e-11
-1.67748e-09
-1.01894e-10
-1.67558e-09
-1.2917e-10
-1.67266e-09
-1.55721e-10
-1.66872e-09
-1.81519e-10
-1.6638e-09
-2.06532e-10
-1.65794e-09
-2.30725e-10
-1.65118e-09
-2.54054e-10
-1.64356e-09
-2.76462e-10
-1.63515e-09
-2.97874e-10
-1.62597e-09
-3.18196e-10
-1.61608e-09
-3.37323e-10
-1.6055e-09
-3.55144e-10
-1.59426e-09
-3.71543e-10
-1.5824e-09
-3.86394e-10
-1.56991e-09
-3.99565e-10
-1.55682e-09
-4.10925e-10
-1.54313e-09
-4.20356e-10
-1.52884e-09
-4.27756e-10
-1.51391e-09
-4.33052e-10
-1.49832e-09
-4.36216e-10
-1.482e-09
-4.37307e-10
-1.46488e-09
-4.36531e-10
-1.44686e-09
-4.34317e-10
-1.42781e-09
-4.31443e-10
-1.4076e-09
-4.29187e-10
-1.38607e-09
-4.29497e-10
-1.36305e-09
-4.3511e-10
-1.33837e-09
-4.49562e-10
-1.31185e-09
-4.77019e-10
-1.28335e-09
-5.2185e-10
-1.25276e-09
-5.8786e-10
-1.21999e-09
-6.7727e-10
-1.18495e-09
-7.89743e-10
-1.1476e-09
-9.21815e-10
-1.067e-09
-1.10798e-09
-1.55524e-11
4.83911e-10
-4.47833e-11
9.14869e-10
-8.0199e-11
1.11348e-09
-1.18537e-10
1.20747e-09
-1.58273e-10
1.25221e-09
-1.98699e-10
1.27263e-09
-2.39426e-10
1.28043e-09
-2.80256e-10
1.28138e-09
-3.2105e-10
1.27847e-09
-3.61728e-10
1.27327e-09
-4.02225e-10
1.2666e-09
-4.42497e-10
1.25888e-09
-4.82508e-10
1.25028e-09
-5.22232e-10
1.24088e-09
-5.61647e-10
1.23072e-09
-6.00733e-10
1.21984e-09
-6.3947e-10
1.20824e-09
-6.77835e-10
1.19596e-09
-7.15799e-10
1.183e-09
-7.5333e-10
1.16936e-09
-7.90396e-10
1.15504e-09
-8.2696e-10
1.14002e-09
-8.62988e-10
1.1243e-09
-8.98448e-10
1.10786e-09
-9.33308e-10
1.09072e-09
-9.67538e-10
1.07285e-09
-1.00111e-09
1.05424e-09
-1.034e-09
1.03488e-09
-1.0662e-09
1.01475e-09
-1.09767e-09
9.93833e-10
-1.12842e-09
9.72091e-10
-1.15844e-09
9.49503e-10
-1.18772e-09
9.26045e-10
-1.21626e-09
9.01701e-10
-1.24406e-09
8.76468e-10
-1.27112e-09
8.50352e-10
-1.29746e-09
8.23372e-10
-1.32306e-09
7.95557e-10
-1.34794e-09
7.66945e-10
-1.37206e-09
7.37584e-10
-1.39543e-09
7.07522e-10
-1.41805e-09
6.76811e-10
-1.43989e-09
6.45503e-10
-1.46096e-09
6.13657e-10
-1.48123e-09
5.81335e-10
-1.50069e-09
5.48601e-10
-1.5193e-09
5.15522e-10
-1.53704e-09
4.82158e-10
-1.55388e-09
4.48569e-10
-1.5698e-09
4.14812e-10
-1.58476e-09
3.80942e-10
-1.59876e-09
3.4701e-10
-1.61176e-09
3.13068e-10
-1.62376e-09
2.7917e-10
-1.63473e-09
2.45379e-10
-1.64466e-09
2.11761e-10
-1.65351e-09
1.78383e-10
-1.6613e-09
1.45307e-10
-1.668e-09
1.1259e-10
-1.67361e-09
8.02837e-11
-1.67813e-09
4.84319e-11
-1.68154e-09
1.70696e-11
-1.68386e-09
-1.37726e-11
-1.68508e-09
-4.406e-11
-1.6852e-09
-7.37472e-11
-1.68426e-09
-1.02781e-10
-1.68225e-09
-1.31111e-10
-1.67921e-09
-1.58692e-10
-1.67515e-09
-1.85488e-10
-1.67011e-09
-2.11466e-10
-1.66412e-09
-2.36589e-10
-1.65721e-09
-2.60816e-10
-1.64943e-09
-2.84094e-10
-1.64083e-09
-3.06346e-10
-1.63145e-09
-3.27477e-10
-1.62133e-09
-3.47381e-10
-1.61049e-09
-3.65946e-10
-1.59897e-09
-3.83054e-10
-1.58679e-09
-3.9858e-10
-1.57396e-09
-4.12396e-10
-1.5605e-09
-4.24381e-10
-1.54642e-09
-4.34429e-10
-1.5317e-09
-4.42448e-10
-1.51635e-09
-4.48374e-10
-1.50032e-09
-4.52194e-10
-1.48357e-09
-4.53987e-10
-1.46604e-09
-4.53974e-10
-1.44765e-09
-4.52602e-10
-1.4283e-09
-4.50674e-10
-1.40789e-09
-4.49494e-10
-1.38627e-09
-4.51027e-10
-1.3633e-09
-4.58012e-10
-1.3388e-09
-4.73996e-10
-1.31261e-09
-5.03169e-10
-1.28456e-09
-5.49924e-10
-1.25449e-09
-6.18045e-10
-1.22224e-09
-7.09687e-10
-1.18766e-09
-8.24451e-10
-1.15065e-09
-9.5886e-10
-1.10642e-09
-1.11121e-09
-1.56235e-11
4.99505e-10
-4.49811e-11
9.44206e-10
-8.05534e-11
1.14905e-09
-1.19067e-10
1.24595e-09
-1.58985e-10
1.29209e-09
-1.99595e-10
1.31318e-09
-2.40507e-10
1.32127e-09
-2.8152e-10
1.32232e-09
-3.22497e-10
1.31939e-09
-3.63359e-10
1.31409e-09
-4.04041e-10
1.30725e-09
-4.44499e-10
1.2993e-09
-4.84694e-10
1.29044e-09
-5.24598e-10
1.28075e-09
-5.64186e-10
1.27027e-09
-6.03439e-10
1.25903e-09
-6.42337e-10
1.24707e-09
-6.80858e-10
1.2344e-09
-7.18976e-10
1.22103e-09
-7.56662e-10
1.20695e-09
-7.93883e-10
1.19215e-09
-8.30603e-10
1.17663e-09
-8.66788e-10
1.16037e-09
-9.02405e-10
1.14337e-09
-9.37424e-10
1.12563e-09
-9.71817e-10
1.10713e-09
-1.00556e-09
1.08787e-09
-1.03862e-09
1.06783e-09
-1.07099e-09
1.04702e-09
-1.10265e-09
1.02539e-09
-1.1336e-09
1.00294e-09
-1.16381e-09
9.79631e-10
-1.19328e-09
9.55446e-10
-1.22202e-09
9.30369e-10
-1.25002e-09
9.04398e-10
-1.27728e-09
8.77541e-10
-1.3038e-09
8.4982e-10
-1.32959e-09
8.21263e-10
-1.35463e-09
7.9191e-10
-1.37891e-09
7.61804e-10
-1.40243e-09
7.30988e-10
-1.42518e-09
6.99509e-10
-1.44714e-09
6.67416e-10
-1.46832e-09
6.34767e-10
-1.48868e-09
6.01624e-10
-1.50822e-09
5.68053e-10
-1.52689e-09
5.34117e-10
-1.54468e-09
4.99874e-10
-1.56156e-09
4.6538e-10
-1.57751e-09
4.30689e-10
-1.5925e-09
3.95853e-10
-1.60651e-09
3.60927e-10
-1.61952e-09
3.25971e-10
-1.63151e-09
2.91047e-10
-1.64246e-09
2.56225e-10
-1.65235e-09
2.21574e-10
-1.66117e-09
1.87156e-10
-1.66891e-09
1.53031e-10
-1.67555e-09
1.19252e-10
-1.6811e-09
8.58682e-11
-1.68556e-09
5.29262e-11
-1.6889e-09
2.04644e-11
-1.69114e-09
-1.14799e-11
-1.69228e-09
-4.2864e-11
-1.69233e-09
-7.36369e-11
-1.69129e-09
-1.03743e-10
-1.68918e-09
-1.33129e-10
-1.68604e-09
-1.61748e-10
-1.68187e-09
-1.89558e-10
-1.67672e-09
-2.1652e-10
-1.6706e-09
-2.42599e-10
-1.66356e-09
-2.67753e-10
-1.65564e-09
-2.91928e-10
-1.64687e-09
-3.15045e-10
-1.6373e-09
-3.37011e-10
-1.62697e-09
-3.57719e-10
-1.61589e-09
-3.77054e-10
-1.60411e-09
-3.94896e-10
-1.59163e-09
-4.11117e-10
-1.57849e-09
-4.25595e-10
-1.56468e-09
-4.38217e-10
-1.55023e-09
-4.48885e-10
-1.53514e-09
-4.57516e-10
-1.51938e-09
-4.64059e-10
-1.50296e-09
-4.68519e-10
-1.48582e-09
-4.70989e-10
-1.46793e-09
-4.71708e-10
-1.44923e-09
-4.71141e-10
-1.42965e-09
-4.70112e-10
-1.4091e-09
-4.69944e-10
-1.38746e-09
-4.72606e-10
-1.36459e-09
-4.80843e-10
-1.34034e-09
-4.98233e-10
-1.31453e-09
-5.29011e-10
-1.28697e-09
-5.7758e-10
-1.25745e-09
-6.477e-10
-1.22574e-09
-7.41497e-10
-1.19162e-09
-8.58578e-10
-1.15494e-09
-9.9548e-10
-1.14565e-09
-1.11565e-09
-1.56897e-11
5.15201e-10
-4.51811e-11
9.73699e-10
-8.0917e-11
1.18479e-09
-1.19611e-10
1.28461e-09
-1.59716e-10
1.33215e-09
-2.00514e-10
1.35391e-09
-2.41613e-10
1.36232e-09
-2.82812e-10
1.36347e-09
-3.23975e-10
1.36052e-09
-3.65024e-10
1.3551e-09
-4.05896e-10
1.34809e-09
-4.46542e-10
1.33991e-09
-4.86923e-10
1.33078e-09
-5.27008e-10
1.32078e-09
-5.66771e-10
1.30996e-09
-6.06192e-10
1.29838e-09
-6.45253e-10
1.28604e-09
-6.83932e-10
1.27297e-09
-7.22208e-10
1.25918e-09
-7.60051e-10
1.24466e-09
-7.9743e-10
1.22939e-09
-8.34309e-10
1.21337e-09
-8.70654e-10
1.19659e-09
-9.06431e-10
1.17904e-09
-9.41612e-10
1.16071e-09
-9.76168e-10
1.14159e-09
-1.01007e-09
1.1217e-09
-1.04331e-09
1.10101e-09
-1.07586e-09
1.07951e-09
-1.1077e-09
1.05719e-09
-1.13883e-09
1.03403e-09
-1.16923e-09
1.01e-09
-1.1989e-09
9.8508e-10
-1.22784e-09
9.59264e-10
-1.25603e-09
9.32549e-10
-1.28348e-09
9.04945e-10
-1.31018e-09
8.76475e-10
-1.33614e-09
8.47168e-10
-1.36135e-09
8.17063e-10
-1.38579e-09
7.86198e-10
-1.40945e-09
7.54615e-10
-1.43233e-09
7.22355e-10
-1.45442e-09
6.89466e-10
-1.4757e-09
6.56004e-10
-1.49616e-09
6.22033e-10
-1.51577e-09
5.87617e-10
-1.53452e-09
5.52816e-10
-1.55237e-09
5.17684e-10
-1.56929e-09
4.82273e-10
-1.58528e-09
4.46634e-10
-1.60029e-09
4.10821e-10
-1.61432e-09
3.74893e-10
-1.62734e-09
3.38918e-10
-1.63934e-09
3.02967e-10
-1.65028e-09
2.67114e-10
-1.66015e-09
2.31425e-10
-1.66894e-09
1.9596e-10
-1.67664e-09
1.6077e-10
-1.68324e-09
1.25908e-10
-1.68875e-09
9.14258e-11
-1.69315e-09
5.73728e-11
-1.69644e-09
2.37957e-11
-1.69863e-09
-9.25985e-12
-1.69971e-09
-4.17436e-11
-1.69968e-09
-7.3603e-11
-1.69856e-09
-1.04784e-10
-1.69638e-09
-1.35234e-10
-1.69314e-09
-1.64905e-10
-1.68889e-09
-1.93748e-10
-1.68364e-09
-2.2172e-10
-1.67742e-09
-2.48782e-10
-1.67027e-09
-2.74889e-10
-1.66222e-09
-2.99981e-10
-1.65331e-09
-3.2398e-10
-1.64357e-09
-3.46792e-10
-1.63304e-09
-3.68312e-10
-1.62175e-09
-3.88425e-10
-1.60972e-09
-4.07004e-10
-1.59698e-09
-4.23925e-10
-1.58354e-09
-4.39071e-10
-1.56943e-09
-4.52337e-10
-1.55465e-09
-4.63629e-10
-1.5392e-09
-4.72875e-10
-1.5231e-09
-4.8004e-10
-1.50632e-09
-4.85142e-10
-1.48884e-09
-4.88286e-10
-1.47065e-09
-4.89724e-10
-1.45169e-09
-4.89936e-10
-1.43194e-09
-4.89759e-10
-1.4113e-09
-4.90519e-10
-1.38969e-09
-4.94187e-10
-1.36698e-09
-5.03532e-10
-1.34302e-09
-5.22183e-10
-1.31764e-09
-5.54421e-10
-1.29061e-09
-6.0466e-10
-1.26165e-09
-6.76663e-10
-1.23047e-09
-7.72596e-10
-1.19681e-09
-8.92118e-10
-1.16046e-09
-1.03174e-09
-1.18479e-09
-1.1213e-09
-1.57538e-11
5.30976e-10
-4.53869e-11
1.00332e-09
-8.12935e-11
1.22069e-09
-1.20172e-10
1.32343e-09
-1.60468e-10
1.37239e-09
-2.01456e-10
1.39483e-09
-2.42745e-10
1.40356e-09
-2.84133e-10
1.40483e-09
-3.25486e-10
1.40186e-09
-3.66726e-10
1.39633e-09
-4.07789e-10
1.38913e-09
-4.48625e-10
1.38071e-09
-4.89194e-10
1.37129e-09
-5.29461e-10
1.36098e-09
-5.694e-10
1.34983e-09
-6.0899e-10
1.33788e-09
-6.48213e-10
1.32516e-09
-6.87053e-10
1.31169e-09
-7.25487e-10
1.29748e-09
-7.6349e-10
1.28251e-09
-8.01028e-10
1.26677e-09
-8.38067e-10
1.25027e-09
-8.74572e-10
1.23297e-09
-9.1051e-10
1.21487e-09
-9.45853e-10
1.19597e-09
-9.80573e-10
1.17626e-09
-1.01465e-09
1.15574e-09
-1.04805e-09
1.1344e-09
-1.08077e-09
1.11223e-09
-1.11279e-09
1.08922e-09
-1.14411e-09
1.06534e-09
-1.1747e-09
1.04058e-09
-1.20456e-09
1.01493e-09
-1.23369e-09
9.88368e-10
-1.26206e-09
9.60905e-10
-1.2897e-09
9.3255e-10
-1.31658e-09
9.03326e-10
-1.34271e-09
8.73262e-10
-1.36808e-09
8.42395e-10
-1.39267e-09
8.10761e-10
-1.41648e-09
7.78399e-10
-1.43949e-09
7.45347e-10
-1.4617e-09
7.11653e-10
-1.48309e-09
6.77373e-10
-1.50364e-09
6.4257e-10
-1.52334e-09
6.07303e-10
-1.54215e-09
5.71628e-10
-1.56006e-09
5.35597e-10
-1.57704e-09
4.99257e-10
-1.59307e-09
4.6266e-10
-1.60813e-09
4.25863e-10
-1.62218e-09
3.88931e-10
-1.63522e-09
3.51938e-10
-1.64722e-09
3.14959e-10
-1.65815e-09
2.7807e-10
-1.66802e-09
2.41332e-10
-1.67679e-09
2.04801e-10
-1.68448e-09
1.68525e-10
-1.69106e-09
1.32557e-10
-1.69653e-09
9.69547e-11
-1.7009e-09
6.17736e-11
-1.70416e-09
2.70697e-11
-1.70631e-09
-7.10284e-12
-1.70734e-09
-4.06899e-11
-1.70726e-09
-7.36405e-11
-1.70609e-09
-1.05905e-10
-1.70384e-09
-1.37433e-10
-1.70054e-09
-1.68173e-10
-1.69621e-09
-1.98071e-10
-1.69089e-09
-2.27078e-10
-1.6846e-09
-2.55144e-10
-1.67736e-09
-2.82218e-10
-1.6692e-09
-3.08234e-10
-1.66017e-09
-3.33114e-10
-1.65029e-09
-3.56768e-10
-1.63959e-09
-3.79093e-10
-1.62811e-09
-3.99973e-10
-1.61587e-09
-4.19285e-10
-1.60289e-09
-4.36908e-10
-1.5892e-09
-4.52733e-10
-1.57481e-09
-4.66657e-10
-1.55973e-09
-4.78594e-10
-1.54399e-09
-4.88483e-10
-1.52757e-09
-4.96295e-10
-1.51049e-09
-5.02057e-10
-1.49273e-09
-5.0588e-10
-1.47428e-09
-5.08022e-10
-1.45513e-09
-5.08976e-10
-1.43524e-09
-5.09575e-10
-1.41457e-09
-5.11143e-10
-1.39303e-09
-5.15668e-10
-1.37052e-09
-5.25967e-10
-1.3469e-09
-5.45727e-10
-1.32197e-09
-5.79273e-10
-1.29547e-09
-6.31052e-10
-1.26707e-09
-7.04887e-10
-1.23644e-09
-8.03034e-10
-1.20325e-09
-9.25185e-10
-1.16722e-09
-1.06777e-09
-1.22392e-09
-1.12817e-09
-1.58198e-11
5.4681e-10
-4.56015e-11
1.03304e-09
-8.16852e-11
1.25671e-09
-1.20752e-10
1.36241e-09
-1.61242e-10
1.41279e-09
-2.02423e-10
1.43595e-09
-2.43906e-10
1.44501e-09
-2.85486e-10
1.4464e-09
-3.27033e-10
1.4434e-09
-3.68466e-10
1.43775e-09
-4.09722e-10
1.43035e-09
-4.5075e-10
1.42169e-09
-4.91505e-10
1.41198e-09
-5.31954e-10
1.40135e-09
-5.72067e-10
1.38986e-09
-6.11826e-10
1.37755e-09
-6.51214e-10
1.36446e-09
-6.90214e-10
1.35058e-09
-7.28807e-10
1.33594e-09
-7.66968e-10
1.32053e-09
-8.04666e-10
1.30433e-09
-8.41864e-10
1.28733e-09
-8.78529e-10
1.26952e-09
-9.14628e-10
1.25089e-09
-9.50133e-10
1.23143e-09
-9.85016e-10
1.21113e-09
-1.01926e-09
1.18998e-09
-1.05283e-09
1.16799e-09
-1.08572e-09
1.14515e-09
-1.11792e-09
1.12144e-09
-1.14941e-09
1.09684e-09
-1.18019e-09
1.07136e-09
-1.21024e-09
1.04496e-09
-1.23955e-09
1.01766e-09
-1.26811e-09
9.89449e-10
-1.29592e-09
9.60341e-10
-1.32297e-09
9.3036e-10
-1.34926e-09
8.99533e-10
-1.37479e-09
8.67896e-10
-1.39953e-09
8.35483e-10
-1.42348e-09
8.02331e-10
-1.44662e-09
7.68478e-10
-1.46895e-09
7.33974e-10
-1.49045e-09
6.98871e-10
-1.5111e-09
6.63229e-10
-1.53088e-09
6.27105e-10
-1.54977e-09
5.90548e-10
-1.56774e-09
5.53607e-10
-1.58479e-09
5.1633e-10
-1.60087e-09
4.7877e-10
-1.61596e-09
4.40988e-10
-1.63005e-09
4.03053e-10
-1.64311e-09
3.65042e-10
-1.65512e-09
3.27034e-10
-1.66607e-09
2.89098e-10
-1.67594e-09
2.51296e-10
-1.68472e-09
2.13677e-10
-1.6924e-09
1.76292e-10
-1.69897e-09
1.392e-10
-1.70444e-09
1.02462e-10
-1.7088e-09
6.61432e-11
-1.71204e-09
3.03068e-11
-1.71416e-09
-4.98735e-12
-1.71517e-09
-3.96843e-11
-1.71506e-09
-7.37368e-11
-1.71386e-09
-1.07099e-10
-1.71157e-09
-1.39722e-10
-1.70824e-09
-1.71548e-10
-1.70387e-09
-2.02517e-10
-1.6985e-09
-2.32569e-10
-1.69215e-09
-2.61646e-10
-1.68484e-09
-2.89685e-10
-1.67661e-09
-3.16618e-10
-1.66749e-09
-3.42369e-10
-1.65749e-09
-3.66851e-10
-1.64666e-09
-3.89969e-10
-1.63502e-09
-4.1161e-10
-1.6226e-09
-4.31659e-10
-1.60943e-09
-4.50001e-10
-1.59551e-09
-4.66531e-10
-1.58089e-09
-4.81148e-10
-1.56557e-09
-4.9377e-10
-1.54957e-09
-5.04339e-10
-1.5329e-09
-5.12829e-10
-1.51556e-09
-5.19263e-10
-1.49757e-09
-5.23755e-10
-1.47892e-09
-5.26567e-10
-1.45962e-09
-5.28195e-10
-1.43965e-09
-5.29465e-10
-1.41897e-09
-5.31707e-10
-1.39754e-09
-5.36949e-10
-1.37526e-09
-5.48071e-10
-1.352e-09
-5.68811e-10
-1.32754e-09
-6.03541e-10
-1.30158e-09
-6.56788e-10
-1.27375e-09
-7.32486e-10
-1.24367e-09
-8.3297e-10
-1.21094e-09
-9.57912e-10
-1.17519e-09
-1.10362e-09
-1.26306e-09
-1.13622e-09
-1.58921e-11
5.62686e-10
-4.58266e-11
1.06286e-09
-8.2093e-11
1.29286e-09
-1.2135e-10
1.40154e-09
-1.62038e-10
1.45339e-09
-2.03417e-10
1.47727e-09
-2.45097e-10
1.48667e-09
-2.86875e-10
1.48817e-09
-3.28619e-10
1.48515e-09
-3.70248e-10
1.47936e-09
-4.11697e-10
1.47176e-09
-4.52914e-10
1.46284e-09
-4.93855e-10
1.45285e-09
-5.34483e-10
1.4419e-09
-5.74771e-10
1.43008e-09
-6.14698e-10
1.41741e-09
-6.54249e-10
1.40393e-09
-6.9341e-10
1.38966e-09
-7.32162e-10
1.37459e-09
-7.70481e-10
1.35874e-09
-8.08336e-10
1.34207e-09
-8.45692e-10
1.32459e-09
-8.82516e-10
1.30627e-09
-9.18774e-10
1.2871e-09
-9.54439e-10
1.26707e-09
-9.89486e-10
1.24617e-09
-1.02389e-09
1.2244e-09
-1.05763e-09
1.20176e-09
-1.09069e-09
1.17823e-09
-1.12307e-09
1.15382e-09
-1.15474e-09
1.12851e-09
-1.18569e-09
1.10229e-09
-1.21592e-09
1.07517e-09
-1.2454e-09
1.04712e-09
-1.27414e-09
1.01816e-09
-1.30212e-09
9.88304e-10
-1.32934e-09
9.57563e-10
-1.35579e-09
9.25968e-10
-1.38146e-09
8.93552e-10
-1.40635e-09
8.6035e-10
-1.43044e-09
8.26399e-10
-1.45371e-09
7.91739e-10
-1.47616e-09
7.56418e-10
-1.49776e-09
7.20487e-10
-1.51851e-09
6.84001e-10
-1.53837e-09
6.47011e-10
-1.55734e-09
6.09563e-10
-1.57539e-09
5.71705e-10
-1.59249e-09
5.33485e-10
-1.60863e-09
4.9496e-10
-1.62378e-09
4.56194e-10
-1.63791e-09
4.17259e-10
-1.651e-09
3.78231e-10
-1.66304e-09
3.39187e-10
-1.674e-09
3.00193e-10
-1.68389e-09
2.61307e-10
-1.69269e-09
2.22581e-10
-1.70039e-09
1.84073e-10
-1.70698e-09
1.45845e-10
-1.71246e-09
1.07966e-10
-1.71682e-09
7.0507e-11
-1.72006e-09
3.3536e-11
-1.72218e-09
-2.88521e-12
-1.72319e-09
-3.87023e-11
-1.72308e-09
-7.38713e-11
-1.72188e-09
-1.08346e-10
-1.71959e-09
-1.42075e-10
-1.71624e-09
-1.74994e-10
-1.71186e-09
-2.07034e-10
-1.70647e-09
-2.38127e-10
-1.70009e-09
-2.68204e-10
-1.69275e-09
-2.97196e-10
-1.68447e-09
-3.25033e-10
-1.67528e-09
-3.51645e-10
-1.66521e-09
-3.76953e-10
-1.65428e-09
-4.00868e-10
-1.64253e-09
-4.23286e-10
-1.62997e-09
-4.44098e-10
-1.61664e-09
-4.63195e-10
-1.60256e-09
-4.80471e-10
-1.58775e-09
-4.95824e-10
-1.57223e-09
-5.0917e-10
-1.55603e-09
-5.20446e-10
-1.53915e-09
-5.29623e-10
-1.52162e-09
-5.36719e-10
-1.50345e-09
-5.41848e-10
-1.48465e-09
-5.45277e-10
-1.46524e-09
-5.47499e-10
-1.44522e-09
-5.49339e-10
-1.42458e-09
-5.52151e-10
-1.40329e-09
-5.58017e-10
-1.38127e-09
-5.6987e-10
-1.35839e-09
-5.91493e-10
-1.33439e-09
-6.27327e-10
-1.30896e-09
-6.8202e-10
-1.2817e-09
-7.59629e-10
-1.25216e-09
-8.62531e-10
-1.21985e-09
-9.90348e-10
-1.18434e-09
-1.13928e-09
-1.30215e-09
-1.14538e-09
-1.59733e-11
5.78606e-10
-4.60622e-11
1.09279e-09
-8.25163e-11
1.32917e-09
-1.21968e-10
1.44087e-09
-1.62859e-10
1.49419e-09
-2.0444e-10
1.5188e-09
-2.46324e-10
1.52854e-09
-2.88304e-10
1.53015e-09
-3.30248e-10
1.52708e-09
-3.72074e-10
1.52116e-09
-4.13715e-10
1.51336e-09
-4.55118e-10
1.50418e-09
-4.96241e-10
1.4939e-09
-5.37046e-10
1.48264e-09
-5.77506e-10
1.47048e-09
-6.17601e-10
1.45746e-09
-6.57316e-10
1.4436e-09
-6.96637e-10
1.42893e-09
-7.35546e-10
1.41345e-09
-7.74021e-10
1.39714e-09
-8.12032e-10
1.38001e-09
-8.49544e-10
1.36203e-09
-8.86524e-10
1.34319e-09
-9.22941e-10
1.32347e-09
-9.58766e-10
1.30286e-09
-9.93974e-10
1.28136e-09
-1.02854e-09
1.25896e-09
-1.06245e-09
1.23566e-09
-1.09568e-09
1.21145e-09
-1.12822e-09
1.18633e-09
-1.16006e-09
1.16031e-09
-1.19119e-09
1.13337e-09
-1.22158e-09
1.10551e-09
-1.25124e-09
1.07673e-09
-1.28014e-09
1.04704e-09
-1.30828e-09
1.01643e-09
-1.33566e-09
9.84922e-10
-1.36226e-09
9.52552e-10
-1.38808e-09
9.19349e-10
-1.41311e-09
8.85349e-10
-1.43733e-09
8.50591e-10
-1.46073e-09
8.15117e-10
-1.4833e-09
7.78974e-10
-1.505e-09
7.42209e-10
-1.52584e-09
7.04871e-10
-1.5458e-09
6.67006e-10
-1.56484e-09
6.28658e-10
-1.58297e-09
5.89876e-10
-1.60015e-09
5.50711e-10
-1.61635e-09
5.11223e-10
-1.63155e-09
4.71477e-10
-1.64572e-09
4.31544e-10
-1.65886e-09
3.91497e-10
-1.67093e-09
3.51408e-10
-1.68194e-09
3.11341e-10
-1.69187e-09
2.71355e-10
-1.7007e-09
2.3151e-10
-1.70844e-09
1.9187e-10
-1.71506e-09
1.52506e-10
-1.72057e-09
1.13489e-10
-1.72496e-09
7.48933e-11
-1.72822e-09
3.67872e-11
-1.73037e-09
-7.66927e-13
-1.7314e-09
-3.77149e-11
-1.73132e-09
-7.40117e-11
-1.73015e-09
-1.09606e-10
-1.72789e-09
-1.4444e-10
-1.72457e-09
-1.78443e-10
-1.7202e-09
-2.1154e-10
-1.71482e-09
-2.43655e-10
-1.70845e-09
-2.74715e-10
-1.7011e-09
-3.04648e-10
-1.69281e-09
-3.33388e-10
-1.68359e-09
-3.60872e-10
-1.67348e-09
-3.87026e-10
-1.6625e-09
-4.11768e-10
-1.65067e-09
-4.35001e-10
-1.63803e-09
-4.56619e-10
-1.62459e-09
-4.76513e-10
-1.61039e-09
-4.94572e-10
-1.59545e-09
-5.1069e-10
-1.5798e-09
-5.24778e-10
-1.56344e-09
-5.36765e-10
-1.54641e-09
-5.46614e-10
-1.52873e-09
-5.54345e-10
-1.51043e-09
-5.60077e-10
-1.49152e-09
-5.64077e-10
-1.47205e-09
-5.66834e-10
-1.45202e-09
-5.69187e-10
-1.43145e-09
-5.72521e-10
-1.41033e-09
-5.78959e-10
-1.38859e-09
-5.91474e-10
-1.36607e-09
-6.13895e-10
-1.34254e-09
-6.50769e-10
-1.31763e-09
-7.06886e-10
-1.29092e-09
-7.86405e-10
-1.26187e-09
-8.9173e-10
-1.22992e-09
-1.02246e-09
-1.19458e-09
-1.17474e-09
-1.34123e-09
-1.15557e-09
-1.60641e-11
5.94586e-10
-4.6307e-11
1.12286e-09
-8.29543e-11
1.36567e-09
-1.22606e-10
1.48041e-09
-1.63708e-10
1.53522e-09
-2.05499e-10
1.56056e-09
-2.47593e-10
1.57063e-09
-2.8978e-10
1.57233e-09
-3.31926e-10
1.56921e-09
-3.73947e-10
1.56314e-09
-4.15776e-10
1.55513e-09
-4.57362e-10
1.5457e-09
-4.98663e-10
1.53514e-09
-5.39642e-10
1.52357e-09
-5.80273e-10
1.51108e-09
-6.20535e-10
1.49771e-09
-6.60412e-10
1.48348e-09
-6.99893e-10
1.46841e-09
-7.38959e-10
1.45249e-09
-7.77589e-10
1.43574e-09
-8.15754e-10
1.41813e-09
-8.5342e-10
1.39964e-09
-8.90555e-10
1.38027e-09
-9.27128e-10
1.35999e-09
-9.6311e-10
1.33879e-09
-9.98478e-10
1.31667e-09
-1.03321e-09
1.29363e-09
-1.06728e-09
1.26966e-09
-1.10067e-09
1.24477e-09
-1.13337e-09
1.21896e-09
-1.16538e-09
1.19223e-09
-1.19667e-09
1.16458e-09
-1.22723e-09
1.136e-09
-1.25704e-09
1.10649e-09
-1.28611e-09
1.07605e-09
-1.3144e-09
1.04469e-09
-1.34193e-09
1.01242e-09
-1.36868e-09
9.79273e-10
-1.39464e-09
9.45275e-10
-1.41981e-09
9.1047e-10
-1.44416e-09
8.74899e-10
-1.46768e-09
8.38606e-10
-1.49035e-09
8.01634e-10
-1.51216e-09
7.64027e-10
-1.5331e-09
7.25828e-10
-1.55314e-09
6.87079e-10
-1.57227e-09
6.47825e-10
-1.59047e-09
6.08114e-10
-1.60772e-09
5.68005e-10
-1.62399e-09
5.27555e-10
-1.63925e-09
4.86831e-10
-1.65348e-09
4.45899e-10
-1.66667e-09
4.04827e-10
-1.6788e-09
3.63682e-10
-1.68986e-09
3.22529e-10
-1.69984e-09
2.81433e-10
-1.70874e-09
2.40464e-10
-1.71653e-09
1.99695e-10
-1.72321e-09
1.592e-10
-1.72876e-09
1.19054e-10
-1.7332e-09
7.93275e-11
-1.73651e-09
4.00879e-11
-1.73871e-09
1.39808e-12
-1.7398e-09
-3.66853e-11
-1.73979e-09
-7.41111e-11
-1.73867e-09
-1.10819e-10
-1.73647e-09
-1.46744e-10
-1.73321e-09
-1.8181e-10
-1.72889e-09
-2.15942e-10
-1.72356e-09
-2.49061e-10
-1.71722e-09
-2.81095e-10
-1.7099e-09
-3.11975e-10
-1.70163e-09
-3.41639e-10
-1.69243e-09
-3.70027e-10
-1.68233e-09
-3.9707e-10
-1.67134e-09
-4.22684e-10
-1.65949e-09
-4.46776e-10
-1.64682e-09
-4.69238e-10
-1.63334e-09
-4.89957e-10
-1.61908e-09
-5.08815e-10
-1.60406e-09
-5.25703e-10
-1.58831e-09
-5.40528e-10
-1.57186e-09
-5.53212e-10
-1.55473e-09
-5.63716e-10
-1.53695e-09
-5.72069e-10
-1.51857e-09
-5.78394e-10
-1.49961e-09
-5.82952e-10
-1.48011e-09
-5.86229e-10
-1.46011e-09
-5.89079e-10
-1.43964e-09
-5.92915e-10
-1.41871e-09
-5.99878e-10
-1.39724e-09
-6.12969e-10
-1.37509e-09
-6.36095e-10
-1.35199e-09
-6.73934e-10
-1.32758e-09
-7.31414e-10
-1.30136e-09
-8.12788e-10
-1.27272e-09
-9.20516e-10
-1.24106e-09
-1.05423e-09
-1.20583e-09
-1.21002e-09
-1.38037e-09
-1.1667e-09
-1.6163e-11
6.10649e-10
-4.65597e-11
1.15311e-09
-8.34075e-11
1.4024e-09
-1.23269e-10
1.5202e-09
-1.64591e-10
1.57649e-09
-2.06602e-10
1.60256e-09
-2.48913e-10
1.61294e-09
-2.9131e-10
1.61472e-09
-3.33658e-10
1.61154e-09
-3.7587e-10
1.60532e-09
-4.17884e-10
1.5971e-09
-4.59648e-10
1.58742e-09
-5.01122e-10
1.57657e-09
-5.42272e-10
1.56471e-09
-5.83071e-10
1.55189e-09
-6.235e-10
1.53816e-09
-6.63541e-10
1.52355e-09
-7.03181e-10
1.50807e-09
-7.42405e-10
1.49172e-09
-7.8119e-10
1.4745e-09
-8.19507e-10
1.4564e-09
-8.57326e-10
1.4374e-09
-8.94613e-10
1.41747e-09
-9.31339e-10
1.39662e-09
-9.67476e-10
1.37482e-09
-1.003e-09
1.35208e-09
-1.03789e-09
1.32839e-09
-1.07211e-09
1.30376e-09
-1.10566e-09
1.2782e-09
-1.13853e-09
1.2517e-09
-1.17069e-09
1.22427e-09
-1.20213e-09
1.19591e-09
-1.23284e-09
1.16662e-09
-1.26281e-09
1.13639e-09
-1.29203e-09
1.10522e-09
-1.32048e-09
1.0731e-09
-1.34815e-09
1.04006e-09
-1.37504e-09
1.00612e-09
-1.40114e-09
9.71324e-10
-1.42643e-09
9.35709e-10
-1.4509e-09
8.99321e-10
-1.47453e-09
8.62202e-10
-1.49731e-09
8.24395e-10
-1.51923e-09
7.85938e-10
-1.54026e-09
7.4687e-10
-1.56039e-09
7.07229e-10
-1.57961e-09
6.67062e-10
-1.59789e-09
6.26422e-10
-1.61521e-09
5.85367e-10
-1.63155e-09
5.43957e-10
-1.64688e-09
5.02253e-10
-1.66118e-09
4.60315e-10
-1.67443e-09
4.18207e-10
-1.68663e-09
3.75993e-10
-1.69776e-09
3.33744e-10
-1.70782e-09
2.91534e-10
-1.71678e-09
2.49445e-10
-1.72465e-09
2.07557e-10
-1.7314e-09
1.65945e-10
-1.73703e-09
1.24682e-10
-1.74154e-09
8.3833e-11
-1.74494e-09
4.34657e-11
-1.74722e-09
3.64416e-12
-1.74839e-09
-3.55686e-11
-1.74847e-09
-7.4113e-11
-1.74745e-09
-1.11919e-10
-1.74534e-09
-1.48914e-10
-1.74216e-09
-1.85025e-10
-1.73794e-09
-2.20177e-10
-1.73268e-09
-2.54296e-10
-1.72642e-09
-2.87314e-10
-1.71918e-09
-3.19164e-10
-1.71098e-09
-3.49788e-10
-1.70184e-09
-3.79122e-10
-1.69179e-09
-4.07094e-10
-1.68085e-09
-4.33618e-10
-1.66904e-09
-4.58597e-10
-1.65639e-09
-4.8192e-10
-1.64291e-09
-5.03468e-10
-1.62864e-09
-5.23123e-10
-1.6136e-09
-5.40774e-10
-1.59782e-09
-5.56328e-10
-1.58133e-09
-5.69706e-10
-1.56415e-09
-5.80875e-10
-1.54633e-09
-5.89868e-10
-1.52791e-09
-5.96805e-10
-1.50894e-09
-6.01933e-10
-1.48946e-09
-6.05734e-10
-1.46952e-09
-6.09073e-10
-1.44919e-09
-6.13373e-10
-1.42845e-09
-6.2078e-10
-1.40724e-09
-6.34339e-10
-1.38542e-09
-6.58067e-10
-1.36272e-09
-6.96785e-10
-1.33874e-09
-7.5555e-10
-1.31293e-09
-8.38728e-10
-1.28463e-09
-9.48885e-10
-1.25318e-09
-1.0857e-09
-1.218e-09
-1.24521e-09
-1.41969e-09
-1.17871e-09
-1.62675e-11
6.26825e-10
-4.68198e-11
1.18357e-09
-8.38782e-11
1.43938e-09
-1.23963e-10
1.56026e-09
-1.65516e-10
1.61804e-09
-2.07756e-10
1.6448e-09
-2.5029e-10
1.65547e-09
-2.92899e-10
1.65732e-09
-3.35448e-10
1.65407e-09
-3.77849e-10
1.6477e-09
-4.20041e-10
1.63927e-09
-4.61977e-10
1.62934e-09
-5.03621e-10
1.61822e-09
-5.4494e-10
1.60604e-09
-5.85908e-10
1.59289e-09
-6.26503e-10
1.5788e-09
-6.66709e-10
1.56379e-09
-7.06511e-10
1.5479e-09
-7.45893e-10
1.53111e-09
-7.84832e-10
1.51341e-09
-8.23302e-10
1.49481e-09
-8.61271e-10
1.47527e-09
-8.98708e-10
1.4548e-09
-9.35584e-10
1.43336e-09
-9.71873e-10
1.41096e-09
-1.00755e-09
1.38759e-09
-1.04259e-09
1.36326e-09
-1.07697e-09
1.33797e-09
-1.11067e-09
1.31174e-09
-1.14368e-09
1.28456e-09
-1.17599e-09
1.25645e-09
-1.20758e-09
1.22739e-09
-1.23844e-09
1.19739e-09
-1.26856e-09
1.16643e-09
-1.29792e-09
1.13451e-09
-1.32651e-09
1.10164e-09
-1.35432e-09
1.06782e-09
-1.38135e-09
1.03309e-09
-1.40757e-09
9.97493e-10
-1.43298e-09
9.61066e-10
-1.45757e-09
9.23858e-10
-1.48131e-09
8.8591e-10
-1.5042e-09
8.47261e-10
-1.52621e-09
8.07945e-10
-1.54733e-09
7.67998e-10
-1.56755e-09
7.27459e-10
-1.58685e-09
6.86377e-10
-1.60522e-09
6.44805e-10
-1.62261e-09
6.02803e-10
-1.63903e-09
5.60427e-10
-1.65443e-09
5.17734e-10
-1.66881e-09
4.74778e-10
-1.68214e-09
4.3162e-10
-1.69442e-09
3.88328e-10
-1.70564e-09
3.4498e-10
-1.71579e-09
3.01663e-10
-1.72485e-09
2.58466e-10
-1.7328e-09
2.15474e-10
-1.73965e-09
1.72762e-10
-1.74538e-09
1.30394e-10
-1.74999e-09
8.84354e-11
-1.75349e-09
4.69508e-11
-1.75589e-09
6.00876e-12
-1.75718e-09
-3.43191e-11
-1.75737e-09
-7.39664e-11
-1.75648e-09
-1.12853e-10
-1.7545e-09
-1.50907e-10
-1.75145e-09
-1.88055e-10
-1.74735e-09
-2.24229e-10
-1.74221e-09
-2.59361e-10
-1.73607e-09
-2.93383e-10
-1.72895e-09
-3.26232e-10
-1.72087e-09
-3.57845e-10
-1.71184e-09
-3.88152e-10
-1.7019e-09
-4.17074e-10
-1.69105e-09
-4.44522e-10
-1.67933e-09
-4.70392e-10
-1.66674e-09
-4.94573e-10
-1.65333e-09
-5.16945e-10
-1.6391e-09
-5.37395e-10
-1.6241e-09
-5.55815e-10
-1.60834e-09
-5.72112e-10
-1.59186e-09
-5.8621e-10
-1.57469e-09
-5.98078e-10
-1.55689e-09
-6.07745e-10
-1.53849e-09
-6.15315e-10
-1.51955e-09
-6.21019e-10
-1.50013e-09
-6.25331e-10
-1.48029e-09
-6.29122e-10
-1.46008e-09
-6.3381e-10
-1.43952e-09
-6.4156e-10
-1.41855e-09
-6.55489e-10
-1.39702e-09
-6.7974e-10
-1.37466e-09
-7.19271e-10
-1.35103e-09
-7.79272e-10
-1.32553e-09
-8.64258e-10
-1.29748e-09
-9.7692e-10
-1.26617e-09
-1.11698e-09
-1.23096e-09
-1.28039e-09
-1.45924e-09
-1.19148e-09
-1.63749e-11
6.43135e-10
-4.7089e-11
1.21428e-09
-8.43713e-11
1.47665e-09
-1.24696e-10
1.60062e-09
-1.66493e-10
1.65985e-09
-2.08973e-10
1.68729e-09
-2.51734e-10
1.69823e-09
-2.94555e-10
1.70014e-09
-3.37301e-10
1.69681e-09
-3.79886e-10
1.69029e-09
-4.22253e-10
1.68165e-09
-4.64359e-10
1.67148e-09
-5.06171e-10
1.66007e-09
-5.47658e-10
1.64757e-09
-5.88794e-10
1.63406e-09
-6.29558e-10
1.6196e-09
-6.6993e-10
1.60419e-09
-7.09896e-10
1.58787e-09
-7.49437e-10
1.57062e-09
-7.88532e-10
1.55245e-09
-8.27153e-10
1.53334e-09
-8.65272e-10
1.51328e-09
-9.02856e-10
1.49224e-09
-9.3988e-10
1.47023e-09
-9.76316e-10
1.44722e-09
-1.01214e-09
1.42323e-09
-1.04732e-09
1.39826e-09
-1.08185e-09
1.37233e-09
-1.1157e-09
1.34543e-09
-1.14885e-09
1.31758e-09
-1.1813e-09
1.28878e-09
-1.21303e-09
1.25902e-09
-1.24404e-09
1.22831e-09
-1.27429e-09
1.19662e-09
-1.30379e-09
1.16395e-09
-1.33252e-09
1.13031e-09
-1.36047e-09
1.09571e-09
-1.38762e-09
1.06019e-09
-1.41396e-09
1.02378e-09
-1.43949e-09
9.86545e-10
-1.46418e-09
9.48514e-10
-1.48803e-09
9.09732e-10
-1.51101e-09
8.70233e-10
-1.53312e-09
8.30051e-10
-1.55434e-09
7.89218e-10
-1.57465e-09
7.47777e-10
-1.59404e-09
7.05775e-10
-1.61248e-09
6.63268e-10
-1.62995e-09
6.20312e-10
-1.64645e-09
5.7696e-10
-1.66193e-09
5.33263e-10
-1.6764e-09
4.89274e-10
-1.68983e-09
4.45057e-10
-1.70221e-09
4.00685e-10
-1.71352e-09
3.56246e-10
-1.72377e-09
3.11837e-10
-1.73293e-09
2.67553e-10
-1.741e-09
2.23476e-10
-1.74796e-09
1.79678e-10
-1.75382e-09
1.3622e-10
-1.75856e-09
9.31628e-11
-1.7622e-09
5.05733e-11
-1.76473e-09
8.5248e-12
-1.76617e-09
-3.29025e-11
-1.76652e-09
-7.36399e-11
-1.76578e-09
-1.136e-10
-1.76396e-09
-1.52711e-10
-1.76107e-09
-1.90904e-10
-1.75714e-09
-2.28113e-10
-1.75217e-09
-2.64272e-10
-1.7462e-09
-2.99316e-10
-1.73924e-09
-3.33177e-10
-1.73132e-09
-3.65785e-10
-1.72245e-09
-3.97065e-10
-1.71266e-09
-4.26933e-10
-1.70196e-09
-4.55297e-10
-1.69037e-09
-4.82052e-10
-1.67791e-09
-5.07089e-10
-1.6646e-09
-5.30295e-10
-1.65047e-09
-5.51558e-10
-1.63556e-09
-5.70775e-10
-1.61988e-09
-5.87848e-10
-1.60347e-09
-6.02702e-10
-1.58638e-09
-6.15303e-10
-1.56864e-09
-6.2566e-10
-1.55031e-09
-6.33855e-10
-1.53144e-09
-6.40108e-10
-1.5121e-09
-6.44892e-10
-1.49237e-09
-6.49072e-10
-1.47229e-09
-6.54072e-10
-1.45189e-09
-6.62095e-10
-1.43111e-09
-6.76349e-10
-1.40981e-09
-7.01095e-10
-1.38771e-09
-7.41418e-10
-1.36433e-09
-8.02659e-10
-1.33906e-09
-8.89498e-10
-1.31115e-09
-1.00475e-09
-1.27988e-09
-1.14818e-09
-1.24459e-09
-1.31565e-09
-1.49903e-09
-1.20486e-09
-1.64836e-11
6.59593e-10
-4.73715e-11
1.24523e-09
-8.4894e-11
1.51421e-09
-1.25478e-10
1.64127e-09
-1.67533e-10
1.70195e-09
-2.10259e-10
1.73003e-09
-2.53251e-10
1.74123e-09
-2.96284e-10
1.74317e-09
-3.39225e-10
1.73977e-09
-3.81992e-10
1.73309e-09
-4.24531e-10
1.72424e-09
-4.66806e-10
1.7138e-09
-5.08785e-10
1.70209e-09
-5.50442e-10
1.68926e-09
-5.91749e-10
1.67539e-09
-6.32683e-10
1.66054e-09
-6.73225e-10
1.64472e-09
-7.13357e-10
1.62796e-09
-7.5306e-10
1.61026e-09
-7.92312e-10
1.59162e-09
-8.31085e-10
1.57201e-09
-8.69352e-10
1.55142e-09
-9.07083e-10
1.52984e-09
-9.44251e-10
1.50725e-09
-9.80832e-10
1.48365e-09
-1.0168e-09
1.45905e-09
-1.05213e-09
1.43345e-09
-1.08679e-09
1.40686e-09
-1.12078e-09
1.3793e-09
-1.15407e-09
1.35078e-09
-1.18666e-09
1.32128e-09
-1.21852e-09
1.29082e-09
-1.24966e-09
1.25938e-09
-1.28005e-09
1.22695e-09
-1.30969e-09
1.19352e-09
-1.33855e-09
1.1591e-09
-1.36662e-09
1.12372e-09
-1.39389e-09
1.0874e-09
-1.42035e-09
1.0502e-09
-1.44598e-09
1.01214e-09
-1.47077e-09
9.73288e-10
-1.49472e-09
9.33664e-10
-1.51781e-09
8.93308e-10
-1.54001e-09
8.52251e-10
-1.56132e-09
8.10526e-10
-1.58172e-09
7.68177e-10
-1.60118e-09
7.25252e-10
-1.6197e-09
6.81804e-10
-1.63726e-09
6.37884e-10
-1.65384e-09
5.93542e-10
-1.66942e-09
5.48828e-10
-1.68399e-09
5.03799e-10
-1.69752e-09
4.58522e-10
-1.71001e-09
4.13081e-10
-1.72143e-09
3.67572e-10
-1.7318e-09
3.22096e-10
-1.74108e-09
2.76745e-10
-1.74927e-09
2.31601e-10
-1.75638e-09
1.86729e-10
-1.76238e-09
1.42188e-10
-1.76728e-09
9.80413e-11
-1.77108e-09
5.43569e-11
-1.77378e-09
1.1214e-11
-1.7754e-09
-3.13002e-11
-1.77592e-09
-7.31215e-11
-1.77537e-09
-1.14154e-10
-1.77375e-09
-1.54329e-10
-1.77106e-09
-1.93577e-10
-1.76734e-09
-2.31831e-10
-1.76258e-09
-2.69024e-10
-1.75682e-09
-3.05086e-10
-1.75007e-09
-3.39949e-10
-1.74235e-09
-3.73537e-10
-1.73369e-09
-4.05774e-10
-1.72409e-09
-4.36574e-10
-1.71357e-09
-4.65847e-10
-1.70216e-09
-4.93493e-10
-1.68987e-09
-5.19402e-10
-1.67673e-09
-5.43467e-10
-1.66276e-09
-5.65578e-10
-1.64798e-09
-5.85623e-10
-1.63244e-09
-6.03499e-10
-1.61616e-09
-6.19127e-10
-1.59918e-09
-6.32459e-10
-1.58156e-09
-6.43485e-10
-1.56333e-09
-6.5227e-10
-1.54456e-09
-6.59035e-10
-1.52532e-09
-6.64252e-10
-1.5057e-09
-6.68783e-10
-1.48574e-09
-6.74066e-10
-1.46546e-09
-6.82361e-10
-1.44484e-09
-6.96956e-10
-1.42371e-09
-7.22213e-10
-1.40177e-09
-7.63345e-10
-1.37854e-09
-8.25861e-10
-1.35336e-09
-9.14612e-10
-1.32549e-09
-1.03254e-09
-1.29415e-09
-1.17943e-09
-1.25869e-09
-1.35107e-09
-1.53908e-09
-1.21865e-09
-1.65936e-11
6.762e-10
-4.76744e-11
1.27643e-09
-8.54559e-11
1.55207e-09
-1.2632e-10
1.68221e-09
-1.68644e-10
1.74431e-09
-2.11624e-10
1.77302e-09
-2.54848e-10
1.78445e-09
-2.98093e-10
1.78642e-09
-3.41228e-10
1.78292e-09
-3.84177e-10
1.77608e-09
-4.2689e-10
1.767e-09
-4.69336e-10
1.7563e-09
-5.11487e-10
1.74428e-09
-5.53316e-10
1.7311e-09
-5.94797e-10
1.71686e-09
-6.35906e-10
1.7016e-09
-6.7662e-10
1.68538e-09
-7.16922e-10
1.66819e-09
-7.5679e-10
1.65004e-09
-7.96201e-10
1.63093e-09
-8.35128e-10
1.61083e-09
-8.73544e-10
1.58974e-09
-9.11422e-10
1.56762e-09
-9.48734e-10
1.54447e-09
-9.85458e-10
1.52029e-09
-1.02157e-09
1.49508e-09
-1.05703e-09
1.46884e-09
-1.09184e-09
1.44161e-09
-1.12596e-09
1.41338e-09
-1.15939e-09
1.38417e-09
-1.19211e-09
1.35398e-09
-1.2241e-09
1.32279e-09
-1.25537e-09
1.29061e-09
-1.28589e-09
1.25742e-09
-1.31566e-09
1.22322e-09
-1.34464e-09
1.18802e-09
-1.37283e-09
1.15185e-09
-1.40021e-09
1.11474e-09
-1.42678e-09
1.07673e-09
-1.45251e-09
1.03786e-09
-1.47741e-09
9.98166e-10
-1.50145e-09
9.57693e-10
-1.52463e-09
9.16469e-10
-1.54693e-09
8.74528e-10
-1.56833e-09
8.31906e-10
-1.58881e-09
7.88646e-10
-1.60836e-09
7.44794e-10
-1.62697e-09
7.00398e-10
-1.64461e-09
6.55506e-10
-1.66128e-09
6.10166e-10
-1.67696e-09
5.64431e-10
-1.69164e-09
5.18365e-10
-1.70528e-09
4.72044e-10
-1.71788e-09
4.2556e-10
-1.72943e-09
3.79009e-10
-1.73992e-09
3.3249e-10
-1.74933e-09
2.86092e-10
-1.75768e-09
2.39889e-10
-1.76494e-09
1.93946e-10
-1.77111e-09
1.48324e-10
-1.7762e-09
1.0309e-10
-1.78019e-09
5.8318e-11
-1.78309e-09
1.40911e-11
-1.7849e-09
-2.94998e-11
-1.78564e-09
-7.24006e-11
-1.78531e-09
-1.14506e-10
-1.78391e-09
-1.55748e-10
-1.78147e-09
-1.96052e-10
-1.77798e-09
-2.35348e-10
-1.77347e-09
-2.73563e-10
-1.76796e-09
-3.10629e-10
-1.76146e-09
-3.46473e-10
-1.75398e-09
-3.81023e-10
-1.74555e-09
-4.14203e-10
-1.73619e-09
-4.45934e-10
-1.7259e-09
-4.76127e-10
-1.71471e-09
-5.04681e-10
-1.70264e-09
-5.3149e-10
-1.68971e-09
-5.56442e-10
-1.67594e-09
-5.7942e-10
-1.66136e-09
-6.00302e-10
-1.646e-09
-6.1898e-10
-1.62989e-09
-6.35366e-10
-1.61307e-09
-6.49401e-10
-1.59559e-09
-6.61062e-10
-1.57749e-09
-6.70413e-10
-1.55884e-09
-6.77679e-10
-1.53972e-09
-6.83331e-10
-1.5202e-09
-6.8823e-10
-1.50034e-09
-6.93833e-10
-1.48017e-09
-7.02448e-10
-1.45964e-09
-7.1743e-10
-1.43859e-09
-7.43232e-10
-1.41671e-09
-7.85209e-10
-1.39349e-09
-8.49047e-10
-1.36827e-09
-9.39767e-10
-1.3403e-09
-1.06044e-09
-1.30879e-09
-1.21088e-09
-1.27306e-09
-1.38679e-09
-1.57946e-09
-1.23262e-09
-1.67103e-11
6.92954e-10
-4.8009e-11
1.30786e-09
-8.60697e-11
1.5902e-09
-1.27232e-10
1.72343e-09
-1.69839e-10
1.78693e-09
-2.13078e-10
1.81624e-09
-2.56536e-10
1.82788e-09
-2.99994e-10
1.82986e-09
-3.43326e-10
1.82626e-09
-3.8646e-10
1.81923e-09
-4.29353e-10
1.80993e-09
-4.71977e-10
1.79894e-09
-5.14305e-10
1.7866e-09
-5.56313e-10
1.77306e-09
-5.97974e-10
1.75845e-09
-6.39262e-10
1.7428e-09
-6.80155e-10
1.72617e-09
-7.20631e-10
1.70856e-09
-7.60668e-10
1.68999e-09
-8.00243e-10
1.67042e-09
-8.39329e-10
1.64986e-09
-8.77898e-10
1.62827e-09
-9.15924e-10
1.60563e-09
-9.53384e-10
1.58193e-09
-9.90251e-10
1.55716e-09
-1.0265e-09
1.53134e-09
-1.06211e-09
1.50447e-09
-1.09705e-09
1.47658e-09
-1.13131e-09
1.44768e-09
-1.16487e-09
1.41777e-09
-1.19772e-09
1.38686e-09
-1.22985e-09
1.35493e-09
-1.26124e-09
1.32199e-09
-1.29189e-09
1.28802e-09
-1.32178e-09
1.25304e-09
-1.35088e-09
1.21706e-09
-1.37918e-09
1.18009e-09
-1.40667e-09
1.14218e-09
-1.43334e-09
1.10336e-09
-1.45918e-09
1.06366e-09
-1.48417e-09
1.02312e-09
-1.50831e-09
9.8179e-10
-1.53158e-09
9.3969e-10
-1.55397e-09
8.96859e-10
-1.57546e-09
8.53337e-10
-1.59603e-09
8.09164e-10
-1.61567e-09
7.64384e-10
-1.63436e-09
7.19039e-10
-1.6521e-09
6.73174e-10
-1.66887e-09
6.26839e-10
-1.68466e-09
5.80094e-10
-1.69944e-09
5.33011e-10
-1.7132e-09
4.85675e-10
-1.72593e-09
4.38177e-10
-1.73761e-09
3.90612e-10
-1.74823e-09
3.43069e-10
-1.7578e-09
2.9563e-10
-1.76631e-09
2.48366e-10
-1.77375e-09
2.01348e-10
-1.78012e-09
1.54643e-10
-1.7854e-09
1.08327e-10
-1.7896e-09
6.24758e-11
-1.79272e-09
1.71785e-11
-1.79477e-09
-2.74756e-11
-1.79575e-09
-7.1447e-11
-1.79566e-09
-1.1462e-10
-1.79452e-09
-1.56921e-10
-1.79234e-09
-1.98272e-10
-1.78913e-09
-2.38597e-10
-1.7849e-09
-2.77822e-10
-1.77966e-09
-3.15877e-10
-1.77344e-09
-3.52692e-10
-1.76624e-09
-3.882e-10
-1.75808e-09
-4.2233e-10
-1.74899e-09
-4.55006e-10
-1.73897e-09
-4.86135e-10
-1.72805e-09
-5.15617e-10
-1.71623e-09
-5.4334e-10
-1.70355e-09
-5.69182e-10
-1.69002e-09
-5.93016e-10
-1.67567e-09
-6.14717e-10
-1.66052e-09
-6.34173e-10
-1.64462e-09
-6.51293e-10
-1.62798e-09
-6.66013e-10
-1.61067e-09
-6.78308e-10
-1.59272e-09
-6.88247e-10
-1.57422e-09
-6.96052e-10
-1.55522e-09
-7.02188e-10
-1.53579e-09
-7.0751e-10
-1.51601e-09
-7.13495e-10
-1.49589e-09
-7.22487e-10
-1.47538e-09
-7.37901e-10
-1.45432e-09
-7.6429e-10
-1.43236e-09
-8.07164e-10
-1.40902e-09
-8.72387e-10
-1.38363e-09
-9.6515e-10
-1.35542e-09
-1.08864e-09
-1.3236e-09
-1.24272e-09
-1.28749e-09
-1.42292e-09
-1.62032e-09
-1.24654e-09
-1.6849e-11
7.09857e-10
-4.83914e-11
1.33953e-09
-8.67498e-11
1.62861e-09
-1.28227e-10
1.76492e-09
-1.71124e-10
1.82979e-09
-2.14627e-10
1.85968e-09
-2.58323e-10
1.87151e-09
-3.01997e-10
1.87347e-09
-3.45531e-10
1.86976e-09
-3.88857e-10
1.86254e-09
-4.3194e-10
1.85299e-09
-4.7475e-10
1.84172e-09
-5.17266e-10
1.82905e-09
-5.59462e-10
1.81517e-09
-6.0131e-10
1.80018e-09
-6.42785e-10
1.78416e-09
-6.83863e-10
1.76713e-09
-7.24521e-10
1.74913e-09
-7.64735e-10
1.73013e-09
-8.04481e-10
1.71013e-09
-8.43731e-10
1.68911e-09
-8.82461e-10
1.66703e-09
-9.20644e-10
1.64387e-09
-9.58255e-10
1.61962e-09
-9.95272e-10
1.59427e-09
-1.03167e-09
1.56784e-09
-1.06742e-09
1.54033e-09
-1.1025e-09
1.51177e-09
-1.1369e-09
1.48218e-09
-1.1706e-09
1.45156e-09
-1.20358e-09
1.41991e-09
-1.23584e-09
1.38723e-09
-1.26736e-09
1.35351e-09
-1.29813e-09
1.31876e-09
-1.32813e-09
1.28298e-09
-1.35735e-09
1.2462e-09
-1.38576e-09
1.20843e-09
-1.41336e-09
1.16971e-09
-1.44013e-09
1.13006e-09
-1.46607e-09
1.08952e-09
-1.49116e-09
1.04813e-09
-1.51539e-09
1.00593e-09
-1.53876e-09
9.62943e-10
-1.56124e-09
9.19222e-10
-1.58282e-09
8.74802e-10
-1.60348e-09
8.29724e-10
-1.62321e-09
7.84022e-10
-1.642e-09
7.37736e-10
-1.65983e-09
6.90908e-10
-1.6767e-09
6.43594e-10
-1.6926e-09
5.95861e-10
-1.7075e-09
5.47789e-10
-1.72139e-09
4.99466e-10
-1.73424e-09
4.50979e-10
-1.74606e-09
4.02415e-10
-1.75684e-09
3.53853e-10
-1.76657e-09
3.05369e-10
-1.77527e-09
2.57041e-10
-1.7829e-09
2.08946e-10
-1.78948e-09
1.61165e-10
-1.79499e-09
1.13778e-10
-1.79942e-09
6.68658e-11
-1.80279e-09
2.05179e-11
-1.80509e-09
-2.51782e-11
-1.80632e-09
-7.02115e-11
-1.8065e-09
-1.14441e-10
-1.80565e-09
-1.57791e-10
-1.80375e-09
-2.00182e-10
-1.80084e-09
-2.41532e-10
-1.79691e-09
-2.81764e-10
-1.79197e-09
-3.2081e-10
-1.78605e-09
-3.58603e-10
-1.77916e-09
-3.95079e-10
-1.7713e-09
-4.30172e-10
-1.76251e-09
-4.63801e-10
-1.75279e-09
-4.95873e-10
-1.74215e-09
-5.26281e-10
-1.73063e-09
-5.54905e-10
-1.71822e-09
-5.81617e-10
-1.70496e-09
-6.06287e-10
-1.69086e-09
-6.28788e-10
-1.67595e-09
-6.49013e-10
-1.66027e-09
-6.66872e-10
-1.64384e-09
-6.82299e-10
-1.62672e-09
-6.95272e-10
-1.60894e-09
-7.05856e-10
-1.59058e-09
-7.14262e-10
-1.5717e-09
-7.20938e-10
-1.55235e-09
-7.2674e-10
-1.53261e-09
-7.33159e-10
-1.51248e-09
-7.42576e-10
-1.49191e-09
-7.5847e-10
-1.47072e-09
-7.8551e-10
-1.44856e-09
-8.29357e-10
-1.42495e-09
-8.96048e-10
-1.39923e-09
-9.90936e-10
-1.37063e-09
-1.11732e-09
-1.33837e-09
-1.27505e-09
-1.30176e-09
-1.45955e-09
-1.66179e-09
-1.26027e-09
-1.68914e-11
7.26796e-10
-4.8826e-11
1.37146e-09
-8.75137e-11
1.66727e-09
-1.29308e-10
1.80665e-09
-1.72504e-10
1.87291e-09
-2.16277e-10
1.90336e-09
-2.60218e-10
1.91536e-09
-3.04115e-10
1.9173e-09
-3.47858e-10
1.91344e-09
-3.91387e-10
1.90601e-09
-4.34668e-10
1.89621e-09
-4.77677e-10
1.88466e-09
-5.20392e-10
1.87169e-09
-5.62787e-10
1.85749e-09
-6.04836e-10
1.84217e-09
-6.4651e-10
1.82579e-09
-6.87784e-10
1.80839e-09
-7.28635e-10
1.78999e-09
-7.69036e-10
1.77057e-09
-8.08964e-10
1.75013e-09
-8.4839e-10
1.72863e-09
-8.8729e-10
1.70605e-09
-9.25637e-10
1.68235e-09
-9.63409e-10
1.65752e-09
-1.00058e-09
1.63157e-09
-1.03713e-09
1.60451e-09
-1.07303e-09
1.57635e-09
-1.10826e-09
1.54712e-09
-1.1428e-09
1.51683e-09
-1.17663e-09
1.48549e-09
-1.20975e-09
1.4531e-09
-1.24214e-09
1.41967e-09
-1.27379e-09
1.38518e-09
-1.30468e-09
1.34966e-09
-1.3348e-09
1.31309e-09
-1.36413e-09
1.27551e-09
-1.39265e-09
1.23693e-09
-1.42035e-09
1.19737e-09
-1.44723e-09
1.15687e-09
-1.47326e-09
1.11547e-09
-1.49845e-09
1.07321e-09
-1.52279e-09
1.03012e-09
-1.54625e-09
9.86255e-10
-1.56883e-09
9.4165e-10
-1.5905e-09
8.96343e-10
-1.61126e-09
8.50368e-10
-1.63108e-09
8.03757e-10
-1.64997e-09
7.56548e-10
-1.6679e-09
7.08787e-10
-1.68489e-09
6.6053e-10
-1.7009e-09
6.11848e-10
-1.71592e-09
5.62818e-10
-1.72993e-09
5.13521e-10
-1.74293e-09
4.64038e-10
-1.75491e-09
4.14452e-10
-1.76585e-09
3.64843e-10
-1.77577e-09
3.15298e-10
-1.78466e-09
2.65904e-10
-1.79251e-09
2.16749e-10
-1.79932e-09
1.67918e-10
-1.80506e-09
1.1949e-10
-1.80975e-09
7.15407e-11
-1.81336e-09
2.41486e-11
-1.81595e-09
-2.25494e-11
-1.81745e-09
-6.86629e-11
-1.81792e-09
-1.13927e-10
-1.81736e-09
-1.58318e-10
-1.81577e-09
-2.01747e-10
-1.81316e-09
-2.4413e-10
-1.80955e-09
-2.85386e-10
-1.80494e-09
-3.25444e-10
-1.79934e-09
-3.64236e-10
-1.79277e-09
-4.01695e-10
-1.78525e-09
-4.3775e-10
-1.77677e-09
-4.72319e-10
-1.76737e-09
-5.05309e-10
-1.75704e-09
-5.36612e-10
-1.74582e-09
-5.66112e-10
-1.73371e-09
-5.93681e-10
-1.72072e-09
-6.19192e-10
-1.70689e-09
-6.42526e-10
-1.69224e-09
-6.6357e-10
-1.6768e-09
-6.82228e-10
-1.6606e-09
-6.98427e-10
-1.64368e-09
-7.12139e-10
-1.62608e-09
-7.23418e-10
-1.60785e-09
-7.32457e-10
-1.58907e-09
-7.39701e-10
-1.56978e-09
-7.46012e-10
-1.55003e-09
-7.52901e-10
-1.52982e-09
-7.62786e-10
-1.50909e-09
-7.79221e-10
-1.48765e-09
-8.06986e-10
-1.46516e-09
-8.51885e-10
-1.44113e-09
-9.20125e-10
-1.41492e-09
-1.01721e-09
-1.38577e-09
-1.14653e-09
-1.35292e-09
-1.30792e-09
-1.3157e-09
-1.49678e-09
-1.27363e-09
-1.70389e-09
-4.61818e-13
3.00691e-13
-6.1609e-13
1.53711e-13
-6.35269e-13
1.85782e-14
-6.53117e-13
1.71806e-14
-6.78171e-13
2.43124e-14
-7.06977e-13
2.79899e-14
-7.37566e-13
2.9708e-14
-7.66959e-13
2.84662e-14
-7.93307e-13
2.53997e-14
-8.14277e-13
2.00235e-14
-8.31996e-13
1.67972e-14
-8.45283e-13
1.24024e-14
-8.56094e-13
9.97245e-15
-8.72981e-13
1.60923e-14
-8.94012e-13
2.02716e-14
-9.16909e-13
2.21568e-14
-9.46156e-13
2.85035e-14
-9.7988e-13
3.29554e-14
-1.01445e-12
3.37637e-14
-1.04896e-12
3.36588e-14
-1.08273e-12
3.28784e-14
-1.11237e-12
2.87335e-14
-1.13521e-12
2.19364e-14
-1.1524e-12
1.62971e-14
-1.16675e-12
1.35076e-14
-1.17482e-12
7.26826e-15
-1.17613e-12
5.52684e-16
-1.17454e-12
-2.29111e-15
-1.16732e-12
-7.89825e-15
-1.15534e-12
-1.26414e-14
-1.13869e-12
-1.73132e-14
-1.11783e-12
-2.15542e-14
-1.09311e-12
-2.54569e-14
-1.06567e-12
-2.82464e-14
-1.0348e-12
-3.17572e-14
-9.97628e-13
-3.81253e-14
-9.53805e-13
-4.48436e-14
-9.0132e-13
-5.35561e-14
-8.34552e-13
-6.78715e-14
-7.52008e-13
-8.36638e-14
-6.58952e-13
-9.41765e-14
-5.54516e-13
-1.05549e-13
-4.36241e-13
-1.19375e-13
-3.05561e-13
-1.31772e-13
-1.65293e-13
-1.41358e-13
-2.44768e-14
-1.41913e-13
1.14746e-13
-1.40334e-13
2.52394e-13
-1.38777e-13
3.78637e-13
-1.27392e-13
4.91134e-13
-1.13661e-13
5.92664e-13
-1.02705e-13
6.8524e-13
-9.37572e-14
7.6962e-13
-8.55672e-14
8.46085e-13
-7.76586e-14
9.15488e-13
-7.06011e-14
9.80292e-13
-6.60059e-14
1.04379e-12
-6.46902e-14
1.11366e-12
-7.10477e-14
1.1947e-12
-8.21676e-14
1.28736e-12
-9.37278e-14
1.39384e-12
-1.07472e-13
1.51089e-12
-1.1796e-13
1.61725e-12
-1.07178e-13
1.69722e-12
-8.07297e-14
1.76542e-12
-6.88911e-14
1.82505e-12
-6.029e-14
1.86074e-12
-3.63333e-14
1.86661e-12
-6.48921e-15
1.85963e-12
6.36067e-15
1.85037e-12
8.62485e-15
1.83253e-12
1.72004e-14
1.80223e-12
2.96445e-14
1.7625e-12
3.90896e-14
1.71742e-12
4.44644e-14
1.6758e-12
4.10527e-14
1.64765e-12
2.76544e-14
1.62339e-12
2.38509e-14
1.59894e-12
2.41031e-14
1.57591e-12
2.27086e-14
1.55107e-12
2.4498e-14
1.51955e-12
3.11322e-14
1.4864e-12
3.26917e-14
1.45671e-12
2.91901e-14
1.42877e-12
2.74301e-14
1.40028e-12
2.80031e-14
1.3696e-12
3.02905e-14
1.33356e-12
3.57889e-14
1.29301e-12
4.04757e-14
1.2569e-12
3.61918e-14
1.23123e-12
2.58303e-14
1.21258e-12
1.87518e-14
1.18123e-12
3.12408e-14
1.13018e-12
5.06445e-14
1.08837e-12
4.11462e-14
1.08191e-12
5.73429e-15
1.08223e-12
-9.03225e-16
1.06437e-12
1.75778e-14
1.00524e-12
5.91131e-14
7.62686e-13
2.42605e-13
3.92239e-13
3.70334e-13
-2.47558e-12
7.47417e-13
-2.5747e-12
2.51685e-13
-2.51035e-12
-4.70008e-14
-2.29742e-12
-1.9709e-13
-2.01141e-12
-2.63155e-13
-1.70744e-12
-2.77517e-13
-1.40482e-12
-2.7452e-13
-1.11004e-12
-2.67951e-13
-8.28574e-13
-2.57704e-13
-5.58604e-13
-2.51553e-13
-3.03556e-13
-2.39813e-13
-6.83402e-14
-2.24322e-13
1.48774e-13
-2.08603e-13
3.45478e-13
-1.82037e-13
5.14927e-13
-1.50589e-13
6.58249e-13
-1.22588e-13
7.78062e-13
-9.277e-14
8.73566e-13
-6.40604e-14
9.47766e-13
-4.19999e-14
1.0068e-12
-2.69737e-14
1.05363e-12
-1.55606e-14
1.08922e-12
-8.45446e-15
1.11791e-12
-8.29141e-15
1.14134e-12
-8.6075e-15
1.16076e-12
-7.32047e-15
1.17341e-12
-6.7124e-15
1.17489e-12
-2.20568e-15
1.16863e-12
2.72937e-15
1.15222e-12
7.27614e-15
1.12252e-12
1.58002e-14
1.0837e-12
2.02017e-14
1.03584e-12
2.4913e-14
9.79988e-13
2.8905e-14
9.16161e-13
3.39855e-14
8.48376e-13
3.43317e-14
7.80168e-13
2.83023e-14
7.13096e-13
2.03846e-14
6.54252e-13
3.40739e-15
6.08948e-13
-2.44614e-14
5.75265e-13
-5.18713e-14
5.52648e-13
-7.34382e-14
5.3868e-13
-9.3448e-14
5.34869e-13
-1.17429e-13
5.42266e-13
-1.41046e-13
5.58257e-13
-1.59251e-13
5.75315e-13
-1.60912e-13
5.86704e-13
-1.53705e-13
5.91259e-13
-1.45355e-13
5.84217e-13
-1.22404e-13
5.6869e-13
-1.00209e-13
5.48939e-13
-8.50396e-14
5.24692e-13
-7.15976e-14
4.92275e-13
-5.52344e-14
4.5035e-13
-3.78087e-14
4.01115e-13
-2.34226e-14
3.47395e-13
-1.43068e-14
2.91655e-13
-1.09126e-14
2.39883e-13
-2.11523e-14
1.95654e-13
-3.9705e-14
1.55529e-13
-5.52443e-14
1.20716e-13
-7.4174e-14
9.26575e-14
-9.13034e-14
6.92722e-14
-8.51061e-14
4.5962e-14
-5.8673e-14
1.37521e-14
-3.79008e-14
-2.63614e-14
-2.13827e-14
-7.20824e-14
8.18096e-15
-1.2562e-13
4.58321e-14
-1.88354e-13
6.78636e-14
-2.56292e-13
7.53175e-14
-3.23316e-13
8.2977e-14
-3.81979e-13
8.70795e-14
-4.3766e-13
9.35978e-14
-4.95026e-13
1.00745e-13
-5.43025e-13
8.80771e-14
-5.58768e-13
4.25302e-14
-5.55774e-13
2.00615e-14
-5.43453e-13
1.10024e-14
-5.18049e-13
-3.51763e-15
-4.75504e-13
-1.89495e-14
-4.19558e-13
-2.57973e-14
-3.53074e-13
-3.482e-14
-2.67092e-13
-5.77999e-14
-1.54093e-13
-8.64793e-14
-1.63746e-14
-1.10458e-13
1.44118e-13
-1.30728e-13
3.23988e-13
-1.44385e-13
5.16126e-13
-1.51802e-13
7.21047e-13
-1.6884e-13
9.48811e-13
-2.02202e-13
1.20668e-12
-2.3972e-13
1.50003e-12
-2.63097e-13
1.81734e-12
-2.67939e-13
2.1452e-12
-2.87987e-13
2.46591e-12
-3.15975e-13
2.75054e-12
-2.8611e-13
2.94522e-12
-1.77387e-13
2.99809e-12
5.95279e-15
2.86429e-12
3.75816e-13
8.04756e-13
2.45078e-12
-8.11865e-12
1.0942e-12
-8.0425e-12
1.74509e-13
-7.65959e-12
-4.30965e-13
-7.10001e-12
-7.57787e-13
-6.46247e-12
-9.0188e-13
-5.79935e-12
-9.41873e-13
-5.14245e-12
-9.32715e-13
-4.5053e-12
-9.06438e-13
-3.89356e-12
-8.70827e-13
-3.31564e-12
-8.3088e-13
-2.76921e-12
-7.87665e-13
-2.25822e-12
-7.3675e-13
-1.78548e-12
-6.8278e-13
-1.34488e-12
-6.24076e-13
-9.35314e-13
-5.61583e-13
-5.60183e-13
-4.9914e-13
-2.15499e-13
-4.38871e-13
9.86897e-14
-3.7966e-13
3.80846e-13
-3.25556e-13
6.32173e-13
-2.79682e-13
8.57458e-13
-2.42196e-13
1.05914e-12
-2.11446e-13
1.23559e-12
-1.86024e-13
1.39101e-12
-1.65265e-13
1.52775e-12
-1.45276e-13
1.64205e-12
-1.22208e-13
1.73469e-12
-9.60425e-14
1.80517e-12
-6.89311e-14
1.85165e-12
-4.03952e-14
1.87555e-12
-9.30382e-15
1.87632e-12
1.82138e-14
1.85693e-12
4.30614e-14
1.81956e-12
6.50046e-14
1.76766e-12
8.46007e-14
1.70938e-12
9.12932e-14
1.64383e-12
9.2531e-14
1.56825e-12
9.46273e-14
1.49216e-12
7.81611e-14
1.41426e-12
5.20886e-14
1.32448e-12
3.65631e-14
1.23631e-12
1.33785e-14
1.15058e-12
-9.1026e-15
1.05861e-12
-2.68823e-14
9.62253e-13
-4.61659e-14
8.579e-13
-5.64309e-14
7.5305e-13
-5.76532e-14
6.52842e-13
-5.51409e-14
5.51517e-13
-4.57135e-14
4.55406e-13
-2.79944e-14
3.69636e-13
-1.61399e-14
2.90026e-13
-7.10874e-15
2.07893e-13
8.8915e-15
1.21865e-13
2.91918e-14
3.05479e-14
5.19532e-14
-6.49166e-14
7.05362e-14
-1.60025e-13
7.93478e-14
-2.54136e-13
8.17985e-14
-3.55836e-13
7.92029e-14
-4.62505e-13
6.5672e-14
-5.74952e-13
5.59515e-14
-6.97683e-13
4.73291e-14
-8.2598e-13
3.57679e-14
-9.43028e-13
3.06968e-14
-1.03774e-12
3.47647e-14
-1.11614e-12
3.91769e-14
-1.17928e-12
4.04105e-14
-1.21197e-12
3.94915e-14
-1.21198e-12
4.44607e-14
-1.1993e-12
5.37957e-14
-1.19288e-12
6.74999e-14
-1.18902e-12
7.77427e-14
-1.16913e-12
6.58189e-14
-1.12093e-12
4.40533e-14
-1.05191e-12
3.04251e-14
-9.75388e-13
1.0295e-14
-8.90479e-13
-4.36143e-14
-7.76847e-13
-9.48068e-14
-6.34662e-13
-1.32448e-13
-4.71485e-13
-1.68006e-13
-2.81222e-13
-2.1056e-13
-5.44005e-14
-2.53971e-13
2.06417e-13
-2.96952e-13
4.95344e-13
-3.47968e-13
8.17691e-13
-4.09977e-13
1.17963e-12
-4.73464e-13
1.58341e-12
-5.35518e-13
2.03174e-12
-5.93685e-13
2.52126e-12
-6.42311e-13
3.03769e-12
-6.86332e-13
3.57235e-12
-7.38049e-13
4.13313e-12
-8.0185e-13
4.74654e-12
-8.7796e-13
5.42297e-12
-9.45823e-13
6.13004e-12
-9.96358e-13
6.80021e-12
-9.87223e-13
7.41798e-12
-9.04813e-13
7.92779e-12
-6.88183e-13
8.26122e-12
-3.28684e-13
8.39021e-12
2.45376e-13
9.94408e-13
8.19922e-12
-1.25989e-11
1.11845e-12
-1.22859e-11
-1.39502e-13
-1.17081e-11
-1.00986e-12
-1.09448e-11
-1.52206e-12
-1.00903e-11
-1.75746e-12
-9.20467e-12
-1.82866e-12
-8.31896e-12
-1.81963e-12
-7.45309e-12
-1.77357e-12
-6.61605e-12
-1.70921e-12
-5.81563e-12
-1.63271e-12
-5.05523e-12
-1.54956e-12
-4.33449e-12
-1.45904e-12
-3.65751e-12
-1.36134e-12
-3.02085e-12
-1.26232e-12
-2.42052e-12
-1.16347e-12
-1.85768e-12
-1.0635e-12
-1.33244e-12
-9.65589e-13
-8.4348e-13
-8.70039e-13
-3.93095e-13
-7.77309e-13
1.60535e-14
-6.90145e-13
3.83877e-13
-6.1129e-13
7.10964e-13
-5.39772e-13
9.97875e-13
-4.74162e-13
1.24562e-12
-4.1424e-13
1.45647e-12
-3.57385e-13
1.633e-12
-3.00011e-13
1.77819e-12
-2.42533e-13
1.8941e-12
-1.86149e-13
1.98232e-12
-1.29921e-13
2.04731e-12
-7.55928e-14
2.08797e-12
-2.37293e-14
2.10666e-12
2.31264e-14
2.10648e-12
6.39589e-14
2.09395e-12
9.59365e-14
2.06542e-12
1.18641e-13
2.02162e-12
1.35168e-13
1.9713e-12
1.43796e-13
1.90364e-12
1.44653e-13
1.81641e-12
1.3813e-13
1.71897e-12
1.32774e-13
1.60418e-12
1.26903e-13
1.47579e-12
1.17957e-13
1.33704e-12
1.10459e-13
1.18695e-12
1.02457e-13
1.03022e-12
9.87693e-14
8.6888e-13
1.02091e-13
7.08781e-13
1.03326e-13
5.56171e-13
1.05247e-13
4.09437e-13
1.17094e-13
2.63664e-13
1.28015e-13
1.17554e-13
1.37429e-13
-2.68924e-14
1.51821e-13
-1.69671e-13
1.7051e-13
-3.09356e-13
1.90234e-13
-4.45353e-13
2.05174e-13
-5.78423e-13
2.11093e-13
-7.07344e-13
2.09418e-13
-8.3303e-13
2.03593e-13
-9.67095e-13
1.98429e-13
-1.1053e-12
1.92821e-13
-1.24064e-12
1.81275e-13
-1.37042e-12
1.64097e-13
-1.48737e-12
1.46119e-13
-1.58304e-12
1.2886e-13
-1.65439e-12
1.0891e-13
-1.7002e-12
8.45756e-14
-1.72395e-12
6.16084e-14
-1.72712e-12
4.60222e-14
-1.71084e-12
3.59385e-14
-1.67247e-12
2.75514e-14
-1.60552e-12
9.21981e-15
-1.514e-12
-2.72786e-14
-1.40037e-12
-7.11894e-14
-1.25629e-12
-1.15297e-13
-1.07743e-12
-1.7024e-13
-8.82405e-13
-2.40364e-13
-6.66143e-13
-3.12838e-13
-4.13245e-13
-3.87146e-13
-1.19252e-13
-4.63794e-13
2.13034e-13
-5.44589e-13
5.87728e-13
-6.30311e-13
1.0054e-12
-7.16152e-13
1.4626e-12
-8.06609e-13
1.95924e-12
-9.08023e-13
2.50338e-12
-1.01908e-12
3.09776e-12
-1.13149e-12
3.73839e-12
-1.23606e-12
4.42042e-12
-1.32619e-12
5.13939e-12
-1.40721e-12
5.89128e-12
-1.4918e-12
6.67797e-12
-1.5903e-12
7.49742e-12
-1.69902e-12
8.34852e-12
-1.79835e-12
9.21342e-12
-1.86258e-12
1.00529e-11
-1.82799e-12
1.08748e-11
-1.72826e-12
1.16554e-11
-1.47051e-12
1.23116e-11
-9.86774e-13
1.26734e-11
-1.18234e-13
1.08624e-12
1.25804e-11
-1.45419e-11
1.18342e-12
-1.41433e-11
-5.3915e-13
-1.34605e-11
-1.69366e-12
-1.25884e-11
-2.39527e-12
-1.16222e-11
-2.72469e-12
-1.06236e-11
-2.82831e-12
-9.62758e-12
-2.81684e-12
-8.6519e-12
-2.75047e-12
-7.70798e-12
-2.65445e-12
-6.80016e-12
-2.54196e-12
-5.93089e-12
-2.42034e-12
-5.10462e-12
-2.28689e-12
-4.32045e-12
-2.14713e-12
-3.5759e-12
-2.00849e-12
-2.87263e-12
-1.86833e-12
-2.21282e-12
-1.72486e-12
-1.59615e-12
-1.58374e-12
-1.02403e-12
-1.44357e-12
-4.97482e-13
-1.30521e-12
-1.64591e-14
-1.17246e-12
4.19121e-13
-1.04813e-12
8.09842e-13
-9.31743e-13
1.1556e-12
-8.21185e-13
1.45634e-12
-7.1628e-13
1.71367e-12
-6.16061e-13
1.93161e-12
-5.19345e-13
2.11478e-12
-4.27138e-13
2.26623e-12
-3.39045e-13
2.38938e-12
-2.54504e-13
2.48544e-12
-1.73077e-13
2.55629e-12
-9.59628e-14
2.60205e-12
-2.39884e-14
2.62332e-12
4.13661e-14
2.62102e-12
9.69425e-14
2.59452e-12
1.43851e-13
2.54448e-12
1.83912e-13
2.4707e-12
2.16266e-13
2.37499e-12
2.3902e-13
2.25791e-12
2.53811e-13
2.12112e-12
2.68111e-13
1.9683e-12
2.782e-13
1.80105e-12
2.83638e-13
1.62052e-12
2.89356e-13
1.42926e-12
2.92033e-13
1.22858e-12
2.97735e-13
1.02204e-12
3.0689e-13
8.14706e-13
3.08907e-13
6.05431e-13
3.12772e-13
3.95162e-13
3.25628e-13
1.81606e-13
3.39861e-13
-3.46425e-14
3.51996e-13
-2.46997e-13
3.62524e-13
-4.51015e-13
3.72905e-13
-6.43196e-13
3.8081e-13
-8.23404e-13
3.83787e-13
-9.95453e-13
3.81547e-13
-1.16191e-12
3.74266e-13
-1.3235e-12
3.63553e-13
-1.47944e-12
3.527e-13
-1.62973e-12
3.41407e-13
-1.7745e-12
3.24295e-13
-1.91098e-12
2.98784e-13
-2.03282e-12
2.66155e-13
-2.13418e-12
2.28399e-13
-2.21357e-12
1.86517e-13
-2.2725e-12
1.41765e-13
-2.31032e-12
9.77574e-14
-2.32161e-12
5.56978e-14
-2.30401e-12
1.67591e-14
-2.25333e-12
-2.47091e-14
-2.16817e-12
-7.75481e-14
-2.05167e-12
-1.45452e-13
-1.90179e-12
-2.22827e-13
-1.71188e-12
-3.07057e-13
-1.48492e-12
-3.99149e-13
-1.23048e-12
-4.96822e-13
-9.43756e-13
-6.01608e-13
-6.17775e-13
-7.15152e-13
-2.50451e-13
-8.33054e-13
1.61699e-13
-9.58522e-13
6.19291e-13
-1.08951e-12
1.11965e-12
-1.21797e-12
1.66042e-12
-1.34879e-12
2.24456e-12
-1.49367e-12
2.8746e-12
-1.65082e-12
3.55267e-12
-1.81154e-12
4.27971e-12
-1.96529e-12
5.0538e-12
-2.10257e-12
5.87241e-12
-2.22801e-12
6.72977e-12
-2.3511e-12
7.62424e-12
-2.48635e-12
8.54675e-12
-2.62281e-12
9.48688e-12
-2.73963e-12
1.04381e-11
-2.81501e-12
1.1388e-11
-2.77933e-12
1.23436e-11
-2.68575e-12
1.32591e-11
-2.38796e-12
1.40049e-11
-1.73433e-12
1.44069e-11
-5.21627e-13
1.19229e-12
1.43002e-11
-1.50773e-11
1.25387e-12
-1.46675e-11
-9.5007e-13
-1.39336e-11
-2.42865e-12
-1.30023e-11
-3.32763e-12
-1.19761e-11
-3.75195e-12
-1.09206e-11
-3.88491e-12
-9.87061e-12
-3.86801e-12
-8.84459e-12
-3.77768e-12
-7.85175e-12
-3.64856e-12
-6.89388e-12
-3.50119e-12
-5.97622e-12
-3.33944e-12
-5.10057e-12
-3.16404e-12
-4.26384e-12
-2.9854e-12
-3.46904e-12
-2.80483e-12
-2.7207e-12
-2.6182e-12
-2.01795e-12
-2.4291e-12
-1.36358e-12
-2.23957e-12
-7.58443e-13
-2.05011e-12
-2.01601e-13
-1.86341e-12
3.07265e-13
-1.68265e-12
7.67562e-13
-1.50974e-12
1.17895e-12
-1.34445e-12
1.54173e-12
-1.1853e-12
1.85737e-12
-1.03332e-12
2.12839e-12
-8.88523e-13
2.35748e-12
-7.49917e-13
2.54752e-12
-6.18699e-13
2.70199e-12
-4.95062e-13
2.82461e-12
-3.78679e-13
2.91865e-12
-2.68675e-13
2.98594e-12
-1.64808e-13
3.02731e-12
-6.69222e-14
3.04103e-12
2.60727e-14
3.02616e-12
1.10219e-13
2.98572e-12
1.8267e-13
2.91949e-12
2.4847e-13
2.82767e-12
3.06372e-13
2.71182e-12
3.53098e-13
2.57146e-12
3.92345e-13
2.41247e-12
4.25237e-13
2.23656e-12
4.52207e-13
2.04284e-12
4.75432e-13
1.83544e-12
4.9482e-13
1.61558e-12
5.0996e-13
1.38602e-12
5.25371e-13
1.15002e-12
5.40983e-13
9.07052e-13
5.49968e-13
6.59286e-13
5.58634e-13
4.07745e-13
5.75257e-13
1.53507e-13
5.92172e-13
-9.95276e-14
6.03082e-13
-3.47577e-13
6.08598e-13
-5.86698e-13
6.10024e-13
-8.15383e-13
6.07466e-13
-1.03252e-12
5.98867e-13
-1.2402e-12
5.87164e-13
-1.4417e-12
5.73685e-13
-1.63624e-12
5.56012e-13
-1.82105e-12
5.35439e-13
-1.99549e-12
5.13788e-13
-2.16033e-12
4.87116e-13
-2.31323e-12
4.4972e-13
-2.44858e-12
3.99606e-13
-2.56272e-12
3.40736e-13
-2.65653e-12
2.78614e-13
-2.73018e-12
2.13815e-13
-2.7792e-12
1.45261e-13
-2.79826e-12
7.32884e-14
-2.78423e-12
1.28123e-15
-2.7334e-12
-7.70197e-14
-2.64471e-12
-1.67801e-13
-2.5215e-12
-2.70323e-13
-2.36253e-12
-3.83562e-13
-2.16514e-12
-5.06326e-13
-1.93186e-12
-6.3439e-13
-1.66348e-12
-7.67188e-13
-1.35667e-12
-9.10389e-13
-1.00871e-12
-1.065e-12
-6.15799e-13
-1.2277e-12
-1.76382e-13
-1.39948e-12
3.07844e-13
-1.5751e-12
8.37122e-13
-1.74853e-12
1.41357e-12
-1.92655e-12
2.03675e-12
-2.11835e-12
2.70694e-12
-2.3228e-12
3.42576e-12
-2.53243e-12
4.19145e-12
-2.73322e-12
5.00384e-12
-2.91715e-12
5.86185e-12
-3.08794e-12
6.76857e-12
-3.25932e-12
7.72381e-12
-3.44269e-12
8.72039e-12
-3.62026e-12
9.73537e-12
-3.7555e-12
1.07634e-11
-3.84423e-12
1.181e-11
-3.8274e-12
1.28257e-11
-3.70304e-12
1.37548e-11
-3.31861e-12
1.45292e-11
-2.50979e-12
1.49747e-11
-9.67821e-13
1.2682e-12
1.48985e-11
-1.51703e-11
1.30758e-12
-1.47542e-11
-1.36741e-12
-1.39788e-11
-3.20521e-12
-1.30043e-11
-4.30319e-12
-1.19382e-11
-4.81923e-12
-1.08467e-11
-4.97744e-12
-9.76512e-12
-4.95073e-12
-8.711e-12
-4.83292e-12
-7.68956e-12
-4.67116e-12
-6.70627e-12
-4.4857e-12
-5.76438e-12
-4.2826e-12
-4.86174e-12
-4.06802e-12
-4.00048e-12
-3.84802e-12
-3.18522e-12
-3.62149e-12
-2.41691e-12
-3.38793e-12
-1.69734e-12
-3.1501e-12
-1.02859e-12
-2.90975e-12
-4.104e-13
-2.66972e-12
1.57485e-13
-2.43269e-12
6.73894e-13
-2.20045e-12
1.13823e-12
-1.97545e-12
1.55183e-12
-1.75944e-12
1.91482e-12
-1.54969e-12
2.22942e-12
-1.34936e-12
2.49971e-12
-1.16029e-12
2.72658e-12
-9.78292e-13
2.91138e-12
-8.05051e-13
3.05761e-12
-6.42882e-13
3.16825e-12
-4.90951e-13
3.24662e-12
-3.48723e-13
3.29558e-12
-2.15491e-13
3.31617e-12
-8.93016e-14
3.30983e-12
3.05546e-14
3.2789e-12
1.39243e-13
3.22204e-12
2.37559e-13
3.14153e-12
3.26953e-13
3.03871e-12
4.07121e-13
2.91198e-12
4.77716e-13
2.76336e-12
5.38837e-13
2.59296e-12
5.93502e-13
2.40274e-12
6.40291e-13
2.19669e-12
6.79387e-13
1.97525e-12
7.14196e-13
1.73698e-12
7.46209e-13
1.4869e-12
7.73465e-13
1.22883e-12
7.97085e-13
9.6147e-13
8.15356e-13
6.8681e-13
8.31302e-13
4.10404e-13
8.49627e-13
1.36355e-13
8.64121e-13
-1.3183e-13
8.69097e-13
-3.92414e-13
8.66944e-13
-6.45498e-13
8.60812e-13
-8.8988e-13
8.49509e-13
-1.12791e-12
8.34542e-13
-1.36393e-12
8.20828e-13
-1.59474e-12
8.02169e-13
-1.81471e-12
7.73708e-13
-2.02238e-12
7.40901e-13
-2.21765e-12
7.06953e-13
-2.39946e-12
6.66926e-13
-2.56486e-12
6.13234e-13
-2.7109e-12
5.43901e-13
-2.83732e-12
4.65523e-13
-2.94384e-12
3.83617e-13
-3.02716e-12
2.95704e-13
-3.08325e-12
1.99966e-13
-3.10985e-12
9.85254e-14
-3.10108e-12
-8.89218e-15
-3.05607e-12
-1.23488e-13
-2.97817e-12
-2.47244e-13
-2.86626e-12
-3.83859e-13
-2.71461e-12
-5.36912e-13
-2.52488e-12
-6.97805e-13
-2.29935e-12
-8.61672e-13
-2.03228e-12
-1.036e-12
-1.71795e-12
-1.2264e-12
-1.36026e-12
-1.42427e-12
-9.60697e-13
-1.62872e-12
-5.185e-13
-1.84303e-12
-3.15375e-14
-2.06334e-12
5.04157e-13
-2.2855e-12
1.09038e-12
-2.51416e-12
1.72614e-12
-2.7557e-12
2.41042e-12
-3.00889e-12
3.14138e-12
-3.26536e-12
3.92005e-12
-3.51388e-12
4.75037e-12
-3.74926e-12
5.63607e-12
-3.9751e-12
6.5801e-12
-4.20445e-12
7.57593e-12
-4.43938e-12
8.60447e-12
-4.64962e-12
9.65897e-12
-4.81099e-12
1.07158e-11
-4.90228e-12
1.18015e-11
-4.91442e-12
1.28738e-11
-4.7765e-12
1.3862e-11
-4.30764e-12
1.46329e-11
-3.28116e-12
1.5051e-11
-1.38629e-12
1.32713e-12
1.49916e-11
-1.51912e-11
1.35698e-12
-1.47495e-11
-1.81024e-12
-1.39397e-11
-4.01619e-12
-1.29258e-11
-5.31831e-12
-1.18221e-11
-5.92401e-12
-1.06973e-11
-6.10333e-12
-9.58665e-12
-6.06244e-12
-8.50368e-12
-5.91695e-12
-7.45468e-12
-5.72122e-12
-6.44583e-12
-5.49564e-12
-5.47778e-12
-5.25178e-12
-4.55244e-12
-4.99452e-12
-3.67471e-12
-4.72697e-12
-2.84745e-12
-4.45e-12
-2.07107e-12
-4.16563e-12
-1.34768e-12
-3.87485e-12
-6.77395e-13
-3.58143e-12
-6.00695e-14
-3.28846e-12
5.04119e-13
-2.9983e-12
1.01504e-12
-2.71277e-12
1.47273e-12
-2.43454e-12
1.87898e-12
-2.16708e-12
2.23623e-12
-1.90834e-12
2.54448e-12
-1.65901e-12
2.80749e-12
-1.42472e-12
3.02848e-12
-1.20075e-12
3.20771e-12
-9.85781e-13
3.34871e-12
-7.8544e-13
3.45422e-12
-5.98095e-13
3.52417e-12
-4.20387e-13
3.56237e-12
-2.55489e-13
3.57118e-12
-9.99933e-14
3.54937e-12
5.0412e-14
3.50269e-12
1.83918e-13
3.43431e-12
3.03885e-13
3.33965e-12
4.19543e-13
3.22169e-12
5.23005e-13
3.07997e-12
6.17357e-13
2.91357e-12
7.03178e-13
2.72587e-12
7.79174e-13
2.51895e-12
8.45221e-13
2.29612e-12
9.00267e-13
2.05826e-12
9.5016e-13
1.80664e-12
9.95955e-13
1.54376e-12
1.03451e-12
1.27171e-12
1.0673e-12
9.9268e-13
1.09252e-12
7.09991e-13
1.11208e-12
4.27144e-13
1.13049e-12
1.46254e-13
1.14296e-12
-1.32133e-13
1.14536e-12
-4.07632e-13
1.14025e-12
-6.79256e-13
1.1302e-12
-9.48062e-13
1.11607e-12
-1.21534e-12
1.09959e-12
-1.47607e-12
1.07935e-12
-1.72445e-12
1.0484e-12
-1.95757e-12
1.00476e-12
-2.17572e-12
9.57072e-13
-2.37949e-12
9.08857e-13
-2.56636e-12
8.52034e-13
-2.73264e-12
7.7786e-13
-2.87882e-12
6.88515e-13
-3.00891e-12
5.94125e-13
-3.12319e-12
4.96458e-13
-3.21692e-12
3.88007e-13
-3.28498e-12
2.66587e-13
-3.32355e-12
1.35616e-13
-3.33147e-12
-2.49159e-15
-3.30837e-12
-1.48153e-13
-3.25105e-12
-3.06152e-13
-3.1534e-12
-4.83106e-13
-3.01644e-12
-6.75456e-13
-2.84285e-12
-8.72928e-13
-2.62624e-12
-1.07976e-12
-2.3573e-12
-1.30638e-12
-2.03877e-12
-1.54634e-12
-1.67686e-12
-1.78759e-12
-1.27222e-12
-2.0348e-12
-8.25026e-13
-2.29169e-12
-3.36175e-13
-2.55373e-12
1.98742e-13
-2.82204e-12
7.85686e-13
-3.10281e-12
1.42505e-12
-3.39686e-12
2.1134e-12
-3.69908e-12
2.84817e-12
-4.00192e-12
3.63304e-12
-4.30039e-12
4.4754e-12
-4.59307e-12
5.38044e-12
-4.88138e-12
6.34288e-12
-5.16801e-12
7.35196e-12
-5.4496e-12
8.40364e-12
-5.70254e-12
9.48897e-12
-5.89767e-12
1.06068e-11
-6.02149e-12
1.17253e-11
-6.034e-12
1.28139e-11
-5.86588e-12
1.38338e-11
-5.32796e-12
1.46398e-11
-4.08761e-12
1.50357e-11
-1.7828e-12
1.44466e-12
1.49172e-11
-1.5237e-11
1.42279e-12
-1.47581e-11
-2.29036e-12
-1.39156e-11
-4.85985e-12
-1.28574e-11
-6.3776e-12
-1.1709e-11
-7.07345e-12
-1.0543e-11
-7.27045e-12
-9.39258e-12
-7.21391e-12
-8.26997e-12
-7.04058e-12
-7.18512e-12
-6.8071e-12
-6.14268e-12
-6.53911e-12
-5.14658e-12
-6.24891e-12
-4.20173e-12
-5.94043e-12
-3.31189e-12
-5.61792e-12
-2.47788e-12
-5.28518e-12
-1.70128e-12
-4.94347e-12
-9.81144e-13
-4.59629e-12
-3.17244e-13
-4.24667e-12
2.91247e-13
-3.89832e-12
8.45574e-13
-3.554e-12
1.34672e-12
-3.21528e-12
1.79494e-12
-2.88409e-12
2.19045e-12
-2.56391e-12
2.5371e-12
-2.2563e-12
2.8379e-12
-1.96111e-12
3.09119e-12
-1.67933e-12
3.30107e-12
-1.41197e-12
3.47168e-12
-1.15777e-12
3.60421e-12
-9.19427e-13
3.70009e-12
-6.95516e-13
3.76034e-12
-4.82249e-13
3.787e-12
-2.83842e-13
3.78248e-12
-9.72127e-14
3.75042e-12
8.06973e-14
3.69023e-12
2.42332e-13
3.60243e-12
3.89925e-13
3.49128e-12
5.28959e-13
3.35681e-12
6.55784e-13
3.1998e-12
7.72722e-13
3.02203e-12
8.79329e-13
2.82329e-12
9.76321e-13
2.60605e-12
1.0609e-12
2.37274e-12
1.13202e-12
2.12483e-12
1.19653e-12
1.86421e-12
1.25503e-12
1.59294e-12
1.30423e-12
1.31377e-12
1.34488e-12
1.029e-12
1.37567e-12
7.40308e-13
1.39911e-12
4.50383e-13
1.4187e-12
1.6075e-13
1.43083e-12
-1.28656e-13
1.43296e-12
-4.17646e-13
1.42743e-12
-7.05479e-13
1.41622e-12
-9.91566e-13
1.40036e-12
-1.27369e-12
1.37994e-12
-1.54518e-12
1.34913e-12
-1.8025e-12
1.30403e-12
-2.04539e-12
1.24603e-12
-2.27429e-12
1.18438e-12
-2.4863e-12
1.11932e-12
-2.67691e-12
1.04113e-12
-2.84673e-12
9.46187e-13
-3.00251e-12
8.428e-13
-3.14728e-12
7.3738e-13
-3.27504e-12
6.22675e-13
-3.37884e-12
4.90214e-13
-3.45635e-12
3.42446e-13
-3.5087e-12
1.86287e-13
-3.53498e-12
2.20983e-14
-3.52829e-12
-1.56501e-13
-3.48242e-12
-3.53624e-13
-3.39843e-12
-5.686e-13
-3.27876e-12
-7.96525e-13
-3.11698e-12
-1.03601e-12
-2.90293e-12
-1.29506e-12
-2.63733e-12
-1.57322e-12
-2.32976e-12
-1.85522e-12
-1.98022e-12
-2.13859e-12
-1.5847e-12
-2.43195e-12
-1.14573e-12
-2.73249e-12
-6.6295e-13
-3.03847e-12
-1.27938e-13
-3.35907e-12
4.64298e-13
-3.69704e-12
1.1112e-12
-4.04564e-12
1.80829e-12
-4.39786e-12
2.55142e-12
-4.74657e-12
3.34277e-12
-5.0931e-12
4.19262e-12
-5.44423e-12
5.10409e-12
-5.79422e-12
6.076e-12
-6.14144e-12
7.10488e-12
-6.48016e-12
8.20844e-12
-6.80785e-12
9.33824e-12
-7.02912e-12
1.04658e-11
-7.15034e-12
1.16401e-11
-7.20926e-12
1.27982e-11
-7.02458e-12
1.38645e-11
-6.39479e-12
1.46947e-11
-4.91872e-12
1.51255e-11
-2.21475e-12
1.5315e-12
1.50375e-11
-1.53288e-11
1.49269e-12
-1.48229e-11
-2.79725e-12
-1.39298e-11
-5.75405e-12
-1.28157e-11
-7.49273e-12
-1.16128e-11
-8.27735e-12
-1.03947e-11
-8.48957e-12
-9.19362e-12
-8.4161e-12
-8.02729e-12
-8.20796e-12
-6.90544e-12
-7.92997e-12
-5.83033e-12
-7.61523e-12
-4.8087e-12
-7.27155e-12
-3.84681e-12
-6.90334e-12
-2.9463e-12
-6.51948e-12
-2.10785e-12
-6.12473e-12
-1.33144e-12
-5.72104e-12
-6.16145e-13
-5.31279e-12
4.00196e-14
-4.90409e-12
6.39282e-13
-4.49885e-12
1.1825e-12
-4.09848e-12
1.67113e-12
-3.70516e-12
2.10838e-12
-3.32256e-12
2.49563e-12
-2.95237e-12
2.83322e-12
-2.59507e-12
3.12521e-12
-2.25428e-12
3.37212e-12
-1.92743e-12
3.57362e-12
-1.61468e-12
3.73427e-12
-1.31969e-12
3.85693e-12
-1.0434e-12
3.94107e-12
-7.81022e-13
3.98972e-12
-5.32314e-13
4.00482e-12
-3.00384e-13
3.98715e-12
-8.09774e-14
3.93963e-12
1.26803e-13
3.86342e-12
3.17201e-13
3.75739e-12
4.94672e-13
3.62818e-12
6.5696e-13
3.47669e-12
8.06127e-13
3.30451e-12
9.43791e-13
3.11402e-12
1.06872e-12
2.90519e-12
1.18405e-12
2.6798e-12
1.28516e-12
2.43891e-12
1.37175e-12
2.18353e-12
1.45071e-12
1.91652e-12
1.52079e-12
1.63919e-12
1.58029e-12
1.35311e-12
1.62965e-12
1.06057e-12
1.66688e-12
7.63243e-13
1.69507e-12
4.63852e-13
1.71672e-12
1.64739e-13
1.72857e-12
-1.33341e-13
1.72969e-12
-4.30651e-13
1.72341e-12
-7.27106e-13
1.71138e-12
-1.02054e-12
1.69253e-12
-1.3063e-12
1.66446e-12
-1.58047e-12
1.62206e-12
-1.84062e-12
1.56294e-12
-2.09065e-12
1.49479e-12
-2.33007e-12
1.4225e-12
-2.55227e-12
1.34018e-12
-2.75505e-12
1.24252e-12
-2.94488e-12
1.13457e-12
-3.12631e-12
1.02272e-12
-3.29282e-12
9.02304e-13
-3.43406e-12
7.62259e-13
-3.54678e-12
6.01224e-13
-3.63593e-12
4.29863e-13
-3.70354e-12
2.52171e-13
-3.74148e-12
5.83747e-14
-3.74021e-12
-1.59336e-13
-3.70086e-12
-3.94402e-13
-3.62803e-12
-6.42704e-13
-3.51881e-12
-9.06889e-13
-3.36226e-12
-1.1936e-12
-3.15647e-12
-1.50187e-12
-2.91277e-12
-1.81803e-12
-2.63175e-12
-2.13751e-12
-2.30435e-12
-2.46751e-12
-1.92997e-12
-2.80812e-12
-1.51039e-12
-3.15406e-12
-1.03712e-12
-3.51385e-12
-5.005e-13
-3.89775e-12
9.93822e-14
-4.29879e-12
7.56556e-13
-4.7044e-12
1.46289e-12
-5.1055e-12
2.21542e-12
-5.50022e-12
3.02054e-12
-5.89935e-12
3.88376e-12
-6.30873e-12
4.81389e-12
-6.7259e-12
5.81378e-12
-7.14314e-12
6.87546e-12
-7.54377e-12
7.99357e-12
-7.92776e-12
9.15953e-12
-8.19652e-12
1.03344e-11
-8.32618e-12
1.1549e-11
-8.4246e-12
1.27551e-11
-8.23137e-12
1.38676e-11
-7.50823e-12
1.47512e-11
-5.8036e-12
1.52638e-11
-2.7287e-12
1.57205e-12
1.52223e-11
-1.54365e-11
1.54223e-12
-1.49113e-11
-3.32336e-12
-1.39476e-11
-6.71863e-12
-1.27668e-11
-8.67455e-12
-1.15007e-11
-9.54443e-12
-1.02213e-11
-9.77006e-12
-8.96623e-12
-9.6722e-12
-7.75504e-12
-9.42023e-12
-6.59372e-12
-9.09235e-12
-5.48977e-12
-8.72019e-12
-4.4488e-12
-8.31352e-12
-3.47178e-12
-7.88136e-12
-2.56065e-12
-7.43162e-12
-1.71686e-12
-6.96956e-12
-9.38865e-13
-6.50011e-12
-2.2521e-13
-6.02755e-12
4.2648e-13
-5.5569e-12
1.01842e-12
-5.09192e-12
1.55338e-12
-4.63457e-12
2.03297e-12
-4.18587e-12
2.46037e-12
-3.75107e-12
2.83958e-12
-3.33268e-12
3.17007e-12
-2.92666e-12
3.45097e-12
-2.53628e-12
3.68793e-12
-2.1655e-12
3.88059e-12
-1.80848e-12
4.02915e-12
-1.46941e-12
4.13844e-12
-1.15388e-12
4.20898e-12
-8.52787e-13
4.24267e-12
-5.67227e-13
4.243e-12
-3.01909e-13
4.21044e-12
-4.95808e-14
4.14582e-12
1.90343e-13
4.05288e-12
4.09145e-13
3.93027e-12
6.1637e-13
3.78474e-12
8.01649e-13
3.61907e-12
9.70998e-13
3.43304e-12
1.12903e-12
3.22792e-12
1.27303e-12
3.00572e-12
1.40539e-12
2.76784e-12
1.52214e-12
2.51468e-12
1.62394e-12
2.24917e-12
1.71519e-12
1.97384e-12
1.79504e-12
1.68922e-12
1.8638e-12
1.39592e-12
1.92181e-12
1.09469e-12
1.96695e-12
7.87229e-13
2.00139e-12
4.77177e-13
2.02564e-12
1.6733e-13
2.03731e-12
-1.40867e-13
2.03682e-12
-4.45912e-13
2.02744e-12
-7.46726e-13
2.01121e-12
-1.04139e-12
1.98623e-12
-1.3258e-12
1.9479e-12
-1.59893e-12
1.89419e-12
-1.86689e-12
1.82986e-12
-2.13223e-12
1.75903e-12
-2.38944e-12
1.67855e-12
-2.63119e-12
1.5807e-12
-2.85749e-12
1.46752e-12
-3.07285e-12
1.34856e-12
-3.27594e-12
1.22438e-12
-3.45761e-12
1.08248e-12
-3.60925e-12
9.12377e-13
-3.73226e-12
7.22699e-13
-3.83409e-12
5.30191e-13
-3.91365e-12
3.30298e-13
-3.95948e-12
1.02881e-13
-3.9655e-12
-1.54515e-13
-3.93849e-12
-4.22464e-13
-3.88278e-12
-6.99341e-13
-3.7902e-12
-1.00029e-12
-3.65227e-12
-1.33231e-12
-3.47516e-12
-1.67978e-12
-3.26355e-12
-2.03055e-12
-3.00787e-12
-2.39429e-12
-2.70052e-12
-2.77618e-12
-2.34445e-12
-3.16573e-12
-1.93646e-12
-3.56373e-12
-1.4652e-12
-3.9868e-12
-9.27554e-13
-4.43691e-12
-3.27641e-13
-4.89995e-12
3.28983e-13
-5.36197e-12
1.0375e-12
-5.81475e-12
1.79767e-12
-6.26108e-12
2.61467e-12
-6.71719e-12
3.51125e-12
-7.20645e-12
4.49696e-12
-7.71303e-12
5.55482e-12
-8.20256e-12
6.66814e-12
-8.65855e-12
7.78759e-12
-9.04834e-12
8.94833e-12
-9.35803e-12
1.01398e-11
-9.5182e-12
1.13527e-11
-9.63804e-12
1.25832e-11
-9.46268e-12
1.37718e-11
-8.69796e-12
1.47078e-11
-6.74073e-12
1.51528e-11
-3.17461e-12
1.69732e-12
1.50271e-11
-1.5506e-11
1.58663e-12
-1.49414e-11
-3.88877e-12
-1.3911e-11
-7.74977e-12
-1.26545e-11
-9.93201e-12
-1.13138e-11
-1.08861e-11
-9.96601e-12
-1.11189e-11
-8.65289e-12
-1.09864e-11
-7.39263e-12
-1.06815e-11
-6.19417e-12
-1.02918e-11
-5.06391e-12
-9.85143e-12
-4.00254e-12
-9.37584e-12
-3.01017e-12
-8.87466e-12
-2.08909e-12
-8.35363e-12
-1.23887e-12
-7.82072e-12
-4.56364e-13
-7.28358e-12
2.60212e-13
-6.74512e-12
9.11768e-13
-6.20946e-12
1.50034e-12
-5.68152e-12
2.02981e-12
-5.16507e-12
2.5033e-12
-4.66041e-12
2.91978e-12
-4.1686e-12
3.28275e-12
-3.69672e-12
3.599e-12
-3.244e-12
3.86572e-12
-2.80409e-12
4.08197e-12
-2.38286e-12
4.25509e-12
-1.98272e-12
4.38577e-12
-1.60124e-12
4.47149e-12
-1.24076e-12
4.51827e-12
-9.00731e-13
4.53151e-12
-5.81607e-13
4.50705e-12
-2.78558e-13
4.45091e-12
5.49954e-15
4.36758e-12
2.72691e-13
4.25488e-12
5.20921e-13
4.1214e-12
7.48981e-13
3.96319e-12
9.59027e-13
3.78201e-12
1.15136e-12
3.58109e-12
1.3291e-12
3.36235e-12
1.4909e-12
3.12789e-12
1.63893e-12
2.87604e-12
1.77302e-12
2.60888e-12
1.89009e-12
2.33053e-12
1.99249e-12
2.04262e-12
2.08187e-12
1.74637e-12
2.15895e-12
1.44248e-12
2.2246e-12
1.13122e-12
2.2771e-12
8.14864e-13
2.31665e-12
4.96336e-13
2.3431e-12
1.7713e-13
2.35548e-12
-1.41852e-13
2.35481e-12
-4.58894e-13
2.34351e-12
-7.7168e-13
2.32306e-12
-1.07793e-12
2.29155e-12
-1.37688e-12
2.24591e-12
-1.66988e-12
2.18623e-12
-1.95845e-12
2.11744e-12
-2.24152e-12
2.04107e-12
-2.51434e-12
1.9503e-12
-2.77275e-12
1.83803e-12
-3.0168e-12
1.71045e-12
-3.24742e-12
1.57806e-12
-3.46069e-12
1.43651e-12
-3.64922e-12
1.26988e-12
-3.80974e-12
1.07177e-12
-3.94685e-12
8.58734e-13
-4.06496e-12
6.47296e-13
-4.15849e-12
4.22903e-13
-4.21794e-12
1.61515e-13
-4.24465e-12
-1.28541e-13
-4.2445e-12
-4.23271e-13
-4.21349e-12
-7.30956e-13
-4.14212e-12
-1.07222e-12
-4.03092e-12
-1.44407e-12
-3.88425e-12
-1.82703e-12
-3.69608e-12
-2.21937e-12
-3.45787e-12
-2.63324e-12
-3.16912e-12
-3.06577e-12
-2.82851e-12
-3.50724e-12
-2.4273e-12
-3.96587e-12
-1.96045e-12
-4.45449e-12
-1.432e-12
-4.96603e-12
-8.45261e-13
-5.48717e-12
-2.03185e-13
-6.00436e-12
4.94279e-13
-6.51249e-12
1.24917e-12
-7.01636e-12
2.07447e-12
-7.54308e-12
2.98323e-12
-8.116e-12
3.98855e-12
-8.71924e-12
5.06479e-12
-9.27958e-12
6.17605e-12
-9.77032e-12
7.30566e-12
-1.01782e-11
8.4764e-12
-1.05289e-11
9.72668e-12
-1.07687e-11
1.10154e-11
-1.09273e-11
1.23585e-11
-1.08066e-11
1.35853e-11
-9.92558e-12
1.45034e-11
-7.65949e-12
1.49596e-11
-3.63107e-12
1.83139e-12
1.48255e-11
-1.55026e-11
1.64557e-12
-1.4874e-11
-4.51801e-12
-1.37863e-11
-8.83823e-12
-1.24535e-11
-1.12656e-11
-1.10345e-11
-1.2306e-11
-9.61926e-12
-1.25351e-11
-8.24988e-12
-1.23568e-11
-6.94439e-12
-1.1988e-11
-5.71147e-12
-1.15257e-11
-4.55529e-12
-1.10085e-11
-3.4741e-12
-1.04579e-11
-2.468e-12
-9.88161e-12
-1.53939e-12
-9.28309e-12
-6.8393e-13
-8.67705e-12
1.02452e-13
-8.07085e-12
8.20499e-13
-7.46407e-12
1.47058e-12
-6.86048e-12
2.05501e-12
-6.26691e-12
2.57656e-12
-5.68763e-12
3.03878e-12
-5.12369e-12
3.44461e-12
-4.57551e-12
3.79293e-12
-4.04617e-12
4.08731e-12
-3.53953e-12
4.33578e-12
-3.05374e-12
4.53665e-12
-2.58491e-12
4.68784e-12
-2.13512e-12
4.79257e-12
-1.70718e-12
4.85263e-12
-1.30203e-12
4.87041e-12
-9.1972e-13
4.84887e-12
-5.61271e-13
4.79472e-12
-2.25581e-13
4.70974e-12
8.93314e-14
4.60184e-12
3.79469e-13
4.47209e-12
6.49572e-13
4.32061e-12
8.99361e-13
4.14972e-12
1.12882e-12
3.9587e-12
1.34126e-12
3.74765e-12
1.53903e-12
3.51799e-12
1.71941e-12
3.27106e-12
1.8847e-12
3.00663e-12
2.03629e-12
2.72499e-12
2.17057e-12
2.42983e-12
2.28649e-12
2.12512e-12
2.38543e-12
1.81331e-12
2.4696e-12
1.49488e-12
2.54188e-12
1.17096e-12
2.59986e-12
8.4359e-13
2.64288e-12
5.1441e-13
2.67114e-12
1.84424e-13
2.68435e-12
-1.46298e-13
2.68443e-12
-4.76641e-13
2.67278e-12
-8.0444e-13
2.64981e-12
-1.12842e-12
2.61451e-12
-1.4488e-12
2.5653e-12
-1.7657e-12
2.50215e-12
-2.07646e-12
2.42724e-12
-2.37752e-12
2.34119e-12
-2.6666e-12
2.23847e-12
-2.94337e-12
2.11392e-12
-3.20624e-12
1.97248e-12
-3.44982e-12
1.82084e-12
-3.66844e-12
1.65434e-12
-3.86203e-12
1.46273e-12
-4.03742e-12
1.24647e-12
-4.19561e-12
1.01628e-12
-4.32816e-12
7.79271e-13
-4.43123e-12
5.25449e-13
-4.50925e-12
2.39041e-13
-4.5652e-12
-7.30741e-14
-4.591e-12
-3.97985e-13
-4.5792e-12
-7.43282e-13
-4.53098e-12
-1.121e-12
-4.44916e-12
-1.52645e-12
-4.32909e-12
-1.94761e-12
-4.16348e-12
-2.38544e-12
-3.95187e-12
-2.84523e-12
-3.69184e-12
-3.32612e-12
-3.37044e-12
-3.82891e-12
-2.9839e-12
-4.35261e-12
-2.5351e-12
-4.90344e-12
-2.02718e-12
-5.47406e-12
-1.46287e-12
-6.05156e-12
-8.39466e-13
-6.62791e-12
-1.48543e-13
-7.20367e-12
6.24482e-13
-7.78976e-12
1.48769e-12
-8.40676e-12
2.43262e-12
-9.06135e-12
3.44241e-12
-9.72928e-12
4.48708e-12
-1.03242e-11
5.58613e-12
-1.08691e-11
6.75211e-12
-1.13439e-11
7.97016e-12
-1.17469e-11
9.29854e-12
-1.20975e-11
1.07078e-11
-1.23373e-11
1.20903e-11
-1.21898e-11
1.33367e-11
-1.11725e-11
1.42988e-11
-8.62171e-12
1.48875e-11
-4.21981e-12
1.87594e-12
1.48427e-11
-1.54297e-11
1.68955e-12
-1.47532e-11
-5.19517e-12
-1.36038e-11
-9.98834e-12
-1.21992e-11
-1.2671e-11
-1.07108e-11
-1.37953e-11
-9.23375e-12
-1.4013e-11
-7.81173e-12
-1.37796e-11
-6.4641e-12
-1.33364e-11
-5.20004e-12
-1.27905e-11
-4.01995e-12
-1.21894e-11
-2.92125e-12
-1.15573e-11
-1.90697e-12
-1.08967e-11
-9.73828e-13
-1.0217e-11
-1.15056e-13
-9.53664e-12
6.69903e-13
-8.85666e-12
1.3802e-12
-8.17525e-12
2.01981e-12
-7.50101e-12
2.59379e-12
-6.84186e-12
3.10389e-12
-6.19876e-12
3.55054e-12
-5.57143e-12
3.93852e-12
-4.96464e-12
4.2719e-12
-4.38076e-12
4.54994e-12
-3.81881e-12
4.77434e-12
-3.27941e-12
4.94919e-12
-2.76106e-12
5.07808e-12
-2.26532e-12
5.16382e-12
-1.79423e-12
5.20648e-12
-1.34599e-12
5.21129e-12
-9.25837e-13
5.17718e-12
-5.28454e-13
5.11004e-12
-1.59731e-13
5.01574e-12
1.82334e-13
4.89021e-12
5.03696e-13
4.74156e-12
7.96901e-13
4.57208e-12
1.06749e-12
4.37916e-12
1.32036e-12
4.16389e-12
1.55513e-12
3.93108e-12
1.77043e-12
3.68338e-12
1.96571e-12
3.41897e-12
2.14774e-12
3.13823e-12
2.3157e-12
2.84297e-12
2.46453e-12
2.53521e-12
2.59298e-12
2.21775e-12
2.70164e-12
1.89121e-12
2.7949e-12
1.55648e-12
2.87536e-12
1.21591e-12
2.93917e-12
8.72605e-13
2.98492e-12
5.29218e-13
3.01326e-12
1.86089e-13
3.02623e-12
-1.57665e-13
3.02697e-12
-5.01752e-13
3.0157e-12
-8.43814e-13
2.99076e-12
-1.18244e-12
2.95207e-12
-1.51804e-12
2.89989e-12
-1.8497e-12
2.83285e-12
-2.17477e-12
2.75141e-12
-2.49075e-12
2.65632e-12
-2.79602e-12
2.54295e-12
-3.08862e-12
2.40577e-12
-3.3656e-12
2.24874e-12
-3.62403e-12
2.07857e-12
-3.86235e-12
1.89199e-12
-4.08098e-12
1.68072e-12
-4.27971e-12
1.4446e-12
-4.45647e-12
1.19247e-12
-4.60687e-12
9.29125e-13
-4.72925e-12
6.47276e-13
-4.82923e-12
3.38444e-13
-4.90557e-12
2.60861e-15
-4.94964e-12
-3.54661e-13
-4.95881e-12
-7.34952e-13
-4.93391e-12
-1.14677e-12
-4.87312e-12
-1.58807e-12
-4.77491e-12
-2.04654e-12
-4.63687e-12
-2.52402e-12
-4.4554e-12
-3.02705e-12
-4.22404e-12
-3.55765e-12
-3.93692e-12
-4.11609e-12
-3.5843e-12
-4.70525e-12
-3.16443e-12
-5.32339e-12
-2.6785e-12
-5.96019e-12
-2.12602e-12
-6.60443e-12
-1.49985e-12
-7.25463e-12
-7.90658e-13
-7.91353e-12
7.19922e-15
-8.5883e-12
8.85971e-13
-9.28606e-12
1.83067e-12
-1.00063e-11
2.81964e-12
-1.07182e-11
3.86176e-12
-1.13661e-11
4.95558e-12
-1.19628e-11
6.14956e-12
-1.2538e-11
7.45603e-12
-1.30539e-11
8.87244e-12
-1.35147e-11
1.03341e-11
-1.37998e-11
1.17598e-11
-1.36159e-11
1.30787e-11
-1.24916e-11
1.42193e-11
-9.7625e-12
1.49345e-11
-4.93553e-12
1.84915e-12
1.49604e-11
-1.52828e-11
1.68503e-12
-1.45798e-11
-5.89891e-12
-1.33583e-11
-1.12105e-11
-1.1886e-11
-1.41441e-11
-1.03334e-11
-1.53486e-11
-8.79762e-12
-1.55495e-11
-7.32649e-12
-1.52514e-11
-5.93949e-12
-1.47241e-11
-4.6416e-12
-1.40891e-11
-3.43329e-12
-1.33984e-11
-2.31739e-12
-1.2674e-11
-1.29138e-12
-1.19234e-11
-3.47552e-13
-1.11617e-11
5.13126e-13
-1.03981e-11
1.29105e-12
-9.63543e-12
1.99192e-12
-8.877e-12
2.62073e-12
-8.13075e-12
3.18021e-12
-7.40233e-12
3.67263e-12
-6.69225e-12
4.10175e-12
-6.00168e-12
4.47005e-12
-5.33415e-12
4.78118e-12
-4.69316e-12
5.03857e-12
-4.07752e-12
5.24232e-12
-3.48453e-12
5.39596e-12
-2.91608e-12
5.50656e-12
-2.3773e-12
5.57243e-12
-1.86147e-12
5.59632e-12
-1.37123e-12
5.58065e-12
-9.11511e-13
5.52935e-12
-4.78469e-13
5.44484e-12
-7.65407e-14
5.32962e-12
2.96226e-13
5.19091e-12
6.41045e-13
5.02562e-12
9.60796e-13
4.83394e-12
1.25772e-12
4.62082e-12
1.532e-12
4.38665e-12
1.7878e-12
4.13433e-12
2.02124e-12
3.86555e-12
2.23301e-12
3.58162e-12
2.4302e-12
3.2836e-12
2.61229e-12
2.97194e-12
2.77479e-12
2.6489e-12
2.91464e-12
2.31558e-12
3.03358e-12
1.97253e-12
3.13656e-12
1.62228e-12
3.22422e-12
1.2677e-12
3.29235e-12
9.12208e-13
3.33901e-12
5.56469e-13
3.36763e-12
1.98683e-13
3.38269e-12
-1.61387e-13
3.38577e-12
-5.2251e-13
3.37562e-12
-8.82598e-13
3.34971e-12
-1.23856e-12
3.30696e-12
-1.58873e-12
3.24906e-12
-1.93309e-12
3.17624e-12
-2.2705e-12
3.08789e-12
-2.59759e-12
2.98251e-12
-2.91197e-12
2.85642e-12
-3.21514e-12
2.70802e-12
-3.50783e-12
2.5405e-12
-3.78552e-12
2.3553e-12
-4.04295e-12
2.14845e-12
-4.27976e-12
1.91657e-12
-4.49932e-12
1.66319e-12
-4.70124e-12
1.39345e-12
-4.87814e-12
1.10508e-12
-5.02539e-12
7.9354e-13
-5.1479e-12
4.59911e-13
-5.24836e-12
1.01919e-13
-5.31998e-12
-2.84311e-13
-5.35469e-12
-7.01599e-13
-5.352e-12
-1.15083e-12
-5.31518e-12
-1.62619e-12
-5.23894e-12
-2.12393e-12
-5.11665e-12
-2.64723e-12
-4.94506e-12
-3.19932e-12
-4.72376e-12
-3.77945e-12
-4.4481e-12
-4.39217e-12
-4.11294e-12
-5.04087e-12
-3.71569e-12
-5.72126e-12
-3.25276e-12
-6.42397e-12
-2.71806e-12
-7.14019e-12
-2.1072e-12
-7.86669e-12
-1.41689e-12
-8.60504e-12
-6.45465e-13
-9.36073e-12
2.08273e-13
-1.01405e-11
1.124e-12
-1.09224e-11
2.11715e-12
-1.17116e-11
3.18599e-12
-1.24352e-11
4.32071e-12
-1.3098e-11
5.5714e-12
-1.37895e-11
6.92192e-12
-1.44055e-11
8.37637e-12
-1.49702e-11
9.90005e-12
-1.53243e-11
1.14326e-11
-1.5149e-11
1.28692e-11
-1.39288e-11
1.41169e-11
-1.10109e-11
1.49129e-11
-5.73263e-12
1.83281e-12
1.49281e-11
-1.50399e-11
1.66591e-12
-1.4285e-11
-6.6545e-12
-1.30011e-11
-1.24952e-11
-1.14567e-11
-1.56891e-11
-9.83256e-12
-1.69733e-11
-8.23338e-12
-1.71493e-11
-6.70853e-12
-1.67769e-11
-5.2759e-12
-1.61574e-11
-3.94372e-12
-1.5422e-11
-2.71249e-12
-1.46303e-11
-1.57865e-12
-1.38086e-11
-5.36987e-13
-1.29659e-11
4.13882e-13
-1.21134e-11
1.27512e-12
-1.12602e-11
2.05046e-12
-1.04116e-11
2.7469e-12
-9.57432e-12
3.3679e-12
-8.75267e-12
3.91392e-12
-7.94931e-12
4.38807e-12
-7.16745e-12
4.79715e-12
-6.41189e-12
5.14404e-12
-5.68225e-12
5.42806e-12
-4.97847e-12
5.65253e-12
-4.30335e-12
5.82333e-12
-3.65673e-12
5.94506e-12
-3.03922e-12
6.02017e-12
-2.45383e-12
6.05107e-12
-1.89376e-12
6.04234e-12
-1.36384e-12
5.99698e-12
-8.6744e-13
5.91924e-12
-4.01985e-13
5.80992e-12
3.15429e-14
5.67122e-12
4.33695e-13
5.50916e-12
8.01837e-13
5.32139e-12
1.14727e-12
5.10836e-12
1.4694e-12
4.87267e-12
1.76628e-12
4.61877e-12
2.04026e-12
4.3478e-12
2.29074e-12
4.05938e-12
2.51994e-12
3.75624e-12
2.73184e-12
3.44087e-12
2.92614e-12
3.11367e-12
3.10045e-12
2.77622e-12
3.25053e-12
2.42962e-12
3.3786e-12
2.07349e-12
3.49109e-12
1.71007e-12
3.58605e-12
1.34214e-12
3.65872e-12
9.70451e-13
3.70917e-12
5.94588e-13
3.74203e-12
2.15239e-13
3.76066e-12
-1.65912e-13
3.76562e-12
-5.47886e-13
3.75636e-12
-9.26983e-13
3.72763e-12
-1.30108e-12
3.6799e-12
-1.6693e-12
3.61614e-12
-2.03039e-12
3.53617e-12
-2.3825e-12
3.43882e-12
-2.72309e-12
3.32186e-12
-3.05151e-12
3.18354e-12
-3.37066e-12
3.02581e-12
-3.68182e-12
2.85023e-12
-3.97941e-12
2.65142e-12
-4.25651e-12
2.42405e-12
-4.51278e-12
2.17131e-12
-4.75312e-12
1.90202e-12
-4.97778e-12
1.61661e-12
-5.1794e-12
1.30522e-12
-5.35183e-12
9.64464e-13
-5.49667e-12
6.03193e-13
-5.62084e-12
2.24459e-13
-5.72005e-12
-1.86833e-13
-5.78305e-12
-6.40383e-13
-5.80623e-12
-1.12945e-12
-5.79437e-12
-1.63977e-12
-5.74175e-12
-2.17812e-12
-5.63927e-12
-2.75109e-12
-5.48692e-12
-3.35287e-12
-5.28422e-12
-3.98321e-12
-5.02624e-12
-4.65119e-12
-4.70964e-12
-5.35859e-12
-4.33257e-12
-6.09961e-12
-3.8917e-12
-6.86629e-12
-3.38274e-12
-7.65071e-12
-2.80166e-12
-8.44931e-12
-2.14274e-12
-9.26534e-12
-1.39951e-12
-1.01051e-11
-5.75254e-13
-1.09656e-11
3.52444e-13
-1.18509e-11
1.36639e-12
-1.27263e-11
2.48093e-12
-1.35508e-11
3.68518e-12
-1.43036e-11
4.97785e-12
-1.50837e-11
6.36254e-12
-1.57916e-11
7.84662e-12
-1.64553e-11
9.45263e-12
-1.6931e-11
1.10879e-11
-1.67848e-11
1.26097e-11
-1.54515e-11
1.38703e-11
-1.22727e-11
1.46627e-11
-6.52634e-12
1.80469e-12
1.469e-11
-1.46975e-11
1.6633e-12
-1.38771e-11
-7.47559e-12
-1.25336e-11
-1.38392e-11
-1.09123e-11
-1.73111e-11
-9.21094e-12
-1.86753e-11
-7.54329e-12
-1.88176e-11
-5.96131e-12
-1.83595e-11
-4.48333e-12
-1.76361e-11
-3.11468e-12
-1.67914e-11
-1.85662e-12
-1.58892e-11
-7.05079e-13
-1.4961e-11
3.46889e-13
-1.40188e-11
1.30045e-12
-1.30678e-11
2.15664e-12
-1.21173e-11
2.92256e-12
-1.11784e-11
3.60374e-12
-1.02563e-11
4.20344e-12
-9.35324e-12
4.72419e-12
-8.47099e-12
5.17116e-12
-7.61542e-12
5.54794e-12
-6.78976e-12
5.8598e-12
-5.9953e-12
6.10921e-12
-5.22916e-12
6.29838e-12
-4.49387e-12
6.43276e-12
-3.79252e-12
6.51782e-12
-3.12571e-12
6.55889e-12
-2.49631e-12
6.55699e-12
-1.89323e-12
6.51798e-12
-1.32614e-12
6.4436e-12
-7.94308e-13
6.33876e-12
-2.98333e-13
6.20472e-12
1.64427e-13
6.04384e-12
5.93441e-13
5.85444e-12
9.90072e-13
5.64233e-12
1.35818e-12
5.40948e-12
1.701e-12
5.15333e-12
2.02111e-12
4.87621e-12
2.31599e-12
4.58321e-12
2.58229e-12
4.27533e-12
2.82629e-12
3.95391e-12
3.05167e-12
3.62018e-12
3.2582e-12
3.2758e-12
3.4431e-12
2.9217e-12
3.60285e-12
2.55691e-12
3.74158e-12
2.18193e-12
3.86425e-12
1.79887e-12
3.96733e-12
1.41002e-12
4.04585e-12
1.01759e-12
4.09997e-12
6.22237e-13
4.13585e-12
2.22615e-13
4.15882e-12
-1.80461e-13
4.1673e-12
-5.82077e-13
4.15662e-12
-9.80042e-13
4.12424e-12
-1.37372e-12
4.0722e-12
-1.76152e-12
4.00251e-12
-2.14071e-12
3.91386e-12
-2.50919e-12
3.80572e-12
-2.86567e-12
3.67667e-12
-3.21082e-12
3.52694e-12
-3.54819e-12
3.36136e-12
-3.87886e-12
3.17903e-12
-4.19495e-12
2.9656e-12
-4.48986e-12
2.71704e-12
-4.76633e-12
2.44588e-12
-5.02969e-12
2.16351e-12
-5.277e-12
1.86209e-12
-5.49993e-12
1.52636e-12
-5.69655e-12
1.15931e-12
-5.87107e-12
7.75939e-13
-6.02344e-12
3.75034e-13
-6.14513e-12
-6.69846e-14
-6.22977e-12
-5.57597e-13
-6.28189e-12
-1.0792e-12
-6.2991e-12
-1.62438e-12
-6.27158e-12
-2.20738e-12
-6.19517e-12
-2.82914e-12
-6.07043e-12
-3.47915e-12
-5.89247e-12
-4.16265e-12
-5.65709e-12
-4.88805e-12
-5.36348e-12
-5.6537e-12
-5.00929e-12
-6.45533e-12
-4.59142e-12
-7.28568e-12
-4.10631e-12
-8.13726e-12
-3.55041e-12
-9.0065e-12
-2.92013e-12
-9.89671e-12
-2.19837e-12
-1.08278e-11
-1.37868e-12
-1.17862e-11
-4.54562e-13
-1.27761e-11
5.46898e-13
-1.37291e-11
1.67299e-12
-1.46785e-11
2.91761e-12
-1.55499e-11
4.23799e-12
-1.64055e-11
5.69699e-12
-1.72515e-11
7.29607e-12
-1.8055e-11
8.93843e-12
-1.85739e-11
1.06197e-11
-1.84668e-11
1.22817e-11
-1.71146e-11
1.36105e-11
-1.36026e-11
1.43944e-11
-7.31097e-12
1.80492e-12
1.43939e-11
-1.42994e-11
1.65364e-12
-1.34213e-11
-8.35435e-12
-1.20004e-11
-1.52607e-11
-1.02962e-11
-1.90158e-11
-8.51698e-12
-2.04551e-11
-6.78302e-12
-2.05522e-11
-5.14491e-12
-1.99983e-11
-3.62172e-12
-1.916e-11
-2.22226e-12
-1.81917e-11
-9.42673e-13
-1.71697e-11
2.23956e-13
-1.61286e-11
1.27901e-12
-1.50748e-11
2.22487e-12
-1.40146e-11
3.06856e-12
-1.29618e-11
3.8162e-12
-1.19269e-11
4.47122e-12
-1.09122e-11
5.03788e-12
-9.92073e-12
5.52432e-12
-8.95832e-12
5.93867e-12
-8.03074e-12
6.285e-12
-7.13716e-12
6.56481e-12
-6.27627e-12
6.78457e-12
-5.45019e-12
6.94861e-12
-4.65927e-12
7.0579e-12
-3.90322e-12
7.11573e-12
-3.18498e-12
7.12331e-12
-2.50532e-12
7.09098e-12
-1.8623e-12
7.02201e-12
-1.25852e-12
6.91967e-12
-6.93247e-13
6.78708e-12
-1.66974e-13
6.62689e-12
3.23407e-13
6.44111e-12
7.78029e-13
6.23059e-12
1.19937e-12
5.99598e-12
1.59152e-12
5.74079e-12
1.95487e-12
5.46796e-12
2.29256e-12
5.1763e-12
2.60619e-12
4.86383e-12
2.8932e-12
4.53384e-12
3.15463e-12
4.19056e-12
3.3932e-12
3.83653e-12
3.61039e-12
3.47174e-12
3.80598e-12
3.09481e-12
3.97783e-12
2.70714e-12
4.1273e-12
2.31176e-12
4.25771e-12
1.90956e-12
4.36769e-12
1.49973e-12
4.45393e-12
1.08345e-12
4.5146e-12
6.63849e-13
4.55388e-12
2.42714e-13
4.57845e-12
-1.79932e-13
4.58845e-12
-6.03073e-13
4.57824e-12
-1.02508e-12
4.54468e-12
-1.44321e-12
4.48867e-12
-1.85592e-12
4.41349e-12
-2.25848e-12
4.3146e-12
-2.64977e-12
4.19513e-12
-3.03053e-12
4.0555e-12
-3.4009e-12
3.89534e-12
-3.75976e-12
3.71824e-12
-4.10402e-12
3.52132e-12
-4.43337e-12
3.293e-12
-4.74986e-12
3.0316e-12
-5.05302e-12
2.74714e-12
-5.33814e-12
2.44678e-12
-5.6032e-12
2.12535e-12
-5.85104e-12
1.77245e-12
-6.08023e-12
1.38681e-12
-6.28104e-12
9.75112e-13
-6.44706e-12
5.39457e-13
-6.58201e-12
6.63908e-14
-6.68833e-12
-4.52853e-13
-6.76202e-12
-1.00708e-12
-6.79859e-12
-1.58941e-12
-6.7973e-12
-2.21028e-12
-6.75496e-12
-2.87308e-12
-6.66211e-12
-3.5736e-12
-6.51636e-12
-4.30998e-12
-6.31676e-12
-5.08915e-12
-6.05901e-12
-5.91284e-12
-5.74217e-12
-6.77341e-12
-5.35974e-12
-7.66915e-12
-4.9079e-12
-8.58993e-12
-4.37913e-12
-9.53593e-12
-3.76415e-12
-1.05123e-11
-3.06064e-12
-1.1532e-11
-2.25575e-12
-1.25921e-11
-1.35068e-12
-1.36824e-11
-3.32128e-13
-1.47491e-11
7.83648e-13
-1.57957e-11
2.04294e-12
-1.68103e-11
3.44081e-12
-1.7804e-11
4.95857e-12
-1.87696e-11
6.58701e-12
-1.96837e-11
8.30407e-12
-2.02914e-11
1.00706e-11
-2.02342e-11
1.1811e-11
-1.88558e-11
1.32732e-11
-1.50653e-11
1.41105e-11
-8.1483e-12
1.82095e-12
1.40946e-11
-1.38214e-11
1.59786e-12
-1.29044e-11
-9.27192e-12
-1.13943e-11
-1.67713e-11
-9.60361e-12
-2.08071e-11
-7.74534e-12
-2.2314e-11
-5.9386e-12
-2.23596e-11
-4.24017e-12
-2.16975e-11
-2.674e-12
-2.0727e-11
-1.23834e-12
-1.96283e-11
6.91334e-14
-1.84781e-11
1.24843e-12
-1.73088e-11
2.30568e-12
-1.61329e-11
3.2493e-12
-1.4959e-11
4.08348e-12
-1.37968e-11
4.81127e-12
-1.26555e-11
5.4416e-12
-1.15433e-11
5.98311e-12
-1.04631e-11
6.44183e-12
-9.41797e-12
6.82255e-12
-8.41246e-12
7.13494e-12
-7.45066e-12
7.38278e-12
-6.52531e-12
7.57063e-12
-5.63935e-12
7.69854e-12
-4.78855e-12
7.7676e-12
-3.97372e-12
7.7861e-12
-3.20495e-12
7.75807e-12
-2.47877e-12
7.69145e-12
-1.79715e-12
7.58855e-12
-1.15706e-12
7.4527e-12
-5.58827e-13
7.28716e-12
-2.84797e-15
7.09499e-12
5.14146e-13
6.87788e-12
9.93703e-13
6.63482e-12
1.44097e-12
6.3728e-12
1.85203e-12
6.09563e-12
2.2305e-12
5.80019e-12
2.58641e-12
5.48482e-12
2.91991e-12
5.15167e-12
3.22464e-12
4.80282e-12
3.5017e-12
4.43969e-12
3.75447e-12
4.06288e-12
3.98529e-12
3.67346e-12
4.19346e-12
3.27282e-12
4.37653e-12
2.86362e-12
4.5346e-12
2.44861e-12
4.67091e-12
2.02773e-12
4.78685e-12
1.6004e-12
4.87963e-12
1.16622e-12
4.94723e-12
7.26693e-13
4.9919e-12
2.85087e-13
5.01853e-12
-1.56584e-13
5.02856e-12
-5.97893e-13
5.01791e-12
-1.03928e-12
4.98433e-12
-1.48121e-12
4.92879e-12
-1.91737e-12
4.84777e-12
-2.34851e-12
4.74382e-12
-2.77278e-12
4.61748e-12
-3.18553e-12
4.46635e-12
-3.58554e-12
4.29351e-12
-3.97192e-12
4.10285e-12
-4.3446e-12
3.89227e-12
-4.70263e-12
3.64936e-12
-5.04491e-12
3.37224e-12
-5.37119e-12
3.07179e-12
-5.68064e-12
2.75462e-12
-5.97082e-12
2.41393e-12
-6.2406e-12
2.04069e-12
-6.48884e-12
1.63357e-12
-6.71272e-12
1.19761e-12
-6.90998e-12
7.35428e-13
-7.07657e-12
2.31761e-13
-7.20755e-12
-3.23071e-13
-7.30582e-12
-9.10031e-13
-7.37082e-12
-1.52571e-12
-7.39466e-12
-2.1878e-12
-7.37374e-12
-2.89545e-12
-7.31202e-12
-3.63679e-12
-7.20359e-12
-4.41982e-12
-7.04282e-12
-5.25116e-12
-6.82638e-12
-6.13029e-12
-6.54963e-12
-7.05088e-12
-6.21273e-12
-8.00651e-12
-5.80113e-12
-9.0018e-12
-5.31593e-12
-1.00214e-11
-4.73194e-12
-1.10966e-11
-4.04111e-12
-1.22235e-11
-3.23481e-12
-1.33993e-11
-2.32327e-12
-1.4595e-11
-1.29541e-12
-1.5778e-11
-1.58535e-13
-1.69333e-11
1.10379e-12
-1.80729e-11
2.49873e-12
-1.9199e-11
4.04649e-12
-2.03175e-11
5.72594e-12
-2.13635e-11
7.54644e-12
-2.21126e-11
9.40436e-12
-2.20927e-11
1.12056e-11
-2.06573e-11
1.26728e-11
-1.65324e-11
1.34584e-11
-8.93367e-12
1.84158e-12
1.34378e-11
-1.31812e-11
1.53125e-12
-1.22029e-11
-1.02507e-11
-1.06103e-11
-1.83644e-11
-8.7312e-12
-2.26867e-11
-6.78801e-12
-2.42578e-11
-4.9084e-12
-2.42399e-11
-3.1527e-12
-2.34539e-11
-1.53756e-12
-2.23429e-11
-6.65235e-14
-2.11001e-11
1.26226e-12
-1.98077e-11
2.45298e-12
-1.85003e-11
3.51369e-12
-1.71943e-11
4.452e-12
-1.58981e-11
5.27368e-12
-1.46192e-11
5.98407e-12
-1.33666e-11
6.59068e-12
-1.21508e-11
7.10359e-12
-1.09769e-11
7.53061e-12
-9.84601e-12
7.87695e-12
-8.7599e-12
8.1463e-12
-7.72118e-12
8.34593e-12
-6.72619e-12
8.48217e-12
-5.77689e-12
8.55631e-12
-4.86405e-12
8.57512e-12
-3.99392e-12
8.54215e-12
-3.17342e-12
8.46763e-12
-2.40571e-12
8.35701e-12
-1.68802e-12
8.21441e-12
-1.016e-12
8.04036e-12
-3.86357e-13
7.83758e-12
1.98301e-13
7.60611e-12
7.43934e-13
7.34743e-12
1.25066e-12
7.068e-12
1.71864e-12
6.76687e-12
2.1514e-12
6.4447e-12
2.5509e-12
6.10533e-12
2.92402e-12
5.75182e-12
3.27165e-12
5.38476e-12
3.58992e-12
5.00558e-12
3.87908e-12
4.61609e-12
4.14216e-12
4.21571e-12
4.38387e-12
3.8043e-12
4.60309e-12
3.38381e-12
4.79529e-12
2.95568e-12
4.96109e-12
2.52096e-12
5.10408e-12
2.0808e-12
5.22554e-12
1.63545e-12
5.32358e-12
1.18563e-12
5.39567e-12
7.31672e-13
5.44444e-12
2.73454e-13
5.47527e-12
-1.86957e-13
5.4874e-12
-6.46415e-13
5.4757e-12
-1.10287e-12
5.43905e-12
-1.55648e-12
5.3806e-12
-2.00978e-12
5.29926e-12
-2.46046e-12
5.19272e-12
-2.90369e-12
5.059e-12
-3.3373e-12
4.89834e-12
-3.76061e-12
4.71529e-12
-4.17224e-12
4.51304e-12
-4.56845e-12
4.28709e-12
-4.94874e-12
4.02828e-12
-5.3152e-12
3.73731e-12
-5.66997e-12
3.42512e-12
-6.01143e-12
3.09459e-12
-6.33591e-12
2.73691e-12
-6.64326e-12
2.34655e-12
-6.93638e-12
1.92528e-12
-7.2129e-12
1.47283e-12
-7.46104e-12
9.82388e-13
-7.6735e-12
4.43141e-13
-7.85645e-12
-1.41161e-13
-8.01184e-12
-7.55714e-13
-8.12983e-12
-1.40888e-12
-8.20188e-12
-2.11703e-12
-8.23057e-12
-2.86809e-12
-8.21571e-12
-3.65298e-12
-8.14589e-12
-4.49086e-12
-8.01645e-12
-5.38162e-12
-7.82891e-12
-6.31855e-12
-7.58127e-12
-7.29898e-12
-7.2739e-12
-8.31414e-12
-6.90215e-12
-9.37377e-12
-6.44712e-12
-1.04767e-11
-5.88482e-12
-1.16595e-11
-5.1879e-12
-1.29211e-11
-4.36389e-12
-1.42242e-11
-3.42894e-12
-1.55307e-11
-2.4111e-12
-1.67963e-11
-1.29138e-12
-1.80531e-11
-5.44182e-14
-1.93098e-11
1.3245e-12
-2.05779e-11
2.90536e-12
-2.18986e-11
4.67612e-12
-2.31349e-11
6.54676e-12
-2.39838e-11
8.45759e-12
-2.40038e-11
1.0224e-11
-2.24236e-11
1.17117e-11
-1.80198e-11
1.26117e-11
-9.83378e-12
1.85048e-12
1.26024e-11
-1.23413e-11
1.49047e-12
-1.12826e-11
-1.13099e-11
-9.62053e-12
-2.0027e-11
-7.65717e-12
-2.46506e-11
-5.63315e-12
-2.62824e-11
-3.68876e-12
-2.61848e-11
-1.88336e-12
-2.52599e-11
-2.31919e-13
-2.3995e-11
1.26375e-12
-2.25963e-11
2.60181e-12
-2.11463e-11
3.79014e-12
-1.96892e-11
4.8412e-12
-1.8246e-11
5.76125e-12
-1.68188e-11
6.55472e-12
-1.54135e-11
7.23198e-12
-1.40447e-11
7.80512e-12
-1.27249e-11
8.28208e-12
-1.14549e-11
8.66602e-12
-1.02311e-11
8.96466e-12
-9.0597e-12
9.18383e-12
-7.94154e-12
9.33033e-12
-6.87391e-12
9.40807e-12
-5.85586e-12
9.42216e-12
-4.87938e-12
9.38265e-12
-3.95567e-12
9.2972e-12
-3.08925e-12
9.17404e-12
-2.28389e-12
9.0173e-12
-1.5327e-12
8.83011e-12
-8.30321e-13
8.61371e-12
-1.71569e-13
8.36976e-12
4.40542e-13
8.10422e-12
1.00768e-12
7.81699e-12
1.53603e-12
7.50646e-12
2.0273e-12
7.17336e-12
2.48263e-12
6.81868e-12
2.90374e-12
6.44679e-12
3.29412e-12
6.0616e-12
3.65509e-12
5.66423e-12
3.9856e-12
5.25594e-12
4.28571e-12
4.83764e-12
4.55884e-12
4.41052e-12
4.80943e-12
3.97588e-12
5.03623e-12
3.53356e-12
5.23619e-12
3.0832e-12
5.41012e-12
2.62549e-12
5.56052e-12
2.16166e-12
5.68814e-12
1.69239e-12
5.79163e-12
1.2176e-12
5.8692e-12
7.3761e-13
5.9231e-12
2.54826e-13
5.95663e-12
-2.26846e-13
5.96756e-12
-7.05158e-13
5.95242e-12
-1.18087e-12
5.91312e-12
-1.65482e-12
5.85291e-12
-2.12689e-12
5.76973e-12
-2.59481e-12
5.6591e-12
-3.05613e-12
5.51886e-12
-3.51016e-12
5.351e-12
-3.95631e-12
5.16013e-12
-4.39148e-12
4.94694e-12
-4.81141e-12
4.70575e-12
-5.21646e-12
4.43202e-12
-5.61215e-12
4.1316e-12
-6.00111e-12
3.81257e-12
-6.37889e-12
3.47078e-12
-6.74133e-12
3.09771e-12
-7.09065e-12
2.69424e-12
-7.42862e-12
2.26169e-12
-7.74777e-12
1.79054e-12
-8.03764e-12
1.27096e-12
-8.29757e-12
7.01865e-13
-8.53285e-12
9.29615e-14
-8.73759e-12
-5.52136e-13
-8.90122e-12
-1.24647e-12
-9.0245e-12
-1.99502e-12
-9.11078e-12
-2.78312e-12
-9.14701e-12
-3.618e-12
-9.12493e-12
-4.51405e-12
-9.04751e-12
-5.45996e-12
-8.91138e-12
-6.45541e-12
-8.71508e-12
-7.49588e-12
-8.4517e-12
-8.57808e-12
-8.11393e-12
-9.71218e-12
-7.68349e-12
-1.09079e-11
-7.12989e-12
-1.2214e-11
-6.45236e-12
-1.35995e-11
-5.65475e-12
-1.50224e-11
-4.7737e-12
-1.64121e-11
-3.79571e-12
-1.77743e-11
-2.70136e-12
-1.91473e-11
-1.46737e-12
-2.05438e-11
-3.22153e-14
-2.20135e-11
1.60547e-12
-2.3537e-11
3.36169e-12
-2.48918e-11
5.21692e-12
-2.58394e-11
7.18184e-12
-2.59688e-11
9.01534e-12
-2.4257e-11
1.05948e-11
-1.95995e-11
1.16292e-11
-1.08688e-11
1.79802e-12
1.16811e-11
-1.13267e-11
1.4444e-12
-1.02208e-11
-1.24162e-11
-8.48643e-12
-2.17618e-11
-6.44162e-12
-2.66959e-11
-4.34496e-12
-2.83795e-11
-2.34282e-12
-2.81874e-11
-4.94219e-13
-2.7109e-11
1.18594e-12
-2.56755e-11
2.68886e-12
-2.40996e-11
4.01974e-12
-2.24775e-11
5.19474e-12
-2.08646e-11
6.22061e-12
-1.92723e-11
7.10292e-12
-1.77017e-11
7.85552e-12
-1.61668e-11
8.49422e-12
-1.46843e-11
9.02811e-12
-1.32597e-11
9.46116e-12
-1.1889e-11
9.79949e-12
-1.05705e-11
1.00522e-11
-9.31352e-12
1.02219e-11
-8.11231e-12
1.03136e-11
-6.96666e-12
1.03347e-11
-5.87796e-12
1.02943e-11
-4.83997e-12
1.02026e-11
-3.86493e-12
1.00658e-11
-2.95347e-12
9.89074e-12
-2.10994e-12
9.68013e-12
-1.32327e-12
9.44205e-12
-5.93545e-13
9.18115e-12
8.78775e-14
8.90135e-12
7.18772e-13
8.60304e-12
1.30432e-12
8.2874e-12
1.84993e-12
7.95097e-12
2.362e-12
7.59129e-12
2.84058e-12
7.2099e-12
3.28346e-12
6.81031e-12
3.6921e-12
6.39651e-12
4.06734e-12
5.97054e-12
4.41006e-12
5.5341e-12
4.72071e-12
5.08813e-12
5.00344e-12
4.63432e-12
5.26191e-12
4.17434e-12
5.49495e-12
3.70762e-12
5.70171e-12
3.23296e-12
5.88363e-12
2.75066e-12
6.0417e-12
2.26173e-12
6.17594e-12
1.76694e-12
6.28525e-12
1.26668e-12
6.36822e-12
7.62003e-13
6.42646e-12
2.55722e-13
6.46153e-12
-2.4951e-13
6.47136e-12
-7.5323e-13
6.4547e-12
-1.25553e-12
6.41398e-12
-1.75486e-12
6.35085e-12
-2.24945e-12
6.26296e-12
-2.73782e-12
6.14615e-12
-3.21988e-12
5.99965e-12
-3.69615e-12
5.82601e-12
-4.16517e-12
5.62789e-12
-4.62334e-12
5.40383e-12
-5.06841e-12
5.14947e-12
-5.50367e-12
4.86585e-12
-5.9335e-12
4.55989e-12
-6.35753e-12
4.23497e-12
-6.77169e-12
3.88322e-12
-7.17384e-12
3.49811e-12
-7.56578e-12
3.08445e-12
-7.94645e-12
2.64069e-12
-8.30583e-12
2.14835e-12
-8.63871e-12
1.60237e-12
-8.94947e-12
1.01125e-12
-9.2356e-12
3.7779e-13
-9.48729e-12
-3.01725e-13
-9.70311e-12
-1.0319e-12
-9.88805e-12
-1.81131e-12
-1.00333e-11
-2.63901e-12
-1.01265e-11
-3.52599e-12
-1.01674e-11
-4.47409e-12
-1.0155e-11
-5.47331e-12
-1.00864e-11
-6.5249e-12
-9.95212e-12
-7.63112e-12
-9.73397e-12
-8.79725e-12
-9.42394e-12
-1.00233e-11
-9.00573e-12
-1.13273e-11
-8.48567e-12
-1.2735e-11
-7.8617e-12
-1.42242e-11
-7.13903e-12
-1.57454e-11
-6.30314e-12
-1.7248e-11
-5.36643e-12
-1.87109e-11
-4.2689e-12
-2.0245e-11
-2.98427e-12
-2.1829e-11
-1.51933e-12
-2.34792e-11
1.01485e-13
-2.51586e-11
1.85761e-12
-2.66484e-11
3.72316e-12
-2.77051e-11
5.71361e-12
-2.79592e-11
7.67439e-12
-2.6218e-11
9.41744e-12
-2.13431e-11
1.05335e-11
-1.19855e-11
1.71666e-12
1.06147e-11
-1.01141e-11
1.34618e-12
-8.97959e-12
-1.35511e-11
-7.15252e-12
-2.35892e-11
-5.02738e-12
-2.88214e-11
-2.86585e-12
-3.05414e-11
-8.09674e-13
-3.0244e-11
1.07915e-12
-2.89981e-11
2.77167e-12
-2.73683e-11
4.27269e-12
-2.56008e-11
5.59878e-12
-2.38039e-11
6.75337e-12
-2.20195e-11
7.74269e-12
-2.0262e-11
8.58646e-12
-1.85459e-11
9.30396e-12
-1.68849e-11
9.90417e-12
-1.52853e-11
1.03932e-11
-1.37496e-11
1.0774e-11
-1.22708e-11
1.10564e-11
-1.08537e-11
1.12487e-11
-9.50672e-12
1.13532e-11
-8.21768e-12
1.13802e-11
-6.99436e-12
1.13362e-11
-5.8347e-12
1.12357e-11
-4.74019e-12
1.10864e-11
-3.71621e-12
1.08979e-11
-2.76566e-12
1.06751e-11
-1.88798e-12
1.04256e-11
-1.07459e-12
1.01511e-11
-3.20074e-13
9.85248e-12
3.8534e-13
9.53229e-12
1.03769e-12
9.19182e-12
1.64344e-12
8.83171e-12
2.20864e-12
8.45273e-12
2.73956e-12
8.05339e-12
3.23852e-12
7.63442e-12
3.70107e-12
7.2004e-12
4.12479e-12
6.75472e-12
4.51173e-12
6.29884e-12
4.86469e-12
5.83265e-12
5.18569e-12
5.35707e-12
5.47784e-12
4.8742e-12
5.74364e-12
4.38475e-12
5.98331e-12
3.88836e-12
6.19703e-12
3.38423e-12
6.3867e-12
2.8725e-12
6.55236e-12
2.35541e-12
6.69192e-12
1.83419e-12
6.80531e-12
1.30947e-12
6.89172e-12
7.82747e-13
6.95193e-12
2.55938e-13
6.98707e-12
-2.70818e-13
6.99686e-12
-7.98467e-13
6.98113e-12
-1.32474e-12
6.93908e-12
-1.84604e-12
6.87102e-12
-2.36131e-12
6.77713e-12
-2.87003e-12
6.65375e-12
-3.37397e-12
6.50245e-12
-3.87407e-12
6.32491e-12
-4.36896e-12
6.12152e-12
-4.85622e-12
5.88977e-12
-5.33573e-12
5.62759e-12
-5.81067e-12
5.33935e-12
-6.2788e-12
5.02653e-12
-6.73743e-12
4.69207e-12
-7.18723e-12
4.33147e-12
-7.62851e-12
3.93783e-12
-8.05849e-12
3.51289e-12
-8.4736e-12
3.0543e-12
-8.87269e-12
2.54599e-12
-9.25497e-12
1.98324e-12
-9.62131e-12
1.37626e-12
-9.9674e-12
7.22615e-13
-1.0283e-11
1.27024e-14
-1.05649e-11
-7.51078e-13
-1.08134e-11
-1.56384e-12
-1.1021e-11
-2.43226e-12
-1.11801e-11
-3.36771e-12
-1.12926e-11
-4.36249e-12
-1.13529e-11
-5.41389e-12
-1.13513e-11
-6.52749e-12
-1.12744e-11
-7.70912e-12
-1.11014e-11
-8.9715e-12
-1.08255e-11
-1.03004e-11
-1.04428e-11
-1.1711e-11
-9.97332e-12
-1.32052e-11
-9.42319e-12
-1.47747e-11
-8.75482e-12
-1.64138e-11
-7.97444e-12
-1.80284e-11
-7.03852e-12
-1.96471e-11
-5.93538e-12
-2.13487e-11
-4.64437e-12
-2.31208e-11
-3.1796e-12
-2.49448e-11
-1.56519e-12
-2.67734e-11
2.45129e-13
-2.84588e-11
2.21228e-12
-2.96722e-11
4.30122e-12
-3.00484e-11
6.38671e-12
-2.83041e-11
8.15649e-12
-2.31135e-11
9.28688e-12
-1.31162e-11
1.65744e-12
9.34617e-12
-8.61652e-12
1.24588e-12
-7.4265e-12
-1.47415e-11
-5.54152e-12
-2.54746e-11
-3.35157e-12
-3.10117e-11
-1.13112e-12
-3.27622e-11
9.69609e-13
-3.2345e-11
2.87896e-12
-3.09077e-11
4.57589e-12
-2.90654e-11
6.07447e-12
-2.70996e-11
7.38485e-12
-2.51144e-11
8.5093e-12
-2.31442e-11
9.46339e-12
-2.12165e-11
1.02714e-11
-1.93543e-11
1.09465e-11
-1.75606e-11
1.14934e-11
-1.58327e-11
1.19172e-11
-1.4174e-11
1.22257e-11
-1.25799e-11
1.24328e-11
-1.10615e-11
1.25433e-11
-9.61782e-12
1.25673e-11
-8.24223e-12
1.25182e-11
-6.94578e-12
1.24065e-11
-5.72338e-12
1.22462e-11
-4.58031e-12
1.20438e-11
-3.51424e-12
1.18092e-11
-2.53156e-12
1.15424e-11
-1.62176e-12
1.1251e-11
-7.83765e-13
1.0932e-11
-1.86361e-15
1.059e-11
7.26445e-13
1.02219e-11
1.40483e-12
9.82875e-12
2.03563e-12
9.41377e-12
2.62258e-12
8.97914e-12
3.17314e-12
8.52779e-12
3.68882e-12
8.06355e-12
4.16426e-12
7.59031e-12
4.59698e-12
7.11152e-12
4.98947e-12
6.62632e-12
5.34886e-12
6.13326e-12
5.67773e-12
5.63062e-12
5.97948e-12
5.11755e-12
6.25575e-12
4.59396e-12
6.50595e-12
4.05993e-12
6.73012e-12
3.51809e-12
6.92757e-12
2.97093e-12
7.09852e-12
2.41919e-12
7.24262e-12
1.86696e-12
7.35645e-12
1.31723e-12
7.44035e-12
7.71287e-13
7.49679e-12
2.29684e-13
7.52764e-12
-3.08382e-13
7.53396e-12
-8.44319e-13
7.51617e-12
-1.38039e-12
7.47432e-12
-1.91625e-12
7.40606e-12
-2.44806e-12
7.30809e-12
-2.97837e-12
7.18315e-12
-3.5085e-12
7.03158e-12
-4.03848e-12
6.85382e-12
-4.56723e-12
6.64913e-12
-5.09268e-12
6.41405e-12
-5.61295e-12
6.14669e-12
-6.12414e-12
5.84939e-12
-6.62816e-12
5.52945e-12
-7.122e-12
5.18485e-12
-7.60217e-12
4.81062e-12
-8.06919e-12
4.40383e-12
-8.52242e-12
3.96508e-12
-8.96842e-12
3.49922e-12
-9.408e-12
2.98447e-12
-9.831e-12
2.40513e-12
-1.02336e-11
1.77774e-12
-1.06183e-11
1.10631e-12
-1.0984e-11
3.7758e-13
-1.13213e-11
-4.14603e-13
-1.16253e-11
-1.26046e-12
-1.18931e-11
-2.16498e-12
-1.21172e-11
-3.14408e-12
-1.22844e-11
-4.19594e-12
-1.23948e-11
-5.30433e-12
-1.24428e-11
-6.48043e-12
-1.24196e-11
-7.7334e-12
-1.23217e-11
-9.07036e-12
-1.21398e-11
-1.04832e-11
-1.18732e-11
-1.19781e-11
-1.15002e-11
-1.35785e-11
-1.10016e-11
-1.52733e-11
-1.03889e-11
-1.70267e-11
-9.62235e-12
-1.87954e-11
-8.72056e-12
-2.05496e-11
-7.64042e-12
-2.24298e-11
-6.40734e-12
-2.43547e-11
-4.97296e-12
-2.63796e-11
-3.29603e-12
-2.84505e-11
-1.41637e-12
-3.03385e-11
6.19802e-13
-3.17087e-11
2.74988e-12
-3.21791e-11
4.86814e-12
-3.0423e-11
6.70788e-12
-2.49535e-11
7.87736e-12
-1.42855e-11
1.6119e-12
7.92292e-12
-6.78321e-12
1.18525e-12
-5.55989e-12
-1.59651e-11
-3.64251e-12
-2.73923e-11
-1.40838e-12
-3.32462e-11
8.51891e-13
-3.50228e-11
2.9757e-12
-3.4469e-11
4.88795e-12
-3.28201e-11
6.57952e-12
-3.07572e-11
8.06228e-12
-2.85826e-11
9.33812e-12
-2.63905e-11
1.04185e-11
-2.42249e-11
1.13284e-11
-2.21266e-11
1.20858e-11
-2.01122e-11
1.26962e-11
-1.81713e-11
1.31677e-11
-1.63047e-11
1.35124e-11
-1.45191e-11
1.37386e-11
-1.28065e-11
1.38595e-11
-1.11828e-11
1.38836e-11
-9.6423e-12
1.38277e-11
-8.18663e-12
1.37039e-11
-6.82239e-12
1.35243e-11
-5.54403e-12
1.32958e-11
-4.35221e-12
1.30266e-11
-3.24545e-12
1.27209e-11
-2.22633e-12
1.23857e-11
-1.28702e-12
1.20314e-11
-4.30084e-13
1.16548e-11
3.74104e-13
1.12546e-11
1.12594e-12
1.08312e-11
1.82747e-12
1.03879e-11
2.47825e-12
9.92552e-12
3.08414e-12
9.44849e-12
3.64939e-12
8.96127e-12
4.17523e-12
8.46547e-12
4.65923e-12
7.96336e-12
5.09824e-12
7.45471e-12
5.49725e-12
6.93857e-12
5.86414e-12
6.41392e-12
6.20154e-12
5.88139e-12
6.51119e-12
5.34235e-12
6.79401e-12
4.79719e-12
7.05034e-12
4.24525e-12
7.2813e-12
3.68628e-12
7.48576e-12
3.12216e-12
7.66182e-12
2.55502e-12
7.8089e-12
1.98474e-12
7.92586e-12
1.41224e-12
8.01199e-12
8.39437e-13
8.06878e-12
2.67514e-13
8.09883e-12
-3.03703e-13
8.10452e-12
-8.75258e-13
8.08713e-12
-1.44697e-12
8.04546e-12
-2.01797e-12
7.97647e-12
-2.58714e-12
7.8766e-12
-3.15127e-12
7.74653e-12
-3.71006e-12
7.58954e-12
-4.2649e-12
7.40776e-12
-4.81509e-12
7.1984e-12
-5.3577e-12
6.95577e-12
-5.89108e-12
6.67927e-12
-6.41845e-12
6.37606e-12
-6.94107e-12
6.05147e-12
-7.45806e-12
5.70134e-12
-7.96852e-12
5.32061e-12
-8.47372e-12
4.90854e-12
-8.97538e-12
4.46619e-12
-9.46376e-12
3.98694e-12
-9.93356e-12
3.4535e-12
-1.0391e-11
2.86173e-12
-1.08374e-11
2.2233e-12
-1.12676e-11
1.53571e-12
-1.16761e-11
7.85488e-13
-1.20631e-11
-2.81491e-14
-1.2425e-11
-8.98915e-13
-1.27513e-11
-1.83912e-12
-1.30341e-11
-2.86166e-12
-1.32716e-11
-3.95905e-12
-1.34555e-11
-5.12114e-12
-1.35864e-11
-6.35028e-12
-1.36513e-11
-7.66918e-12
-1.36407e-11
-9.08164e-12
-1.3551e-11
-1.05733e-11
-1.33687e-11
-1.21607e-11
-1.3072e-11
-1.38754e-11
-1.26456e-11
-1.57e-11
-1.2116e-11
-1.75569e-11
-1.14337e-11
-1.94785e-11
-1.05742e-11
-2.14101e-11
-9.57647e-12
-2.34284e-11
-8.34541e-12
-2.55863e-11
-6.88329e-12
-2.78419e-11
-5.26575e-12
-3.00681e-11
-3.45842e-12
-3.21462e-11
-1.34401e-12
-3.38238e-11
9.19336e-13
-3.44432e-11
3.12899e-12
-3.26331e-11
4.99151e-12
-2.68161e-11
6.15527e-12
-1.54493e-11
1.53551e-12
6.23131e-12
-4.65955e-12
1.11808e-12
-3.439e-12
-1.7186e-11
-1.47857e-12
-2.9353e-11
7.9579e-13
-3.55208e-11
3.08033e-12
-3.73076e-11
5.20522e-12
-3.65942e-11
7.11e-12
-3.47252e-11
8.78649e-12
-3.2434e-11
1.02302e-11
-3.00266e-11
1.14548e-11
-2.76155e-11
1.24876e-11
-2.5258e-11
1.33446e-11
-2.29839e-11
1.40327e-11
-2.08006e-11
1.45609e-11
-1.86998e-11
1.49472e-11
-1.66913e-11
1.52017e-11
-1.47739e-11
1.53359e-11
-1.2941e-11
1.53621e-11
-1.12093e-11
1.52953e-11
-9.57579e-12
1.51539e-11
-8.04558e-12
1.49463e-11
-6.61522e-12
1.46836e-11
-5.28179e-12
1.43712e-11
-4.04035e-12
1.40248e-11
-2.89955e-12
1.365e-11
-1.85221e-12
1.32566e-11
-8.94183e-13
1.28377e-11
-1.19365e-14
1.23971e-11
8.14067e-13
1.1933e-11
1.58938e-12
1.14499e-11
2.30995e-12
1.09529e-11
2.97456e-12
1.04444e-11
3.592e-12
9.92665e-12
4.16644e-12
9.40259e-12
4.69856e-12
8.87463e-12
5.1864e-12
8.34239e-12
5.62967e-12
7.80413e-12
6.03469e-12
7.25963e-12
6.40784e-12
6.7089e-12
6.75153e-12
6.15236e-12
7.06704e-12
5.59056e-12
7.35518e-12
5.02204e-12
7.61826e-12
4.44615e-12
7.85659e-12
3.86397e-12
8.06732e-12
3.27702e-12
8.24812e-12
2.68611e-12
8.39912e-12
2.0909e-12
8.52038e-12
1.491e-12
8.61123e-12
8.87372e-13
8.67178e-12
2.81754e-13
8.70387e-12
-3.24157e-13
8.7099e-12
-9.28742e-13
8.6912e-12
-1.53008e-12
8.64626e-12
-2.1271e-12
8.57289e-12
-2.71975e-12
8.46858e-12
-3.30782e-12
8.33386e-12
-3.89102e-12
8.17194e-12
-4.4683e-12
7.98423e-12
-5.03859e-12
7.7679e-12
-5.60244e-12
7.51892e-12
-6.16208e-12
7.23832e-12
-6.71836e-12
6.93187e-12
-7.26888e-12
6.60165e-12
-7.81257e-12
6.24475e-12
-8.35064e-12
5.85841e-12
-8.88416e-12
5.44172e-12
-9.41148e-12
4.99307e-12
-9.92905e-12
4.50393e-12
-1.04377e-11
3.96141e-12
-1.09415e-11
3.36475e-12
-1.14386e-11
2.71968e-12
-1.19226e-11
2.01889e-12
-1.23914e-11
1.25369e-12
-1.28469e-11
4.26758e-13
-1.32807e-11
-4.6561e-13
-1.36817e-11
-1.4386e-12
-1.40452e-11
-2.49876e-12
-1.43638e-11
-3.64108e-12
-1.46301e-11
-4.85549e-12
-1.48576e-11
-6.12324e-12
-1.50293e-11
-7.49791e-12
-1.51172e-11
-8.99394e-12
-1.51028e-11
-1.05879e-11
-1.49907e-11
-1.22729e-11
-1.47736e-11
-1.40928e-11
-1.44488e-11
-1.60256e-11
-1.39807e-11
-1.8026e-11
-1.33875e-11
-2.00728e-11
-1.26046e-11
-2.21939e-11
-1.16064e-11
-2.44271e-11
-1.04349e-11
-2.6758e-11
-9.06715e-12
-2.92099e-11
-7.45866e-12
-3.16771e-11
-5.63383e-12
-3.39718e-11
-3.5703e-12
-3.58882e-11
-1.30989e-12
-3.6704e-11
9.62172e-13
-3.49053e-11
2.9013e-12
-2.87553e-11
4.03232e-12
-1.65809e-11
1.53633e-12
4.0308e-12
-2.21774e-12
1.02409e-12
-9.94168e-13
-1.84098e-11
1.01168e-12
-3.13591e-11
3.30914e-12
-3.78185e-11
5.59341e-12
-3.95921e-11
7.70914e-12
-3.87102e-11
9.59658e-12
-3.66129e-11
1.12338e-11
-3.40715e-11
1.26267e-11
-3.14199e-11
1.38006e-11
-2.87898e-11
1.47742e-11
-2.6232e-11
1.55561e-11
-2.37662e-11
1.61538e-11
-2.13987e-11
1.65835e-11
-1.91298e-11
1.68662e-11
-1.69744e-11
1.70117e-11
-1.49198e-11
1.70379e-11
-1.29675e-11
1.69581e-11
-1.11299e-11
1.67902e-11
-9.40846e-12
1.65497e-11
-7.80561e-12
1.62472e-11
-6.3133e-12
1.58931e-11
-4.92841e-12
1.55015e-11
-3.64951e-12
1.50824e-11
-2.48131e-12
1.46405e-11
-1.41111e-12
1.41765e-11
-4.31032e-13
1.36861e-11
4.77659e-13
1.31709e-11
1.32852e-12
1.2638e-11
2.12151e-12
1.20941e-11
2.85312e-12
1.15412e-11
3.52676e-12
1.09828e-11
4.14958e-12
1.0421e-11
4.72742e-12
9.85729e-12
5.26142e-12
9.29321e-12
5.74956e-12
8.72774e-12
6.19419e-12
8.15976e-12
6.60174e-12
7.58924e-12
6.97747e-12
7.01544e-12
7.32452e-12
6.43694e-12
7.64481e-12
5.85149e-12
7.93996e-12
5.2574e-12
8.21171e-12
4.65511e-12
8.45823e-12
4.04623e-12
8.67555e-12
3.43184e-12
8.8618e-12
2.81235e-12
9.01788e-12
2.18745e-12
9.14452e-12
1.55692e-12
9.24101e-12
9.21623e-13
9.30633e-12
2.83655e-13
9.34109e-12
-3.54434e-13
9.34723e-12
-9.89333e-13
9.32531e-12
-1.6169e-12
9.27299e-12
-2.23601e-12
9.19112e-12
-2.84917e-12
9.08079e-12
-3.45802e-12
8.94174e-12
-4.06227e-12
8.77522e-12
-4.66112e-12
8.58213e-12
-5.25518e-12
8.36108e-12
-5.84635e-12
8.10929e-12
-6.43513e-12
7.82639e-12
-7.01906e-12
7.51516e-12
-7.59539e-12
7.1774e-12
-8.16314e-12
6.81196e-12
-8.72236e-12
6.41706e-12
-9.2737e-12
5.99243e-12
-9.81981e-12
5.53846e-12
-1.03656e-11
5.04888e-12
-1.09152e-11
4.51011e-12
-1.14681e-11
3.91677e-12
-1.20209e-11
3.27155e-12
-1.25722e-11
2.56932e-12
-1.31193e-11
1.79995e-12
-1.36551e-11
9.61769e-13
-1.41729e-11
5.13118e-14
-1.46673e-11
-9.44985e-13
-1.51293e-11
-2.03747e-12
-1.5549e-11
-3.22213e-12
-1.59231e-11
-4.48189e-12
-1.62442e-11
-5.80243e-12
-1.65088e-11
-7.23348e-12
-1.67028e-11
-8.80011e-12
-1.67925e-11
-1.04983e-11
-1.6783e-11
-1.22829e-11
-1.66509e-11
-1.42257e-11
-1.63989e-11
-1.62786e-11
-1.59983e-11
-1.84278e-11
-1.54646e-11
-2.06073e-11
-1.47433e-11
-2.29157e-11
-1.38561e-11
-2.53145e-11
-1.27397e-11
-2.78747e-11
-1.142e-11
-3.053e-11
-9.84546e-12
-3.32524e-11
-8.01568e-12
-3.58024e-11
-5.99515e-12
-3.79092e-11
-3.82687e-12
-3.88725e-11
-1.6436e-12
-3.70887e-11
2.00015e-13
-3.05995e-11
1.2151e-12
-1.75968e-11
1.6343e-12
1.11654e-12
6.84042e-13
9.64377e-13
1.91718e-12
-1.96432e-11
3.90055e-12
-3.33427e-11
6.1841e-12
-4.01022e-11
8.45184e-12
-4.186e-11
1.05429e-11
-4.08014e-11
1.23911e-11
-3.84615e-11
1.3975e-11
-3.56557e-11
1.53077e-11
-3.2753e-11
1.64112e-11
-2.98936e-11
1.72941e-11
-2.71153e-11
1.79671e-11
-2.44397e-11
1.84455e-11
-2.18777e-11
1.87552e-11
-1.944e-11
1.89138e-11
-1.71335e-11
1.89362e-11
-1.49427e-11
1.88431e-11
-1.2875e-11
1.86491e-11
-1.09365e-11
1.83736e-11
-9.13365e-12
1.80291e-11
-7.462e-12
1.7632e-11
-5.91709e-12
1.7188e-11
-4.48535e-12
1.67105e-11
-3.17295e-12
1.62036e-11
-1.97547e-12
1.56759e-11
-8.84486e-13
1.51238e-11
1.20074e-13
1.45487e-11
1.05174e-12
1.39554e-11
1.92088e-12
1.33525e-11
2.72349e-12
1.27468e-11
3.45795e-12
1.21391e-11
4.13343e-12
1.15312e-11
4.75658e-12
1.09245e-11
5.333e-12
1.03208e-11
5.86392e-12
9.72114e-12
6.34805e-12
9.12406e-12
6.79004e-12
8.52825e-12
7.19634e-12
7.93238e-12
7.57218e-12
7.33454e-12
7.92127e-12
6.73212e-12
8.2462e-12
6.12177e-12
8.54932e-12
5.50193e-12
8.83058e-12
4.87306e-12
9.08612e-12
4.23579e-12
9.31181e-12
3.59108e-12
9.50549e-12
2.93998e-12
9.66791e-12
2.28267e-12
9.80076e-12
1.61966e-12
9.90292e-12
9.52447e-13
9.97242e-12
2.83313e-13
1.00091e-11
-3.84226e-13
1.00136e-11
-1.04677e-12
9.9866e-12
-1.70311e-12
9.92803e-12
-2.35293e-12
9.83962e-12
-2.99604e-12
9.72259e-12
-3.6313e-12
9.57573e-12
-4.25931e-12
9.40199e-12
-4.8825e-12
9.20413e-12
-5.50204e-12
8.97946e-12
-6.11734e-12
8.72345e-12
-6.72788e-12
8.43581e-12
-7.33345e-12
8.11963e-12
-7.93248e-12
7.77532e-12
-8.52352e-12
7.40188e-12
-9.10851e-12
7.00094e-12
-9.69311e-12
6.57591e-12
-1.02808e-11
6.12502e-12
-1.08698e-11
5.63683e-12
-1.14614e-11
5.10056e-12
-1.2063e-11
4.51735e-12
-1.26755e-11
3.88306e-12
-1.32908e-11
3.18356e-12
-1.39045e-11
2.41264e-12
-1.45152e-11
1.57147e-12
-1.51146e-11
6.4974e-13
-1.56941e-11
-3.66483e-13
-1.62523e-11
-1.48009e-12
-1.67805e-11
-2.69458e-12
-1.72614e-11
-4.0014e-12
-1.76836e-11
-5.38055e-12
-1.80506e-11
-6.86661e-12
-1.83611e-11
-8.48987e-12
-1.8608e-11
-1.02519e-11
-1.87353e-11
-1.21563e-11
-1.87262e-11
-1.42356e-11
-1.85669e-11
-1.64389e-11
-1.82778e-11
-1.87175e-11
-1.78391e-11
-2.10463e-11
-1.72477e-11
-2.35071e-11
-1.64682e-11
-2.60941e-11
-1.54099e-11
-2.89334e-11
-1.40649e-11
-3.18757e-11
-1.2535e-11
-3.4783e-11
-1.08089e-11
-3.75289e-11
-8.90546e-12
-3.98126e-11
-6.87272e-12
-4.09052e-11
-4.77074e-12
-3.91911e-11
-2.98969e-12
-3.23813e-11
-2.04936e-12
-1.85378e-11
1.76141e-12
-2.1767e-12
4.03151e-12
9.73373e-13
5.2461e-12
-2.08579e-11
7.17665e-12
-3.52733e-11
9.41315e-12
-4.23388e-11
1.16361e-11
-4.40831e-11
1.36765e-11
-4.2842e-11
1.54573e-11
-4.02425e-11
1.6966e-11
-3.71648e-11
1.82172e-11
-3.40045e-11
1.92188e-11
-3.08957e-11
1.99803e-11
-2.78774e-11
2.05255e-11
-2.49855e-11
2.08764e-11
-2.22291e-11
2.10554e-11
-1.96197e-11
2.10781e-11
-1.71569e-11
2.09661e-11
-1.48316e-11
2.07428e-11
-1.26525e-11
2.04236e-11
-1.06182e-11
2.00262e-11
-8.73718e-12
1.95656e-11
-7.00234e-12
1.90529e-11
-5.40551e-12
1.85037e-11
-3.93721e-12
1.79274e-11
-2.59788e-12
1.73264e-11
-1.37566e-12
1.67032e-11
-2.62467e-13
1.60591e-11
7.62976e-13
1.53977e-11
1.712e-12
1.47296e-11
2.5878e-12
1.40601e-11
3.39183e-12
1.3392e-11
4.12488e-12
1.27289e-11
4.79533e-12
1.20707e-11
5.41345e-12
1.14207e-11
5.98162e-12
1.07822e-11
6.50095e-12
1.01541e-11
6.97461e-12
9.53292e-12
7.40967e-12
8.91454e-12
7.81318e-12
8.29524e-12
8.18997e-12
7.67211e-12
8.54294e-12
7.04234e-12
8.87452e-12
6.40448e-12
9.18575e-12
5.75811e-12
9.47552e-12
5.10169e-12
9.74109e-12
4.43443e-12
9.97762e-12
3.75698e-12
1.01815e-11
3.07103e-12
1.03524e-11
2.37853e-12
1.04918e-11
1.6816e-12
1.05984e-11
9.83226e-13
1.06693e-11
2.86679e-13
1.07041e-11
-4.06602e-13
1.07053e-11
-1.09844e-12
1.06768e-11
-1.79013e-12
1.06181e-11
-2.47855e-12
1.05265e-11
-3.15962e-12
1.04021e-11
-3.83225e-12
1.02469e-11
-4.49744e-12
1.00658e-11
-5.1567e-12
9.86202e-12
-5.80991e-12
9.63128e-12
-6.45623e-12
9.36833e-12
-7.09788e-12
9.07594e-12
-7.73835e-12
8.75854e-12
-8.37829e-12
8.41365e-12
-9.01615e-12
8.03814e-12
-9.65322e-12
7.63647e-12
-1.02925e-11
7.21378e-12
-1.09329e-11
6.76409e-12
-1.15711e-11
6.27384e-12
-1.2212e-11
5.74037e-12
-1.28647e-11
5.16901e-12
-1.3529e-11
4.54644e-12
-1.41979e-11
3.85143e-12
-1.48713e-11
3.08503e-12
-1.55507e-11
2.24982e-12
-1.62245e-11
1.32253e-12
-1.68841e-11
2.92203e-13
-1.75313e-11
-8.33598e-13
-1.81609e-11
-2.06557e-12
-1.87586e-11
-3.40405e-12
-1.92938e-11
-4.84577e-12
-1.97661e-11
-6.39471e-12
-2.02047e-11
-8.05184e-12
-2.0565e-11
-9.8925e-12
-2.08154e-11
-1.19068e-11
-2.09292e-11
-1.41225e-11
-2.09496e-11
-1.64189e-11
-2.08228e-11
-1.88444e-11
-2.05313e-11
-2.13376e-11
-2.00391e-11
-2.39994e-11
-1.93071e-11
-2.68264e-11
-1.8322e-11
-2.9919e-11
-1.7132e-11
-3.30662e-11
-1.57521e-11
-3.61631e-11
-1.40823e-11
-3.91985e-11
-1.21863e-11
-4.17085e-11
-1.01418e-11
-4.295e-11
-8.129e-12
-4.12045e-11
-6.3912e-12
-3.41197e-11
-5.28809e-12
-1.96411e-11
1.73916e-12
-5.2658e-12
7.7481e-12
9.77849e-13
8.89827e-12
-2.20082e-11
1.07881e-11
-3.71632e-11
1.2967e-11
-4.45178e-11
1.51265e-11
-4.62426e-11
1.70886e-11
-4.48043e-11
1.8786e-11
-4.19401e-11
2.02072e-11
-3.85864e-11
2.13514e-11
-3.51491e-11
2.22249e-11
-3.17698e-11
2.28528e-11
-2.85058e-11
2.32609e-11
-2.53943e-11
2.34681e-11
-2.24371e-11
2.34964e-11
-1.96488e-11
2.33654e-11
-1.70267e-11
2.31024e-11
-1.45694e-11
2.27289e-11
-1.22799e-11
2.22663e-11
-1.01565e-11
2.17293e-11
-8.20115e-12
2.11397e-11
-6.41382e-12
2.05115e-11
-4.77843e-12
1.98555e-11
-3.2824e-12
1.91723e-11
-1.91594e-12
1.84667e-11
-6.71307e-13
1.77379e-11
4.65062e-13
1.69957e-11
1.50382e-12
1.62483e-11
2.45809e-12
1.55025e-11
3.3323e-12
1.47631e-11
4.12985e-12
1.40322e-11
4.85435e-12
1.33134e-11
5.5127e-12
1.26106e-11
6.1147e-12
1.19276e-11
6.66303e-12
1.12643e-11
7.16269e-12
1.06146e-11
7.62258e-12
9.97182e-12
8.05078e-12
9.33043e-12
8.45289e-12
8.68656e-12
8.83216e-12
8.0366e-12
9.19122e-12
7.37733e-12
9.53208e-12
6.70774e-12
9.85361e-12
6.02848e-12
1.0153e-11
5.33965e-12
1.04282e-11
4.64137e-12
1.06742e-11
3.9343e-12
1.08869e-11
3.2192e-12
1.10659e-11
2.49805e-12
1.12114e-11
1.77363e-12
1.13212e-11
1.04749e-12
1.13938e-11
3.19462e-13
1.14305e-11
-4.11076e-13
1.14341e-11
-1.14247e-12
1.14066e-11
-1.87248e-12
1.13465e-11
-2.59955e-12
1.1252e-11
-3.32124e-12
1.11224e-11
-4.03654e-12
1.09608e-11
-4.74219e-12
1.07701e-11
-5.43563e-12
1.05541e-11
-6.11825e-12
1.03124e-11
-6.79467e-12
1.00432e-11
-7.46967e-12
9.74924e-12
-8.1446e-12
9.43168e-12
-8.81991e-12
9.08714e-12
-9.4982e-12
8.71465e-12
-1.01809e-11
8.31755e-12
-1.0864e-11
7.89535e-12
-1.15448e-11
7.44356e-12
-1.22295e-11
6.95745e-12
-1.29253e-11
6.43525e-12
-1.36306e-11
5.87341e-12
-1.43432e-11
5.25824e-12
-1.50692e-11
4.57652e-12
-1.5811e-11
3.82598e-12
-1.65594e-11
2.99726e-12
-1.73103e-11
2.07262e-12
-1.80672e-11
1.04831e-12
-1.88199e-11
-8.15691e-14
-1.95604e-11
-1.32569e-12
-2.02776e-11
-2.68744e-12
-2.0948e-11
-4.17604e-12
-2.15699e-11
-5.77367e-12
-2.21267e-11
-7.49606e-12
-2.26022e-11
-9.41786e-12
-2.29817e-11
-1.1528e-11
-2.32904e-11
-1.38142e-11
-2.34673e-11
-1.62421e-11
-2.34938e-11
-1.88177e-11
-2.33218e-11
-2.15096e-11
-2.29281e-11
-2.43934e-11
-2.22752e-11
-2.74799e-11
-2.14618e-11
-3.07328e-11
-2.04497e-11
-3.40785e-11
-1.91277e-11
-3.74848e-11
-1.75004e-11
-4.08256e-11
-1.5611e-11
-4.3598e-11
-1.35835e-11
-4.4978e-11
-1.15651e-11
-4.32234e-11
-9.73682e-12
-3.59481e-11
-8.59953e-12
-2.07783e-11
1.76136e-12
-8.62173e-12
1.18314e-11
9.8649e-13
1.2934e-11
-2.31109e-11
1.47669e-11
-3.89962e-11
1.68814e-11
-4.66325e-11
1.89625e-11
-4.83239e-11
2.08371e-11
-4.6679e-11
2.24391e-11
-4.35423e-11
2.37448e-11
-3.98924e-11
2.47521e-11
-3.61568e-11
2.54782e-11
-3.24963e-11
2.59547e-11
-2.89829e-11
2.62003e-11
-2.56404e-11
2.62388e-11
-2.24763e-11
2.60961e-11
-1.95068e-11
2.57973e-11
-1.67287e-11
2.53741e-11
-1.4147e-11
2.48447e-11
-1.17514e-11
2.42357e-11
-9.54843e-12
2.35643e-11
-7.53068e-12
2.28437e-11
-5.69418e-12
2.20844e-11
-4.02025e-12
2.12948e-11
-2.494e-12
2.04793e-11
-1.10165e-12
1.96409e-11
1.6579e-13
1.87923e-11
1.31235e-12
1.79431e-11
2.35159e-12
1.7104e-11
3.29583e-12
1.6279e-11
4.15588e-12
1.54712e-11
4.93623e-12
1.46847e-11
5.63928e-12
1.39246e-11
6.27137e-12
1.31932e-11
6.84451e-12
1.24867e-11
7.36803e-12
1.17984e-11
7.84943e-12
1.11227e-11
8.2968e-12
1.04525e-11
8.71949e-12
9.78146e-12
9.12245e-12
9.10536e-12
9.50673e-12
8.42092e-12
9.87408e-12
7.72583e-12
1.02255e-11
7.0201e-12
1.05577e-11
6.30505e-12
1.08664e-11
5.58353e-12
1.1148e-11
4.85703e-12
1.13991e-11
4.12458e-12
1.16178e-11
3.38499e-12
1.1804e-11
2.63914e-12
1.19558e-11
1.88814e-12
1.20708e-11
1.1324e-12
1.21482e-11
3.71687e-13
1.21897e-11
-3.93157e-13
1.21975e-11
-1.16101e-12
1.2173e-11
-1.93167e-12
1.21158e-11
-2.70394e-12
1.2023e-11
-3.47457e-12
1.18918e-11
-4.23749e-12
1.17226e-11
-4.9875e-12
1.15189e-11
-5.71955e-12
1.12848e-11
-6.43293e-12
1.10244e-11
-7.13398e-12
1.07427e-11
-7.82991e-12
1.04435e-11
-8.52584e-12
1.01259e-11
-9.22636e-12
9.78591e-12
-9.93503e-12
9.42165e-12
-1.06526e-11
9.03354e-12
-1.13784e-11
8.61986e-12
-1.21117e-11
8.1757e-12
-1.28528e-11
7.6975e-12
-1.36039e-11
7.18553e-12
-1.43652e-11
6.6339e-12
-1.51374e-11
6.02969e-12
-1.59256e-11
5.36394e-12
-1.67297e-11
4.62933e-12
-1.75452e-11
3.81204e-12
-1.8373e-11
2.89972e-12
-1.92111e-11
1.88577e-12
-2.00558e-11
7.62357e-13
-2.09019e-11
-4.80354e-13
-2.17402e-11
-1.8501e-12
-2.25481e-11
-3.36923e-12
-2.33115e-11
-5.01145e-12
-2.40114e-11
-6.79722e-12
-2.46503e-11
-8.77979e-12
-2.52092e-11
-1.09696e-11
-2.56528e-11
-1.33708e-11
-2.59752e-11
-1.59197e-11
-2.61298e-11
-1.86632e-11
-2.60973e-11
-2.15426e-11
-2.58863e-11
-2.4605e-11
-2.54817e-11
-2.78849e-11
-2.48039e-11
-3.14107e-11
-2.38326e-11
-3.50496e-11
-2.26037e-11
-3.87135e-11
-2.10731e-11
-4.23563e-11
-1.92821e-11
-4.53895e-11
-1.72995e-11
-4.69611e-11
-1.52686e-11
-4.52543e-11
-1.35485e-11
-3.7668e-11
-1.24213e-11
-2.19054e-11
1.83692e-12
-1.2497e-11
1.63036e-11
1.06756e-12
1.7364e-11
-2.41715e-11
1.91196e-11
-4.0752e-11
2.11561e-11
-4.86692e-11
2.31491e-11
-5.03171e-11
2.49289e-11
-4.84591e-11
2.64167e-11
-4.50305e-11
2.75833e-11
-4.10593e-11
2.84347e-11
-3.70086e-11
2.89979e-11
-3.30599e-11
2.9298e-11
-2.92834e-11
2.93559e-11
-2.56988e-11
2.92049e-11
-2.23259e-11
2.88729e-11
-1.91754e-11
2.83948e-11
-1.62512e-11
2.77935e-11
-1.35464e-11
2.70971e-11
-1.10557e-11
2.63215e-11
-8.77355e-12
2.54864e-11
-6.69634e-12
2.46031e-11
-4.8118e-12
2.36834e-11
-3.10156e-12
2.2735e-11
-1.54662e-12
2.17687e-11
-1.3653e-13
2.07955e-11
1.13774e-12
1.98291e-11
2.27748e-12
1.88759e-11
3.30343e-12
1.79445e-11
4.22596e-12
1.70402e-11
5.0588e-12
1.61656e-11
5.80941e-12
1.53275e-11
6.47598e-12
1.45274e-11
7.07014e-12
1.37609e-11
7.60981e-12
1.30209e-11
8.10681e-12
1.23e-11
8.56921e-12
1.15901e-11
9.00557e-12
1.08821e-11
9.42647e-12
1.01737e-11
9.82971e-12
9.46555e-12
1.02138e-11
8.75514e-12
1.05833e-11
8.03846e-12
1.09409e-11
7.31233e-12
1.12824e-11
6.57579e-12
1.16016e-11
5.82915e-12
1.18934e-11
5.07369e-12
1.21533e-11
4.31075e-12
1.23796e-11
3.53985e-12
1.25738e-11
2.76028e-12
1.27343e-11
1.97197e-12
1.2858e-11
1.17486e-12
1.29441e-11
3.70576e-13
1.29929e-11
-4.37948e-13
1.30049e-11
-1.24725e-12
1.29812e-11
-2.05351e-12
1.2921e-11
-2.85218e-12
1.28207e-11
-3.63943e-12
1.26781e-11
-4.41399e-12
1.24961e-11
-5.1762e-12
1.228e-11
-5.92598e-12
1.20334e-11
-6.66274e-12
1.17598e-11
-7.38748e-12
1.1466e-11
-8.1051e-12
1.11596e-11
-8.82199e-12
1.08412e-11
-9.54182e-12
1.05043e-11
-1.0266e-11
1.01445e-11
-1.0998e-11
9.76423e-12
-1.17426e-11
9.36324e-12
-1.25019e-11
8.93397e-12
-1.32768e-11
8.47139e-12
-1.40699e-11
7.97781e-12
-1.48868e-11
7.44994e-12
-1.57301e-11
6.87231e-12
-1.65988e-11
6.23195e-12
-1.74937e-11
5.52361e-12
-1.84163e-11
4.734e-12
-1.93601e-11
3.84295e-12
-2.03163e-11
2.84124e-12
-2.12811e-11
1.72632e-12
-2.22471e-11
4.84651e-13
-2.32064e-11
-8.91884e-13
-2.41593e-11
-2.41755e-12
-2.50842e-11
-4.08764e-12
-2.59559e-11
-5.92637e-12
-2.67548e-11
-7.98137e-12
-2.74777e-11
-1.02469e-11
-2.81054e-11
-1.27433e-11
-2.85927e-11
-1.54327e-11
-2.89722e-11
-1.82842e-11
-2.91506e-11
-2.13648e-11
-2.9145e-11
-2.46111e-11
-2.8891e-11
-2.81389e-11
-2.83567e-11
-3.19449e-11
-2.75501e-11
-3.5856e-11
-2.64608e-11
-3.98029e-11
-2.50933e-11
-4.37243e-11
-2.33931e-11
-4.70903e-11
-2.14395e-11
-4.89148e-11
-1.94249e-11
-4.72686e-11
-1.77169e-11
-3.93758e-11
-1.66892e-11
-2.29332e-11
1.89515e-12
-1.67476e-11
2.10811e-11
1.19517e-12
2.20854e-11
-2.5176e-11
2.37856e-11
-4.24525e-11
2.57493e-11
-5.06332e-11
2.76601e-11
-5.22283e-11
2.93405e-11
-5.01399e-11
3.06957e-11
-4.6386e-11
3.17082e-11
-4.20722e-11
3.23934e-11
-3.76942e-11
3.27725e-11
-3.34395e-11
3.28682e-11
-2.93796e-11
3.2712e-11
-2.5543e-11
3.23423e-11
-2.19567e-11
3.17942e-11
-1.86278e-11
3.11015e-11
-1.5559e-11
3.02898e-11
-1.27352e-11
2.93857e-11
-1.01522e-11
2.84107e-11
-7.79911e-12
2.73853e-11
-5.67166e-12
2.63208e-11
-3.74808e-12
2.52289e-11
-2.01046e-12
2.41211e-11
-4.39758e-13
2.30114e-11
9.72216e-13
2.19131e-11
2.235e-12
2.08319e-11
3.35756e-12
1.97746e-11
4.3596e-12
1.87457e-11
5.25366e-12
1.77555e-11
6.04787e-12
1.68126e-11
6.75116e-12
1.59177e-11
7.36981e-12
1.50665e-11
7.92027e-12
1.42554e-11
8.42001e-12
1.34782e-11
8.88318e-12
1.27246e-11
9.32204e-12
1.19839e-11
9.74559e-12
1.12505e-11
1.01592e-11
1.05239e-11
1.05556e-11
9.80072e-12
1.09362e-11
9.07567e-12
1.13074e-11
8.34422e-12
1.16714e-11
7.60229e-12
1.20234e-11
6.84758e-12
1.23553e-11
6.07854e-12
1.26614e-11
5.29427e-12
1.29366e-11
4.49461e-12
1.31783e-11
3.68154e-12
1.33859e-11
2.85767e-12
1.35572e-11
2.02557e-12
1.36892e-11
1.18778e-12
1.37809e-11
3.46036e-13
1.38336e-11
-4.98152e-13
1.38481e-11
-1.34084e-12
1.38229e-11
-2.17623e-12
1.37554e-11
-2.99983e-12
1.36433e-11
-3.80996e-12
1.34872e-11
-4.60661e-12
1.32917e-11
-5.39013e-12
1.30624e-11
-6.15996e-12
1.28021e-11
-6.91546e-12
1.25141e-11
-7.65904e-12
1.22083e-11
-8.39472e-12
1.18941e-11
-9.12571e-12
1.15711e-11
-9.85634e-12
1.12338e-11
-1.05928e-11
1.08799e-11
-1.13402e-11
1.05106e-11
-1.21024e-11
1.01244e-11
-1.28842e-11
9.71477e-12
-1.3692e-11
9.27823e-12
-1.4531e-11
8.81595e-12
-1.54039e-11
8.32207e-12
-1.63137e-11
7.78142e-12
-1.72616e-11
7.17924e-12
-1.8247e-11
6.50845e-12
-1.92648e-11
5.75129e-12
-2.03133e-11
4.89098e-12
-2.13933e-11
3.92059e-12
-2.24945e-11
2.82675e-12
-2.36065e-11
1.5957e-12
-2.47184e-11
2.19022e-13
-2.58257e-11
-1.31107e-12
-2.69179e-11
-2.99607e-12
-2.79664e-11
-4.87831e-12
-2.89638e-11
-6.9841e-12
-2.98724e-11
-9.33855e-12
-3.07317e-11
-1.18842e-11
-3.14614e-11
-1.47036e-11
-3.20394e-11
-1.77069e-11
-3.24411e-11
-2.09636e-11
-3.2623e-11
-2.44294e-11
-3.25272e-11
-2.82344e-11
-3.22157e-11
-3.22562e-11
-3.16387e-11
-3.64332e-11
-3.07052e-11
-4.0737e-11
-2.94146e-11
-4.50155e-11
-2.77822e-11
-4.87227e-11
-2.59338e-11
-5.0763e-11
-2.40342e-11
-4.9168e-11
-2.23488e-11
-4.10614e-11
-2.13738e-11
-2.39085e-11
2.08003e-12
-2.15587e-11
2.61238e-11
1.31354e-12
2.70995e-11
-2.61519e-11
2.87735e-11
-4.41268e-11
3.06903e-11
-5.25504e-11
3.25319e-11
-5.40702e-11
3.41013e-11
-5.17098e-11
3.53125e-11
-4.75977e-11
3.61619e-11
-4.2922e-11
3.66558e-11
-3.81885e-11
3.6814e-11
-3.35981e-11
3.66674e-11
-2.92334e-11
3.62654e-11
-2.51414e-11
3.56479e-11
-2.13397e-11
3.48534e-11
-1.78336e-11
3.39126e-11
-1.46187e-11
3.28637e-11
-1.16867e-11
3.17321e-11
-9.02108e-12
3.05437e-11
-6.61126e-12
2.93112e-11
-4.43976e-12
2.80501e-11
-2.48762e-12
2.67763e-11
-7.37311e-13
2.55043e-11
8.31518e-13
2.42464e-11
2.22935e-12
2.3012e-11
3.46857e-12
2.18055e-11
4.56323e-12
2.06359e-11
5.52833e-12
1.95141e-11
6.37449e-12
1.84501e-11
7.11091e-12
1.74459e-11
7.75454e-12
1.64931e-11
8.32167e-12
1.55876e-11
8.82498e-12
1.47272e-11
9.27972e-12
1.39088e-11
9.70099e-12
1.31261e-11
1.01042e-11
1.23708e-11
1.05004e-11
1.1633e-11
1.08965e-11
1.08998e-11
1.12881e-11
1.01647e-11
1.16707e-11
9.42341e-12
1.2048e-11
8.67192e-12
1.2422e-11
7.90767e-12
1.27867e-11
7.1292e-12
1.31328e-11
6.33283e-12
1.34568e-11
5.51648e-12
1.3752e-11
4.68111e-12
1.40127e-11
3.83038e-12
1.42356e-11
2.96862e-12
1.44179e-11
2.0993e-12
1.45574e-11
1.22419e-12
1.4655e-11
3.44562e-13
1.47122e-11
-5.36689e-13
1.47283e-11
-1.41452e-12
1.46997e-11
-2.28417e-12
1.4624e-11
-3.14244e-12
1.45005e-11
-3.98759e-12
1.43312e-11
-4.81724e-12
1.41202e-11
-5.62841e-12
1.38724e-11
-6.42097e-12
1.35935e-11
-7.19689e-12
1.3289e-11
-7.95718e-12
1.29677e-11
-8.70229e-12
1.26384e-11
-9.43777e-12
1.23058e-11
-1.01737e-11
1.1969e-11
-1.09189e-11
1.16244e-11
-1.16785e-11
1.12694e-11
-1.24589e-11
1.0904e-11
-1.32697e-11
1.05247e-11
-1.41173e-11
1.0125e-11
-1.5002e-11
9.69987e-12
-1.5926e-11
9.24535e-12
-1.68928e-11
8.74758e-12
-1.79056e-11
8.19157e-12
-1.8966e-11
7.56835e-12
-2.00762e-11
6.86112e-12
-2.12376e-11
6.05184e-12
-2.24432e-11
5.12564e-12
-2.36843e-11
4.06715e-12
-2.49493e-11
2.86009e-12
-2.62262e-11
1.49544e-12
-2.7507e-11
-3.06079e-14
-2.87789e-11
-1.72426e-12
-3.00239e-11
-3.63332e-12
-3.12407e-11
-5.76744e-12
-3.24146e-11
-8.16495e-12
-3.34873e-11
-1.08121e-11
-3.44521e-11
-1.37394e-11
-3.5278e-11
-1.68814e-11
-3.59215e-11
-2.03202e-11
-3.63329e-11
-2.40177e-11
-3.65222e-11
-2.8045e-11
-3.64309e-11
-3.23478e-11
-3.59934e-11
-3.68713e-11
-3.51914e-11
-4.15396e-11
-3.40192e-11
-4.61879e-11
-3.25033e-11
-5.02385e-11
-3.06937e-11
-5.25724e-11
-2.88643e-11
-5.09977e-11
-2.72958e-11
-4.26302e-11
-2.64997e-11
-2.47048e-11
2.33342e-12
-2.6753e-11
3.14948e-11
1.43612e-12
3.24696e-11
-2.71269e-11
3.41346e-11
-4.57922e-11
3.60252e-11
-5.44414e-11
3.78008e-11
-5.58463e-11
3.92564e-11
-5.31658e-11
4.03252e-11
-4.8667e-11
4.09885e-11
-4.35858e-11
4.12514e-11
-3.84518e-11
4.11486e-11
-3.34957e-11
4.0731e-11
-2.88163e-11
4.00516e-11
-2.44624e-11
3.91546e-11
-2.0443e-11
3.8083e-11
-1.67624e-11
3.68755e-11
-1.34116e-11
3.55649e-11
-1.03766e-11
3.41786e-11
-7.63526e-12
3.27422e-11
-5.1753e-12
3.12765e-11
-2.97461e-12
2.98016e-11
-1.01326e-12
2.83329e-11
7.30812e-13
2.68872e-11
2.27657e-12
2.54729e-11
3.64309e-12
2.40983e-11
4.84257e-12
2.2771e-11
5.88986e-12
2.15027e-11
6.79596e-12
2.03009e-11
7.57549e-12
1.91654e-11
8.24564e-12
1.80927e-11
8.82645e-12
1.70783e-11
9.33534e-12
1.61174e-11
9.78512e-12
1.52078e-11
1.01887e-11
1.43462e-11
1.05619e-11
1.35275e-11
1.09223e-11
1.27482e-11
1.12791e-11
1.20015e-11
1.16425e-11
1.12726e-11
1.20164e-11
1.05411e-11
1.24014e-11
9.79363e-12
1.27946e-11
9.02664e-12
1.31881e-11
8.2411e-12
1.35713e-11
7.4362e-12
1.39367e-11
6.61025e-12
1.42817e-11
5.762e-12
1.45991e-11
4.8932e-12
1.48803e-11
4.00736e-12
1.51203e-11
3.10827e-12
1.53158e-11
2.1988e-12
1.54657e-11
1.28016e-12
1.55724e-11
3.56203e-13
1.5635e-11
-5.66529e-13
1.565e-11
-1.48595e-12
1.56181e-11
-2.39921e-12
1.55362e-11
-3.30248e-12
1.54027e-11
-4.19063e-12
1.52183e-11
-5.05909e-12
1.49876e-11
-5.90426e-12
1.47166e-11
-6.72296e-12
1.44113e-11
-7.51633e-12
1.40816e-11
-8.28633e-12
1.37371e-11
-9.03659e-12
1.33882e-11
-9.77462e-12
1.30434e-11
-1.05099e-11
1.27039e-11
-1.12536e-11
1.23676e-11
-1.2017e-11
1.20322e-11
-1.28104e-11
1.16966e-11
-1.36422e-11
1.13558e-11
-1.45197e-11
1.10017e-11
-1.54467e-11
1.06261e-11
-1.64243e-11
1.02222e-11
-1.74581e-11
9.78079e-12
-1.85513e-11
9.28416e-12
-1.97065e-11
8.72303e-12
-2.09186e-11
8.07263e-12
-2.21825e-11
7.31516e-12
-2.35006e-11
6.4432e-12
-2.48665e-11
5.4325e-12
-2.62766e-11
4.26989e-12
-2.77255e-11
2.94426e-12
-2.92052e-11
1.44903e-12
-3.06945e-11
-2.3494e-13
-3.21852e-11
-2.14273e-12
-3.3643e-11
-4.30998e-12
-3.50447e-11
-6.76384e-12
-3.63709e-11
-9.48653e-12
-3.76228e-11
-1.24879e-11
-3.87365e-11
-1.57678e-11
-3.96989e-11
-1.93577e-11
-4.04025e-11
-2.33141e-11
-4.08265e-11
-2.76214e-11
-4.09607e-11
-3.22143e-11
-4.0715e-11
-3.71177e-11
-4.00562e-11
-4.21988e-11
-3.90196e-11
-4.72245e-11
-3.76063e-11
-5.16518e-11
-3.59261e-11
-5.42529e-11
-3.41933e-11
-5.2731e-11
-3.27484e-11
-4.40753e-11
-3.19022e-11
-2.5551e-11
2.52535e-12
-3.2094e-11
3.72174e-11
1.57481e-12
3.82183e-11
-2.81281e-11
3.99052e-11
-4.74794e-11
4.17955e-11
-5.63321e-11
4.35192e-11
-5.75705e-11
4.48718e-11
-5.45187e-11
4.57798e-11
-4.95755e-11
4.62148e-11
-4.40212e-11
4.62061e-11
-3.84435e-11
4.58056e-11
-3.30957e-11
4.50772e-11
-2.80883e-11
4.40777e-11
-2.34633e-11
4.286e-11
-1.92256e-11
4.14691e-11
-1.53719e-11
3.99505e-11
-1.18935e-11
3.83377e-11
-8.76423e-12
3.66664e-11
-5.96443e-12
3.49612e-11
-3.47052e-12
3.32467e-11
-1.26071e-12
3.15435e-11
6.89427e-13
2.98709e-11
2.40283e-12
2.82418e-11
3.9051e-12
2.6667e-11
5.21736e-12
2.51511e-11
6.35795e-12
2.37045e-11
7.33579e-12
2.23333e-11
8.16653e-12
2.1041e-11
8.86708e-12
1.98248e-11
9.46114e-12
1.86791e-11
9.97134e-12
1.76001e-11
1.04135e-11
1.65841e-11
1.08004e-11
1.56284e-11
1.11436e-11
1.47306e-11
1.1459e-11
1.38877e-11
1.17644e-11
1.30942e-11
1.20718e-11
1.23437e-11
1.23921e-11
1.16168e-11
1.27424e-11
1.08912e-11
1.31261e-11
1.0153e-11
1.35318e-11
9.39464e-12
1.39456e-11
8.61091e-12
1.43541e-11
7.7987e-12
1.47479e-11
6.95746e-12
1.51219e-11
6.08755e-12
1.54679e-11
5.19008e-12
1.57766e-11
4.2665e-12
1.60426e-11
3.31839e-12
1.62627e-11
2.34739e-12
1.64355e-11
1.35855e-12
1.65601e-11
3.62147e-13
1.66303e-11
-6.30532e-13
1.66416e-11
-1.61125e-12
1.65977e-11
-2.57634e-12
1.65002e-11
-3.52291e-12
1.63481e-11
-4.44834e-12
1.61426e-11
-5.3511e-12
1.58893e-11
-6.22893e-12
1.55935e-11
-7.08058e-12
1.52622e-11
-7.90579e-12
1.49063e-11
-8.70431e-12
1.45352e-11
-9.47527e-12
1.41587e-11
-1.022e-11
1.37878e-11
-1.09468e-11
1.34303e-11
-1.16718e-11
1.30921e-11
-1.24147e-11
1.27745e-11
-1.31926e-11
1.24738e-11
-1.40196e-11
1.2182e-11
-1.49093e-11
1.18906e-11
-1.58692e-11
1.15851e-11
-1.69019e-11
1.12541e-11
-1.80073e-11
1.08853e-11
-1.91868e-11
1.04628e-11
-2.04354e-11
9.97072e-12
-2.17486e-11
9.38496e-12
-2.31289e-11
8.69469e-12
-2.45756e-11
7.88933e-12
-2.60859e-11
6.94239e-12
-2.76602e-11
5.84396e-12
-2.92958e-11
4.57973e-12
-3.0985e-11
3.13804e-12
-3.2697e-11
1.4768e-12
-3.4416e-11
-4.24205e-13
-3.61249e-11
-2.60185e-12
-3.78061e-11
-5.08333e-12
-3.94478e-11
-7.8453e-12
-4.1023e-11
-1.0913e-11
-4.24575e-11
-1.43333e-11
-4.37008e-11
-1.81145e-11
-4.4711e-11
-2.23044e-11
-4.54456e-11
-2.68876e-11
-4.58244e-11
-3.18363e-11
-4.58302e-11
-3.71123e-11
-4.54356e-11
-4.25934e-11
-4.45897e-11
-4.80705e-11
-4.33184e-11
-5.29234e-11
-4.16971e-11
-5.58746e-11
-3.99747e-11
-5.44537e-11
-3.83729e-11
-4.5677e-11
-3.73513e-11
-2.65724e-11
2.60933e-12
-3.74353e-11
4.3262e-11
1.68766e-12
4.4336e-11
-2.92024e-11
4.60988e-11
-4.92425e-11
4.80298e-11
-5.82635e-11
4.97268e-11
-5.92678e-11
5.09761e-11
-5.57685e-11
5.16866e-11
-5.02864e-11
5.18509e-11
-4.41859e-11
5.15258e-11
-3.81189e-11
5.07821e-11
-3.23523e-11
4.96905e-11
-2.6997e-11
4.83144e-11
-2.20876e-11
4.67185e-11
-1.76301e-11
4.49615e-11
-1.36153e-11
4.30915e-11
-1.00238e-11
4.1147e-11
-6.82019e-12
3.9163e-11
-3.98091e-12
3.71696e-11
-1.47773e-12
3.51922e-11
7.16051e-13
3.32521e-11
2.62895e-12
3.1365e-11
4.28928e-12
2.95437e-11
5.72581e-12
2.7797e-11
6.96342e-12
2.61308e-11
8.02359e-12
2.45497e-11
8.91618e-12
2.30585e-11
9.65709e-12
2.1656e-11
1.02688e-11
2.03389e-11
1.07775e-11
1.9106e-11
1.12034e-11
1.79574e-11
1.15613e-11
1.68939e-11
1.1863e-11
1.5916e-11
1.21207e-11
1.50183e-11
1.23558e-11
1.419e-11
1.25918e-11
1.34152e-11
1.28456e-11
1.26763e-11
1.313e-11
1.19601e-11
1.34576e-11
1.12509e-11
1.38343e-11
1.05329e-11
1.42488e-11
9.79153e-12
1.46861e-11
9.01488e-12
1.51298e-11
8.19803e-12
1.55639e-11
7.3414e-12
1.59775e-11
6.44506e-12
1.63632e-11
5.50799e-12
1.67126e-11
4.53222e-12
1.70173e-11
3.52271e-12
1.7271e-11
2.48649e-12
1.74706e-11
1.43277e-12
1.76128e-11
3.71131e-13
1.76909e-11
-6.87771e-13
1.76994e-11
-1.73251e-12
1.76414e-11
-2.75439e-12
1.7521e-11
-3.74936e-12
1.73419e-11
-4.71632e-12
1.71084e-11
-5.65367e-12
1.68256e-11
-6.56144e-12
1.65003e-11
-7.43871e-12
1.61387e-11
-8.28309e-12
1.575e-11
-9.09187e-12
1.53433e-11
-9.86492e-12
1.49312e-11
-1.0607e-11
1.45292e-11
-1.13265e-11
1.41491e-11
-1.20361e-11
1.38009e-11
-1.27555e-11
1.34931e-11
-1.35107e-11
1.32281e-11
-1.43266e-11
1.2997e-11
-1.52187e-11
1.27817e-11
-1.62007e-11
1.25661e-11
-1.72769e-11
1.23292e-11
-1.84447e-11
1.2052e-11
-1.96996e-11
1.17165e-11
-2.10397e-11
1.13096e-11
-2.24665e-11
1.08107e-11
-2.39765e-11
1.02038e-11
-2.5566e-11
9.47807e-12
-2.72395e-11
8.61541e-12
-2.89948e-11
7.59885e-12
-3.08262e-11
6.41073e-12
-3.27196e-11
5.03096e-12
-3.46553e-11
3.41175e-12
-3.66231e-11
1.54273e-12
-3.86108e-11
-6.14878e-13
-4.06043e-11
-3.09037e-12
-4.25986e-11
-5.85129e-12
-4.45024e-11
-9.00929e-12
-4.6262e-11
-1.2574e-11
-4.78456e-11
-1.65315e-11
-4.92345e-11
-2.09163e-11
-5.03417e-11
-2.57811e-11
-5.1097e-11
-3.10815e-11
-5.14526e-11
-3.67567e-11
-5.13137e-11
-4.27323e-11
-5.06488e-11
-4.87356e-11
-4.95013e-11
-5.40713e-11
-4.79126e-11
-5.74636e-11
-4.60023e-11
-5.6364e-11
-4.42225e-11
-4.74566e-11
-4.31316e-11
-2.76633e-11
2.71667e-12
-4.3239e-11
4.96746e-11
1.72492e-12
5.08823e-11
-3.04103e-11
5.27962e-11
-5.11566e-11
5.48223e-11
-6.02898e-11
5.65203e-11
-6.09662e-11
5.76477e-11
-5.68962e-11
5.81162e-11
-5.07552e-11
5.79642e-11
-4.40343e-11
5.72676e-11
-3.74226e-11
5.61119e-11
-3.1197e-11
5.45839e-11
-2.54692e-11
5.27705e-11
-2.02745e-11
5.07481e-11
-1.56081e-11
4.85807e-11
-1.14482e-11
4.63145e-11
-7.75804e-12
4.39985e-11
-4.50466e-12
4.16715e-11
-1.65443e-12
3.93667e-11
8.26439e-13
3.71064e-11
2.97569e-12
3.49117e-11
4.82302e-12
3.27963e-11
6.40405e-12
3.07716e-11
7.74989e-12
2.88446e-11
8.88969e-12
2.70236e-11
9.84395e-12
2.5307e-11
1.06321e-11
2.36931e-11
1.12703e-11
2.21786e-11
1.17826e-11
2.07621e-11
1.21933e-11
1.94456e-11
1.25192e-11
1.82326e-11
1.27735e-11
1.71279e-11
1.29669e-11
1.61326e-11
1.31152e-11
1.52425e-11
1.3245e-11
1.44451e-11
1.33882e-11
1.37157e-11
1.35741e-11
1.30243e-11
1.38205e-11
1.2346e-11
1.4135e-11
1.16631e-11
1.45164e-11
1.09591e-11
1.49521e-11
1.02211e-11
1.54233e-11
9.44034e-12
1.59098e-11
8.61055e-12
1.63928e-11
7.72779e-12
1.68594e-11
6.79103e-12
1.7299e-11
5.80323e-12
1.76994e-11
4.77163e-12
1.80479e-11
3.70493e-12
1.83367e-11
2.61242e-12
1.85621e-11
1.50353e-12
1.87207e-11
3.8701e-13
1.88065e-11
-7.28956e-13
1.88144e-11
-1.83408e-12
1.87454e-11
-2.91799e-12
1.86038e-11
-3.97186e-12
1.83947e-11
-4.99011e-12
1.81256e-11
-5.97126e-12
1.78057e-11
-6.91364e-12
1.74417e-11
-7.81378e-12
1.70379e-11
-8.66642e-12
1.66017e-11
-9.47016e-12
1.61461e-11
-1.02289e-11
1.5689e-11
-1.09488e-11
1.52481e-11
-1.16396e-11
1.48389e-11
-1.23173e-11
1.44777e-11
-1.30068e-11
1.41816e-11
-1.37372e-11
1.39576e-11
-1.45363e-11
1.37951e-11
-1.54288e-11
1.36732e-11
-1.64297e-11
1.35659e-11
-1.75419e-11
1.34402e-11
-1.87612e-11
1.32701e-11
-2.00878e-11
1.30417e-11
-2.15198e-11
1.27404e-11
-2.30555e-11
1.23453e-11
-2.4694e-11
1.18414e-11
-2.6431e-11
1.12144e-11
-2.82638e-11
1.04476e-11
-3.01962e-11
9.53069e-12
-3.22227e-11
8.43643e-12
-3.43331e-11
7.14055e-12
-3.65289e-11
5.60662e-12
-3.87795e-11
3.79253e-12
-4.10887e-11
1.69375e-12
-4.3428e-11
-7.51422e-13
-4.57379e-11
-3.54153e-12
-4.80086e-11
-6.73891e-12
-5.02215e-11
-1.03617e-11
-5.22743e-11
-1.44795e-11
-5.40931e-11
-1.90983e-11
-5.56153e-11
-2.42593e-11
-5.67853e-11
-2.99115e-11
-5.7498e-11
-3.60438e-11
-5.76703e-11
-4.25602e-11
-5.72634e-11
-4.91429e-11
-5.61969e-11
-5.51381e-11
-5.45507e-11
-5.91097e-11
-5.25482e-11
-5.83663e-11
-5.06849e-11
-4.93199e-11
-4.95134e-11
-2.88349e-11
2.77485e-12
-4.95717e-11
5.66924e-11
1.64026e-12
5.80927e-11
-3.18107e-11
6.02169e-11
-5.32811e-11
6.2378e-11
-6.24511e-11
6.40682e-11
-6.26567e-11
6.5025e-11
-5.78534e-11
6.51965e-11
-5.0927e-11
6.46521e-11
-4.34902e-11
6.34932e-11
-3.6264e-11
6.18354e-11
-2.95396e-11
5.97929e-11
-2.3427e-11
5.74702e-11
-1.79522e-11
5.49515e-11
-1.30897e-11
5.23056e-11
-8.80276e-12
4.95935e-11
-5.04635e-12
4.68676e-11
-1.77925e-12
4.41688e-11
1.04379e-12
4.15266e-11
3.46803e-12
3.89634e-11
5.53832e-12
3.64972e-11
7.28863e-12
3.41409e-11
8.7597e-12
3.19045e-11
9.98568e-12
2.97939e-11
1.09996e-11
2.78114e-11
1.18259e-11
2.59562e-11
1.24866e-11
2.42211e-11
1.30048e-11
2.25994e-11
1.34037e-11
2.10905e-11
1.37016e-11
1.96957e-11
1.39134e-11
1.84214e-11
1.40473e-11
1.72757e-11
1.4112e-11
1.62639e-11
1.41263e-11
1.53865e-11
1.41217e-11
1.46305e-11
1.41434e-11
1.3963e-11
1.42407e-11
1.33428e-11
1.44398e-11
1.2732e-11
1.4745e-11
1.21009e-11
1.51468e-11
1.1428e-11
1.56243e-11
1.0701e-11
1.61496e-11
9.91345e-12
1.66966e-11
9.06191e-12
1.72436e-11
8.1454e-12
1.77751e-11
7.16605e-12
1.82775e-11
6.12849e-12
1.87361e-11
5.04124e-12
1.91343e-11
3.91441e-12
1.94627e-11
2.75847e-12
1.97172e-11
1.58389e-12
1.98944e-11
4.00404e-13
1.9989e-11
-7.82861e-13
1.99966e-11
-1.9557e-12
1.99172e-11
-3.10632e-12
1.97533e-11
-4.22355e-12
1.95108e-11
-5.30123e-12
1.92022e-11
-6.33546e-12
1.88389e-11
-7.31949e-12
1.84247e-11
-8.24564e-12
1.7963e-11
-9.10902e-12
1.7464e-11
-9.90899e-12
1.6945e-11
-1.06483e-11
1.64272e-11
-1.1332e-11
1.59308e-11
-1.19714e-11
1.54773e-11
-1.2589e-11
1.50944e-11
-1.3217e-11
1.48087e-11
-1.38927e-11
1.46325e-11
-1.46572e-11
1.45589e-11
-1.55425e-11
1.45575e-11
-1.65597e-11
1.45821e-11
-1.77084e-11
1.45878e-11
-1.89855e-11
1.45461e-11
-2.03877e-11
1.44429e-11
-2.19097e-11
1.42615e-11
-2.35473e-11
1.39821e-11
-2.5301e-11
1.35944e-11
-2.71698e-11
1.30825e-11
-2.91591e-11
1.24361e-11
-3.12736e-11
1.16444e-11
-3.35129e-11
1.06748e-11
-3.58648e-11
9.49157e-12
-3.83276e-11
8.06857e-12
-4.08978e-11
6.36218e-12
-4.35191e-11
4.31465e-12
-4.62198e-11
1.949e-12
-4.89484e-11
-8.13309e-13
-5.16605e-11
-4.02754e-12
-5.43212e-11
-7.70183e-12
-5.68796e-11
-1.19219e-11
-5.92136e-11
-1.67648e-11
-6.1255e-11
-2.22179e-11
-6.28984e-11
-2.82682e-11
-6.40623e-11
-3.48802e-11
-6.46389e-11
-4.19842e-11
-6.44821e-11
-4.93002e-11
-6.3586e-11
-5.60343e-11
-6.19968e-11
-6.06988e-11
-5.99356e-11
-6.04277e-11
-5.79232e-11
-5.13327e-11
-5.65959e-11
-3.01625e-11
2.78289e-12
-5.66043e-11
6.46953e-11
1.4248e-12
6.63327e-11
-3.34484e-11
6.8679e-11
-5.56276e-11
7.09487e-11
-6.4721e-11
7.25661e-11
-6.42744e-11
7.32673e-11
-5.85549e-11
7.30387e-11
-5.06988e-11
7.1982e-11
-4.24338e-11
7.02384e-11
-3.45208e-11
6.79622e-11
-2.72638e-11
6.52991e-11
-2.07643e-11
6.237e-11
-1.50235e-11
5.9274e-11
-9.99413e-12
5.60885e-11
-5.61773e-12
5.28834e-11
-1.84166e-12
4.97109e-11
1.39269e-12
4.66097e-11
4.14453e-12
4.36062e-11
6.47099e-12
4.07224e-11
8.4216e-12
3.79736e-11
1.00369e-11
3.53694e-11
1.13634e-11
3.29166e-11
1.2438e-11
3.06197e-11
1.3296e-11
2.84745e-11
1.39706e-11
2.64771e-11
1.44834e-11
2.46218e-11
1.48597e-11
2.28993e-11
1.51258e-11
2.13041e-11
1.52964e-11
1.98362e-11
1.53809e-11
1.85024e-11
1.53806e-11
1.73149e-11
1.52991e-11
1.62871e-11
1.51535e-11
1.5429e-11
1.49791e-11
1.47327e-11
1.4839e-11
1.41537e-11
1.48189e-11
1.36347e-11
1.49581e-11
1.31188e-11
1.52602e-11
1.2563e-11
1.5702e-11
1.19405e-11
1.6246e-11
1.12371e-11
1.68523e-11
1.04477e-11
1.74853e-11
9.57344e-12
1.81171e-11
8.61982e-12
1.8728e-11
7.59388e-12
1.93027e-11
6.50116e-12
1.9828e-11
5.35228e-12
2.02824e-11
4.15807e-12
2.06562e-11
2.92965e-12
2.09449e-11
1.67867e-12
2.11446e-11
4.16892e-13
2.12499e-11
-8.44351e-13
2.12569e-11
-2.09435e-12
2.11662e-11
-3.32181e-12
2.09798e-11
-4.51402e-12
2.07021e-11
-5.6627e-12
2.035e-11
-6.75821e-12
1.99335e-11
-7.78904e-12
1.94547e-11
-8.74634e-12
1.89194e-11
-9.62383e-12
1.83405e-11
-1.0419e-11
1.77391e-11
-1.11307e-11
1.7138e-11
-1.1761e-11
1.65602e-11
-1.23247e-11
1.60401e-11
-1.28509e-11
1.562e-11
-1.33808e-11
1.5338e-11
-1.39701e-11
1.52212e-11
-1.46785e-11
1.52666e-11
-1.55417e-11
1.542e-11
-1.657e-11
1.56097e-11
-1.77597e-11
1.57769e-11
-1.91005e-11
1.58862e-11
-2.05791e-11
1.59209e-11
-2.21827e-11
1.58645e-11
-2.39131e-11
1.57119e-11
-2.5777e-11
1.54577e-11
-2.77842e-11
1.5089e-11
-2.99438e-11
1.45949e-11
-3.22503e-11
1.39498e-11
-3.47046e-11
1.31281e-11
-3.73066e-11
1.20927e-11
-4.0038e-11
1.07994e-11
-4.2907e-11
9.23069e-12
-4.59097e-11
7.31696e-12
-4.89925e-11
5.03119e-12
-5.2167e-11
2.36041e-12
-5.5398e-11
-7.9753e-13
-5.8605e-11
-4.49573e-12
-6.16827e-11
-8.84484e-12
-6.45675e-11
-1.38802e-11
-6.72054e-11
-1.95802e-11
-6.94852e-11
-2.59888e-11
-7.12638e-11
-3.31023e-11
-7.2374e-11
-4.08746e-11
-7.26799e-11
-4.89945e-11
-7.20737e-11
-5.66406e-11
-7.0547e-11
-6.22258e-11
-6.84186e-11
-6.25566e-11
-6.61861e-11
-5.35657e-11
-6.46465e-11
-3.17025e-11
2.68413e-12
-6.4548e-11
7.42086e-11
1.03188e-12
7.60721e-11
-3.53121e-11
7.85926e-11
-5.81482e-11
8.08667e-11
-6.69953e-11
8.22732e-11
-6.56812e-11
8.25659e-11
-5.8848e-11
8.17638e-11
-4.98971e-11
8.00123e-11
-4.06827e-11
7.75142e-11
-3.20232e-11
7.44742e-11
-2.42243e-11
7.10673e-11
-1.7358e-11
6.74296e-11
-1.13864e-11
6.3672e-11
-6.23706e-12
5.98852e-11
-1.83151e-12
5.6139e-11
1.90395e-12
5.24822e-11
5.04897e-12
4.89483e-11
7.67799e-12
4.55622e-11
9.85673e-12
4.23434e-11
1.164e-11
3.93028e-11
1.30772e-11
3.64487e-11
1.42172e-11
3.37826e-11
1.51038e-11
3.12999e-11
1.57783e-11
2.89942e-11
1.62759e-11
2.68572e-11
1.66201e-11
2.48837e-11
1.68328e-11
2.30681e-11
1.6941e-11
2.13963e-11
1.69679e-11
1.98583e-11
1.69186e-11
1.84594e-11
1.67791e-11
1.72209e-11
1.65372e-11
1.61735e-11
1.62004e-11
1.53421e-11
1.58099e-11
1.47236e-11
1.5457e-11
1.42719e-11
1.52699e-11
1.38996e-11
1.53297e-11
1.35188e-11
1.56402e-11
1.30682e-11
1.61518e-11
1.25141e-11
1.67993e-11
1.1844e-11
1.75216e-11
1.10584e-11
1.82701e-11
1.01637e-11
1.9011e-11
9.17001e-12
1.97208e-11
8.08918e-12
2.03827e-11
6.93607e-12
2.09804e-11
5.71942e-12
2.14983e-11
4.44823e-12
2.19266e-11
3.13382e-12
2.22585e-11
1.79029e-12
2.24873e-11
4.33149e-13
2.26062e-11
-9.22188e-13
2.26114e-11
-2.26088e-12
2.25041e-11
-3.57213e-12
2.22903e-11
-4.84801e-12
2.19773e-11
-6.07412e-12
2.15754e-11
-7.23513e-12
2.10938e-11
-8.31953e-12
2.05383e-11
-9.31661e-12
1.99156e-11
-1.02166e-11
1.92396e-11
-1.10109e-11
1.85326e-11
-1.16922e-11
1.78184e-11
-1.22574e-11
1.71247e-11
-1.27182e-11
1.65003e-11
-1.31086e-11
1.60098e-11
-1.34896e-11
1.57184e-11
-1.3947e-11
1.56781e-11
-1.4563e-11
1.5882e-11
-1.53871e-11
1.62436e-11
-1.64285e-11
1.66506e-11
-1.76694e-11
1.70174e-11
-1.90799e-11
1.72963e-11
-2.06312e-11
1.74719e-11
-2.23133e-11
1.75462e-11
-2.41377e-11
1.75358e-11
-2.61218e-11
1.74412e-11
-2.82765e-11
1.7243e-11
-3.06e-11
1.69174e-11
-3.30931e-11
1.6442e-11
-3.57569e-11
1.5791e-11
-3.85996e-11
1.49349e-11
-4.16267e-11
1.38259e-11
-4.48139e-11
1.24174e-11
-4.82092e-11
1.07116e-11
-5.17574e-11
8.5786e-12
-5.54118e-11
6.01376e-12
-5.91585e-11
2.94837e-12
-6.29194e-11
-7.35396e-13
-6.65998e-11
-5.16457e-12
-7.01895e-11
-1.02906e-11
-7.36133e-11
-1.61568e-11
-7.67116e-11
-2.28913e-11
-7.92525e-11
-3.0562e-11
-8.10521e-11
-3.90753e-11
-8.19339e-11
-4.81128e-11
-8.17988e-11
-5.67758e-11
-8.04962e-11
-6.35289e-11
-7.83195e-11
-6.47337e-11
-7.58973e-11
-5.59882e-11
-7.41832e-11
-3.34167e-11
2.36713e-12
-7.38661e-11
8.60918e-11
4.17622e-13
8.8094e-11
-3.73145e-11
9.06e-11
-6.06544e-11
9.26342e-11
-6.90298e-11
9.35607e-11
-6.6608e-11
9.31577e-11
-5.84453e-11
9.14985e-11
-4.82383e-11
8.88079e-11
-3.79926e-11
8.5352e-11
-2.85679e-11
8.13761e-11
-2.02491e-11
7.7076e-11
-1.30586e-11
7.26112e-11
-6.92229e-12
6.81054e-11
-1.73194e-12
6.36514e-11
2.62183e-12
5.93131e-11
6.24172e-12
5.5131e-11
9.23054e-12
5.1137e-11
1.16715e-11
4.73511e-11
1.36423e-11
4.3787e-11
1.52037e-11
4.04522e-11
1.64117e-11
3.73505e-11
1.73186e-11
3.44783e-11
1.79757e-11
3.18203e-11
1.84359e-11
2.93597e-11
1.87361e-11
2.7086e-11
1.88935e-11
2.49954e-11
1.8923e-11
2.30788e-11
1.88573e-11
2.1312e-11
1.87344e-11
1.9678e-11
1.85523e-11
1.81877e-11
1.8269e-11
1.68814e-11
1.7843e-11
1.58138e-11
1.72676e-11
1.50323e-11
1.65909e-11
1.45466e-11
1.5942e-11
1.42945e-11
1.55214e-11
1.41449e-11
1.54787e-11
1.39636e-11
1.58208e-11
1.36604e-11
1.64541e-11
1.31958e-11
1.72631e-11
1.25664e-11
1.81501e-11
1.17848e-11
1.90507e-11
1.08679e-11
1.99271e-11
9.82999e-12
2.07579e-11
8.68514e-12
2.15268e-11
7.44805e-12
2.22167e-11
6.13684e-12
2.28087e-11
4.76719e-12
2.32955e-11
3.35249e-12
2.36723e-11
1.90634e-12
2.39325e-11
4.43861e-13
2.40677e-11
-1.01858e-12
2.4073e-11
-2.46549e-12
2.39502e-11
-3.88191e-12
2.3706e-11
-5.25042e-12
2.33452e-11
-6.55782e-12
2.28822e-11
-7.79151e-12
2.23269e-11
-8.93792e-12
2.1684e-11
-9.9827e-12
2.09596e-11
-1.09116e-11
2.01677e-11
-1.17085e-11
1.93287e-11
-1.23546e-11
1.84639e-11
-1.28389e-11
1.76083e-11
-1.3167e-11
1.68279e-11
-1.33743e-11
1.62165e-11
-1.35383e-11
1.58818e-11
-1.37879e-11
1.59271e-11
-1.42619e-11
1.63555e-11
-1.50339e-11
1.70151e-11
-1.60992e-11
1.77155e-11
-1.74089e-11
1.83269e-11
-1.89025e-11
1.87897e-11
-2.05332e-11
1.91025e-11
-2.22977e-11
1.93104e-11
-2.4221e-11
1.94587e-11
-2.63261e-11
1.95458e-11
-2.86192e-11
1.95353e-11
-3.10966e-11
1.93941e-11
-3.37634e-11
1.91083e-11
-3.66328e-11
1.86599e-11
-3.97108e-11
1.80126e-11
-4.30357e-11
1.71505e-11
-4.65983e-11
1.59794e-11
-5.03662e-11
1.44788e-11
-5.43753e-11
1.2587e-11
-5.85441e-11
1.01821e-11
-6.28275e-11
7.23157e-12
-6.71957e-11
3.6328e-12
-7.16456e-11
-7.14598e-13
-7.61088e-11
-5.82768e-12
-8.04306e-11
-1.18356e-11
-8.44326e-11
-1.88897e-11
-8.79351e-11
-2.70596e-11
-9.069e-11
-3.63202e-11
-9.24426e-11
-4.636e-11
-9.29167e-11
-5.63019e-11
-9.21098e-11
-6.4336e-11
-9.02307e-11
-6.66128e-11
-8.79335e-11
-5.82852e-11
-8.60694e-11
-3.52805e-11
1.86018e-12
-8.5562e-11
1.01588e-10
-3.84613e-13
1.03466e-10
-3.91926e-11
1.05535e-10
-6.27232e-11
1.06844e-10
-7.03396e-11
1.06797e-10
-6.65612e-11
1.05242e-10
-5.68901e-11
1.02345e-10
-4.53424e-11
9.84084e-11
-3.40562e-11
9.37364e-11
-2.38964e-11
8.86109e-11
-1.51242e-11
8.32533e-11
-7.70166e-12
7.78405e-11
-1.51012e-12
7.24979e-11
3.60991e-12
6.73104e-11
7.80865e-12
6.23292e-11
1.12223e-11
5.75922e-11
1.3967e-11
5.31183e-11
1.61449e-11
4.89222e-11
1.78379e-11
4.50113e-11
1.91142e-11
4.13895e-11
2.00332e-11
3.80543e-11
2.06534e-11
3.49913e-11
2.10383e-11
3.21715e-11
2.12554e-11
2.95625e-11
2.13447e-11
2.71535e-11
2.13022e-11
2.49514e-11
2.11247e-11
2.29452e-11
2.08631e-11
2.10914e-11
2.05879e-11
1.93487e-11
2.02945e-11
1.77286e-11
1.98887e-11
1.63025e-11
1.92686e-11
1.518e-11
1.83895e-11
1.44668e-11
1.73037e-11
1.42069e-11
1.62013e-11
1.43055e-11
1.54223e-11
1.45202e-11
1.52633e-11
1.46253e-11
1.57151e-11
1.45066e-11
1.6572e-11
1.41388e-11
1.76301e-11
1.35394e-11
1.87486e-11
1.27399e-11
1.98493e-11
1.17698e-11
2.08963e-11
1.06527e-11
2.18741e-11
9.41019e-12
2.27685e-11
8.06572e-12
2.35603e-11
6.63911e-12
2.42345e-11
5.14743e-12
2.47862e-11
3.60531e-12
2.52135e-11
2.02832e-12
2.55085e-11
4.33166e-13
2.56619e-11
-1.16091e-12
2.56662e-11
-2.73389e-12
2.55224e-11
-4.26694e-12
2.52383e-11
-5.74559e-12
2.48232e-11
-7.15378e-12
2.42897e-11
-8.4749e-12
2.36473e-11
-9.69362e-12
2.2902e-11
-1.07952e-11
2.20606e-11
-1.1762e-11
2.11339e-11
-1.25694e-11
2.01355e-11
-1.3186e-11
1.908e-11
-1.35823e-11
1.80042e-11
-1.3742e-11
1.6987e-11
-1.36876e-11
1.61616e-11
-1.35168e-11
1.57104e-11
-1.34393e-11
1.58492e-11
-1.37018e-11
1.66176e-11
-1.44148e-11
1.77279e-11
-1.55373e-11
1.8838e-11
-1.6961e-11
1.97506e-11
-1.85726e-11
2.04013e-11
-2.03035e-11
2.08334e-11
-2.21485e-11
2.11553e-11
-2.41533e-11
2.14633e-11
-2.6363e-11
2.17552e-11
-2.87837e-11
2.19557e-11
-3.14026e-11
2.20128e-11
-3.42245e-11
2.19302e-11
-3.72838e-11
2.17192e-11
-4.0614e-11
2.13429e-11
-4.42144e-11
2.07506e-11
-4.81356e-11
1.99004e-11
-5.2343e-11
1.86859e-11
-5.68012e-11
1.70451e-11
-6.14777e-11
1.48587e-11
-6.6376e-11
1.21302e-11
-7.14885e-11
8.74565e-12
-7.67865e-11
4.58342e-12
-8.21652e-11
-4.49258e-13
-8.75169e-11
-6.48406e-12
-9.26441e-11
-1.37623e-11
-9.73401e-11
-2.23631e-11
-1.01288e-10
-3.23715e-11
-1.04226e-10
-4.34221e-11
-1.0587e-10
-5.46577e-11
-1.06102e-10
-6.41043e-11
-1.05046e-10
-6.76684e-11
-1.03196e-10
-6.01346e-11
-1.01493e-10
-3.69832e-11
1.23605e-12
-1.00869e-10
1.22141e-10
-1.26036e-12
1.23378e-10
-4.043e-11
1.24256e-10
-6.36006e-11
1.24014e-10
-7.00984e-11
1.22221e-10
-6.47679e-11
1.18874e-10
-5.35438e-11
1.14253e-10
-4.07222e-11
1.08689e-10
-2.8492e-11
1.02498e-10
-1.77058e-11
9.6001e-11
-8.62769e-12
8.94198e-11
-1.1211e-12
8.2943e-11
4.96606e-12
7.66828e-11
9.86949e-12
7.07074e-11
1.37834e-11
6.5054e-11
1.6875e-11
5.97478e-11
1.92726e-11
5.47917e-11
2.11005e-11
5.01863e-11
2.24428e-11
4.59371e-11
2.33629e-11
4.20367e-11
2.39331e-11
3.8482e-11
2.42077e-11
3.5244e-11
2.42759e-11
3.22795e-11
2.42195e-11
2.95333e-11
2.40905e-11
2.69976e-11
2.38376e-11
2.47059e-11
2.34161e-11
2.26579e-11
2.29107e-11
2.07601e-11
2.24853e-11
1.89009e-11
2.21533e-11
1.70831e-11
2.17061e-11
1.54388e-11
2.09124e-11
1.41685e-11
1.96593e-11
1.34975e-11
1.79741e-11
1.35617e-11
1.61366e-11
1.42093e-11
1.47741e-11
1.49788e-11
1.44932e-11
1.54821e-11
1.52111e-11
1.55836e-11
1.64698e-11
1.5295e-11
1.7918e-11
1.46833e-11
1.93594e-11
1.38221e-11
2.07097e-11
1.27675e-11
2.19501e-11
1.15559e-11
2.30848e-11
1.02115e-11
2.4112e-11
8.75501e-12
2.5016e-11
7.20408e-12
2.57845e-11
5.57684e-12
2.64125e-11
3.89015e-12
2.68992e-11
2.16089e-12
2.72368e-11
4.12056e-13
2.74099e-11
-1.32872e-12
2.74062e-11
-3.03467e-12
2.72277e-11
-4.68933e-12
2.68924e-11
-6.283e-12
2.64162e-11
-7.803e-12
2.58091e-11
-9.23028e-12
2.5074e-11
-1.05441e-11
2.42154e-11
-1.1725e-11
2.3241e-11
-1.27548e-11
2.21633e-11
-1.36027e-11
2.09831e-11
-1.422e-11
1.96971e-11
-1.45398e-11
1.83237e-11
-1.45006e-11
1.69475e-11
-1.40869e-11
1.57475e-11
-1.34066e-11
1.50299e-11
-1.28063e-11
1.52487e-11
-1.27527e-11
1.65641e-11
-1.34191e-11
1.83944e-11
-1.46774e-11
2.00965e-11
-1.6306e-11
2.13794e-11
-1.81077e-11
2.22032e-11
-1.99593e-11
2.26851e-11
-2.18546e-11
2.30506e-11
-2.3902e-11
2.35106e-11
-2.61963e-11
2.40496e-11
-2.87346e-11
2.44941e-11
-3.14801e-11
2.47586e-11
-3.44377e-11
2.48881e-11
-3.76628e-11
2.49445e-11
-4.12257e-11
2.49058e-11
-4.51308e-11
2.46556e-11
-4.93769e-11
2.41465e-11
-5.39713e-11
2.32803e-11
-5.88819e-11
2.1956e-11
-6.41227e-11
2.01e-11
-6.97038e-11
1.77116e-11
-7.56186e-11
1.46604e-11
-8.183e-11
1.07946e-11
-8.82468e-11
5.9674e-12
-9.4761e-11
3.02009e-14
-1.01193e-10
-7.32989e-12
-1.07317e-10
-1.6239e-11
-1.12864e-10
-2.68246e-11
-1.17563e-10
-3.87232e-11
-1.2104e-10
-5.118e-11
-1.2302e-10
-6.21246e-11
-1.23495e-10
-6.7193e-11
-1.22847e-10
-6.07827e-11
-1.21866e-10
-3.79633e-11
5.71081e-13
-1.21201e-10
1.49054e-10
-1.91002e-12
1.48769e-10
-4.01449e-11
1.47236e-10
-6.2068e-11
1.44181e-10
-6.70437e-11
1.39558e-10
-6.01446e-11
1.33619e-10
-4.76046e-11
1.26734e-10
-3.38382e-11
1.19159e-10
-2.09172e-11
1.1113e-10
-9.67647e-12
1.03065e-10
-5.63613e-13
9.51311e-11
6.81269e-12
8.75133e-11
1.25834e-11
8.02957e-11
1.70865e-11
7.35206e-11
2.05579e-11
6.72103e-11
2.31848e-11
6.13612e-11
2.51212e-11
5.59448e-11
2.65163e-11
5.09547e-11
2.74324e-11
4.63901e-11
2.79271e-11
4.2237e-11
2.80859e-11
3.84904e-11
2.7954e-11
3.51241e-11
2.76419e-11
3.20643e-11
2.7279e-11
2.92141e-11
2.69406e-11
2.65657e-11
2.64857e-11
2.42201e-11
2.57615e-11
2.22132e-11
2.49172e-11
2.03544e-11
2.43437e-11
1.83851e-11
2.41222e-11
1.62845e-11
2.38062e-11
1.42742e-11
2.29222e-11
1.27055e-11
2.12276e-11
1.20051e-11
1.86741e-11
1.2505e-11
1.56362e-11
1.39814e-11
1.32972e-11
1.55432e-11
1.29309e-11
1.65321e-11
1.42217e-11
1.68329e-11
1.61683e-11
1.65634e-11
1.81869e-11
1.58836e-11
2.00386e-11
1.49258e-11
2.16667e-11
1.37718e-11
2.31035e-11
1.24602e-11
2.43958e-11
1.10067e-11
2.55648e-11
9.43158e-12
2.65904e-11
7.75723e-12
2.74581e-11
6.00419e-12
2.81647e-11
4.18625e-12
2.87164e-11
2.31805e-12
2.91044e-11
4.23968e-13
2.93034e-11
-1.46253e-12
2.92921e-11
-3.30918e-12
2.90738e-11
-5.09593e-12
2.86786e-11
-6.81356e-12
2.81334e-11
-8.45239e-12
2.74475e-11
-9.99459e-12
2.66158e-11
-1.14185e-11
2.5639e-11
-1.27012e-11
2.45235e-11
-1.38289e-11
2.32909e-11
-1.47695e-11
2.19237e-11
-1.54486e-11
2.03762e-11
-1.5747e-11
1.86219e-11
-1.55229e-11
1.67233e-11
-1.46591e-11
1.48835e-11
-1.32141e-11
1.35849e-11
-1.17682e-11
1.3803e-11
-1.1246e-11
1.60421e-11
-1.19154e-11
1.90641e-11
-1.34534e-11
2.16349e-11
-1.544e-11
2.33662e-11
-1.75325e-11
2.42957e-11
-1.95082e-11
2.46609e-11
-2.13805e-11
2.49228e-11
-2.33965e-11
2.55266e-11
-2.57476e-11
2.64008e-11
-2.83999e-11
2.71466e-11
-3.12497e-11
2.76085e-11
-3.43022e-11
2.79406e-11
-3.76544e-11
2.82966e-11
-4.13839e-11
2.86351e-11
-4.55581e-11
2.88296e-11
-5.01133e-11
2.87016e-11
-5.50758e-11
2.8243e-11
-6.04462e-11
2.73265e-11
-6.62451e-11
2.58989e-11
-7.24993e-11
2.39654e-11
-7.91919e-11
2.13525e-11
-8.63283e-11
1.79304e-11
-9.38688e-11
1.35077e-11
-1.01684e-10
7.84555e-12
-1.09613e-10
5.98914e-13
-1.17478e-10
-8.37429e-12
-1.24983e-10
-1.93198e-11
-1.3187e-10
-3.18367e-11
-1.37902e-10
-4.51474e-11
-1.42665e-10
-5.7362e-11
-1.45945e-10
-6.3913e-11
-1.47739e-10
-5.89891e-11
-1.48274e-10
-3.74283e-11
4.9074e-14
-1.47752e-10
1.82605e-10
-1.51913e-12
1.79414e-10
-3.69538e-11
1.73663e-10
-5.63175e-11
1.66075e-10
-5.94554e-11
1.57267e-10
-5.13372e-11
1.47851e-10
-3.8188e-11
1.38274e-10
-2.42615e-11
1.28516e-10
-1.11594e-11
1.18405e-10
4.34414e-13
1.08588e-10
9.25369e-12
9.92803e-11
1.61196e-11
9.05531e-11
2.13103e-11
8.24483e-11
2.5191e-11
7.49712e-11
2.80346e-11
6.81088e-11
3.00469e-11
6.18248e-11
3.14047e-11
5.60413e-11
3.22994e-11
5.07439e-11
3.27294e-11
4.59382e-11
3.27324e-11
4.15945e-11
3.24293e-11
3.77279e-11
3.18203e-11
3.43251e-11
3.10446e-11
3.12747e-11
3.03293e-11
2.83717e-11
2.98435e-11
2.56092e-11
2.92481e-11
2.32423e-11
2.81283e-11
2.14074e-11
2.6752e-11
1.97392e-11
2.60116e-11
1.76961e-11
2.6165e-11
1.52111e-11
2.62909e-11
1.26414e-11
2.54915e-11
1.0535e-11
2.33337e-11
9.65053e-12
1.95582e-11
1.07368e-11
1.45496e-11
1.35015e-11
1.05323e-11
1.61869e-11
1.02452e-11
1.77013e-11
1.27069e-11
1.80953e-11
1.57741e-11
1.77181e-11
1.85638e-11
1.68745e-11
2.08819e-11
1.57702e-11
2.27708e-11
1.45067e-11
2.43667e-11
1.311e-11
2.57921e-11
1.15723e-11
2.71022e-11
9.90877e-12
2.82535e-11
8.14348e-12
2.9223e-11
6.30018e-12
3.00077e-11
4.38999e-12
3.06263e-11
2.42412e-12
3.107e-11
4.2841e-13
3.12988e-11
-1.55635e-12
3.12767e-11
-3.49189e-12
3.10091e-11
-5.36039e-12
3.05468e-11
-7.15791e-12
2.99305e-11
-8.8782e-12
2.91675e-11
-1.05003e-11
2.82377e-11
-1.20016e-11
2.71401e-11
-1.33662e-11
2.5888e-11
-1.4606e-11
2.45306e-11
-1.56959e-11
2.30135e-11
-1.65345e-11
2.12147e-11
-1.69363e-11
1.90235e-11
-1.66411e-11
1.6428e-11
-1.53211e-11
1.35635e-11
-1.28177e-11
1.10814e-11
-1.00452e-11
1.10306e-11
-8.86827e-12
1.48654e-11
-9.67304e-12
1.98689e-11
-1.17251e-11
2.36869e-11
-1.42704e-11
2.59112e-11
-1.67591e-11
2.6784e-11
-1.88275e-11
2.67289e-11
-2.0525e-11
2.66201e-11
-2.23696e-11
2.7371e-11
-2.47399e-11
2.87709e-11
-2.75142e-11
2.99206e-11
-3.04313e-11
3.05253e-11
-3.34801e-11
3.09889e-11
-3.68713e-11
3.16871e-11
-4.07111e-11
3.24744e-11
-4.50484e-11
3.31666e-11
-4.98504e-11
3.35035e-11
-5.51328e-11
3.35252e-11
-6.09145e-11
3.3108e-11
-6.72051e-11
3.21888e-11
-7.40146e-11
3.07741e-11
-8.1394e-11
2.87312e-11
-8.93754e-11
2.59115e-11
-9.79723e-11
2.21044e-11
-1.07114e-10
1.6987e-11
-1.16688e-10
1.0173e-11
-1.26452e-10
1.38871e-12
-1.35967e-10
-9.80509e-12
-1.45551e-10
-2.22529e-11
-1.55073e-10
-3.56255e-11
-1.64029e-10
-4.84067e-11
-1.7175e-10
-5.61918e-11
-1.77643e-10
-5.30961e-11
-1.80929e-10
-3.41433e-11
8.84493e-13
-1.81765e-10
2.2146e-10
1.95628e-13
2.12632e-10
-2.81263e-11
2.00108e-10
-4.37936e-11
1.85804e-10
-4.51511e-11
1.71164e-10
-3.66967e-11
1.57286e-10
-2.43105e-11
1.44774e-10
-1.17496e-11
1.33269e-10
3.45198e-13
1.21455e-10
1.22489e-11
1.09983e-10
2.07252e-11
9.9408e-11
2.66947e-11
8.97806e-11
3.09375e-11
8.10504e-11
3.39209e-11
7.31447e-11
3.59401e-11
6.59973e-11
3.7194e-11
5.95466e-11
3.78553e-11
5.36263e-11
3.82195e-11
4.82229e-11
3.81326e-11
4.3364e-11
3.75912e-11
3.89757e-11
3.68175e-11
3.51351e-11
3.56609e-11
3.18643e-11
3.43153e-11
2.90062e-11
3.31874e-11
2.61513e-11
3.26985e-11
2.32709e-11
3.21286e-11
2.09137e-11
3.04855e-11
1.94612e-11
2.82045e-11
1.82587e-11
2.72141e-11
1.62493e-11
2.81742e-11
1.33301e-11
2.921e-11
1.00594e-11
2.87621e-11
7.15361e-12
2.62394e-11
5.78843e-12
2.09234e-11
7.48471e-12
1.28533e-11
1.19834e-11
6.03354e-12
1.59135e-11
6.31515e-12
1.76387e-11
1.09818e-11
1.77531e-11
1.56597e-11
1.7026e-11
1.92909e-11
1.59194e-11
2.19887e-11
1.4684e-11
2.40063e-11
1.34112e-11
2.56396e-11
1.20842e-11
2.71191e-11
1.06417e-11
2.85446e-11
9.09033e-12
2.98048e-11
7.45569e-12
3.08575e-11
5.76792e-12
3.16954e-11
4.0348e-12
3.23593e-11
2.25823e-12
3.28465e-11
4.59828e-13
3.30971e-11
-1.32837e-12
3.30647e-11
-3.07052e-12
3.27509e-11
-4.75932e-12
3.22352e-11
-6.39653e-12
3.15673e-11
-7.9782e-12
3.07487e-11
-9.47865e-12
2.97377e-11
-1.08806e-11
2.85416e-11
-1.21718e-11
2.7179e-11
-1.34183e-11
2.57768e-11
-1.46299e-11
2.42248e-11
-1.5711e-11
2.22954e-11
-1.64378e-11
1.975e-11
-1.64397e-11
1.64297e-11
-1.50238e-11
1.21474e-11
-1.14041e-11
7.46162e-12
-6.82066e-12
6.44711e-12
-4.94106e-12
1.29856e-11
-6.16612e-12
2.10936e-11
-8.99108e-12
2.65113e-11
-1.22287e-11
2.91482e-11
-1.51498e-11
2.97045e-11
-1.72008e-11
2.87794e-11
-1.84519e-11
2.78707e-11
-1.99078e-11
2.88263e-11
-2.22675e-11
3.11301e-11
-2.5179e-11
3.28314e-11
-2.80922e-11
3.34378e-11
-3.09678e-11
3.38639e-11
-3.4224e-11
3.49427e-11
-3.80218e-11
3.62717e-11
-4.23773e-11
3.75219e-11
-4.72299e-11
3.83559e-11
-5.27032e-11
3.89981e-11
-5.86569e-11
3.90609e-11
-6.51387e-11
3.86698e-11
-7.22428e-11
3.78775e-11
-8.00717e-11
3.65597e-11
-8.86955e-11
3.45352e-11
-9.81975e-11
3.16063e-11
-1.08561e-10
2.73501e-11
-1.1966e-10
2.12713e-11
-1.30946e-10
1.2674e-11
-1.42066e-10
1.3152e-12
-1.54624e-10
-9.69488e-12
-1.68632e-10
-2.16177e-11
-1.83303e-10
-3.37355e-11
-1.97593e-10
-4.19021e-11
-2.10221e-10
-4.04683e-11
-2.19149e-10
-2.52149e-11
2.73105e-12
-2.20996e-10
2.57772e-10
9.93262e-12
2.40891e-10
-1.12447e-11
2.19403e-10
-2.2306e-11
1.96448e-10
-2.21957e-11
1.74506e-10
-1.47547e-11
1.55207e-10
-5.0118e-12
1.39649e-10
3.80902e-12
1.2585e-10
1.41437e-11
1.12581e-10
2.55175e-11
1.00298e-10
3.30089e-11
8.93478e-11
3.76445e-11
7.96768e-11
4.06085e-11
7.10954e-11
4.25023e-11
6.3469e-11
4.35665e-11
5.66784e-11
4.39845e-11
5.06776e-11
4.38561e-11
4.51407e-11
4.37563e-11
4.00963e-11
4.31769e-11
3.56084e-11
4.2079e-11
3.15088e-11
4.0917e-11
2.79514e-11
3.92184e-11
2.50518e-11
3.72149e-11
2.2663e-11
3.55764e-11
2.00581e-11
3.53035e-11
1.71059e-11
3.50809e-11
1.47434e-11
3.28482e-11
1.38157e-11
2.91323e-11
1.3338e-11
2.76919e-11
1.15569e-11
2.99554e-11
8.46103e-12
3.2306e-11
4.82134e-12
3.24019e-11
1.16784e-12
2.98931e-11
-1.05766e-12
2.3149e-11
4.91085e-13
1.13048e-11
5.9214e-12
6.034e-13
9.96929e-12
2.26746e-12
1.06398e-11
1.03115e-11
9.70012e-12
1.65997e-11
8.39252e-12
2.05988e-11
7.15078e-12
2.32307e-11
6.13468e-12
2.50226e-11
5.35477e-12
2.64196e-11
4.70909e-12
2.77648e-11
4.05167e-12
2.9202e-11
3.38815e-12
3.04683e-11
2.74534e-12
3.15002e-11
2.15933e-12
3.22813e-11
1.62755e-12
3.2891e-11
1.1227e-12
3.33512e-11
6.23825e-13
3.35958e-11
1.19116e-13
3.3569e-11
-4.02491e-13
3.32721e-11
-9.61835e-13
3.2794e-11
-1.56937e-12
3.21743e-11
-2.2159e-12
3.13947e-11
-2.86022e-12
3.03815e-11
-3.48533e-12
2.91663e-11
-4.08088e-12
2.7774e-11
-4.79585e-12
2.64913e-11
-5.7441e-12
2.51725e-11
-6.90385e-12
2.34547e-11
-8.13653e-12
2.09823e-11
-9.15563e-12
1.74486e-11
-8.91951e-12
1.19112e-11
-5.36221e-12
3.90422e-12
1.4752e-13
9.37208e-13
2.10449e-12
1.10283e-11
9.27084e-14
2.31049e-11
-3.45168e-12
3.00552e-11
-7.0402e-12
3.27362e-11
-1.01143e-11
3.27782e-11
-1.19301e-11
3.05948e-11
-1.24764e-11
2.84166e-11
-1.33834e-11
2.97329e-11
-1.57266e-11
3.34729e-11
-1.87384e-11
3.58427e-11
-2.145e-11
3.61488e-11
-2.39591e-11
3.63727e-11
-2.68771e-11
3.78605e-11
-3.04923e-11
3.98868e-11
-3.4551e-11
4.15805e-11
-3.8984e-11
4.27887e-11
-4.4027e-11
4.40406e-11
-4.96531e-11
4.46864e-11
-5.57316e-11
4.47478e-11
-6.26005e-11
4.47464e-11
-7.02414e-11
4.42007e-11
-7.88111e-11
4.31049e-11
-8.84548e-11
4.12498e-11
-9.92944e-11
3.81892e-11
-1.1123e-10
3.32066e-11
-1.23619e-10
2.50632e-11
-1.36465e-10
1.4161e-11
-1.52197e-10
6.03751e-12
-1.72044e-10
-1.77038e-12
-1.93832e-10
-1.19477e-11
-2.16555e-10
-1.91794e-11
-2.37849e-10
-1.91743e-11
-2.54781e-10
-8.28272e-12
1.2272e-11
-2.64322e-10
2.83539e-10
2.63697e-11
2.56418e-10
1.58764e-11
2.23291e-10
1.08206e-11
1.89346e-10
1.17494e-11
1.5818e-10
1.64117e-11
1.3281e-10
2.03585e-11
1.14209e-10
2.24097e-11
9.87761e-11
2.95767e-11
8.38196e-11
4.0474e-11
7.10722e-11
4.57564e-11
6.06212e-11
4.80955e-11
5.20325e-11
4.91972e-11
4.47798e-11
4.9755e-11
3.86066e-11
4.97397e-11
3.32196e-11
4.93716e-11
2.87127e-11
4.8363e-11
2.44499e-11
4.80191e-11
2.05736e-11
4.70532e-11
1.72375e-11
4.5415e-11
1.38937e-11
4.42608e-11
1.09157e-11
4.21964e-11
8.37537e-12
3.97553e-11
6.49272e-12
3.74592e-11
4.25875e-12
3.75376e-11
1.53328e-12
3.78065e-11
-7.04538e-13
3.50862e-11
-1.70581e-12
3.01337e-11
-2.15759e-12
2.81439e-11
-3.41646e-12
3.12145e-11
-5.3702e-12
3.426e-11
-7.60496e-12
3.46369e-11
-1.05952e-11
3.28835e-11
-1.39453e-11
2.64993e-11
-1.50829e-11
1.24426e-11
-1.47706e-11
2.9123e-13
-1.55484e-11
3.04538e-12
-1.83653e-11
1.31286e-11
-2.1083e-11
1.93176e-11
-2.26077e-11
2.21237e-11
-2.30402e-11
2.36634e-11
-2.26052e-11
2.45876e-11
-2.14234e-11
2.52377e-11
-1.97032e-11
2.60446e-11
-1.76166e-11
2.71153e-11
-1.52079e-11
2.80594e-11
-1.24734e-11
2.87657e-11
-9.44865e-12
2.92564e-11
-6.15382e-12
2.9596e-11
-2.68596e-12
2.98831e-11
8.9408e-13
3.00154e-11
4.45679e-12
3.00059e-11
7.92141e-12
2.9807e-11
1.1177e-11
2.9538e-11
1.41619e-11
2.9189e-11
1.68497e-11
2.87064e-11
1.92211e-11
2.80098e-11
2.12623e-11
2.71246e-11
2.296e-11
2.60759e-11
2.41304e-11
2.53205e-11
2.45787e-11
2.4724e-11
2.42108e-11
2.38224e-11
2.28391e-11
2.2354e-11
2.02271e-11
2.00606e-11
1.71257e-11
1.50127e-11
1.61851e-11
4.84497e-12
1.6732e-11
3.90315e-13
1.58105e-11
1.19497e-11
1.24518e-11
2.64635e-11
9.43717e-12
3.30697e-11
7.18986e-12
3.49836e-11
5.22087e-12
3.47473e-11
3.94884e-12
3.18669e-11
3.47032e-12
2.88952e-11
2.53372e-12
3.06695e-11
3.04761e-13
3.57017e-11
-2.44151e-12
3.85888e-11
-4.74503e-12
3.84523e-11
-6.71205e-12
3.83398e-11
-9.33319e-12
4.04819e-11
-1.23922e-11
4.2946e-11
-1.58674e-11
4.50556e-11
-1.93378e-11
4.62587e-11
-2.3295e-11
4.79973e-11
-2.76128e-11
4.90039e-11
-3.2249e-11
4.93839e-11
-3.77882e-11
5.02858e-11
-4.40552e-11
5.04678e-11
-5.13709e-11
5.04204e-11
-6.00475e-11
4.9926e-11
-7.05807e-11
4.87221e-11
-8.32787e-11
4.59047e-11
-9.73562e-11
3.91409e-11
-1.1174e-10
2.85448e-11
-1.31055e-10
2.5352e-11
-1.56496e-10
2.367e-11
-1.87151e-10
1.87077e-11
-2.20399e-10
1.40681e-11
-2.52824e-10
1.32511e-11
-2.79272e-10
1.81652e-11
2.84433e-11
-2.95444e-10
2.90624e-10
5.37812e-11
2.51967e-10
5.45341e-11
2.07078e-10
5.57095e-11
1.63023e-10
5.58046e-11
1.22939e-10
5.64959e-11
8.72346e-11
5.60632e-11
5.33335e-11
5.63108e-11
2.73356e-11
5.55746e-11
1.20804e-11
5.57291e-11
2.9307e-12
5.4906e-11
-3.66994e-12
5.46962e-11
-8.22971e-12
5.3757e-11
-1.16772e-11
5.32026e-11
-1.41588e-11
5.22214e-11
-1.61327e-11
5.13456e-11
-1.81233e-11
5.03535e-11
-1.92739e-11
4.91696e-11
-2.03635e-11
4.81427e-11
-2.17348e-11
4.67862e-11
-2.30525e-11
4.55783e-11
-2.48023e-11
4.39461e-11
-2.77391e-11
4.26922e-11
-3.10724e-11
4.07926e-11
-3.30228e-11
3.94882e-11
-3.29312e-11
3.77152e-11
-3.41759e-11
3.63312e-11
-3.87335e-11
3.46918e-11
-4.38015e-11
3.32124e-11
-4.4755e-11
3.21686e-11
-4.14909e-11
3.09964e-11
-3.67223e-11
2.98688e-11
-3.24792e-11
2.86408e-11
-3.34539e-11
2.74742e-11
-4.7042e-11
2.60308e-11
-7.13191e-11
2.45683e-11
-9.18798e-11
2.3606e-11
-1.01678e-10
2.29273e-11
-1.04108e-10
2.17476e-11
-1.03069e-10
2.10843e-11
-9.94763e-11
2.00706e-11
-9.4581e-11
1.96921e-11
-8.82025e-11
1.88589e-11
-8.0774e-11
1.86156e-11
-7.16708e-11
1.80115e-11
-6.14751e-11
1.7863e-11
-5.00615e-11
1.73514e-11
-3.79497e-11
1.7144e-11
-2.50786e-11
1.67243e-11
-1.18306e-11
1.66344e-11
1.7275e-12
1.64567e-11
1.52284e-11
1.65045e-11
2.84947e-11
1.65402e-11
4.12783e-11
1.67539e-11
5.32839e-11
1.71831e-11
6.45122e-11
1.74779e-11
7.45132e-11
1.80087e-11
8.34099e-11
1.82277e-11
9.06446e-11
1.8841e-11
9.68167e-11
1.91483e-11
1.0161e-10
1.99305e-11
1.05026e-10
2.04068e-11
1.05966e-10
2.14146e-11
1.03896e-10
2.21323e-11
9.54457e-11
2.34638e-11
7.6339e-11
2.39529e-11
5.16582e-11
2.50721e-11
3.72946e-11
2.63143e-11
3.57151e-11
2.8044e-11
3.97568e-11
2.90292e-11
4.43545e-11
3.03873e-11
4.76612e-11
3.14421e-11
4.69725e-11
3.2557e-11
4.20751e-11
3.37938e-11
3.7621e-11
3.51245e-11
3.62812e-11
3.70422e-11
3.64534e-11
3.84175e-11
3.46226e-11
4.0284e-11
3.11882e-11
4.17753e-11
2.8013e-11
4.3658e-11
2.5859e-11
4.51005e-11
2.41372e-11
4.67774e-11
2.26475e-11
4.77478e-11
2.13968e-11
4.92473e-11
2.00764e-11
5.0324e-11
1.79015e-11
5.15588e-11
1.56827e-11
5.25048e-11
1.29047e-11
5.32455e-11
9.24124e-12
5.40829e-11
4.6231e-12
5.45428e-11
-2.02072e-12
5.53648e-11
-1.16729e-11
5.55562e-11
-2.89268e-11
5.63943e-11
-5.66734e-11
5.62904e-11
-8.84781e-11
5.71553e-11
-1.21786e-10
5.69764e-11
-1.60604e-10
5.75245e-11
-2.03428e-10
5.68914e-11
-2.4703e-10
5.68525e-11
-2.84633e-10
5.57671e-11
5.50907e-11
-3.11282e-10
2.1037e-10
8.19923e-11
1.71152e-10
9.37795e-11
1.25316e-10
1.0157e-10
8.22958e-11
9.88463e-11
4.23362e-11
9.64715e-11
-4.33888e-12
1.02748e-10
-8.72031e-11
1.39177e-10
-1.56954e-10
1.25322e-10
-1.60284e-10
5.90531e-11
-1.61961e-10
5.65793e-11
-1.58235e-10
5.09702e-11
-1.5608e-10
5.16056e-11
-1.51123e-10
4.82526e-11
-1.47392e-10
4.85e-11
-1.40349e-10
4.43111e-11
-1.40773e-10
5.07821e-11
-1.33689e-10
4.20838e-11
-1.26777e-10
4.12229e-11
-1.26776e-10
4.67754e-11
-1.19752e-10
3.8543e-11
-1.18399e-10
4.25856e-11
-1.18998e-10
4.32884e-11
-1.31772e-10
5.35682e-11
-1.33438e-10
4.11592e-11
-1.186e-10
2.28876e-11
-1.0899e-10
2.6737e-11
-1.25937e-10
5.16585e-11
-1.55911e-10
6.32105e-11
-1.50912e-10
2.71975e-11
-1.29783e-10
9.89408e-12
-1.08648e-10
8.75812e-12
-8.23451e-11
2.35641e-12
-5.68857e-11
2.02474e-12
-8.55617e-11
5.4709e-11
-2.11674e-10
1.50678e-10
-2.78194e-10
9.01222e-11
-2.75118e-10
1.98496e-11
-2.68589e-10
1.52215e-11
-2.58031e-10
1.05308e-11
-2.44201e-10
6.24448e-12
-2.29458e-10
4.9471e-12
-2.12956e-10
2.34742e-12
-1.94986e-10
6.29257e-13
-1.71801e-10
-5.19386e-12
-1.46363e-10
-7.59534e-12
-1.17741e-10
-1.12894e-11
-8.79997e-11
-1.26132e-11
-5.68558e-11
-1.4434e-11
-2.50602e-11
-1.51754e-11
7.11316e-12
-1.57305e-11
3.92514e-11
-1.56462e-11
7.09576e-11
-1.51745e-11
1.01916e-10
-1.42075e-11
1.31494e-10
-1.2392e-11
1.59597e-10
-1.06181e-11
1.84479e-10
-6.8679e-12
2.07364e-10
-4.65413e-12
2.24719e-10
1.48515e-12
2.4059e-10
3.27522e-12
2.55171e-10
5.35231e-12
2.68274e-10
7.32024e-12
2.7759e-10
1.21307e-11
2.8219e-10
1.75784e-11
2.91466e-10
1.42424e-11
2.38183e-10
7.72879e-11
1.03769e-10
1.59532e-10
7.01379e-11
5.99847e-11
9.5671e-11
2.55124e-12
1.21217e-10
3.53238e-12
1.42263e-10
9.40163e-12
1.63354e-10
1.04159e-11
1.68993e-10
2.69751e-11
1.4117e-10
6.16593e-11
1.22892e-10
5.34302e-11
1.32188e-10
2.77669e-11
1.47261e-10
2.33686e-11
1.46668e-10
4.09117e-11
1.3403e-10
5.44551e-11
1.32356e-10
4.53694e-11
1.32678e-10
4.47908e-11
1.38927e-10
4.05037e-11
1.38812e-10
4.7808e-11
1.45684e-10
4.23165e-11
1.52292e-10
4.36853e-11
1.51983e-10
5.18748e-11
1.58867e-10
4.56357e-11
1.61945e-10
5.01454e-11
1.65731e-10
5.0226e-11
1.68955e-10
5.12378e-11
1.73204e-10
5.10722e-11
1.72296e-10
5.64621e-11
1.57867e-10
7.08183e-11
6.60478e-11
1.48064e-10
5.42031e-12
1.17711e-10
-3.04078e-11
9.27466e-11
-6.89244e-11
9.6012e-11
-1.11338e-10
9.92971e-11
-1.56316e-10
1.01839e-10
-1.94718e-10
9.41827e-11
8.23874e-11
-2.22024e-10
-1.29681e-10
9.92112e-11
-1.50961e-10
1.1511e-10
-1.74054e-10
1.24707e-10
-1.99968e-10
1.24798e-10
-2.27891e-10
1.24421e-10
-2.58951e-10
1.33818e-10
-2.72078e-10
1.52301e-10
-2.78624e-10
1.31859e-10
-2.99779e-10
8.02029e-11
-3.00011e-10
5.68144e-11
-2.96225e-10
4.71963e-11
-2.87353e-10
4.27562e-11
-2.78277e-10
3.92039e-11
-2.66683e-10
3.69329e-11
-2.57973e-10
3.56184e-11
-2.43379e-10
3.6188e-11
-2.34072e-10
3.27575e-11
-2.24706e-10
3.18261e-11
-2.11149e-10
3.31875e-11
-2.04332e-10
3.17058e-11
-1.95307e-10
3.35553e-11
-1.8996e-10
3.7952e-11
-1.77956e-10
4.15891e-11
-1.69461e-10
3.27017e-11
-1.67127e-10
2.06038e-11
-1.66254e-10
2.59284e-11
-1.58744e-10
4.42293e-11
-1.44591e-10
4.91515e-11
-1.42548e-10
2.52573e-11
-1.34245e-10
1.69256e-12
-1.21473e-10
-3.92404e-12
-1.13342e-10
-5.70618e-12
-1.22132e-10
1.08595e-11
-1.41783e-10
7.43852e-11
-1.30812e-10
1.39728e-10
-1.44618e-10
1.03957e-10
-1.67396e-10
4.26738e-11
-1.6704e-10
1.49237e-11
-1.58303e-10
1.85055e-12
-1.45725e-10
-6.29644e-12
-1.29626e-10
-1.11476e-11
-1.11387e-10
-1.59217e-11
-9.01589e-11
-2.06533e-11
-6.75681e-11
-2.78484e-11
-4.19938e-11
-3.32302e-11
-1.51244e-11
-3.82122e-11
1.36181e-11
-4.1406e-11
4.30943e-11
-4.39654e-11
7.3358e-11
-4.55035e-11
1.03864e-10
-4.6307e-11
1.34426e-10
-4.62758e-11
1.64636e-10
-4.54379e-11
1.94187e-10
-4.37936e-11
2.22884e-10
-4.11135e-11
2.49877e-10
-3.76378e-11
2.7554e-10
-3.2576e-11
2.98135e-10
-2.73202e-11
3.19618e-10
-2.00856e-11
3.38173e-10
-1.53615e-11
3.54361e-10
-1.08823e-11
3.67388e-10
-5.69726e-12
3.76714e-10
2.87392e-12
3.80461e-10
1.3937e-11
3.59597e-10
3.5214e-11
3.41756e-10
9.5209e-11
3.58146e-10
1.43191e-10
3.38675e-10
7.94976e-11
3.28055e-10
1.32378e-11
3.36206e-10
-4.51094e-12
3.49018e-10
-3.28016e-12
3.57651e-10
1.89927e-12
3.60106e-10
2.45901e-11
3.73853e-10
4.79349e-11
3.82523e-10
4.47608e-11
3.83677e-10
2.6631e-11
3.86421e-10
2.06836e-11
3.94905e-10
3.25215e-11
4.07245e-10
4.2209e-11
4.13033e-10
3.9621e-11
4.22182e-10
3.55825e-11
4.29069e-10
3.34619e-11
4.42374e-10
3.43265e-11
4.51767e-10
3.28307e-11
4.61621e-10
3.38657e-11
4.76375e-10
3.72105e-11
4.85247e-10
3.6772e-11
4.96867e-10
3.83942e-11
5.06476e-10
4.04442e-11
5.14679e-10
4.29743e-11
5.18113e-10
4.77166e-11
5.14171e-10
6.04928e-11
4.92578e-10
9.239e-11
4.95709e-10
1.44838e-10
4.73533e-10
1.39838e-10
4.44729e-10
1.21585e-10
4.20888e-10
1.19939e-10
3.97042e-10
1.23273e-10
3.7522e-10
1.23814e-10
3.54943e-10
1.14556e-10
9.88588e-11
3.38586e-10
-4.14847e-10
1.04482e-10
-4.18488e-10
1.18781e-10
-4.22085e-10
1.28335e-10
-4.28276e-10
1.31018e-10
-4.35998e-10
1.32164e-10
-4.38507e-10
1.36335e-10
-4.26377e-10
1.40172e-10
-4.14489e-10
1.19975e-10
-4.15156e-10
8.08813e-11
-4.13716e-10
5.53923e-11
-4.06592e-10
4.00955e-11
-3.95223e-10
3.14135e-11
-3.81504e-10
2.55105e-11
-3.66521e-10
2.19636e-11
-3.50538e-10
1.96292e-11
-3.33468e-10
1.90884e-11
-3.17557e-10
1.68044e-11
-3.02018e-10
1.62453e-11
-2.86127e-10
1.72706e-11
-2.71721e-10
1.72962e-11
-2.57718e-10
1.95699e-11
-2.42411e-10
2.26815e-11
-2.25343e-10
2.457e-11
-2.11971e-10
1.93904e-11
-2.0471e-10
1.34168e-11
-1.95723e-10
1.70303e-11
-1.78469e-10
2.70792e-11
-1.57361e-10
2.81603e-11
-1.44238e-10
1.22561e-11
-1.39425e-10
-3.00541e-12
-1.35198e-10
-8.0524e-12
-1.37559e-10
-3.2696e-12
-1.44386e-10
1.77436e-11
-1.33762e-10
6.38137e-11
-9.65462e-11
1.02576e-10
-7.71103e-11
8.46052e-11
-7.72448e-11
4.29077e-11
-7.56812e-11
1.34566e-11
-6.83251e-11
-5.4366e-12
-5.63058e-11
-1.82928e-11
-4.00822e-11
-2.73986e-11
-2.09038e-11
-3.51659e-11
7.71254e-13
-4.24123e-11
2.33663e-11
-5.05276e-11
4.74289e-11
-5.73704e-11
7.24823e-11
-6.33419e-11
9.87272e-11
-6.77371e-11
1.25703e-10
-7.10444e-11
1.53229e-10
-7.31465e-11
1.80989e-10
-7.41869e-11
2.08749e-10
-7.41448e-11
2.3624e-10
-7.30215e-11
2.63185e-10
-7.08201e-11
2.89382e-10
-6.74003e-11
3.14476e-10
-6.28462e-11
3.38578e-10
-5.68263e-11
3.6114e-10
-5.00539e-11
3.82926e-10
-4.20412e-11
4.02293e-10
-3.48582e-11
4.18652e-10
-2.73058e-11
4.31215e-10
-1.82523e-11
4.40011e-10
-5.86648e-12
4.42817e-10
1.11919e-11
4.40916e-10
3.71461e-11
4.57162e-10
7.8958e-11
4.96921e-10
1.03415e-10
5.09539e-10
6.68899e-11
5.02876e-10
1.9958e-11
5.00093e-10
-1.64282e-12
5.04165e-10
-7.28176e-12
5.08903e-10
-2.81969e-12
5.21684e-10
1.17761e-11
5.42164e-10
2.74082e-11
5.59655e-10
2.72535e-11
5.68905e-10
1.7421e-11
5.76046e-10
1.36264e-11
5.89092e-10
1.95612e-11
6.0603e-10
2.53061e-11
6.21441e-10
2.41504e-11
6.35529e-10
2.13461e-11
6.49838e-10
1.89837e-11
6.65417e-10
1.86629e-11
6.80755e-10
1.75505e-11
6.96606e-10
1.81507e-11
7.13509e-10
2.03752e-11
7.29204e-10
2.09994e-11
7.43972e-10
2.34974e-11
7.57345e-10
2.70635e-11
7.67729e-10
3.27506e-11
7.73334e-10
4.23044e-11
7.73827e-10
6.0075e-11
7.76418e-10
8.97835e-11
7.94106e-10
1.27186e-10
8.00658e-10
1.33427e-10
7.94778e-10
1.2766e-10
7.87836e-10
1.27108e-10
7.82919e-10
1.2845e-10
7.80058e-10
1.26881e-10
7.76841e-10
1.17942e-10
1.03952e-10
7.7193e-10
-6.4008e-10
9.97032e-11
-6.32418e-10
1.11117e-10
-6.23047e-10
1.1898e-10
-6.13882e-10
1.21879e-10
-6.03762e-10
1.2207e-10
-5.88575e-10
1.21174e-10
-5.64812e-10
1.16436e-10
-5.42229e-10
9.74161e-11
-5.28974e-10
6.76457e-11
-5.17253e-10
4.36798e-11
-5.03639e-10
2.64809e-11
-4.87339e-10
1.51052e-11
-4.69195e-10
7.34818e-12
-4.4971e-10
2.44645e-12
-4.29426e-10
-7.0039e-13
-4.08302e-10
-2.08906e-12
-3.87907e-10
-3.64053e-12
-3.67828e-10
-3.86586e-12
-3.4767e-10
-2.89647e-12
-3.28364e-10
-1.9953e-12
-3.0896e-10
1.93384e-13
-2.88801e-10
2.55476e-12
-2.68068e-10
3.86632e-12
-2.50232e-10
1.57925e-12
-2.35912e-10
-8.80606e-13
-2.20203e-10
1.34483e-12
-1.99319e-10
6.22786e-12
-1.7688e-10
5.76516e-12
-1.61057e-10
-3.50993e-12
-1.51802e-10
-1.2196e-11
-1.45846e-10
-1.39396e-11
-1.4214e-10
-6.90755e-12
-1.3625e-10
1.19234e-11
-1.144e-10
4.20412e-11
-7.65763e-11
6.48404e-11
-4.69565e-11
5.50831e-11
-3.16245e-11
2.76706e-11
-2.06845e-11
2.59047e-12
-8.82592e-12
-1.72593e-11
5.42041e-12
-3.2549e-11
2.24467e-11
-4.44752e-11
4.17763e-11
-5.45713e-11
6.29382e-11
-6.36596e-11
8.48052e-11
-7.24806e-11
1.0753e-10
-8.01835e-11
1.30868e-10
-8.67792e-11
1.54921e-10
-9.19082e-11
1.79474e-10
-9.57368e-11
2.044e-10
-9.82278e-11
2.29497e-10
-9.94448e-11
2.54588e-10
-9.93942e-11
2.79484e-10
-9.80758e-11
3.03995e-10
-9.54968e-11
3.28001e-10
-9.15887e-11
3.51336e-10
-8.63858e-11
3.74071e-10
-7.97849e-11
3.95945e-10
-7.21572e-11
4.17123e-10
-6.34337e-11
4.3656e-10
-5.4478e-11
4.53745e-10
-4.46316e-11
4.68399e-10
-3.30107e-11
4.80855e-10
-1.84107e-11
4.91841e-10
1.13159e-13
5.05404e-10
2.3473e-11
5.32997e-10
5.12477e-11
5.7167e-10
6.4635e-11
5.94804e-10
4.36751e-11
6.01089e-10
1.36111e-11
6.04893e-10
-5.51466e-12
6.10588e-10
-1.30706e-11
6.19502e-10
-1.18489e-11
6.3478e-10
-3.6055e-12
6.56597e-10
5.53322e-12
6.77343e-10
6.50107e-12
6.92941e-10
1.84663e-12
7.06915e-10
-3.25703e-13
7.24268e-10
2.21113e-12
7.44659e-10
4.89756e-12
7.64692e-10
4.08963e-12
7.83998e-10
2.02099e-12
8.03082e-10
-8.40047e-14
8.22879e-10
-1.05779e-12
8.42603e-10
-2.05353e-12
8.62687e-10
-1.83204e-12
8.83411e-10
-3.14055e-13
9.03243e-10
1.17232e-12
9.22327e-10
4.48728e-12
9.39985e-10
9.59329e-12
9.55418e-10
1.75318e-11
9.68162e-10
2.96901e-11
9.79951e-10
4.83407e-11
9.95903e-10
7.39301e-11
1.02152e-09
1.01757e-10
1.04182e-09
1.1335e-10
1.05369e-09
1.15993e-10
1.06281e-09
1.18196e-10
1.0719e-09
1.19551e-10
1.0812e-09
1.17712e-10
1.08873e-09
1.10557e-10
9.95037e-11
1.09325e-09
-8.21318e-10
8.73101e-11
-8.05441e-10
9.52412e-11
-7.86823e-10
1.00386e-10
-7.66583e-10
1.01675e-10
-7.4421e-10
9.97391e-11
-7.17959e-10
9.49669e-11
-6.87167e-10
8.56827e-11
-6.57635e-10
6.79087e-11
-6.34169e-10
4.41797e-11
-6.13197e-10
2.26808e-11
-5.92392e-10
5.62727e-12
-5.70549e-10
-6.80182e-12
-5.47717e-10
-1.55619e-11
-5.24e-10
-2.13573e-11
-4.99801e-10
-2.49905e-11
-4.75098e-10
-2.68754e-11
-4.50838e-10
-2.79617e-11
-4.26846e-10
-2.78897e-11
-4.0291e-10
-2.68378e-11
-3.79489e-10
-2.54029e-11
-3.55975e-10
-2.33045e-11
-3.32209e-10
-2.12042e-11
-3.08454e-10
-1.98983e-11
-2.86591e-10
-2.03134e-11
-2.66721e-10
-2.07957e-11
-2.4614e-10
-1.92882e-11
-2.23004e-10
-1.69585e-11
-1.99736e-10
-1.75401e-11
-1.81085e-10
-2.21795e-11
-1.67105e-10
-2.61746e-11
-1.55607e-10
-2.54196e-11
-1.44319e-10
-1.81648e-11
-1.28733e-10
-3.62357e-12
-1.02079e-10
1.54333e-11
-6.52552e-11
2.80639e-11
-3.24473e-11
2.23138e-11
-8.90831e-12
4.14873e-12
9.6767e-12
-1.60113e-11
2.67411e-11
-3.43806e-11
4.41327e-11
-5.00342e-11
6.27224e-11
-6.31839e-11
8.25704e-11
-7.45495e-11
1.03457e-10
-8.46781e-11
1.24801e-10
-9.39556e-11
1.46571e-10
-1.02089e-10
1.68646e-10
-1.08999e-10
1.91079e-10
-1.145e-10
2.13785e-10
-1.18611e-10
2.36698e-10
-1.21313e-10
2.59707e-10
-1.22628e-10
2.82704e-10
-1.22566e-10
3.05582e-10
-1.21136e-10
3.28238e-10
-1.18346e-10
3.50622e-10
-1.14173e-10
3.72674e-10
-1.08636e-10
3.94439e-10
-1.01735e-10
4.15774e-10
-9.3657e-11
4.36666e-10
-8.4469e-11
4.56555e-10
-7.44895e-11
4.75203e-10
-6.33872e-11
4.92721e-10
-5.06263e-11
5.09829e-10
-3.56079e-11
5.27984e-10
-1.81257e-11
5.5014e-10
1.24349e-12
5.81488e-10
1.98393e-11
6.18493e-10
2.75824e-11
6.45783e-10
1.63379e-11
6.61669e-10
-2.34003e-12
6.72956e-10
-1.68953e-11
6.84208e-10
-2.44284e-11
6.97787e-10
-2.55063e-11
7.15915e-10
-2.17509e-11
7.38617e-10
-1.71278e-11
7.61419e-10
-1.62445e-11
7.81641e-10
-1.83558e-11
8.0103e-10
-1.97429e-11
8.22332e-10
-1.91261e-11
8.45656e-10
-1.8416e-11
8.69173e-10
-1.93475e-11
8.92468e-10
-2.11561e-11
9.1559e-10
-2.30961e-11
9.39099e-10
-2.4497e-11
9.62624e-10
-2.5556e-11
9.86428e-10
-2.56397e-11
1.01066e-09
-2.4539e-11
1.03444e-09
-2.25253e-11
1.05773e-09
-1.86788e-11
1.0801e-09
-1.26532e-11
1.10132e-09
-3.66461e-12
1.12171e-09
9.26083e-12
1.14304e-09
2.70202e-11
1.16818e-09
4.88991e-11
1.19906e-09
7.10019e-11
1.22766e-09
8.48226e-11
1.25131e-09
9.23818e-11
1.27212e-09
9.74099e-11
1.29145e-09
1.00188e-10
1.3094e-09
9.97433e-11
1.32467e-09
9.52883e-11
8.77313e-11
1.33632e-09
-9.66235e-10
6.93474e-11
-9.44517e-10
7.3538e-11
-9.19502e-10
7.54007e-11
-8.91885e-10
7.40937e-11
-8.61711e-10
6.96061e-11
-8.2865e-10
6.19463e-11
-7.93288e-10
5.03449e-11
-7.58979e-10
3.35944e-11
-7.2838e-10
1.35373e-11
-7.00258e-10
-5.51677e-12
-6.73201e-10
-2.15302e-11
-6.46222e-10
-3.38957e-11
-6.19006e-10
-4.29032e-11
-5.91471e-10
-4.90197e-11
-5.63746e-10
-5.28342e-11
-5.35892e-10
-5.48263e-11
-5.08332e-10
-5.55888e-11
-4.81039e-10
-5.52193e-11
-4.5393e-10
-5.39617e-11
-4.27144e-10
-5.21975e-11
-4.00431e-10
-5.00344e-11
-3.7376e-10
-4.79106e-11
-3.47409e-10
-4.63108e-11
-3.22242e-10
-4.55709e-11
-2.9821e-10
-4.49414e-11
-2.74035e-10
-4.35926e-11
-2.4899e-10
-4.21331e-11
-2.2449e-10
-4.21601e-11
-2.0288e-10
-4.38889e-11
-1.84242e-10
-4.4889e-11
-1.66991e-10
-4.27284e-11
-1.48898e-10
-3.63003e-11
-1.26733e-10
-2.58251e-11
-9.73041e-11
-1.40325e-11
-6.20318e-11
-7.25637e-12
-2.84098e-11
-1.13771e-11
-3.07475e-13
-2.40508e-11
2.35012e-11
-3.99475e-11
4.4933e-11
-5.59646e-11
6.54589e-11
-7.07257e-11
8.59701e-11
-8.38616e-11
1.06794e-10
-9.55321e-11
1.2794e-10
-1.05973e-10
1.49197e-10
-1.15353e-10
1.70531e-10
-1.23561e-10
1.91913e-10
-1.30515e-10
2.13387e-10
-1.361e-10
2.34945e-10
-1.40284e-10
2.56571e-10
-1.43045e-10
2.78223e-10
-1.44384e-10
2.99855e-10
-1.4431e-10
3.21429e-10
-1.42833e-10
3.42922e-10
-1.39964e-10
3.64342e-10
-1.35701e-10
3.857e-10
-1.30066e-10
4.07028e-10
-1.23092e-10
4.28274e-10
-1.14899e-10
4.49398e-10
-1.05574e-10
4.70182e-10
-9.5261e-11
4.90621e-10
-8.38261e-11
5.11037e-10
-7.10448e-11
5.32213e-10
-5.67756e-11
5.55434e-10
-4.13119e-11
5.82496e-10
-2.57567e-11
6.15116e-10
-1.27035e-11
6.50198e-10
-7.43171e-12
6.79814e-10
-1.32459e-11
7.02042e-10
-2.45832e-11
7.20036e-10
-3.49332e-11
7.37017e-10
-4.14362e-11
7.55271e-10
-4.37223e-11
7.76422e-10
-4.27926e-11
8.00425e-10
-4.10029e-11
8.25021e-10
-4.07715e-11
8.48693e-10
-4.20579e-11
8.72146e-10
-4.32825e-11
8.96743e-10
-4.37656e-11
9.22659e-10
-4.42606e-11
9.49033e-10
-4.5559e-11
9.75458e-10
-4.74302e-11
1.00186e-09
-4.94516e-11
1.02847e-09
-5.11818e-11
1.05525e-09
-5.24449e-11
1.08233e-09
-5.27932e-11
1.10976e-09
-5.19452e-11
1.1371e-09
-4.97913e-11
1.16424e-09
-4.57951e-11
1.19101e-09
-3.95276e-11
1.21754e-09
-3.03723e-11
1.24443e-09
-1.77425e-11
1.2729e-09
-1.44466e-12
1.30436e-09
1.74879e-11
1.33902e-09
3.63042e-11
1.37292e-09
5.0816e-11
1.404e-09
6.11665e-11
1.43253e-09
6.87075e-11
1.45889e-09
7.36511e-11
1.4829e-09
7.56189e-11
1.50365e-09
7.43748e-11
7.06163e-11
1.5206e-09
-1.08006e-09
4.74777e-11
-1.05435e-09
4.78381e-11
-1.02512e-09
4.6177e-11
-9.92899e-10
4.18862e-11
-9.58074e-10
3.47987e-11
-9.2101e-10
2.4893e-11
-8.82651e-10
1.19719e-11
-8.45061e-10
-4.04522e-12
-8.09803e-10
-2.1803e-11
-7.76621e-10
-3.88031e-11
-7.4477e-10
-5.34994e-11
-7.13577e-10
-6.5213e-11
-6.82676e-10
-7.393e-11
-6.51895e-10
-7.99228e-11
-6.21215e-10
-8.36221e-11
-5.90663e-10
-8.54639e-11
-5.60403e-10
-8.59106e-11
-5.3044e-10
-8.52267e-11
-5.00739e-10
-8.37016e-11
-4.71323e-10
-8.16575e-11
-4.421e-10
-7.9316e-11
-4.1309e-10
-7.70006e-11
-3.8449e-10
-7.50135e-11
-3.56685e-10
-7.35047e-11
-3.29623e-10
-7.21535e-11
-3.02749e-10
-7.06308e-11
-2.75835e-10
-6.92162e-11
-2.49626e-10
-6.85295e-11
-2.25189e-10
-6.84705e-11
-2.02468e-10
-6.77369e-11
-1.80315e-10
-6.49928e-11
-1.57013e-10
-5.97051e-11
-1.30516e-10
-5.2422e-11
-9.94069e-11
-4.52502e-11
-6.49126e-11
-4.18739e-11
-3.11156e-11
-4.53164e-11
-6.1823e-13
-5.47074e-11
2.65521e-11
-6.72851e-11
5.12737e-11
-8.08484e-11
7.45097e-11
-9.41061e-11
9.69799e-11
-1.06452e-10
1.19071e-10
-1.1772e-10
1.40928e-10
-1.2791e-10
1.62546e-10
-1.37041e-10
1.83956e-10
-1.45031e-10
2.05197e-10
-1.51801e-10
2.26331e-10
-1.5726e-10
2.47401e-10
-1.6136e-10
2.68429e-10
-1.64072e-10
2.89422e-10
-1.65386e-10
3.10388e-10
-1.65306e-10
3.31346e-10
-1.63839e-10
3.52336e-10
-1.60995e-10
3.73413e-10
-1.56785e-10
3.94633e-10
-1.51236e-10
4.16042e-10
-1.44401e-10
4.37643e-10
-1.36377e-10
4.59437e-10
-1.27261e-10
4.81404e-10
-1.17157e-10
5.03682e-10
-1.06065e-10
5.26651e-10
-9.39811e-11
5.5098e-10
-8.10484e-11
5.77552e-10
-6.77905e-11
6.07254e-10
-5.53368e-11
6.40315e-10
-4.56424e-11
6.74472e-10
-4.15011e-11
7.05481e-10
-4.42205e-11
7.31864e-10
-5.09804e-11
7.54969e-10
-5.80585e-11
7.76833e-10
-6.32728e-11
7.99202e-10
-6.59884e-11
8.23232e-10
-6.66767e-11
8.48975e-10
-6.6639e-11
8.75375e-10
-6.71793e-11
9.01662e-10
-6.84614e-11
9.28112e-10
-6.98587e-11
9.55374e-10
-7.10473e-11
9.83565e-10
-7.2331e-11
1.01225e-09
-7.40787e-11
1.04112e-09
-7.62198e-11
1.07008e-09
-7.84862e-11
1.09926e-09
-8.05199e-11
1.12872e-09
-8.20229e-11
1.15856e-09
-8.26227e-11
1.18874e-09
-8.20395e-11
1.21905e-09
-8.00557e-11
1.24941e-09
-7.62549e-11
1.27989e-09
-7.01912e-11
1.31076e-09
-6.13758e-11
1.34254e-09
-4.95081e-11
1.37592e-09
-3.47463e-11
1.41147e-09
-1.80523e-11
1.4489e-09
-1.22365e-12
1.48615e-09
1.34472e-11
1.52165e-09
2.55175e-11
1.55493e-09
3.52421e-11
1.58582e-09
4.26295e-11
1.61387e-09
4.74516e-11
1.6384e-09
4.96774e-11
4.98668e-11
1.65913e-09
-1.16686e-09
2.29942e-11
-1.13861e-09
1.95584e-11
-1.10682e-09
1.43595e-11
-1.07198e-09
7.02691e-12
-1.03464e-09
-2.55674e-12
-9.95445e-10
-1.43331e-11
-9.55352e-10
-2.81759e-11
-9.15724e-10
-4.37496e-11
-8.77611e-10
-6.0003e-11
-8.41109e-10
-7.5392e-11
-8.059e-10
-8.87931e-11
-7.71577e-10
-9.96169e-11
-7.37844e-10
-1.07743e-10
-7.04513e-10
-1.1333e-10
-6.71503e-10
-1.16702e-10
-6.38792e-10
-1.18237e-10
-6.06425e-10
-1.18336e-10
-5.74397e-10
-1.17318e-10
-5.4268e-10
-1.15492e-10
-5.11263e-10
-1.13158e-10
-4.80108e-10
-1.10562e-10
-4.49244e-10
-1.07962e-10
-4.18792e-10
-1.0557e-10
-3.88926e-10
-1.03483e-10
-3.59625e-10
-1.01577e-10
-3.30661e-10
-9.97236e-11
-3.01979e-10
-9.803e-11
-2.73941e-10
-9.66977e-11
-2.46976e-10
-9.55591e-11
-2.20915e-10
-9.39128e-11
-1.94942e-10
-9.10764e-11
-1.67878e-10
-8.68796e-11
-1.38516e-10
-8.19003e-11
-1.06265e-10
-7.76263e-11
-7.20542e-11
-7.62222e-11
-3.81877e-11
-7.93267e-11
-6.39401e-12
-8.66401e-11
2.28927e-11
-9.66906e-11
4.99841e-11
-1.08024e-10
7.54196e-11
-1.19586e-10
9.96994e-11
-1.3074e-10
1.23165e-10
-1.41172e-10
1.46012e-10
-1.50737e-10
1.68337e-10
-1.59349e-10
1.90233e-10
-1.6691e-10
2.11788e-10
-1.7333e-10
2.33093e-10
-1.78526e-10
2.54219e-10
-1.8244e-10
2.7522e-10
-1.85039e-10
2.9614e-10
-1.86304e-10
3.17028e-10
-1.86232e-10
3.3795e-10
-1.84824e-10
3.5899e-10
-1.82089e-10
3.80239e-10
-1.78044e-10
4.0178e-10
-1.72731e-10
4.23674e-10
-1.66216e-10
4.45965e-10
-1.58594e-10
4.68702e-10
-1.49969e-10
4.91971e-10
-1.4045e-10
5.1597e-10
-1.30121e-10
5.4105e-10
-1.19114e-10
5.67698e-10
-1.07715e-10
5.96431e-10
-9.65042e-11
6.27578e-10
-8.64445e-11
6.60851e-10
-7.88868e-11
6.94673e-10
-7.53282e-11
7.26676e-10
-7.62664e-11
7.55812e-10
-8.01773e-11
7.82617e-10
-8.49007e-11
8.08289e-10
-8.89227e-11
8.34013e-10
-9.16311e-11
8.6059e-10
-9.31696e-11
8.88163e-10
-9.42004e-11
9.16295e-10
-9.54115e-11
9.44647e-10
-9.69743e-11
9.73349e-10
-9.86705e-11
1.00271e-09
-1.0038e-10
1.03276e-09
-1.02253e-10
1.06326e-09
-1.04466e-10
1.094e-09
-1.06966e-10
1.12493e-09
-1.09529e-10
1.15615e-09
-1.11835e-10
1.18774e-09
-1.13582e-10
1.21974e-09
-1.14471e-10
1.25209e-09
-1.14248e-10
1.28468e-09
-1.12638e-10
1.31757e-09
-1.09229e-10
1.35093e-09
-1.03586e-10
1.38501e-09
-9.53535e-11
1.42012e-09
-8.44323e-11
1.45659e-09
-7.10902e-11
1.4946e-09
-5.60502e-11
1.53384e-09
-4.04689e-11
1.57298e-09
-2.57163e-11
1.61087e-09
-1.24217e-11
1.64682e-09
-7.59643e-13
1.68035e-09
9.08178e-12
1.71085e-09
1.68729e-11
1.73787e-09
2.26482e-11
2.67451e-11
1.76113e-09
-1.23031e-09
-3.12712e-12
-1.20058e-09
-1.02265e-11
-1.16745e-09
-1.88305e-11
-1.13137e-09
-2.90958e-11
-1.09296e-09
-4.10244e-11
-1.05291e-09
-5.4449e-11
-1.01208e-09
-6.90789e-11
-9.71465e-10
-8.44408e-11
-9.31811e-10
-9.97136e-11
-8.9336e-10
-1.1388e-10
-8.56034e-10
-1.26145e-10
-8.19621e-10
-1.36052e-10
-7.83914e-10
-1.43474e-10
-7.48755e-10
-1.48519e-10
-7.14048e-10
-1.51447e-10
-6.79743e-10
-1.52593e-10
-6.45833e-10
-1.52317e-10
-6.12292e-10
-1.5095e-10
-5.7909e-10
-1.488e-10
-5.46202e-10
-1.46153e-10
-5.13606e-10
-1.43253e-10
-4.81323e-10
-1.40323e-10
-4.49421e-10
-1.37531e-10
-4.17986e-10
-1.34964e-10
-3.87012e-10
-1.32593e-10
-3.56412e-10
-1.30367e-10
-3.26174e-10
-1.28318e-10
-2.96447e-10
-1.26483e-10
-2.67358e-10
-1.24717e-10
-2.38701e-10
-1.22649e-10
-2.09903e-10
-1.19964e-10
-1.80207e-10
-1.16678e-10
-1.48934e-10
-1.13291e-10
-1.15877e-10
-1.10813e-10
-8.17002e-11
-1.10536e-10
-4.77731e-11
-1.13385e-10
-1.52468e-11
-1.19275e-10
1.53936e-11
-1.274e-10
4.41629e-11
-1.36816e-10
7.13177e-11
-1.4672e-10
9.7168e-11
-1.56545e-10
1.21975e-10
-1.65932e-10
1.45929e-10
-1.74663e-10
1.69172e-10
-1.82588e-10
1.91831e-10
-1.89583e-10
2.14028e-10
-1.95546e-10
2.35872e-10
-2.0039e-10
2.57457e-10
-2.04054e-10
2.7886e-10
-2.06498e-10
3.00151e-10
-2.07698e-10
3.2141e-10
-2.07639e-10
3.42736e-10
-2.06319e-10
3.64241e-10
-2.03747e-10
3.86038e-10
-1.9995e-10
4.08221e-10
-1.9498e-10
4.3087e-10
-1.88915e-10
4.54053e-10
-1.81853e-10
4.77861e-10
-1.73903e-10
5.02424e-10
-1.65183e-10
5.27946e-10
-1.55827e-10
5.54706e-10
-1.46037e-10
5.83018e-10
-1.36153e-10
6.13138e-10
-1.2672e-10
6.45106e-10
-1.18496e-10
6.78519e-10
-1.12384e-10
7.12298e-10
-1.09197e-10
7.45049e-10
-1.09105e-10
7.76044e-10
-1.11244e-10
8.05446e-10
-1.14344e-10
8.33925e-10
-1.17403e-10
8.62234e-10
-1.1992e-10
8.90926e-10
-1.21863e-10
9.20181e-10
-1.2352e-10
9.4987e-10
-1.2523e-10
9.79878e-10
-1.27117e-10
1.01028e-09
-1.29141e-10
1.04123e-09
-1.31292e-10
1.0727e-09
-1.33661e-10
1.10456e-09
-1.36316e-10
1.1367e-09
-1.39171e-10
1.16912e-09
-1.42012e-10
1.20189e-09
-1.4457e-10
1.23505e-09
-1.46596e-10
1.2686e-09
-1.4785e-10
1.30248e-09
-1.48068e-10
1.33673e-09
-1.46909e-10
1.37146e-09
-1.43952e-10
1.40684e-09
-1.38822e-10
1.44301e-09
-1.31296e-10
1.4801e-09
-1.21363e-10
1.51828e-09
-1.09227e-10
1.5576e-09
-9.53545e-11
1.59769e-09
-8.05126e-11
1.63764e-09
-6.56271e-11
1.67655e-09
-5.13025e-11
1.71372e-09
-3.78815e-11
1.7485e-09
-2.56886e-11
1.78035e-09
-1.49621e-11
1.80885e-09
-5.72365e-12
2.08347e-12
1.83364e-09
-1.27384e-09
-3.01523e-11
-1.24343e-09
-4.07106e-11
-1.20981e-09
-5.25089e-11
-1.17345e-09
-6.55251e-11
-1.13492e-09
-7.96314e-11
-1.09489e-09
-9.45626e-11
-1.0541e-09
-1.09945e-10
-1.01331e-09
-1.25288e-10
-9.73097e-10
-1.39948e-10
-9.3375e-10
-1.53226e-10
-8.95319e-10
-1.64568e-10
-8.57717e-10
-1.73648e-10
-8.20819e-10
-1.80374e-10
-7.84507e-10
-1.84845e-10
-7.48697e-10
-1.87291e-10
-7.13334e-10
-1.88017e-10
-6.78386e-10
-1.87358e-10
-6.43817e-10
-1.85634e-10
-6.0959e-10
-1.83148e-10
-5.75676e-10
-1.80174e-10
-5.42056e-10
-1.76951e-10
-5.08739e-10
-1.7368e-10
-4.75763e-10
-1.70515e-10
-4.43171e-10
-1.67543e-10
-4.10964e-10
-1.6478e-10
-3.79106e-10
-1.62213e-10
-3.47589e-10
-1.59844e-10
-3.1645e-10
-1.57657e-10
-2.85682e-10
-1.55549e-10
-2.5509e-10
-1.53336e-10
-2.24282e-10
-1.50893e-10
-1.9279e-10
-1.48317e-10
-1.6025e-10
-1.45999e-10
-1.26631e-10
-1.44616e-10
-9.24039e-11
-1.4495e-10
-5.84219e-11
-1.47542e-10
-2.54608e-11
-1.52381e-10
6.0477e-12
-1.59011e-10
3.59908e-11
-1.66818e-10
6.44541e-11
-1.75214e-10
9.16083e-11
-1.83725e-10
1.17635e-10
-1.92006e-10
1.42698e-10
-1.99809e-10
1.66946e-10
-2.06956e-10
1.9052e-10
-2.13302e-10
2.13556e-10
-2.18733e-10
2.36175e-10
-2.23163e-10
2.58485e-10
-2.26526e-10
2.80576e-10
-2.28777e-10
3.0254e-10
-2.29884e-10
3.24478e-10
-2.29827e-10
3.46507e-10
-2.28601e-10
3.68752e-10
-2.26216e-10
3.91333e-10
-2.2271e-10
4.14352e-10
-2.18145e-10
4.37898e-10
-2.12603e-10
4.62063e-10
-2.06186e-10
4.86959e-10
-1.98999e-10
5.12729e-10
-1.91168e-10
5.39548e-10
-1.82851e-10
5.67612e-10
-1.74281e-10
5.97098e-10
-1.65798e-10
6.28103e-10
-1.57873e-10
6.60548e-10
-1.51081e-10
6.9406e-10
-1.46013e-10
7.27905e-10
-1.43123e-10
7.61209e-10
-1.42456e-10
7.93449e-10
-1.43513e-10
8.24619e-10
-1.45543e-10
8.55072e-10
-1.47897e-10
8.85285e-10
-1.50184e-10
9.15641e-10
-1.52289e-10
9.4632e-10
-1.54293e-10
9.77323e-10
-1.56343e-10
1.00863e-09
-1.58529e-10
1.04029e-09
-1.60881e-10
1.07236e-09
-1.63436e-10
1.10486e-09
-1.66238e-10
1.13771e-09
-1.69275e-10
1.17087e-09
-1.72432e-10
1.20436e-09
-1.75524e-10
1.2382e-09
-1.78351e-10
1.27239e-09
-1.80716e-10
1.30691e-09
-1.82383e-10
1.34179e-09
-1.83042e-10
1.37714e-09
-1.82311e-10
1.41306e-09
-1.79805e-10
1.44963e-09
-1.75243e-10
1.48688e-09
-1.68472e-10
1.52491e-09
-1.59443e-10
1.56381e-09
-1.48228e-10
1.60354e-09
-1.35119e-10
1.64371e-09
-1.20669e-10
1.68364e-09
-1.05542e-10
1.72263e-09
-9.02476e-11
1.76e-09
-7.52027e-11
1.79511e-09
-6.0786e-11
1.8275e-09
-4.72478e-11
1.85668e-09
-3.47765e-11
-2.35081e-11
1.88227e-09
-1.30068e-09
-5.75411e-11
-1.27013e-09
-7.13126e-11
-1.23663e-09
-8.60619e-11
-1.20063e-09
-1.01617e-10
-1.16263e-09
-1.1773e-10
-1.12323e-09
-1.34058e-10
-1.08305e-09
-1.50194e-10
-1.0427e-09
-1.65676e-10
-1.00266e-09
-1.80001e-10
-9.63209e-10
-1.92674e-10
-9.24463e-10
-2.03314e-10
-8.86408e-10
-2.11707e-10
-8.48979e-10
-2.17812e-10
-8.12101e-10
-2.21742e-10
-7.75712e-10
-2.23719e-10
-7.39762e-10
-2.24034e-10
-7.04213e-10
-2.23002e-10
-6.69025e-10
-2.20934e-10
-6.34161e-10
-2.18124e-10
-5.99592e-10
-2.14839e-10
-5.65299e-10
-2.11309e-10
-5.31285e-10
-2.07728e-10
-4.97567e-10
-2.04243e-10
-4.64168e-10
-2.00944e-10
-4.31086e-10
-1.97871e-10
-3.98304e-10
-1.95027e-10
-3.65805e-10
-1.92409e-10
-3.33574e-10
-1.89994e-10
-3.01553e-10
-1.87716e-10
-2.69579e-10
-1.85492e-10
-2.37392e-10
-1.83292e-10
-2.04711e-10
-1.81233e-10
-1.71355e-10
-1.79608e-10
-1.37368e-10
-1.78866e-10
-1.03092e-10
-1.79489e-10
-6.90803e-11
-1.818e-10
-3.58682e-11
-1.85809e-10
-3.80926e-12
-1.9125e-10
2.69412e-11
-1.97718e-10
5.63769e-11
-2.04784e-10
8.45781e-11
-2.12069e-10
1.11663e-10
-2.19261e-10
1.37762e-10
-2.26116e-10
1.63012e-10
-2.32444e-10
1.87552e-10
-2.38092e-10
2.11517e-10
-2.42947e-10
2.35033e-10
-2.46917e-10
2.58213e-10
-2.49938e-10
2.81159e-10
-2.51958e-10
3.03976e-10
-2.52942e-10
3.26775e-10
-2.52866e-10
3.49679e-10
-2.51725e-10
3.72813e-10
-2.49536e-10
3.96295e-10
-2.46343e-10
4.2023e-10
-2.42212e-10
4.4472e-10
-2.37226e-10
4.69869e-10
-2.31482e-10
4.95798e-10
-2.25082e-10
5.22641e-10
-2.18155e-10
5.50528e-10
-2.10869e-10
5.79578e-10
-2.03459e-10
6.09876e-10
-1.96238e-10
6.41437e-10
-1.89592e-10
6.74153e-10
-1.83943e-10
7.07724e-10
-1.79681e-10
7.41641e-10
-1.77072e-10
7.75316e-10
-1.76128e-10
8.08351e-10
-1.76562e-10
8.40666e-10
-1.77931e-10
8.72448e-10
-1.79806e-10
9.04007e-10
-1.81884e-10
9.35617e-10
-1.84019e-10
9.67423e-10
-1.86195e-10
9.99455e-10
-1.88473e-10
1.03172e-09
-1.90922e-10
1.06425e-09
-1.93588e-10
1.0971e-09
-1.96499e-10
1.1303e-09
-1.99648e-10
1.16384e-09
-2.02978e-10
1.19771e-09
-2.06379e-10
1.23187e-09
-2.09719e-10
1.26633e-09
-2.12847e-10
1.30106e-09
-2.15572e-10
1.33611e-09
-2.17623e-10
1.37156e-09
-2.18648e-10
1.40751e-09
-2.18284e-10
1.44399e-09
-2.16228e-10
1.481e-09
-2.12256e-10
1.51857e-09
-2.06186e-10
1.55678e-09
-1.97868e-10
1.59569e-09
-1.8728e-10
1.63514e-09
-1.74632e-10
1.67477e-09
-1.60336e-10
1.71408e-09
-1.44852e-10
1.75249e-09
-1.28615e-10
1.78937e-09
-1.12059e-10
1.8242e-09
-9.55527e-11
1.85649e-09
-7.94223e-11
1.88574e-09
-6.40099e-11
-4.95126e-11
1.91168e-09
-1.3138e-09
-8.49256e-11
-1.28351e-09
-1.01644e-10
-1.25057e-09
-1.19084e-10
-1.21534e-09
-1.36949e-10
-1.17828e-09
-1.5489e-10
-1.13991e-09
-1.72514e-10
-1.10075e-09
-1.89408e-10
-1.0613e-09
-2.05157e-10
-1.02197e-09
-2.19361e-10
-9.83004e-10
-2.31662e-10
-9.44538e-10
-2.41804e-10
-9.06601e-10
-2.49661e-10
-8.69171e-10
-2.5525e-10
-8.3221e-10
-2.58709e-10
-7.95678e-10
-2.60269e-10
-7.59536e-10
-2.60214e-10
-7.2375e-10
-2.5885e-10
-6.88284e-10
-2.5648e-10
-6.53106e-10
-2.53389e-10
-6.18189e-10
-2.49839e-10
-5.8352e-10
-2.46056e-10
-5.49095e-10
-2.42227e-10
-5.14921e-10
-2.38493e-10
-4.81006e-10
-2.34948e-10
-4.47347e-10
-2.3164e-10
-4.13929e-10
-2.28586e-10
-3.8073e-10
-2.25785e-10
-3.47714e-10
-2.23219e-10
-3.14813e-10
-2.20854e-10
-2.81901e-10
-2.18659e-10
-2.48808e-10
-2.16649e-10
-2.15376e-10
-2.14933e-10
-1.81527e-10
-2.13726e-10
-1.47333e-10
-2.13324e-10
-1.13048e-10
-2.14028e-10
-7.90502e-11
-2.16036e-10
-4.5716e-11
-2.19358e-10
-1.33261e-11
-2.23831e-10
1.79637e-11
-2.2918e-10
4.81053e-11
-2.35094e-10
7.71261e-11
-2.4127e-10
1.05099e-10
-2.47436e-10
1.32123e-10
-2.53368e-10
1.58315e-10
-2.58878e-10
1.83798e-10
-2.63822e-10
2.08701e-10
-2.68084e-10
2.33146e-10
-2.71577e-10
2.5725e-10
-2.74235e-10
2.81122e-10
-2.76006e-10
3.0487e-10
-2.7685e-10
3.28608e-10
-2.76745e-10
3.52452e-10
-2.7569e-10
3.76522e-10
-2.73706e-10
4.00931e-10
-2.70839e-10
4.25784e-10
-2.67155e-10
4.51192e-10
-2.62731e-10
4.77269e-10
-2.57656e-10
5.0413e-10
-2.52032e-10
5.31886e-10
-2.45986e-10
5.60622e-10
-2.39686e-10
5.90398e-10
-2.33352e-10
6.21242e-10
-2.27254e-10
6.5314e-10
-2.21693e-10
6.85994e-10
-2.16976e-10
7.19576e-10
-2.13369e-10
7.53517e-10
-2.11045e-10
7.87389e-10
-2.10021e-10
8.20878e-10
-2.10136e-10
8.53885e-10
-2.11117e-10
8.86521e-10
-2.12671e-10
9.18997e-10
-2.14562e-10
9.51504e-10
-2.16649e-10
9.84134e-10
-2.18893e-10
1.0169e-09
-2.21324e-10
1.04981e-09
-2.2399e-10
1.08291e-09
-2.26915e-10
1.11627e-09
-2.30093e-10
1.14993e-09
-2.33481e-10
1.18391e-09
-2.37019e-10
1.21817e-09
-2.4063e-10
1.25265e-09
-2.44222e-10
1.28734e-09
-2.4765e-10
1.32226e-09
-2.50686e-10
1.35751e-09
-2.53021e-10
1.39317e-09
-2.54321e-10
1.42925e-09
-2.54291e-10
1.46572e-09
-2.52682e-10
1.50259e-09
-2.49249e-10
1.53993e-09
-2.43722e-10
1.57781e-09
-2.35884e-10
1.61618e-09
-2.25694e-10
1.65483e-09
-2.13312e-10
1.69348e-09
-1.99004e-10
1.73173e-09
-1.83087e-10
1.76909e-09
-1.65947e-10
1.80505e-09
-1.47982e-10
1.83915e-09
-1.29559e-10
1.87088e-09
-1.11113e-10
1.89982e-09
-9.3028e-11
-7.55354e-11
1.9258e-09
-1.31596e-09
-1.12077e-10
-1.28622e-09
-1.31461e-10
-1.25409e-09
-1.51313e-10
-1.2199e-09
-1.7124e-10
-1.18405e-09
-1.90823e-10
-1.14697e-09
-2.09641e-10
-1.10912e-09
-2.27292e-10
-1.07089e-09
-2.43404e-10
-1.03263e-09
-2.5765e-10
-9.9456e-10
-2.69765e-10
-9.568e-10
-2.79582e-10
-9.19404e-10
-2.87052e-10
-8.8238e-10
-2.92245e-10
-8.45716e-10
-2.95331e-10
-8.09391e-10
-2.96555e-10
-7.7338e-10
-2.96201e-10
-7.37655e-10
-2.94571e-10
-7.0219e-10
-2.91964e-10
-6.66963e-10
-2.88659e-10
-6.31954e-10
-2.84913e-10
-5.97152e-10
-2.80946e-10
-5.62554e-10
-2.76938e-10
-5.28157e-10
-2.73026e-10
-4.93963e-10
-2.69301e-10
-4.59967e-10
-2.65819e-10
-4.26153e-10
-2.62603e-10
-3.92498e-10
-2.59658e-10
-3.58964e-10
-2.56979e-10
-3.25489e-10
-2.54552e-10
-2.91981e-10
-2.52374e-10
-2.58337e-10
-2.50481e-10
-2.24471e-10
-2.48964e-10
-1.90363e-10
-2.47979e-10
-1.56095e-10
-2.47723e-10
-1.2186e-10
-2.48383e-10
-8.79267e-11
-2.5008e-10
-5.45693e-11
-2.52821e-10
-2.20056e-11
-2.56496e-10
9.62656e-12
-2.60913e-10
4.02669e-11
-2.65841e-10
6.99156e-11
-2.71036e-10
9.86155e-11
-2.7627e-10
1.26438e-10
-2.8134e-10
1.53474e-10
-2.86078e-10
1.7983e-10
-2.90346e-10
2.05623e-10
-2.94037e-10
2.3097e-10
-2.97067e-10
2.55986e-10
-2.99369e-10
2.80781e-10
-3.00892e-10
3.05462e-10
-3.016e-10
3.30135e-10
-3.01473e-10
3.54909e-10
-3.00514e-10
3.79891e-10
-2.98746e-10
4.05189e-10
-2.96212e-10
4.30911e-10
-2.92971e-10
4.5717e-10
-2.89093e-10
4.8408e-10
-2.8466e-10
5.11745e-10
-2.79774e-10
5.40248e-10
-2.74561e-10
5.69636e-10
-2.69179e-10
5.99931e-10
-2.63819e-10
6.31133e-10
-2.587e-10
6.63223e-10
-2.54052e-10
6.96123e-10
-2.50101e-10
7.2966e-10
-2.47043e-10
7.63549e-10
-2.45008e-10
7.97465e-10
-2.44026e-10
8.31159e-10
-2.44002e-10
8.64545e-10
-2.44757e-10
8.97698e-10
-2.46079e-10
9.30766e-10
-2.47791e-10
9.63865e-10
-2.49789e-10
9.97031e-10
-2.52043e-10
1.03026e-09
-2.54572e-10
1.06356e-09
-2.5739e-10
1.097e-09
-2.60487e-10
1.13066e-09
-2.63824e-10
1.16459e-09
-2.67358e-10
1.19877e-09
-2.71053e-10
1.23312e-09
-2.74863e-10
1.26762e-09
-2.78693e-10
1.30228e-09
-2.82362e-10
1.33716e-09
-2.85605e-10
1.37234e-09
-2.88126e-10
1.40785e-09
-2.89653e-10
1.44363e-09
-2.89944e-10
1.47967e-09
-2.88732e-10
1.51602e-09
-2.85696e-10
1.55277e-09
-2.8051e-10
1.58992e-09
-2.72968e-10
1.62733e-09
-2.63035e-10
1.66482e-09
-2.50785e-10
1.70218e-09
-2.36348e-10
1.73908e-09
-2.19964e-10
1.7751e-09
-2.01964e-10
1.80986e-09
-1.82695e-10
1.8429e-09
-1.6257e-10
1.87377e-09
-1.42063e-10
1.90221e-09
-1.21536e-10
-1.01325e-10
1.928e-09
-1.30967e-09
-1.38855e-10
-1.28064e-09
-1.60601e-10
-1.24948e-09
-1.82572e-10
-1.21648e-09
-2.04306e-10
-1.18199e-09
-2.25346e-10
-1.14636e-09
-2.45261e-10
-1.10998e-09
-2.6366e-10
-1.07319e-09
-2.80203e-10
-1.03624e-09
-2.94611e-10
-9.99327e-10
-3.06686e-10
-9.62561e-10
-3.16331e-10
-9.26005e-10
-3.23558e-10
-8.89684e-10
-3.28484e-10
-8.53605e-10
-3.3131e-10
-8.17758e-10
-3.32294e-10
-7.8213e-10
-3.31727e-10
-7.46704e-10
-3.2991e-10
-7.11465e-10
-3.2714e-10
-6.76402e-10
-3.23693e-10
-6.41506e-10
-3.1982e-10
-6.06767e-10
-3.15735e-10
-5.72182e-10
-3.1161e-10
-5.37748e-10
-3.07575e-10
-5.03459e-10
-3.03723e-10
-4.69312e-10
-3.0011e-10
-4.35293e-10
-2.96767e-10
-4.01383e-10
-2.93707e-10
-3.67548e-10
-2.90935e-10
-3.33741e-10
-2.88452e-10
-2.99901e-10
-2.86274e-10
-2.65967e-10
-2.84439e-10
-2.31899e-10
-2.83023e-10
-1.97707e-10
-2.82138e-10
-1.63474e-10
-2.81912e-10
-1.2935e-10
-2.82464e-10
-9.55355e-11
-2.83866e-10
-6.2233e-11
-2.86114e-10
-2.961e-11
-2.8913e-10
2.22054e-12
-2.92773e-10
3.32016e-11
-2.96863e-10
6.33219e-11
-3.01206e-10
9.26035e-11
-3.05611e-10
1.21094e-10
-3.09903e-10
1.48862e-10
-3.13933e-10
1.75996e-10
-3.17579e-10
2.02598e-10
-3.2074e-10
2.28779e-10
-3.23336e-10
2.5465e-10
-3.25303e-10
2.80317e-10
-3.26594e-10
3.0588e-10
-3.27177e-10
3.31433e-10
-3.27038e-10
3.57074e-10
-3.26183e-10
3.82902e-10
-3.24631e-10
4.09018e-10
-3.22418e-10
4.35531e-10
-3.19595e-10
4.62549e-10
-3.16223e-10
4.9018e-10
-3.12385e-10
5.18512e-10
-3.0818e-10
5.47603e-10
-3.03731e-10
5.77478e-10
-2.99176e-10
6.08137e-10
-2.94672e-10
6.3957e-10
-2.90387e-10
6.71756e-10
-2.86499e-10
7.04633e-10
-2.83184e-10
7.38062e-10
-2.80601e-10
7.71823e-10
-2.78857e-10
8.05664e-10
-2.77984e-10
8.39394e-10
-2.77919e-10
8.72952e-10
-2.78532e-10
9.06389e-10
-2.79675e-10
9.39793e-10
-2.81229e-10
9.7322e-10
-2.83136e-10
1.00667e-09
-2.8538e-10
1.04013e-09
-2.87962e-10
1.07363e-09
-2.90862e-10
1.10725e-09
-2.9404e-10
1.14105e-09
-2.97456e-10
1.17504e-09
-3.01091e-10
1.20918e-09
-3.04931e-10
1.24341e-09
-3.08923e-10
1.27772e-09
-3.12933e-10
1.31217e-09
-3.16744e-10
1.34682e-09
-3.20097e-10
1.38169e-09
-3.22753e-10
1.41672e-09
-3.24489e-10
1.45188e-09
-3.25049e-10
1.48723e-09
-3.24099e-10
1.52284e-09
-3.21267e-10
1.55873e-09
-3.16253e-10
1.59483e-09
-3.0889e-10
1.63098e-09
-2.99104e-10
1.66709e-09
-2.86857e-10
1.70298e-09
-2.72201e-10
1.73834e-09
-2.55328e-10
1.77287e-09
-2.36501e-10
1.80625e-09
-2.16049e-10
1.83803e-09
-1.94426e-10
1.86793e-09
-1.72052e-10
1.89571e-09
-1.49323e-10
-1.2671e-10
1.92114e-09
-1.29712e-09
-1.6516e-10
-1.26889e-09
-1.88955e-10
-1.23878e-09
-2.12753e-10
-1.20704e-09
-2.36058e-10
-1.17397e-09
-2.58389e-10
-1.13988e-09
-2.79312e-10
-1.10507e-09
-2.98443e-10
-1.06981e-09
-3.15461e-10
-1.0343e-09
-3.30121e-10
-9.98697e-10
-3.42276e-10
-9.63104e-10
-3.51881e-10
-9.27584e-10
-3.59e-10
-8.92172e-10
-3.63788e-10
-8.56879e-10
-3.66469e-10
-8.21706e-10
-3.67315e-10
-7.86648e-10
-3.66623e-10
-7.51702e-10
-3.64698e-10
-7.16863e-10
-3.61837e-10
-6.82132e-10
-3.58316e-10
-6.47506e-10
-3.54379e-10
-6.1298e-10
-3.50233e-10
-5.78552e-10
-3.46042e-10
-5.44218e-10
-3.41935e-10
-5.09976e-10
-3.38e-10
-4.75821e-10
-3.343e-10
-4.41748e-10
-3.30869e-10
-4.07741e-10
-3.27729e-10
-3.7378e-10
-3.24892e-10
-3.3983e-10
-3.22371e-10
-3.05856e-10
-3.2019e-10
-2.71825e-10
-3.18386e-10
-2.37726e-10
-3.17019e-10
-2.03583e-10
-3.16166e-10
-1.69472e-10
-3.15913e-10
-1.35516e-10
-3.16332e-10
-1.01868e-10
-3.17461e-10
-6.8679e-11
-3.19289e-10
-3.60776e-11
-3.21752e-10
-4.15095e-12
-3.2474e-10
2.70535e-11
-3.28112e-10
5.75203e-11
-3.31711e-10
8.72579e-11
-3.35379e-10
1.16295e-10
-3.38973e-10
1.4468e-10
-3.42362e-10
1.72485e-10
-3.45439e-10
1.99801e-10
-3.48111e-10
2.26731e-10
-3.50303e-10
2.53376e-10
-3.51957e-10
2.79833e-10
-3.5303e-10
3.06193e-10
-3.53497e-10
3.32539e-10
-3.53351e-10
3.5896e-10
-3.52594e-10
3.85548e-10
-3.51241e-10
4.12399e-10
-3.4932e-10
4.39612e-10
-3.46872e-10
4.67288e-10
-3.43956e-10
4.9552e-10
-3.40654e-10
5.24385e-10
-3.37064e-10
5.53926e-10
-3.33297e-10
5.84159e-10
-3.29467e-10
6.15072e-10
-3.25697e-10
6.46647e-10
-3.22117e-10
6.78859e-10
-3.18869e-10
7.11653e-10
-3.16101e-10
7.44919e-10
-3.13945e-10
7.7849e-10
-3.12491e-10
8.12178e-10
-3.11762e-10
8.45844e-10
-3.11708e-10
8.79438e-10
-3.12237e-10
9.12981e-10
-3.13256e-10
9.46516e-10
-3.14701e-10
9.80054e-10
-3.16548e-10
1.01359e-09
-3.18783e-10
1.04711e-09
-3.21383e-10
1.08068e-09
-3.24303e-10
1.11433e-09
-3.27505e-10
1.1481e-09
-3.3097e-10
1.18197e-09
-3.34699e-10
1.21588e-09
-3.38669e-10
1.24982e-09
-3.42788e-10
1.28383e-09
-3.46881e-10
1.31796e-09
-3.50734e-10
1.3522e-09
-3.5414e-10
1.38651e-09
-3.56905e-10
1.42084e-09
-3.58796e-10
1.45523e-09
-3.59493e-10
1.48975e-09
-3.58617e-10
1.52445e-09
-3.55822e-10
1.55925e-09
-3.50868e-10
1.59407e-09
-3.43585e-10
1.62883e-09
-3.33812e-10
1.66345e-09
-3.21435e-10
1.69775e-09
-3.0648e-10
1.73151e-09
-2.89087e-10
1.76449e-09
-2.69464e-10
1.79637e-09
-2.4796e-10
1.82684e-09
-2.24983e-10
1.85572e-09
-2.00921e-10
1.88275e-09
-1.76271e-10
-1.51577e-10
1.90769e-09
-1.28025e-09
-1.9092e-10
-1.25283e-09
-2.16465e-10
-1.22378e-09
-2.41832e-10
-1.19332e-09
-2.66504e-10
-1.16169e-09
-2.89989e-10
-1.12915e-09
-3.11844e-10
-1.09592e-09
-3.31683e-10
-1.06221e-09
-3.49199e-10
-1.02818e-09
-3.64176e-10
-9.93957e-10
-3.76506e-10
-9.59628e-10
-3.86188e-10
-9.25254e-10
-3.93323e-10
-8.9087e-10
-3.98091e-10
-8.56489e-10
-4.00736e-10
-8.22117e-10
-4.01542e-10
-7.87759e-10
-4.00814e-10
-7.53422e-10
-3.98864e-10
-7.19112e-10
-3.95989e-10
-6.84835e-10
-3.92462e-10
-6.50596e-10
-3.88523e-10
-6.16395e-10
-3.8437e-10
-5.8223e-10
-3.80166e-10
-5.48102e-10
-3.76033e-10
-5.14013e-10
-3.72065e-10
-4.79963e-10
-3.68325e-10
-4.45952e-10
-3.64853e-10
-4.11976e-10
-3.61676e-10
-3.78023e-10
-3.58813e-10
-3.44076e-10
-3.56282e-10
-3.10116e-10
-3.54108e-10
-2.76131e-10
-3.52326e-10
-2.42123e-10
-3.50981e-10
-2.08124e-10
-3.50125e-10
-1.74202e-10
-3.49811e-10
-1.40457e-10
-3.5008e-10
-1.07008e-10
-3.5095e-10
-7.39725e-11
-3.52401e-10
-4.14452e-11
-3.54379e-10
-9.49142e-12
-3.56794e-10
2.18517e-11
-3.59532e-10
5.25676e-11
-3.62469e-10
8.26551e-11
-3.65478e-10
1.12128e-10
-3.68441e-10
1.41022e-10
-3.71249e-10
1.69396e-10
-3.73807e-10
1.97328e-10
-3.7603e-10
2.24911e-10
-3.77849e-10
2.52236e-10
-3.79211e-10
2.79387e-10
-3.80083e-10
3.06444e-10
-3.80445e-10
3.33485e-10
-3.80292e-10
3.60591e-10
-3.79624e-10
3.87848e-10
-3.78449e-10
4.15344e-10
-3.76785e-10
4.43163e-10
-3.74669e-10
4.71391e-10
-3.7216e-10
5.0011e-10
-3.69337e-10
5.29387e-10
-3.66293e-10
5.59266e-10
-3.63122e-10
5.89757e-10
-3.59916e-10
6.20844e-10
-3.56771e-10
6.52495e-10
-3.53792e-10
6.84676e-10
-3.511e-10
7.17336e-10
-3.48818e-10
7.50397e-10
-3.47058e-10
7.83742e-10
-3.45886e-10
8.17237e-10
-3.45313e-10
8.50778e-10
-3.45304e-10
8.84308e-10
-3.45802e-10
9.17819e-10
-3.46763e-10
9.51318e-10
-3.48162e-10
9.84805e-10
-3.49986e-10
1.01828e-09
-3.5221e-10
1.05176e-09
-3.54795e-10
1.08527e-09
-3.577e-10
1.11883e-09
-3.60907e-10
1.15241e-09
-3.64418e-10
1.186e-09
-3.68227e-10
1.21957e-09
-3.72271e-10
1.25316e-09
-3.76417e-10
1.28679e-09
-3.80489e-10
1.32047e-09
-3.84318e-10
1.35413e-09
-3.87741e-10
1.38772e-09
-3.90559e-10
1.42126e-09
-3.9248e-10
1.45481e-09
-3.93138e-10
1.48843e-09
-3.92178e-10
1.52206e-09
-3.89324e-10
1.55561e-09
-3.84353e-10
1.58906e-09
-3.77029e-10
1.62237e-09
-3.67119e-10
1.65547e-09
-3.545e-10
1.68817e-09
-3.3918e-10
1.72033e-09
-3.2124e-10
1.75174e-09
-3.00878e-10
1.78212e-09
-2.78422e-10
1.81134e-09
-2.54208e-10
1.83918e-09
-2.28678e-10
1.86537e-09
-2.02403e-10
-1.75934e-10
1.88974e-09
-1.26068e-09
-2.16102e-10
-1.23407e-09
-2.4314e-10
-1.20606e-09
-2.69863e-10
-1.17685e-09
-2.95739e-10
-1.14663e-09
-3.20259e-10
-1.11558e-09
-3.42967e-10
-1.08388e-09
-3.63478e-10
-1.05168e-09
-3.81496e-10
-1.0191e-09
-3.96833e-10
-9.86251e-10
-4.09415e-10
-9.53206e-10
-4.19272e-10
-9.20016e-10
-4.26531e-10
-8.86709e-10
-4.3139e-10
-8.533e-10
-4.34107e-10
-8.19801e-10
-4.34976e-10
-7.86222e-10
-4.34312e-10
-7.52578e-10
-4.32428e-10
-7.18881e-10
-4.29623e-10
-6.85144e-10
-4.26164e-10
-6.51373e-10
-4.22285e-10
-6.17573e-10
-4.1818e-10
-5.8375e-10
-4.1401e-10
-5.49909e-10
-4.099e-10
-5.16056e-10
-4.05942e-10
-4.82198e-10
-4.02204e-10
-4.48342e-10
-3.98732e-10
-4.14492e-10
-3.95555e-10
-3.80651e-10
-3.92696e-10
-3.46814e-10
-3.90174e-10
-3.12976e-10
-3.88014e-10
-2.79135e-10
-3.86244e-10
-2.45301e-10
-3.84897e-10
-2.11508e-10
-3.84005e-10
-1.77815e-10
-3.83601e-10
-1.44306e-10
-3.83704e-10
-1.11076e-10
-3.84316e-10
-7.82144e-11
-3.85415e-10
-4.57912e-11
-3.8695e-10
-1.38547e-11
-3.88849e-10
1.7566e-11
-3.91021e-10
4.84542e-11
-3.93368e-10
7.88021e-11
-3.95791e-10
1.08615e-10
-3.98193e-10
1.37919e-10
-4.00484e-10
1.66763e-10
-4.02578e-10
1.95217e-10
-4.044e-10
2.23358e-10
-4.05886e-10
2.51265e-10
-4.06992e-10
2.79009e-10
-4.07689e-10
3.06661e-10
-4.07965e-10
3.34296e-10
-4.07812e-10
3.61993e-10
-4.07226e-10
3.89831e-10
-4.06208e-10
4.17882e-10
-4.04773e-10
4.46214e-10
-4.02953e-10
4.74894e-10
-4.00806e-10
5.03994e-10
-3.98408e-10
5.33585e-10
-3.95839e-10
5.63713e-10
-3.93178e-10
5.94389e-10
-3.905e-10
6.25584e-10
-3.87885e-10
6.57255e-10
-3.85424e-10
6.89354e-10
-3.83218e-10
7.21845e-10
-3.81372e-10
7.5468e-10
-3.79968e-10
7.87788e-10
-3.79053e-10
8.21075e-10
-3.78632e-10
8.54445e-10
-3.78691e-10
8.8783e-10
-3.79208e-10
9.21197e-10
-3.80172e-10
9.54543e-10
-3.81572e-10
9.87879e-10
-3.83388e-10
1.02122e-09
-3.85587e-10
1.05456e-09
-3.88133e-10
1.08791e-09
-3.9101e-10
1.12123e-09
-3.9422e-10
1.15451e-09
-3.97762e-10
1.18773e-09
-4.01594e-10
1.22093e-09
-4.05613e-10
1.25412e-09
-4.09681e-10
1.28729e-09
-4.13661e-10
1.3204e-09
-4.17426e-10
1.35336e-09
-4.20815e-10
1.38619e-09
-4.23573e-10
1.41893e-09
-4.25366e-10
1.45163e-09
-4.25849e-10
1.48425e-09
-4.24734e-10
1.5167e-09
-4.21776e-10
1.54897e-09
-4.167e-10
1.58106e-09
-4.092e-10
1.61295e-09
-3.9904e-10
1.64452e-09
-3.86109e-10
1.67567e-09
-3.70378e-10
1.70629e-09
-3.51892e-10
1.73616e-09
-3.30852e-10
1.76516e-09
-3.07515e-10
1.79317e-09
-2.82212e-10
1.81994e-09
-2.55459e-10
1.84529e-09
-2.27827e-10
-1.99858e-10
1.86907e-09
-1.23978e-09
-2.40723e-10
-1.21394e-09
-2.69046e-10
-1.18694e-09
-2.96949e-10
-1.15892e-09
-3.23883e-10
-1.13001e-09
-3.49321e-10
-1.10036e-09
-3.72795e-10
-1.07009e-09
-3.93926e-10
-1.0393e-09
-4.12435e-10
-1.0081e-09
-4.28163e-10
-9.7657e-10
-4.4106e-10
-9.44773e-10
-4.51179e-10
-9.12746e-10
-4.5866e-10
-8.80513e-10
-4.63716e-10
-8.48087e-10
-4.66613e-10
-8.15485e-10
-4.67654e-10
-7.82721e-10
-4.67158e-10
-7.49813e-10
-4.65436e-10
-7.16776e-10
-4.62783e-10
-6.83623e-10
-4.59461e-10
-6.50368e-10
-4.55698e-10
-6.1702e-10
-4.51688e-10
-5.83591e-10
-4.47592e-10
-5.50093e-10
-4.43536e-10
-5.16539e-10
-4.3962e-10
-4.82938e-10
-4.35912e-10
-4.49306e-10
-4.32463e-10
-4.15657e-10
-4.29305e-10
-3.82003e-10
-4.26463e-10
-3.48351e-10
-4.23956e-10
-3.14706e-10
-4.21806e-10
-2.81072e-10
-4.20033e-10
-2.47463e-10
-4.1866e-10
-2.13911e-10
-4.17707e-10
-1.80469e-10
-4.1719e-10
-1.47206e-10
-4.17116e-10
-1.14199e-10
-4.17477e-10
-8.15174e-11
-4.18248e-10
-4.92142e-11
-4.19384e-10
-1.7325e-11
-4.20826e-10
1.41264e-11
-4.22502e-10
4.51234e-11
-4.24337e-10
7.56553e-11
-4.26254e-10
1.05724e-10
-4.28174e-10
1.3535e-10
-4.3002e-10
1.64577e-10
-4.31716e-10
1.93462e-10
-4.33193e-10
2.2207e-10
-4.34396e-10
2.50462e-10
-4.35288e-10
2.78701e-10
-4.35844e-10
3.06852e-10
-4.36053e-10
3.3499e-10
-4.35904e-10
3.63192e-10
-4.35391e-10
3.91527e-10
-4.3451e-10
4.2005e-10
-4.33273e-10
4.48806e-10
-4.31714e-10
4.77849e-10
-4.29885e-10
5.07247e-10
-4.27852e-10
5.37074e-10
-4.25685e-10
5.67382e-10
-4.2345e-10
5.9818e-10
-4.21213e-10
6.29429e-10
-4.19045e-10
6.61068e-10
-4.17026e-10
6.9305e-10
-4.15243e-10
7.25354e-10
-4.13773e-10
7.57964e-10
-4.12674e-10
7.90839e-10
-4.11977e-10
8.23904e-10
-4.11699e-10
8.57063e-10
-4.11845e-10
8.90234e-10
-4.12421e-10
9.23382e-10
-4.13425e-10
9.56509e-10
-4.14841e-10
9.8964e-10
-4.16642e-10
1.02278e-09
-4.18799e-10
1.05591e-09
-4.21299e-10
1.089e-09
-4.24149e-10
1.12199e-09
-4.27351e-10
1.1549e-09
-4.30874e-10
1.18774e-09
-4.34639e-10
1.22053e-09
-4.38534e-10
1.25328e-09
-4.42455e-10
1.28591e-09
-4.46307e-10
1.31836e-09
-4.49966e-10
1.3506e-09
-4.53224e-10
1.38269e-09
-4.55787e-10
1.41466e-09
-4.57334e-10
1.44646e-09
-4.57589e-10
1.47802e-09
-4.56301e-10
1.50929e-09
-4.53182e-10
1.54032e-09
-4.47887e-10
1.57113e-09
-4.40102e-10
1.60163e-09
-4.29626e-10
1.63175e-09
-4.16337e-10
1.66145e-09
-4.00162e-10
1.69059e-09
-3.81153e-10
1.71906e-09
-3.5947e-10
1.7468e-09
-3.35324e-10
1.77364e-09
-3.09114e-10
1.79937e-09
-2.81356e-10
1.82391e-09
-2.52575e-10
-2.23321e-10
1.84716e-09
-1.21865e-09
-2.64833e-10
-1.19355e-09
-2.94262e-10
-1.16748e-09
-3.23186e-10
-1.14054e-09
-3.51034e-10
-1.11284e-09
-3.77264e-10
-1.08444e-09
-4.01411e-10
-1.05546e-09
-4.23107e-10
-1.02596e-09
-4.42096e-10
-9.96037e-10
-4.58241e-10
-9.65741e-10
-4.71508e-10
-9.35119e-10
-4.81963e-10
-9.04196e-10
-4.89754e-10
-8.72993e-10
-4.95101e-10
-8.41525e-10
-4.98277e-10
-8.09807e-10
-4.99589e-10
-7.77855e-10
-4.99352e-10
-7.45686e-10
-4.97874e-10
-7.13314e-10
-4.9544e-10
-6.80757e-10
-4.92308e-10
-6.48034e-10
-4.88705e-10
-6.15162e-10
-4.84825e-10
-5.82158e-10
-4.80832e-10
-5.4904e-10
-4.76859e-10
-5.15825e-10
-4.73005e-10
-4.82529e-10
-4.69346e-10
-4.49172e-10
-4.65934e-10
-4.15775e-10
-4.62806e-10
-3.8236e-10
-4.59988e-10
-3.48943e-10
-4.57498e-10
-3.15536e-10
-4.55354e-10
-2.82147e-10
-4.53571e-10
-2.48791e-10
-4.52162e-10
-2.15497e-10
-4.51137e-10
-1.82312e-10
-4.50504e-10
-1.49295e-10
-4.50259e-10
-1.16508e-10
-4.5039e-10
-8.40074e-11
-4.50869e-10
-5.1833e-11
-4.51659e-10
-2.00138e-11
-4.52709e-10
1.14302e-11
-4.53965e-10
4.2483e-11
-4.5537e-10
7.31347e-11
-4.56861e-10
1.03388e-10
-4.58375e-10
1.33261e-10
-4.59844e-10
1.62792e-10
-4.61201e-10
1.92028e-10
-4.62386e-10
2.21018e-10
-4.63351e-10
2.49809e-10
-4.64063e-10
2.78457e-10
-4.64499e-10
3.07024e-10
-4.64647e-10
3.35586e-10
-4.64495e-10
3.64216e-10
-4.64033e-10
3.92971e-10
-4.63261e-10
4.21887e-10
-4.62192e-10
4.50991e-10
-4.60855e-10
4.80325e-10
-4.59298e-10
5.09955e-10
-4.57575e-10
5.3996e-10
-4.55742e-10
5.70395e-10
-4.53859e-10
6.01261e-10
-4.51988e-10
6.32511e-10
-4.50199e-10
6.6408e-10
-4.48559e-10
6.95925e-10
-4.47136e-10
7.28044e-10
-4.45981e-10
7.60439e-10
-4.45133e-10
7.93086e-10
-4.44625e-10
8.25912e-10
-4.44486e-10
8.5882e-10
-4.44739e-10
8.91732e-10
-4.45397e-10
9.24622e-10
-4.46452e-10
9.57506e-10
-4.47879e-10
9.90401e-10
-4.49654e-10
1.0233e-09
-4.51767e-10
1.05614e-09
-4.5423e-10
1.08889e-09
-4.57051e-10
1.12151e-09
-4.60209e-10
1.15404e-09
-4.63639e-10
1.1865e-09
-4.67252e-10
1.21888e-09
-4.70967e-10
1.25111e-09
-4.74715e-10
1.28314e-09
-4.7841e-10
1.31493e-09
-4.81887e-10
1.3465e-09
-4.84898e-10
1.37789e-09
-4.8716e-10
1.40907e-09
-4.88417e-10
1.43993e-09
-4.88434e-10
1.47044e-09
-4.86928e-10
1.50062e-09
-4.83543e-10
1.53052e-09
-4.77917e-10
1.56011e-09
-4.6978e-10
1.58931e-09
-4.58944e-10
1.61811e-09
-4.45247e-10
1.64647e-09
-4.28609e-10
1.67427e-09
-4.09082e-10
1.7015e-09
-3.8677e-10
1.72806e-09
-3.61923e-10
1.75378e-09
-3.34964e-10
1.77857e-09
-3.0635e-10
1.80237e-09
-2.76575e-10
-2.46192e-10
1.82516e-09
-1.19815e-09
-2.88477e-10
-1.17372e-09
-3.18847e-10
-1.14849e-09
-3.48635e-10
-1.12251e-09
-3.77252e-10
-1.09585e-09
-4.04157e-10
-1.06857e-09
-4.28894e-10
-1.04073e-09
-4.51115e-10
-1.01239e-09
-4.70582e-10
-9.83618e-10
-4.87169e-10
-9.54442e-10
-5.00851e-10
-9.24893e-10
-5.11697e-10
-8.94988e-10
-5.19861e-10
-8.64744e-10
-5.25569e-10
-8.34176e-10
-5.29098e-10
-8.03297e-10
-5.3075e-10
-7.7212e-10
-5.30836e-10
-7.40658e-10
-5.29656e-10
-7.08926e-10
-5.27488e-10
-6.76947e-10
-5.24587e-10
-6.44747e-10
-5.21181e-10
-6.12352e-10
-5.17467e-10
-5.79784e-10
-5.13612e-10
-5.47064e-10
-5.09752e-10
-5.14214e-10
-5.05991e-10
-4.81252e-10
-5.02406e-10
-4.48203e-10
-4.99053e-10
-4.15095e-10
-4.95974e-10
-3.81956e-10
-4.93194e-10
-3.48807e-10
-4.90734e-10
-3.15665e-10
-4.88604e-10
-2.82541e-10
-4.86814e-10
-2.49451e-10
-4.85371e-10
-2.16421e-10
-4.84278e-10
-1.83493e-10
-4.83536e-10
-1.50715e-10
-4.83137e-10
-1.18142e-10
-4.83065e-10
-8.58182e-11
-4.83292e-10
-5.37779e-11
-4.83786e-10
-2.20455e-11
-4.84507e-10
9.36104e-12
-4.85411e-10
4.0428e-11
-4.86454e-10
7.11488e-11
-4.87586e-10
1.01529e-10
-4.88753e-10
1.31588e-10
-4.89896e-10
1.61358e-10
-4.90958e-10
1.90874e-10
-4.91888e-10
2.20173e-10
-4.92641e-10
2.4929e-10
-4.93189e-10
2.78275e-10
-4.93509e-10
3.0719e-10
-4.93587e-10
3.36109e-10
-4.93412e-10
3.65098e-10
-4.92979e-10
3.94203e-10
-4.92291e-10
4.23441e-10
-4.91363e-10
4.52827e-10
-4.90221e-10
4.82394e-10
-4.889e-10
5.12208e-10
-4.87442e-10
5.42346e-10
-4.85893e-10
5.7286e-10
-4.8431e-10
6.03748e-10
-4.82755e-10
6.34958e-10
-4.81293e-10
6.6643e-10
-4.79979e-10
6.98134e-10
-4.78858e-10
7.30077e-10
-4.77964e-10
7.62268e-10
-4.77329e-10
7.94682e-10
-4.76993e-10
8.27248e-10
-4.76995e-10
8.59879e-10
-4.77364e-10
8.92514e-10
-4.78105e-10
9.25141e-10
-4.79201e-10
9.57773e-10
-4.80626e-10
9.90407e-10
-4.82373e-10
1.02301e-09
-4.84454e-10
1.05551e-09
-4.86884e-10
1.0879e-09
-4.89653e-10
1.12016e-09
-4.9271e-10
1.15233e-09
-4.95981e-10
1.1844e-09
-4.994e-10
1.21632e-09
-5.02921e-10
1.24801e-09
-5.06486e-10
1.27943e-09
-5.09971e-10
1.31061e-09
-5.13173e-10
1.34156e-09
-5.15848e-10
1.37226e-09
-5.17773e-10
1.40262e-09
-5.18736e-10
1.43256e-09
-5.18481e-10
1.46212e-09
-5.16659e-10
1.49134e-09
-5.12891e-10
1.52021e-09
-5.06862e-10
1.54867e-09
-4.98335e-10
1.57671e-09
-4.8709e-10
1.60433e-09
-4.72944e-10
1.63147e-09
-4.55835e-10
1.65812e-09
-4.35782e-10
1.68424e-09
-4.12885e-10
1.7097e-09
-3.8745e-10
1.73444e-09
-3.59838e-10
1.75842e-09
-3.30457e-10
1.7816e-09
-2.99815e-10
-2.68469e-10
1.80394e-09
-1.17888e-09
-3.1168e-10
-1.15505e-09
-3.42834e-10
-1.13054e-09
-3.73338e-10
-1.10538e-09
-4.026e-10
-1.07962e-09
-4.30089e-10
-1.05329e-09
-4.55363e-10
-1.02646e-09
-4.78087e-10
-9.99142e-10
-4.98034e-10
-9.71383e-10
-5.15078e-10
-9.43197e-10
-5.29197e-10
-9.146e-10
-5.40463e-10
-8.85607e-10
-5.49037e-10
-8.56232e-10
-5.55149e-10
-8.26485e-10
-5.59074e-10
-7.96374e-10
-5.61109e-10
-7.65906e-10
-5.61556e-10
-7.35094e-10
-5.60708e-10
-7.03955e-10
-5.5884e-10
-6.72519e-10
-5.56208e-10
-6.40819e-10
-5.5304e-10
-6.08888e-10
-5.49536e-10
-5.76753e-10
-5.45865e-10
-5.44437e-10
-5.42162e-10
-5.1196e-10
-5.38535e-10
-4.79348e-10
-5.35062e-10
-4.46629e-10
-5.31803e-10
-4.13832e-10
-5.28799e-10
-3.8099e-10
-5.26081e-10
-3.48128e-10
-5.23664e-10
-3.15264e-10
-5.21559e-10
-2.82413e-10
-5.19768e-10
-2.49591e-10
-5.18295e-10
-2.16822e-10
-5.17139e-10
-1.84143e-10
-5.16296e-10
-1.51596e-10
-5.15756e-10
-1.19226e-10
-5.15501e-10
-8.70742e-11
-5.15508e-10
-5.51697e-11
-5.15747e-10
-2.35354e-11
-5.16187e-10
7.81272e-12
-5.16793e-10
3.88644e-11
-5.17529e-10
6.96179e-11
-5.18352e-10
1.00082e-10
-5.19216e-10
1.30278e-10
-5.20071e-10
1.60232e-10
-5.2087e-10
1.8997e-10
-5.21567e-10
2.19517e-10
-5.22125e-10
2.48902e-10
-5.22517e-10
2.78168e-10
-5.22719e-10
3.07374e-10
-5.22719e-10
3.36588e-10
-5.2251e-10
3.65871e-10
-5.22094e-10
3.95256e-10
-5.2148e-10
4.24751e-10
-5.20684e-10
4.54362e-10
-5.19723e-10
4.84118e-10
-5.18618e-10
5.14078e-10
-5.17397e-10
5.44312e-10
-5.16101e-10
5.74866e-10
-5.14785e-10
6.05735e-10
-5.13511e-10
6.36876e-10
-5.12335e-10
6.68241e-10
-5.11297e-10
6.9981e-10
-5.10427e-10
7.31587e-10
-5.09749e-10
7.63577e-10
-5.09297e-10
7.95749e-10
-5.09118e-10
8.28042e-10
-5.09252e-10
8.6039e-10
-5.09723e-10
8.92755e-10
-5.10523e-10
9.25126e-10
-5.11634e-10
9.57498e-10
-5.13044e-10
9.89844e-10
-5.14765e-10
1.02211e-09
-5.16815e-10
1.05427e-09
-5.19194e-10
1.08631e-09
-5.21864e-10
1.11824e-09
-5.24765e-10
1.15006e-09
-5.27842e-10
1.18171e-09
-5.31064e-10
1.21314e-09
-5.34396e-10
1.24429e-09
-5.37747e-10
1.27517e-09
-5.40954e-10
1.30581e-09
-5.43812e-10
1.33616e-09
-5.46128e-10
1.36615e-09
-5.47724e-10
1.39571e-09
-5.48375e-10
1.42483e-09
-5.47764e-10
1.45359e-09
-5.45516e-10
1.48196e-09
-5.41297e-10
1.50989e-09
-5.34842e-10
1.53736e-09
-5.25894e-10
1.56439e-09
-5.14199e-10
1.59097e-09
-4.99592e-10
1.61707e-09
-4.82009e-10
1.64272e-09
-4.61441e-10
1.66783e-09
-4.38041e-10
1.69233e-09
-4.12085e-10
1.71624e-09
-3.83868e-10
1.73955e-09
-3.53797e-10
1.76219e-09
-3.22418e-10
-2.90326e-10
1.78407e-09
-1.16123e-09
-3.34455e-10
-1.13792e-09
-3.66257e-10
-1.11401e-09
-3.97359e-10
-1.08954e-09
-4.27178e-10
-1.06454e-09
-4.55192e-10
-1.03904e-09
-4.80972e-10
-1.01306e-09
-5.04187e-10
-9.86616e-10
-5.24607e-10
-9.59722e-10
-5.42107e-10
-9.32384e-10
-5.56667e-10
-9.0461e-10
-5.68367e-10
-8.76414e-10
-5.77373e-10
-8.47803e-10
-5.83915e-10
-8.18782e-10
-5.88263e-10
-7.89351e-10
-5.90705e-10
-7.59513e-10
-5.91537e-10
-7.29282e-10
-5.91046e-10
-6.98681e-10
-5.89509e-10
-6.67745e-10
-5.87183e-10
-6.36515e-10
-5.84298e-10
-6.05027e-10
-5.81052e-10
-5.73311e-10
-5.77612e-10
-5.41389e-10
-5.74112e-10
-5.09285e-10
-5.70659e-10
-4.77026e-10
-5.67334e-10
-4.44642e-10
-5.64199e-10
-4.12165e-10
-5.61296e-10
-3.79628e-10
-5.58654e-10
-3.47057e-10
-5.56289e-10
-3.14472e-10
-5.54209e-10
-2.8189e-10
-5.52417e-10
-2.49329e-10
-5.50912e-10
-2.16811e-10
-5.49691e-10
-1.84369e-10
-5.4875e-10
-1.5204e-10
-5.48079e-10
-1.19864e-10
-5.47661e-10
-8.78779e-11
-5.47476e-10
-5.61093e-11
-5.475e-10
-2.45798e-11
-5.47706e-10
6.69693e-12
-5.48064e-10
3.77148e-11
-5.48541e-10
6.84765e-11
-5.49101e-10
9.89945e-11
-5.49702e-10
1.29289e-10
-5.50305e-10
1.59382e-10
-5.50868e-10
1.89294e-10
-5.51356e-10
2.19041e-10
-5.51737e-10
2.48646e-10
-5.51982e-10
2.78144e-10
-5.52073e-10
3.07588e-10
-5.51999e-10
3.37039e-10
-5.51762e-10
3.66549e-10
-5.51369e-10
3.96146e-10
-5.50836e-10
4.25839e-10
-5.5017e-10
4.5563e-10
-5.4938e-10
4.85541e-10
-5.48473e-10
5.15617e-10
-5.47467e-10
5.45917e-10
-5.464e-10
5.76478e-10
-5.45325e-10
6.07303e-10
-5.44298e-10
6.38363e-10
-5.43365e-10
6.69623e-10
-5.42553e-10
7.01064e-10
-5.41884e-10
7.32682e-10
-5.41381e-10
7.64467e-10
-5.41085e-10
7.96393e-10
-5.4104e-10
8.28416e-10
-5.41281e-10
8.60497e-10
-5.41818e-10
8.92607e-10
-5.4264e-10
9.24727e-10
-5.4374e-10
9.56825e-10
-5.45126e-10
9.88861e-10
-5.46817e-10
1.0208e-09
-5.48818e-10
1.05263e-09
-5.51106e-10
1.08435e-09
-5.5363e-10
1.11597e-09
-5.56348e-10
1.14742e-09
-5.59236e-10
1.17864e-09
-5.62275e-10
1.20959e-09
-5.65402e-10
1.24026e-09
-5.68489e-10
1.27067e-09
-5.71364e-10
1.3008e-09
-5.73864e-10
1.33055e-09
-5.75839e-10
1.35985e-09
-5.77102e-10
1.38871e-09
-5.77375e-10
1.41716e-09
-5.76309e-10
1.44522e-09
-5.73572e-10
1.47282e-09
-5.6889e-10
1.49992e-09
-5.61993e-10
1.52656e-09
-5.52585e-10
1.55273e-09
-5.40419e-10
1.57842e-09
-5.25353e-10
1.60366e-09
-5.07295e-10
1.62843e-09
-4.86254e-10
1.65266e-09
-4.62405e-10
1.67639e-09
-4.35937e-10
1.69964e-09
-4.07148e-10
1.72236e-09
-3.76485e-10
1.74451e-09
-3.4451e-10
-3.11856e-10
1.76594e-09
-1.14542e-09
-3.56832e-10
-1.12254e-09
-3.8918e-10
-1.09914e-09
-4.20799e-10
-1.07525e-09
-4.51116e-10
-1.05089e-09
-4.79619e-10
-1.02607e-09
-5.05879e-10
-1.0008e-09
-5.29564e-10
-9.75079e-10
-5.50441e-10
-9.48899e-10
-5.68388e-10
-9.22264e-10
-5.83393e-10
-8.95185e-10
-5.95542e-10
-8.67666e-10
-6.05003e-10
-8.3971e-10
-6.11997e-10
-8.11311e-10
-6.16787e-10
-7.82464e-10
-6.19653e-10
-7.53171e-10
-6.20886e-10
-7.2345e-10
-6.20773e-10
-6.93331e-10
-6.19594e-10
-6.62852e-10
-6.17606e-10
-6.32057e-10
-6.15039e-10
-6.00983e-10
-6.12088e-10
-5.69661e-10
-6.08913e-10
-5.38115e-10
-6.05646e-10
-5.06369e-10
-6.02395e-10
-4.74452e-10
-5.99241e-10
-4.42396e-10
-5.96246e-10
-4.10233e-10
-5.93454e-10
-3.77994e-10
-5.90893e-10
-3.45706e-10
-5.88579e-10
-3.13391e-10
-5.86521e-10
-2.81067e-10
-5.84721e-10
-2.48754e-10
-5.83181e-10
-2.16474e-10
-5.819e-10
-1.84256e-10
-5.80872e-10
-1.52134e-10
-5.80089e-10
-1.20143e-10
-5.79538e-10
-8.83184e-11
-5.792e-10
-5.66859e-11
-5.79055e-10
-2.52648e-11
-5.79077e-10
5.93429e-12
-5.79238e-10
3.69088e-11
-5.79505e-10
6.76645e-11
-5.79844e-10
9.8215e-11
-5.80221e-10
1.28579e-10
-5.80603e-10
1.58776e-10
-5.8096e-10
1.88822e-10
-5.81263e-10
2.18729e-10
-5.81485e-10
2.48512e-10
-5.81602e-10
2.78198e-10
-5.81597e-10
3.07828e-10
-5.81466e-10
3.37456e-10
-5.81214e-10
3.6713e-10
-5.80856e-10
3.96883e-10
-5.80402e-10
4.26726e-10
-5.79856e-10
4.56661e-10
-5.79215e-10
4.86698e-10
-5.78478e-10
5.16867e-10
-5.77659e-10
5.47208e-10
-5.76792e-10
5.77758e-10
-5.75926e-10
6.08528e-10
-5.75108e-10
6.39507e-10
-5.7437e-10
6.7067e-10
-5.73737e-10
7.0199e-10
-5.73226e-10
7.33449e-10
-5.72868e-10
7.6503e-10
-5.72702e-10
7.96718e-10
-5.72766e-10
8.28491e-10
-5.73079e-10
8.60327e-10
-5.73646e-10
8.92197e-10
-5.74466e-10
9.2406e-10
-5.75548e-10
9.55871e-10
-5.7691e-10
9.87597e-10
-5.78561e-10
1.01923e-09
-5.80487e-10
1.05077e-09
-5.82649e-10
1.0822e-09
-5.85012e-10
1.11349e-09
-5.87559e-10
1.14456e-09
-5.90282e-10
1.17536e-09
-5.93138e-10
1.20589e-09
-5.96028e-10
1.23615e-09
-5.9881e-10
1.26613e-09
-6.01344e-10
1.29575e-09
-6.03508e-10
1.32492e-09
-6.05149e-10
1.35363e-09
-6.06031e-10
1.38193e-09
-6.0584e-10
1.40982e-09
-6.04262e-10
1.43726e-09
-6.01031e-10
1.46418e-09
-5.9588e-10
1.4906e-09
-5.88503e-10
1.51654e-09
-5.78598e-10
1.54199e-09
-5.65954e-10
1.56696e-09
-5.50415e-10
1.59148e-09
-5.31879e-10
1.61549e-09
-5.10396e-10
1.63903e-09
-4.86077e-10
1.66216e-09
-4.59088e-10
1.68485e-09
-4.29774e-10
1.70706e-09
-3.9862e-10
1.7287e-09
-3.66175e-10
-3.33015e-10
1.7498e-09
-1.13156e-09
-3.78867e-10
-1.10904e-09
-4.11691e-10
-1.08606e-09
-4.43772e-10
-1.06265e-09
-4.74546e-10
-1.03881e-09
-5.03502e-10
-1.01455e-09
-5.30212e-10
-9.89845e-10
-5.54341e-10
-9.6469e-10
-5.75661e-10
-9.39081e-10
-5.94056e-10
-9.13019e-10
-6.09519e-10
-8.86509e-10
-6.22139e-10
-8.59549e-10
-6.32075e-10
-8.32132e-10
-6.39541e-10
-8.04246e-10
-6.44785e-10
-7.75885e-10
-6.48084e-10
-7.47053e-10
-6.4973e-10
-7.17773e-10
-6.50014e-10
-6.88082e-10
-6.49215e-10
-6.58016e-10
-6.4759e-10
-6.27615e-10
-6.45363e-10
-5.96919e-10
-6.42725e-10
-5.65958e-10
-6.39832e-10
-5.34758e-10
-6.36813e-10
-5.03346e-10
-6.33773e-10
-4.71751e-10
-6.30798e-10
-4.40004e-10
-6.2795e-10
-4.08136e-10
-6.25273e-10
-3.76177e-10
-6.22794e-10
-3.44156e-10
-6.20532e-10
-3.12096e-10
-6.18496e-10
-2.80018e-10
-6.16694e-10
-2.4794e-10
-6.15129e-10
-2.15887e-10
-6.13803e-10
-1.83882e-10
-6.12711e-10
-1.51959e-10
-6.11847e-10
-1.20149e-10
-6.11199e-10
-8.84827e-11
-6.10749e-10
-5.6985e-11
-6.10477e-10
-2.56711e-11
-6.10358e-10
5.45162e-12
-6.1036e-10
3.63824e-11
-6.10452e-10
6.71269e-11
-6.10601e-10
9.76967e-11
-6.10782e-10
1.28109e-10
-6.1097e-10
1.58381e-10
-6.11145e-10
1.88528e-10
-6.11287e-10
2.18559e-10
-6.11373e-10
2.48483e-10
-6.11383e-10
2.78313e-10
-6.11303e-10
3.08081e-10
-6.11133e-10
3.37833e-10
-6.1088e-10
3.6762e-10
-6.10556e-10
3.97484e-10
-6.10169e-10
4.27442e-10
-6.09715e-10
4.57493e-10
-6.09188e-10
4.87633e-10
-6.08585e-10
5.17872e-10
-6.0792e-10
5.48238e-10
-6.07222e-10
5.78767e-10
-6.0653e-10
6.09483e-10
-6.05879e-10
6.40389e-10
-6.05296e-10
6.7146e-10
-6.04802e-10
7.0266e-10
-6.04423e-10
7.33961e-10
-6.0419e-10
7.65347e-10
-6.04136e-10
7.96816e-10
-6.04282e-10
8.28367e-10
-6.04642e-10
8.59978e-10
-6.05223e-10
8.91608e-10
-6.06038e-10
9.23206e-10
-6.07108e-10
9.54732e-10
-6.08445e-10
9.86173e-10
-6.10041e-10
1.01753e-09
-6.11867e-10
1.04881e-09
-6.13895e-10
1.07995e-09
-6.16113e-10
1.1109e-09
-6.18519e-10
1.14159e-09
-6.21088e-10
1.17202e-09
-6.2374e-10
1.2022e-09
-6.26359e-10
1.23211e-09
-6.28828e-10
1.26167e-09
-6.31045e-10
1.2908e-09
-6.32889e-10
1.31948e-09
-6.34164e-10
1.34773e-09
-6.34595e-10
1.37559e-09
-6.33895e-10
1.40299e-09
-6.31811e-10
1.42987e-09
-6.28098e-10
1.45623e-09
-6.22455e-10
1.48211e-09
-6.14559e-10
1.50749e-09
-6.04144e-10
1.53235e-09
-5.91011e-10
1.55675e-09
-5.7498e-10
1.58067e-09
-5.55976e-10
1.60409e-09
-5.34034e-10
1.62712e-09
-5.09207e-10
1.64976e-09
-4.81724e-10
1.67197e-09
-4.51959e-10
1.6937e-09
-4.20389e-10
1.71493e-09
-3.87534e-10
-3.53862e-10
1.73576e-09
-1.11965e-09
-4.0063e-10
-1.09744e-09
-4.3388e-10
-1.07482e-09
-4.6638e-10
-1.05179e-09
-4.97573e-10
-1.02837e-09
-5.26949e-10
-1.00453e-09
-5.5408e-10
-9.80256e-10
-5.78634e-10
-9.5554e-10
-6.00391e-10
-9.30377e-10
-6.19242e-10
-9.04767e-10
-6.35181e-10
-8.78707e-10
-6.48289e-10
-8.52188e-10
-6.58713e-10
-8.25192e-10
-6.66656e-10
-7.97709e-10
-6.72361e-10
-7.69738e-10
-6.76104e-10
-7.41288e-10
-6.78179e-10
-7.12385e-10
-6.78879e-10
-6.83066e-10
-6.78481e-10
-6.53363e-10
-6.77235e-10
-6.23313e-10
-6.75362e-10
-5.92951e-10
-6.73044e-10
-5.6231e-10
-6.70437e-10
-5.31421e-10
-6.67669e-10
-5.00312e-10
-6.64846e-10
-4.69012e-10
-6.62053e-10
-4.37548e-10
-6.59356e-10
-4.05951e-10
-6.56798e-10
-3.74251e-10
-6.54409e-10
-3.42477e-10
-6.52208e-10
-3.10656e-10
-6.50208e-10
-2.78809e-10
-6.4842e-10
-2.46958e-10
-6.4685e-10
-2.15121e-10
-6.455e-10
-1.83324e-10
-6.44368e-10
-1.51593e-10
-6.43448e-10
-1.19958e-10
-6.42726e-10
-8.84463e-11
-6.42187e-10
-5.7077e-11
-6.41809e-10
-2.58619e-11
-6.41564e-10
5.19332e-12
-6.41422e-10
3.60869e-11
-6.41351e-10
6.68205e-11
-6.41327e-10
9.74014e-11
-6.4133e-10
1.27844e-10
-6.41347e-10
1.58166e-10
-6.41365e-10
1.88385e-10
-6.41372e-10
2.18507e-10
-6.41349e-10
2.48534e-10
-6.41279e-10
2.7847e-10
-6.4115e-10
3.08334e-10
-6.4096e-10
3.38171e-10
-6.40713e-10
3.68036e-10
-6.40416e-10
3.97981e-10
-6.40073e-10
4.28027e-10
-6.3968e-10
4.58169e-10
-6.39232e-10
4.88389e-10
-6.38732e-10
5.18678e-10
-6.38191e-10
5.49056e-10
-6.37634e-10
5.79563e-10
-6.37085e-10
6.10233e-10
-6.3657e-10
6.41071e-10
-6.36114e-10
6.7205e-10
-6.35741e-10
7.03128e-10
-6.35482e-10
7.34274e-10
-6.35363e-10
7.65482e-10
-6.35404e-10
7.96761e-10
-6.35616e-10
8.28112e-10
-6.36009e-10
8.59506e-10
-6.36601e-10
8.90895e-10
-6.37417e-10
9.22231e-10
-6.38475e-10
9.53492e-10
-6.39773e-10
9.84681e-10
-6.41289e-10
1.0158e-09
-6.43e-10
1.04681e-09
-6.44899e-10
1.07765e-09
-6.46989e-10
1.10826e-09
-6.49257e-10
1.13863e-09
-6.51643e-10
1.16876e-09
-6.54051e-10
1.19864e-09
-6.56379e-10
1.22821e-09
-6.58546e-10
1.25737e-09
-6.60457e-10
1.28609e-09
-6.61956e-10
1.3144e-09
-6.62805e-10
1.34232e-09
-6.62747e-10
1.36979e-09
-6.61549e-10
1.39675e-09
-6.58989e-10
1.42318e-09
-6.54789e-10
1.44912e-09
-6.48624e-10
1.47457e-09
-6.40201e-10
1.4995e-09
-6.29285e-10
1.52392e-09
-6.15654e-10
1.54787e-09
-5.99133e-10
1.57132e-09
-5.79668e-10
1.59434e-09
-5.57238e-10
1.61699e-09
-5.31928e-10
1.63921e-09
-5.04018e-10
1.66098e-09
-4.73883e-10
1.68231e-09
-4.41931e-10
1.70327e-09
-4.08647e-10
-3.74519e-10
1.72385e-09
-1.10965e-09
-4.22175e-10
-1.0877e-09
-4.55818e-10
-1.06536e-09
-4.88708e-10
-1.04264e-09
-5.20291e-10
-1.01953e-09
-5.50062e-10
-9.96005e-10
-5.77594e-10
-9.72054e-10
-6.02564e-10
-9.47668e-10
-6.2476e-10
-9.22844e-10
-6.44074e-10
-8.97575e-10
-6.60497e-10
-8.7185e-10
-6.74096e-10
-8.45652e-10
-6.85009e-10
-8.18964e-10
-6.93431e-10
-7.91783e-10
-6.99604e-10
-7.64117e-10
-7.03805e-10
-7.35977e-10
-7.06329e-10
-7.07388e-10
-7.07466e-10
-6.78382e-10
-7.07486e-10
-6.48988e-10
-7.06632e-10
-6.19236e-10
-7.05116e-10
-5.8916e-10
-7.03119e-10
-5.58797e-10
-7.00798e-10
-5.28181e-10
-6.98282e-10
-4.97341e-10
-6.9568e-10
-4.66304e-10
-6.93076e-10
-4.35096e-10
-6.90536e-10
-4.03745e-10
-6.88106e-10
-3.7228e-10
-6.85817e-10
-3.40735e-10
-6.83691e-10
-3.09136e-10
-6.81745e-10
-2.77508e-10
-6.7999e-10
-2.45871e-10
-6.78433e-10
-2.14242e-10
-6.77075e-10
-1.82641e-10
-6.75915e-10
-1.51093e-10
-6.74945e-10
-1.19624e-10
-6.74152e-10
-8.8255e-11
-6.73522e-10
-5.70014e-11
-6.73033e-10
-2.58717e-11
-6.72658e-10
5.12828e-12
-6.72371e-10
3.59919e-11
-6.72144e-10
6.67139e-11
-6.71961e-10
9.72959e-11
-6.71809e-10
1.2775e-10
-6.71683e-10
1.58098e-10
-6.71577e-10
1.88359e-10
-6.71481e-10
2.18541e-10
-6.7138e-10
2.48639e-10
-6.71258e-10
2.78648e-10
-6.71101e-10
3.08581e-10
-6.70902e-10
3.38479e-10
-6.7066e-10
3.68403e-10
-6.70377e-10
3.98409e-10
-6.70053e-10
4.28522e-10
-6.69692e-10
4.5873e-10
-6.69296e-10
4.89002e-10
-6.68873e-10
5.19323e-10
-6.68435e-10
5.49707e-10
-6.67993e-10
5.80195e-10
-6.67563e-10
6.10823e-10
-6.67164e-10
6.41593e-10
-6.66821e-10
6.72476e-10
-6.66565e-10
7.03431e-10
-6.66423e-10
7.34435e-10
-6.6641e-10
7.65489e-10
-6.66533e-10
7.96603e-10
-6.668e-10
8.27768e-10
-6.67224e-10
8.5895e-10
-6.67833e-10
8.90103e-10
-6.68652e-10
9.21197e-10
-6.69686e-10
9.52228e-10
-6.7092e-10
9.83196e-10
-6.72335e-10
1.01408e-09
-6.73926e-10
1.04482e-09
-6.757e-10
1.07537e-09
-6.77654e-10
1.10569e-09
-6.79748e-10
1.1358e-09
-6.819e-10
1.16568e-09
-6.84026e-10
1.19528e-09
-6.86059e-10
1.22451e-09
-6.87927e-10
1.25334e-09
-6.89507e-10
1.28177e-09
-6.90603e-10
1.30982e-09
-6.90986e-10
1.33744e-09
-6.90446e-10
1.36457e-09
-6.88786e-10
1.39118e-09
-6.85755e-10
1.41729e-09
-6.81043e-10
1.44292e-09
-6.74346e-10
1.46803e-09
-6.65411e-10
1.49262e-09
-6.53993e-10
1.51673e-09
-6.39856e-10
1.54034e-09
-6.22857e-10
1.56348e-09
-6.02918e-10
1.58623e-09
-5.80004e-10
1.60854e-09
-5.54283e-10
1.63041e-09
-5.26014e-10
1.65184e-09
-4.95526e-10
1.67289e-09
-4.63186e-10
1.69366e-09
-4.29446e-10
-3.94924e-10
1.71403e-09
-1.10147e-09
-4.43539e-10
-1.07973e-09
-4.77559e-10
-1.05762e-09
-5.10825e-10
-1.03513e-09
-5.42788e-10
-1.01224e-09
-5.72943e-10
-9.88943e-10
-6.0087e-10
-9.65222e-10
-6.26257e-10
-9.41075e-10
-6.48894e-10
-9.16493e-10
-6.68675e-10
-8.91461e-10
-6.85578e-10
-8.65961e-10
-6.99663e-10
-8.39976e-10
-7.11059e-10
-8.13498e-10
-7.19959e-10
-7.86532e-10
-7.26609e-10
-7.59094e-10
-7.31283e-10
-7.31197e-10
-7.34272e-10
-7.0286e-10
-7.35857e-10
-6.74105e-10
-7.36302e-10
-6.44958e-10
-7.35839e-10
-6.15447e-10
-7.34676e-10
-5.85608e-10
-7.32996e-10
-5.5548e-10
-7.30959e-10
-5.25098e-10
-7.28697e-10
-4.94492e-10
-7.2632e-10
-4.63688e-10
-7.23913e-10
-4.32707e-10
-7.21538e-10
-4.01575e-10
-7.19245e-10
-3.70325e-10
-7.17066e-10
-3.38988e-10
-7.15028e-10
-3.07595e-10
-7.13149e-10
-2.7617e-10
-7.1144e-10
-2.44731e-10
-7.09906e-10
-2.13292e-10
-7.08547e-10
-1.81871e-10
-7.0736e-10
-1.50489e-10
-7.06336e-10
-1.19168e-10
-7.05467e-10
-8.79265e-11
-7.04738e-10
-5.67737e-11
-7.04132e-10
-2.57169e-11
-7.03628e-10
5.23529e-12
-7.03204e-10
3.60696e-11
-7.02841e-10
6.67728e-11
-7.02527e-10
9.73414e-11
-7.02257e-10
1.27788e-10
-7.02027e-10
1.58138e-10
-7.01832e-10
1.88415e-10
-7.01664e-10
2.18629e-10
-7.01509e-10
2.48773e-10
-7.01351e-10
2.78835e-10
-7.01172e-10
3.08822e-10
-7.00962e-10
3.38772e-10
-7.00711e-10
3.68747e-10
-7.00417e-10
3.98802e-10
-7.00086e-10
4.2896e-10
-6.99728e-10
4.59206e-10
-6.99359e-10
4.89506e-10
-6.98989e-10
5.19841e-10
-6.98625e-10
5.50226e-10
-6.98272e-10
5.80697e-10
-6.97935e-10
6.1128e-10
-6.97634e-10
6.41977e-10
-6.97396e-10
6.72761e-10
-6.9725e-10
7.036e-10
-6.97213e-10
7.34481e-10
-6.9729e-10
7.65405e-10
-6.97481e-10
7.96372e-10
-6.97793e-10
8.27362e-10
-6.9825e-10
8.58342e-10
-6.98878e-10
8.89281e-10
-6.9969e-10
9.2017e-10
-7.0068e-10
9.51004e-10
-7.01831e-10
9.81767e-10
-7.0314e-10
1.01241e-09
-7.04614e-10
1.0429e-09
-7.0626e-10
1.07319e-09
-7.08052e-10
1.10328e-09
-7.09927e-10
1.13318e-09
-7.11815e-10
1.16283e-09
-7.13659e-10
1.19217e-09
-7.15409e-10
1.22112e-09
-7.16971e-10
1.24971e-09
-7.18185e-10
1.27794e-09
-7.18853e-10
1.30577e-09
-7.18788e-10
1.33314e-09
-7.17814e-10
1.36e-09
-7.15713e-10
1.38637e-09
-7.12199e-10
1.41226e-09
-7.06968e-10
1.43764e-09
-6.99758e-10
1.46251e-09
-6.9032e-10
1.48688e-09
-6.78387e-10
1.51076e-09
-6.63745e-10
1.53415e-09
-6.46262e-10
1.55711e-09
-6.2583e-10
1.57963e-09
-6.02479e-10
1.60168e-09
-5.76387e-10
1.62328e-09
-5.47763e-10
1.6445e-09
-5.1687e-10
1.6654e-09
-4.84102e-10
1.68596e-09
-4.49945e-10
-4.15012e-10
1.70617e-09
-1.09501e-09
-4.64741e-10
-1.07345e-09
-4.99144e-10
-1.0515e-09
-5.32795e-10
-1.02917e-09
-5.65142e-10
-1.00643e-09
-5.95685e-10
-9.83284e-10
-6.24016e-10
-9.59719e-10
-6.49829e-10
-9.35731e-10
-6.72917e-10
-9.11302e-10
-6.93165e-10
-8.8641e-10
-7.10543e-10
-8.61037e-10
-7.25102e-10
-8.35175e-10
-7.36971e-10
-8.08825e-10
-7.46346e-10
-7.82001e-10
-7.53473e-10
-7.54724e-10
-7.58623e-10
-7.27003e-10
-7.62075e-10
-6.9885e-10
-7.64103e-10
-6.7028e-10
-7.64961e-10
-6.41317e-10
-7.64877e-10
-6.11992e-10
-7.6406e-10
-5.82342e-10
-7.62693e-10
-5.52408e-10
-7.60939e-10
-5.22224e-10
-7.58934e-10
-4.91819e-10
-7.56786e-10
-4.61214e-10
-7.54579e-10
-4.30429e-10
-7.52378e-10
-3.99492e-10
-7.50229e-10
-3.68433e-10
-7.48171e-10
-3.37286e-10
-7.4623e-10
-3.0608e-10
-7.44426e-10
-2.74837e-10
-7.42768e-10
-2.43573e-10
-7.41261e-10
-2.123e-10
-7.39903e-10
-1.81035e-10
-7.38688e-10
-1.49797e-10
-7.37612e-10
-1.18606e-10
-7.36667e-10
-8.74752e-11
-7.35844e-10
-5.64118e-11
-7.35133e-10
-2.54225e-11
-7.34518e-10
5.48051e-12
-7.33985e-10
3.62777e-11
-7.33521e-10
6.69499e-11
-7.33118e-10
9.74903e-11
-7.3277e-10
1.27913e-10
-7.32471e-10
1.58248e-10
-7.32214e-10
1.88524e-10
-7.31992e-10
2.18753e-10
-7.3179e-10
2.48928e-10
-7.31594e-10
2.79033e-10
-7.31386e-10
3.09072e-10
-7.31147e-10
3.39076e-10
-7.30866e-10
3.69099e-10
-7.30541e-10
3.99191e-10
-7.30183e-10
4.29372e-10
-7.29813e-10
4.59629e-10
-7.29452e-10
4.89934e-10
-7.29114e-10
5.20271e-10
-7.288e-10
5.5065e-10
-7.28509e-10
5.81096e-10
-7.28244e-10
6.11629e-10
-7.28025e-10
6.42246e-10
-7.27875e-10
6.72932e-10
-7.27816e-10
7.03669e-10
-7.27856e-10
7.34447e-10
-7.27992e-10
7.6526e-10
-7.28224e-10
7.96092e-10
-7.28566e-10
8.26919e-10
-7.29042e-10
8.57719e-10
-7.29669e-10
8.8848e-10
-7.30448e-10
9.192e-10
-7.31369e-10
9.49861e-10
-7.32426e-10
9.80426e-10
-7.33629e-10
1.01085e-09
-7.34987e-10
1.04111e-09
-7.36487e-10
1.0712e-09
-7.38083e-10
1.10112e-09
-7.39719e-10
1.13083e-09
-7.41351e-10
1.16026e-09
-7.42941e-10
1.18936e-09
-7.44423e-10
1.21811e-09
-7.4567e-10
1.24654e-09
-7.46512e-10
1.27461e-09
-7.46784e-10
1.30226e-09
-7.46332e-10
1.32942e-09
-7.44968e-10
1.3561e-09
-7.42434e-10
1.38233e-09
-7.38439e-10
1.40807e-09
-7.32717e-10
1.43329e-09
-7.25025e-10
1.45801e-09
-7.15084e-10
1.48225e-09
-7.02636e-10
1.50599e-09
-6.87498e-10
1.52927e-09
-6.6952e-10
1.55212e-09
-6.48616e-10
1.57446e-09
-6.24874e-10
1.59632e-09
-5.98394e-10
1.61778e-09
-5.69355e-10
1.6389e-09
-5.38012e-10
1.6597e-09
-5.04795e-10
1.68008e-09
-4.70272e-10
-4.34936e-10
1.70011e-09
-1.09017e-09
-4.85801e-10
-1.06874e-09
-5.20606e-10
-1.04691e-09
-5.54658e-10
-1.02467e-09
-5.87406e-10
-1.00203e-09
-6.18359e-10
-9.7897e-10
-6.47119e-10
-9.55496e-10
-6.73381e-10
-9.31592e-10
-6.96932e-10
-9.07232e-10
-7.17645e-10
-8.82392e-10
-7.35484e-10
-8.57061e-10
-7.50503e-10
-8.31245e-10
-7.62832e-10
-8.04956e-10
-7.72673e-10
-7.78211e-10
-7.80269e-10
-7.5103e-10
-7.85885e-10
-7.2342e-10
-7.89788e-10
-6.95384e-10
-7.92242e-10
-6.66935e-10
-7.93494e-10
-6.38097e-10
-7.93777e-10
-6.08905e-10
-7.93297e-10
-5.79401e-10
-7.92242e-10
-5.49623e-10
-7.90773e-10
-5.19604e-10
-7.89025e-10
-4.89365e-10
-7.87106e-10
-4.58927e-10
-7.85101e-10
-4.2831e-10
-7.83073e-10
-3.97539e-10
-7.81073e-10
-3.66648e-10
-7.79139e-10
-3.35668e-10
-7.773e-10
-3.04625e-10
-7.75574e-10
-2.7354e-10
-7.73971e-10
-2.42424e-10
-7.72491e-10
-2.11291e-10
-7.71133e-10
-1.80157e-10
-7.69893e-10
-1.49041e-10
-7.6877e-10
-1.17962e-10
-7.67759e-10
-8.69298e-11
-7.66859e-10
-5.5951e-11
-7.66063e-10
-2.50314e-11
-7.65364e-10
5.81463e-12
-7.64754e-10
3.65639e-11
-7.64224e-10
6.71943e-11
-7.63764e-10
9.76982e-11
-7.63363e-10
1.28091e-10
-7.63012e-10
1.58405e-10
-7.62701e-10
1.88673e-10
-7.62423e-10
2.18909e-10
-7.62167e-10
2.49109e-10
-7.61922e-10
2.79257e-10
-7.6167e-10
3.09351e-10
-7.61391e-10
3.39411e-10
-7.61073e-10
3.6948e-10
-7.60716e-10
3.99596e-10
-7.60338e-10
4.2978e-10
-7.59963e-10
4.60027e-10
-7.59617e-10
4.90319e-10
-7.59309e-10
5.20646e-10
-7.59038e-10
5.5101e-10
-7.58801e-10
5.81424e-10
-7.58599e-10
6.11898e-10
-7.5845e-10
6.42436e-10
-7.58371e-10
6.73035e-10
-7.58373e-10
7.03687e-10
-7.58455e-10
7.3438e-10
-7.58617e-10
7.65092e-10
-7.58866e-10
7.958e-10
-7.59218e-10
8.26482e-10
-7.59692e-10
8.57133e-10
-7.60291e-10
8.87753e-10
-7.6101e-10
9.18329e-10
-7.61845e-10
9.48828e-10
-7.62805e-10
9.79206e-10
-7.63901e-10
1.00944e-09
-7.65128e-10
1.03952e-09
-7.66455e-10
1.06946e-09
-7.67837e-10
1.09922e-09
-7.6924e-10
1.12875e-09
-7.70641e-10
1.15798e-09
-7.71994e-10
1.1869e-09
-7.73203e-10
1.21553e-09
-7.74124e-10
1.24384e-09
-7.74612e-10
1.27178e-09
-7.74533e-10
1.29927e-09
-7.73729e-10
1.32631e-09
-7.71973e-10
1.35291e-09
-7.68993e-10
1.37906e-09
-7.64532e-10
1.4047e-09
-7.58349e-10
1.42985e-09
-7.50176e-10
1.45452e-09
-7.39727e-10
1.47871e-09
-7.26777e-10
1.5024e-09
-7.1115e-10
1.52565e-09
-6.92683e-10
1.54839e-09
-6.71354e-10
1.57063e-09
-6.47206e-10
1.59243e-09
-6.20291e-10
1.61387e-09
-5.90773e-10
1.63494e-09
-5.58987e-10
1.65562e-09
-5.2536e-10
1.67591e-09
-4.90455e-10
-4.54777e-10
1.69576e-09
-1.08686e-09
-5.06737e-10
-1.06552e-09
-5.41968e-10
-1.04376e-09
-5.76442e-10
-1.02157e-09
-6.0962e-10
-9.98969e-10
-6.41017e-10
-9.75949e-10
-6.70239e-10
-9.52502e-10
-6.9697e-10
-9.28606e-10
-7.20987e-10
-9.04233e-10
-7.42157e-10
-8.79367e-10
-7.60446e-10
-8.54007e-10
-7.75914e-10
-8.28175e-10
-7.88701e-10
-8.0189e-10
-7.99005e-10
-7.75167e-10
-8.07065e-10
-7.4802e-10
-8.13136e-10
-7.20455e-10
-8.17475e-10
-6.92474e-10
-8.20338e-10
-6.64089e-10
-8.21972e-10
-6.35326e-10
-8.22609e-10
-6.06224e-10
-8.22462e-10
-5.76825e-10
-8.21715e-10
-5.47165e-10
-8.20528e-10
-5.17273e-10
-8.19032e-10
-4.87167e-10
-8.17333e-10
-4.56864e-10
-8.15517e-10
-4.26384e-10
-8.13652e-10
-3.95754e-10
-8.11792e-10
-3.65006e-10
-8.09977e-10
-3.34167e-10
-8.08234e-10
-3.03262e-10
-8.06582e-10
-2.72306e-10
-8.05028e-10
-2.41311e-10
-8.03572e-10
-2.1029e-10
-8.02214e-10
-1.79264e-10
-8.00954e-10
-1.48251e-10
-7.99793e-10
-1.17269e-10
-7.98732e-10
-8.63294e-11
-7.97773e-10
-5.54345e-11
-7.96916e-10
-2.45898e-11
-7.96158e-10
6.19076e-12
-7.95495e-10
3.68847e-11
-7.94918e-10
6.74701e-11
-7.94414e-10
9.79394e-11
-7.93966e-10
1.28307e-10
-7.93561e-10
1.58604e-10
-7.93188e-10
1.88863e-10
-7.92842e-10
2.19105e-10
-7.9252e-10
2.49327e-10
-7.92214e-10
2.79517e-10
-7.9191e-10
3.09666e-10
-7.91591e-10
3.3978e-10
-7.91245e-10
3.69886e-10
-7.90876e-10
4.00013e-10
-7.90502e-10
4.30184e-10
-7.90148e-10
4.60406e-10
-7.89835e-10
4.90676e-10
-7.89567e-10
5.20983e-10
-7.89342e-10
5.51324e-10
-7.89157e-10
5.817e-10
-7.89014e-10
6.12117e-10
-7.88923e-10
6.42587e-10
-7.88894e-10
6.73118e-10
-7.88929e-10
7.03703e-10
-7.8903e-10
7.34321e-10
-7.89202e-10
7.64941e-10
-7.89459e-10
7.95537e-10
-7.89816e-10
8.26101e-10
-7.90277e-10
8.56636e-10
-7.90838e-10
8.8714e-10
-7.91495e-10
9.17586e-10
-7.92257e-10
9.47933e-10
-7.93135e-10
9.78151e-10
-7.94131e-10
1.00823e-09
-7.95223e-10
1.03819e-09
-7.96375e-10
1.068e-09
-7.97559e-10
1.0976e-09
-7.98762e-10
1.12696e-09
-7.99957e-10
1.15604e-09
-8.01072e-10
1.18485e-09
-8.01991e-10
1.21339e-09
-8.02588e-10
1.24161e-09
-8.02746e-10
1.26943e-09
-8.02334e-10
1.29683e-09
-8.0116e-10
1.32384e-09
-7.98979e-10
1.35043e-09
-7.95547e-10
1.37654e-09
-7.90634e-10
1.40217e-09
-7.83987e-10
1.42733e-09
-7.75315e-10
1.45202e-09
-7.64361e-10
1.47621e-09
-7.50923e-10
1.49993e-09
-7.34802e-10
1.52317e-09
-7.1587e-10
1.54587e-09
-6.94116e-10
1.56812e-09
-6.69493e-10
1.58997e-09
-6.42082e-10
1.61143e-09
-6.12074e-10
1.63249e-09
-5.79855e-10
1.65306e-09
-5.45863e-10
1.67324e-09
-5.10546e-10
-4.74504e-10
1.69297e-09
-1.08499e-09
-5.27573e-10
-1.06371e-09
-5.6325e-10
-1.04198e-09
-5.98175e-10
-1.01981e-09
-6.31816e-10
-9.97205e-10
-6.63691e-10
-9.74169e-10
-6.93395e-10
-9.50681e-10
-7.20604e-10
-9.26716e-10
-7.45084e-10
-9.02255e-10
-7.66707e-10
-8.77299e-10
-7.8545e-10
-8.51857e-10
-8.0138e-10
-8.25959e-10
-8.14638e-10
-7.99627e-10
-8.25416e-10
-7.72871e-10
-8.33941e-10
-7.45699e-10
-8.40458e-10
-7.18119e-10
-8.45219e-10
-6.90135e-10
-8.48476e-10
-6.61764e-10
-8.50477e-10
-6.33033e-10
-8.51457e-10
-6.03981e-10
-8.51629e-10
-5.74647e-10
-8.51176e-10
-5.45065e-10
-8.50254e-10
-5.15259e-10
-8.48992e-10
-4.85248e-10
-8.47494e-10
-4.55048e-10
-8.45848e-10
-4.24678e-10
-8.44128e-10
-3.94163e-10
-8.42389e-10
-3.63532e-10
-8.40676e-10
-3.32809e-10
-8.39015e-10
-3.02013e-10
-8.37422e-10
-2.71159e-10
-8.35904e-10
-2.40258e-10
-8.34465e-10
-2.09328e-10
-8.33107e-10
-1.78388e-10
-8.31833e-10
-1.47463e-10
-8.30647e-10
-1.16569e-10
-8.29554e-10
-8.5715e-11
-8.28559e-10
-5.49039e-11
-8.27664e-10
-2.41373e-11
-8.26871e-10
6.57481e-12
-8.26174e-10
3.72136e-11
-8.25563e-10
6.77602e-11
-8.25021e-10
9.82056e-11
-8.24527e-10
1.28559e-10
-8.24064e-10
1.58848e-10
-8.23624e-10
1.89103e-10
-8.23206e-10
2.19348e-10
-8.22814e-10
2.49588e-10
-8.22446e-10
2.79813e-10
-8.22094e-10
3.10007e-10
-8.21745e-10
3.40164e-10
-8.21391e-10
3.70294e-10
-8.21035e-10
4.0042e-10
-8.20691e-10
4.30569e-10
-8.20376e-10
4.60764e-10
-8.20101e-10
4.91008e-10
-8.19869e-10
5.21294e-10
-8.19679e-10
5.51609e-10
-8.19528e-10
5.81949e-10
-8.1942e-10
6.12321e-10
-8.19358e-10
6.42742e-10
-8.19346e-10
6.73222e-10
-8.19385e-10
7.03751e-10
-8.19484e-10
7.34298e-10
-8.19657e-10
7.64831e-10
-8.19918e-10
7.95334e-10
-8.20273e-10
8.25808e-10
-8.20715e-10
8.56254e-10
-8.2124e-10
8.86657e-10
-8.21851e-10
9.16982e-10
-8.22561e-10
9.47198e-10
-8.23375e-10
9.77293e-10
-8.24279e-10
1.00727e-09
-8.25243e-10
1.03713e-09
-8.26242e-10
1.06681e-09
-8.27269e-10
1.09627e-09
-8.28308e-10
1.1255e-09
-8.2931e-10
1.15448e-09
-8.30181e-10
1.18324e-09
-8.30815e-10
1.21171e-09
-8.31111e-10
1.23985e-09
-8.30962e-10
1.26761e-09
-8.30212e-10
1.29502e-09
-8.28646e-10
1.32205e-09
-8.26039e-10
1.34865e-09
-8.2218e-10
1.37479e-09
-8.16835e-10
1.40048e-09
-8.09722e-10
1.42572e-09
-8.00567e-10
1.45046e-09
-7.89143e-10
1.47473e-09
-7.75231e-10
1.49852e-09
-7.58632e-10
1.52177e-09
-7.39253e-10
1.54455e-09
-7.17011e-10
1.5669e-09
-6.91858e-10
1.58886e-09
-6.63913e-10
1.61035e-09
-6.33446e-10
1.63137e-09
-6.00789e-10
1.65192e-09
-5.66386e-10
1.67199e-09
-5.30681e-10
-4.94208e-10
1.69163e-09
-1.08448e-09
-5.48329e-10
-1.06324e-09
-5.84477e-10
-1.04151e-09
-6.1988e-10
-1.01933e-09
-6.54013e-10
-9.96683e-10
-6.86388e-10
-9.73572e-10
-7.16584e-10
-9.49975e-10
-7.44273e-10
-9.25874e-10
-7.69226e-10
-9.01272e-10
-7.91323e-10
-8.76179e-10
-8.10546e-10
-8.50614e-10
-8.26966e-10
-8.24606e-10
-8.40716e-10
-7.98175e-10
-8.51976e-10
-7.71329e-10
-8.60959e-10
-7.44075e-10
-8.67905e-10
-7.16422e-10
-8.73064e-10
-6.88384e-10
-8.76692e-10
-6.59981e-10
-8.79039e-10
-6.31241e-10
-8.8034e-10
-6.02199e-10
-8.80806e-10
-5.72889e-10
-8.80622e-10
-5.43341e-10
-8.7994e-10
-5.13581e-10
-8.78887e-10
-4.83628e-10
-8.77572e-10
-4.53497e-10
-8.76083e-10
-4.23208e-10
-8.74495e-10
-3.92783e-10
-8.72867e-10
-3.62243e-10
-8.71241e-10
-3.31609e-10
-8.69646e-10
-3.00897e-10
-8.68096e-10
-2.70119e-10
-8.66603e-10
-2.39292e-10
-8.65174e-10
-2.08434e-10
-8.63815e-10
-1.77568e-10
-8.62535e-10
-1.46718e-10
-8.6134e-10
-1.15903e-10
-8.60236e-10
-8.51312e-11
-8.59226e-10
-5.44011e-11
-8.58315e-10
-2.37106e-11
-8.57503e-10
6.93693e-12
-8.56784e-10
3.75297e-11
-8.56144e-10
6.8051e-11
-8.55565e-10
9.84886e-11
-8.55023e-10
1.28844e-10
-8.54502e-10
1.59134e-10
-8.53998e-10
1.89389e-10
-8.53516e-10
2.19635e-10
-8.53063e-10
2.49884e-10
-8.52646e-10
2.80131e-10
-8.52262e-10
3.10356e-10
-8.51904e-10
3.4054e-10
-8.51564e-10
3.70683e-10
-8.51242e-10
4.00804e-10
-8.50941e-10
4.30937e-10
-8.50668e-10
4.61111e-10
-8.50426e-10
4.91337e-10
-8.50216e-10
5.21605e-10
-8.50042e-10
5.519e-10
-8.49905e-10
5.82214e-10
-8.49807e-10
6.12557e-10
-8.49747e-10
6.42945e-10
-8.49728e-10
6.73385e-10
-8.49756e-10
7.03858e-10
-8.49846e-10
7.34335e-10
-8.50017e-10
7.64791e-10
-8.50275e-10
7.95221e-10
-8.50617e-10
8.25625e-10
-8.51032e-10
8.55996e-10
-8.51519e-10
8.86306e-10
-8.52088e-10
9.16527e-10
-8.52747e-10
9.46644e-10
-8.5349e-10
9.76658e-10
-8.54292e-10
1.00656e-09
-8.5513e-10
1.03633e-09
-8.55996e-10
1.0659e-09
-8.56885e-10
1.09525e-09
-8.57762e-10
1.1244e-09
-8.58556e-10
1.15335e-09
-8.59175e-10
1.18207e-09
-8.59536e-10
1.2105e-09
-8.59553e-10
1.2386e-09
-8.591e-10
1.26639e-09
-8.57999e-10
1.29384e-09
-8.56047e-10
1.32092e-09
-8.53053e-10
1.34758e-09
-8.48805e-10
1.37381e-09
-8.43045e-10
1.39962e-09
-8.3549e-10
1.42497e-09
-8.25898e-10
1.44983e-09
-8.14037e-10
1.47422e-09
-7.99665e-10
1.49811e-09
-7.82609e-10
1.52148e-09
-7.62754e-10
1.54443e-09
-7.39958e-10
1.56695e-09
-7.14258e-10
1.589e-09
-6.85797e-10
1.61053e-09
-6.5487e-10
1.63154e-09
-6.21768e-10
1.65209e-09
-5.86876e-10
1.67212e-09
-5.50744e-10
-5.13816e-10
1.6917e-09
-1.08527e-09
-5.69018e-10
-1.06404e-09
-6.05664e-10
-1.04231e-09
-6.41576e-10
-1.02007e-09
-6.76229e-10
-9.97343e-10
-7.09121e-10
-9.74102e-10
-7.39828e-10
-9.50343e-10
-7.68018e-10
-9.26064e-10
-7.93473e-10
-9.01282e-10
-8.16077e-10
-8.76021e-10
-8.35811e-10
-8.50293e-10
-8.52738e-10
-8.24127e-10
-8.6698e-10
-7.9754e-10
-8.78704e-10
-7.70544e-10
-8.88118e-10
-7.43149e-10
-8.95459e-10
-7.15372e-10
-9.00983e-10
-6.87232e-10
-9.04952e-10
-6.58754e-10
-9.07617e-10
-6.29964e-10
-9.09214e-10
-6.00891e-10
-9.09952e-10
-5.71565e-10
-9.10013e-10
-5.42013e-10
-9.09551e-10
-5.12261e-10
-9.08696e-10
-4.8233e-10
-9.07556e-10
-4.52237e-10
-9.06223e-10
-4.22e-10
-9.0477e-10
-3.91636e-10
-9.03254e-10
-3.61159e-10
-9.01715e-10
-3.30587e-10
-9.00181e-10
-2.99932e-10
-8.98671e-10
-2.69212e-10
-8.972e-10
-2.38442e-10
-8.95783e-10
-2.07645e-10
-8.94433e-10
-1.76844e-10
-8.93161e-10
-1.46063e-10
-8.91974e-10
-1.1532e-10
-8.90876e-10
-8.46211e-11
-8.89867e-10
-5.39638e-11
-8.8895e-10
-2.33398e-11
-8.8812e-10
7.25546e-12
-8.87371e-10
3.78169e-11
-8.8669e-10
6.83297e-11
-8.86058e-10
9.8776e-11
-8.85456e-10
1.29146e-10
-8.84872e-10
1.59447e-10
-8.84305e-10
1.89703e-10
-8.83762e-10
2.19946e-10
-8.83258e-10
2.50196e-10
-8.82801e-10
2.8045e-10
-8.82393e-10
3.10689e-10
-8.82033e-10
3.40888e-10
-8.81712e-10
3.71042e-10
-8.81422e-10
4.01167e-10
-8.81158e-10
4.313e-10
-8.80913e-10
4.61471e-10
-8.80689e-10
4.91691e-10
-8.8049e-10
5.21951e-10
-8.80324e-10
5.52234e-10
-8.80195e-10
5.82535e-10
-8.80104e-10
6.12864e-10
-8.8005e-10
6.43231e-10
-8.80034e-10
6.73632e-10
-8.80068e-10
7.04048e-10
-8.80171e-10
7.34459e-10
-8.80354e-10
7.64854e-10
-8.80616e-10
7.9523e-10
-8.80946e-10
8.2558e-10
-8.81338e-10
8.55885e-10
-8.81796e-10
8.86116e-10
-8.82329e-10
9.16259e-10
-8.82935e-10
9.46313e-10
-8.83596e-10
9.76276e-10
-8.84293e-10
1.00612e-09
-8.85016e-10
1.0358e-09
-8.85763e-10
1.06529e-09
-8.86514e-10
1.0946e-09
-8.87212e-10
1.12373e-09
-8.87783e-10
1.15266e-09
-8.88156e-10
1.18136e-09
-8.88263e-10
1.20978e-09
-8.88009e-10
1.23792e-09
-8.87247e-10
1.26578e-09
-8.85801e-10
1.29331e-09
-8.835e-10
1.32046e-09
-8.80157e-10
1.34723e-09
-8.7554e-10
1.37361e-09
-8.69376e-10
1.39957e-09
-8.6141e-10
1.42506e-09
-8.51407e-10
1.4501e-09
-8.39106e-10
1.47466e-09
-8.24272e-10
1.4987e-09
-8.06744e-10
1.52231e-09
-7.86341e-10
1.54548e-09
-7.62975e-10
1.56817e-09
-7.36734e-10
1.5903e-09
-7.0779e-10
1.61191e-09
-6.76354e-10
1.63298e-09
-6.42763e-10
1.65351e-09
-6.07374e-10
1.67355e-09
-5.70701e-10
-5.33242e-10
1.69311e-09
-1.08731e-09
-5.89644e-10
-1.06609e-09
-6.26829e-10
-1.04432e-09
-6.63294e-10
-1.02201e-09
-6.98503e-10
-9.99143e-10
-7.31948e-10
-9.7573e-10
-7.63197e-10
-9.51775e-10
-7.91924e-10
-9.27289e-10
-8.17913e-10
-9.02298e-10
-8.41047e-10
-8.76831e-10
-8.61299e-10
-8.50895e-10
-8.7872e-10
-8.24515e-10
-8.93423e-10
-7.9771e-10
-9.05574e-10
-7.70505e-10
-9.15379e-10
-7.42918e-10
-9.2308e-10
-7.14972e-10
-9.2894e-10
-6.86692e-10
-9.33224e-10
-6.58101e-10
-9.36187e-10
-6.29222e-10
-9.38063e-10
-6.0008e-10
-9.3906e-10
-5.70701e-10
-9.39358e-10
-5.41111e-10
-9.39112e-10
-5.11336e-10
-9.38452e-10
-4.81399e-10
-9.3749e-10
-4.51315e-10
-9.36315e-10
-4.21098e-10
-9.34999e-10
-3.90761e-10
-9.33594e-10
-3.60315e-10
-9.3214e-10
-3.29774e-10
-9.30667e-10
-2.99153e-10
-9.29198e-10
-2.68473e-10
-9.27757e-10
-2.3775e-10
-9.26366e-10
-2.07007e-10
-9.25043e-10
-1.76264e-10
-9.23799e-10
-1.45542e-10
-9.2264e-10
-1.14858e-10
-9.21562e-10
-8.42181e-11
-9.20562e-10
-5.36159e-11
-9.19635e-10
-2.3039e-11
-9.18778e-10
7.52373e-12
-9.17984e-10
3.80728e-11
-9.17243e-10
6.85932e-11
-9.16543e-10
9.90603e-11
-9.15872e-10
1.29453e-10
-9.15224e-10
1.5977e-10
-9.14601e-10
1.9003e-10
-9.1401e-10
2.20268e-10
-9.13463e-10
2.5051e-10
-9.12969e-10
2.8076e-10
-9.12536e-10
3.11002e-10
-9.12161e-10
3.41211e-10
-9.11838e-10
3.71381e-10
-9.11553e-10
4.01527e-10
-9.11292e-10
4.31679e-10
-9.11046e-10
4.61864e-10
-9.10816e-10
4.92089e-10
-9.10613e-10
5.22348e-10
-9.10448e-10
5.52628e-10
-9.10327e-10
5.82927e-10
-9.10248e-10
6.13251e-10
-9.10209e-10
6.43598e-10
-9.10215e-10
6.73962e-10
-9.10276e-10
7.04328e-10
-9.10407e-10
7.34689e-10
-9.10608e-10
7.65043e-10
-9.10872e-10
7.95384e-10
-9.11192e-10
8.25693e-10
-9.11567e-10
8.55944e-10
-9.12006e-10
8.8612e-10
-9.12508e-10
9.16219e-10
-9.1306e-10
9.46243e-10
-9.13645e-10
9.7617e-10
-9.14253e-10
1.00596e-09
-9.14883e-10
1.03559e-09
-9.15524e-10
1.06505e-09
-9.16133e-10
1.09436e-09
-9.1665e-10
1.1235e-09
-9.17013e-10
1.15245e-09
-9.17171e-10
1.18116e-09
-9.17052e-10
1.20962e-09
-9.16541e-10
1.23784e-09
-9.15489e-10
1.26578e-09
-9.13742e-10
1.2934e-09
-9.11142e-10
1.32067e-09
-9.07481e-10
1.3476e-09
-9.02506e-10
1.37416e-09
-8.95963e-10
1.4003e-09
-8.87616e-10
1.426e-09
-8.77204e-10
1.45126e-09
-8.64454e-10
1.47603e-09
-8.49157e-10
1.50035e-09
-8.31115e-10
1.52425e-09
-8.10141e-10
1.54764e-09
-7.86248e-10
1.57049e-09
-7.59499e-10
1.59276e-09
-7.30063e-10
1.61446e-09
-6.98101e-10
1.63563e-09
-6.63952e-10
1.6562e-09
-6.28054e-10
1.67626e-09
-5.90822e-10
-5.52789e-10
1.69577e-09
-1.09057e-09
-6.10227e-10
-1.06933e-09
-6.48011e-10
-1.04751e-09
-6.85088e-10
-1.02509e-09
-7.20907e-10
-1.00206e-09
-7.54946e-10
-9.78446e-10
-7.86776e-10
-9.54266e-10
-8.16069e-10
-9.29545e-10
-8.42609e-10
-9.04309e-10
-8.66276e-10
-8.7859e-10
-8.87031e-10
-8.52392e-10
-9.04917e-10
-8.25743e-10
-9.20046e-10
-7.98668e-10
-9.32587e-10
-7.71205e-10
-9.42757e-10
-7.43385e-10
-9.50799e-10
-7.15237e-10
-9.56981e-10
-6.86785e-10
-9.6157e-10
-6.5805e-10
-9.6482e-10
-6.2905e-10
-9.66964e-10
-5.99806e-10
-9.6821e-10
-5.70341e-10
-9.68737e-10
-5.40683e-10
-9.68701e-10
-5.10857e-10
-9.68232e-10
-4.80883e-10
-9.67439e-10
-4.50776e-10
-9.66411e-10
-4.20546e-10
-9.65215e-10
-3.902e-10
-9.63905e-10
-3.59751e-10
-9.62521e-10
-3.29213e-10
-9.61099e-10
-2.98607e-10
-9.5967e-10
-2.67953e-10
-9.58266e-10
-2.3727e-10
-9.56913e-10
-2.06573e-10
-9.55631e-10
-1.75878e-10
-9.54427e-10
-1.45201e-10
-9.533e-10
-1.14556e-10
-9.52241e-10
-8.3948e-11
-9.51242e-10
-5.33728e-11
-9.50293e-10
-2.28155e-11
-9.49393e-10
7.73879e-12
-9.48539e-10
3.82931e-11
-9.47731e-10
6.88319e-11
-9.46967e-10
9.93254e-11
-9.46245e-10
1.29745e-10
-9.4556e-10
1.60081e-10
-9.44913e-10
1.90351e-10
-9.44305e-10
2.20588e-10
-9.43741e-10
2.50824e-10
-9.43228e-10
2.8107e-10
-9.42774e-10
3.11314e-10
-9.42379e-10
3.41539e-10
-9.42037e-10
3.71738e-10
-9.41733e-10
4.0192e-10
-9.41453e-10
4.32107e-10
-9.4119e-10
4.62315e-10
-9.4095e-10
4.9255e-10
-9.40745e-10
5.22811e-10
-9.40587e-10
5.53093e-10
-9.40479e-10
5.83397e-10
-9.40418e-10
6.13718e-10
-9.404e-10
6.4405e-10
-9.4043e-10
6.74385e-10
-9.40515e-10
7.04718e-10
-9.40659e-10
7.35053e-10
-9.40858e-10
7.65387e-10
-9.41105e-10
7.95706e-10
-9.414e-10
8.25984e-10
-9.41751e-10
8.56201e-10
-9.42159e-10
8.86352e-10
-9.42617e-10
9.16439e-10
-9.43106e-10
9.46452e-10
-9.43616e-10
9.76358e-10
-9.44144e-10
1.00612e-09
-9.44686e-10
1.03574e-09
-9.45211e-10
1.06522e-09
-9.45669e-10
1.09457e-09
-9.46008e-10
1.12374e-09
-9.46187e-10
1.15272e-09
-9.46154e-10
1.18148e-09
-9.45822e-10
1.21003e-09
-9.45066e-10
1.23835e-09
-9.43755e-10
1.2664e-09
-9.41749e-10
1.29415e-09
-9.38871e-10
1.32159e-09
-9.34894e-10
1.34872e-09
-9.29573e-10
1.37548e-09
-9.22676e-10
1.40184e-09
-9.13952e-10
1.4278e-09
-9.03117e-10
1.45332e-09
-8.89924e-10
1.47839e-09
-8.74154e-10
1.50305e-09
-8.55576e-10
1.52722e-09
-8.34086e-10
1.55085e-09
-8.09706e-10
1.57386e-09
-7.82476e-10
1.59633e-09
-7.52494e-10
1.61817e-09
-7.2e-10
1.63943e-09
-6.85268e-10
1.66012e-09
-6.48749e-10
1.68024e-09
-6.10932e-10
-5.72379e-10
1.6997e-09
-1.09503e-09
-6.30816e-10
-1.07378e-09
-6.69271e-10
-1.05188e-09
-7.0702e-10
-1.02931e-09
-7.43493e-10
-1.00609e-09
-7.78162e-10
-9.82236e-10
-8.10602e-10
-9.57802e-10
-8.40485e-10
-9.32813e-10
-8.6759e-10
-9.0729e-10
-8.91788e-10
-8.81268e-10
-9.13035e-10
-8.54758e-10
-9.31369e-10
-8.27794e-10
-9.46906e-10
-8.00412e-10
-9.59826e-10
-7.72658e-10
-9.70353e-10
-7.44576e-10
-9.78738e-10
-7.16198e-10
-9.85241e-10
-6.87546e-10
-9.90127e-10
-6.58639e-10
-9.93649e-10
-6.29488e-10
-9.9604e-10
-6.00112e-10
-9.97508e-10
-5.70532e-10
-9.98237e-10
-5.40775e-10
-9.98382e-10
-5.10866e-10
-9.98073e-10
-4.80822e-10
-9.9742e-10
-4.50656e-10
-9.96507e-10
-4.20375e-10
-9.95403e-10
-3.89986e-10
-9.94164e-10
-3.59503e-10
-9.92836e-10
-3.28946e-10
-9.91461e-10
-2.9834e-10
-9.90078e-10
-2.67705e-10
-9.88721e-10
-2.37053e-10
-9.87416e-10
-2.06392e-10
-9.86179e-10
-1.75727e-10
-9.8501e-10
-1.45071e-10
-9.83902e-10
-1.14434e-10
-9.82842e-10
-8.38266e-11
-9.81818e-10
-5.32463e-11
-9.80823e-10
-2.2681e-11
-9.79861e-10
7.8836e-12
-9.78939e-10
3.84522e-11
-9.78068e-10
6.90102e-11
-9.77256e-10
9.95276e-11
-9.76506e-10
1.29974e-10
-9.75814e-10
1.60336e-10
-9.75171e-10
1.90629e-10
-9.74569e-10
2.20882e-10
-9.74005e-10
2.51128e-10
-9.73481e-10
2.81382e-10
-9.73006e-10
3.11642e-10
-9.72585e-10
3.41897e-10
-9.72216e-10
3.72139e-10
-9.71887e-10
4.02369e-10
-9.71591e-10
4.32597e-10
-9.71324e-10
4.62832e-10
-9.71094e-10
4.93081e-10
-9.7091e-10
5.2335e-10
-9.70778e-10
5.53643e-10
-9.70697e-10
5.83957e-10
-9.70661e-10
6.14284e-10
-9.70669e-10
6.44612e-10
-9.70722e-10
6.74938e-10
-9.7082e-10
7.05265e-10
-9.70961e-10
7.35598e-10
-9.71141e-10
7.65929e-10
-9.71361e-10
7.96236e-10
-9.71629e-10
8.26498e-10
-9.71951e-10
8.56705e-10
-9.72323e-10
8.86859e-10
-9.7273e-10
9.16957e-10
-9.73157e-10
9.46973e-10
-9.73603e-10
9.76876e-10
-9.74062e-10
1.00665e-09
-9.74516e-10
1.03631e-09
-9.74925e-10
1.06585e-09
-9.75242e-10
1.09524e-09
-9.75435e-10
1.12447e-09
-9.75464e-10
1.15351e-09
-9.75264e-10
1.18237e-09
-9.74736e-10
1.21103e-09
-9.73765e-10
1.23947e-09
-9.72232e-10
1.26766e-09
-9.69987e-10
1.29558e-09
-9.66832e-10
1.32324e-09
-9.62539e-10
1.35058e-09
-9.56887e-10
1.37758e-09
-9.49639e-10
1.40422e-09
-9.40522e-10
1.43048e-09
-9.29262e-10
1.45631e-09
-9.15625e-10
1.48173e-09
-8.9936e-10
1.50673e-09
-8.80268e-10
1.53117e-09
-8.58314e-10
1.55504e-09
-8.33439e-10
1.57829e-09
-8.05687e-10
1.60096e-09
-7.75115e-10
1.62302e-09
-7.42004e-10
1.64441e-09
-7.06664e-10
1.66521e-09
-6.69458e-10
1.68535e-09
-6.30944e-10
-5.91708e-10
1.70488e-09
-1.10071e-09
-6.51467e-10
-1.07942e-09
-6.90649e-10
-1.05739e-09
-7.29107e-10
-1.03464e-09
-7.66264e-10
-1.01119e-09
-8.01596e-10
-9.87081e-10
-8.3468e-10
-9.62362e-10
-8.65187e-10
-9.37069e-10
-8.92878e-10
-9.11217e-10
-9.17616e-10
-8.84846e-10
-9.39358e-10
-8.57984e-10
-9.58144e-10
-8.30674e-10
-9.741e-10
-8.02963e-10
-9.87408e-10
-7.74898e-10
-9.98298e-10
-7.46529e-10
-1.00702e-09
-7.17893e-10
-1.01384e-09
-6.89011e-10
-1.019e-09
-6.59898e-10
-1.02277e-09
-6.30564e-10
-1.02537e-09
-6.01025e-10
-1.02701e-09
-5.713e-10
-1.02789e-09
-5.41413e-10
-1.02816e-09
-5.11388e-10
-1.02797e-09
-4.8124e-10
-1.0274e-09
-4.50979e-10
-1.02657e-09
-4.20613e-10
-1.02553e-09
-3.90152e-10
-1.02435e-09
-3.59615e-10
-1.02308e-09
-3.29026e-10
-1.02177e-09
-2.98409e-10
-1.02045e-09
-2.6778e-10
-1.01916e-09
-2.37144e-10
-1.01792e-09
-2.06496e-10
-1.01673e-09
-1.75834e-10
-1.01558e-09
-1.45165e-10
-1.01448e-09
-1.14503e-10
-1.01339e-09
-8.38613e-11
-1.01233e-09
-5.32471e-11
-1.01128e-09
-2.2654e-11
-1.01026e-09
7.93029e-12
-1.00928e-09
3.85124e-11
-1.00837e-09
6.90834e-11
-1.00753e-09
9.96199e-11
-1.00677e-09
1.30096e-10
-1.00608e-09
1.60499e-10
-1.00544e-09
1.90838e-10
-1.00484e-09
2.21134e-10
-1.00426e-09
2.51416e-10
-1.00371e-09
2.81702e-10
-1.00319e-09
3.11995e-10
-1.00273e-09
3.42292e-10
-1.00232e-09
3.72585e-10
-1.00196e-09
4.02868e-10
-1.00165e-09
4.33139e-10
-1.00139e-09
4.63404e-10
-1.00118e-09
4.93676e-10
-1.00102e-09
5.23968e-10
-1.00091e-09
5.54285e-10
-1.00084e-09
5.84625e-10
-1.00082e-09
6.14973e-10
-1.00083e-09
6.45319e-10
-1.00089e-09
6.75664e-10
-1.00098e-09
7.06012e-10
-1.0011e-09
7.36364e-10
-1.00125e-09
7.66703e-10
-1.00144e-09
7.97011e-10
-1.00168e-09
8.27276e-10
-1.00197e-09
8.57499e-10
-1.0023e-09
8.8768e-10
-1.00265e-09
9.17802e-10
-1.00303e-09
9.47837e-10
-1.00342e-09
9.77768e-10
-1.00382e-09
1.0076e-09
-1.00419e-09
1.03733e-09
-1.0045e-09
1.06694e-09
-1.00472e-09
1.09641e-09
-1.00482e-09
1.12572e-09
-1.00474e-09
1.15486e-09
-1.00442e-09
1.18385e-09
-1.00374e-09
1.21265e-09
-1.00261e-09
1.24123e-09
-1.0009e-09
1.2696e-09
-9.98443e-10
1.29775e-09
-9.95034e-10
1.32564e-09
-9.90466e-10
1.35323e-09
-9.84523e-10
1.38052e-09
-9.76946e-10
1.40747e-09
-9.67459e-10
1.43405e-09
-9.55811e-10
1.46024e-09
-9.41745e-10
1.48605e-09
-9.25008e-10
1.51135e-09
-9.05473e-10
1.53608e-09
-8.83058e-10
1.56022e-09
-8.57671e-10
1.58379e-09
-8.29323e-10
1.60669e-09
-7.98161e-10
1.62896e-09
-7.64366e-10
1.65059e-09
-7.28318e-10
1.67152e-09
-6.90436e-10
1.69168e-09
-6.51253e-10
-6.11208e-10
1.71121e-09
-1.10758e-09
-6.72194e-10
-1.0862e-09
-7.12129e-10
-1.06402e-09
-7.51319e-10
-1.04106e-09
-7.89198e-10
-1.01736e-09
-8.25241e-10
-9.92965e-10
-8.59018e-10
-9.67932e-10
-8.90185e-10
-9.42295e-10
-9.1849e-10
-9.16078e-10
-9.43788e-10
-8.89327e-10
-9.66041e-10
-8.62087e-10
-9.85298e-10
-8.34408e-10
-1.00169e-09
-8.06349e-10
-1.0154e-09
-7.77957e-10
-1.02666e-09
-7.49278e-10
-1.03571e-09
-7.20349e-10
-1.04281e-09
-6.91198e-10
-1.04822e-09
-6.6184e-10
-1.05219e-09
-6.32287e-10
-1.05495e-09
-6.02551e-10
-1.05673e-09
-5.7265e-10
-1.05772e-09
-5.42604e-10
-1.05807e-09
-5.12433e-10
-1.05794e-09
-4.82152e-10
-1.05744e-09
-4.51771e-10
-1.05666e-09
-4.213e-10
-1.05567e-09
-3.90753e-10
-1.05455e-09
-3.60152e-10
-1.05335e-09
-3.29519e-10
-1.05211e-09
-2.98878e-10
-1.05088e-09
-2.68236e-10
-1.04966e-09
-2.37587e-10
-1.04847e-09
-2.06918e-10
-1.0473e-09
-1.76221e-10
-1.04616e-09
-1.45501e-10
-1.04504e-09
-1.14779e-10
-1.04392e-09
-8.4076e-11
-1.04282e-09
-5.34076e-11
-1.04173e-09
-2.27746e-11
-1.04068e-09
7.83361e-12
-1.03968e-09
3.84286e-11
-1.03875e-09
6.90123e-11
-1.03791e-09
9.95737e-11
-1.03714e-09
1.30096e-10
-1.03645e-09
1.60565e-10
-1.0358e-09
1.90981e-10
-1.03518e-09
2.21353e-10
-1.03457e-09
2.51701e-10
-1.03398e-09
2.82041e-10
-1.03343e-09
3.12384e-10
-1.03294e-09
3.42732e-10
-1.0325e-09
3.73079e-10
-1.03213e-09
4.03414e-10
-1.03183e-09
4.33734e-10
-1.03158e-09
4.64043e-10
-1.03138e-09
4.94357e-10
-1.03123e-09
5.24694e-10
-1.03112e-09
5.55057e-10
-1.03105e-09
5.8544e-10
-1.03101e-09
6.1583e-10
-1.03101e-09
6.46219e-10
-1.03105e-09
6.76609e-10
-1.03112e-09
7.07e-10
-1.03121e-09
7.37384e-10
-1.03134e-09
7.67744e-10
-1.03151e-09
7.9807e-10
-1.03172e-09
8.28362e-10
-1.03197e-09
8.58624e-10
-1.03224e-09
8.88846e-10
-1.03254e-09
9.19005e-10
-1.03286e-09
9.49081e-10
-1.03319e-09
9.79073e-10
-1.03351e-09
1.00898e-09
-1.0338e-09
1.03881e-09
-1.03403e-09
1.06851e-09
-1.03417e-09
1.09807e-09
-1.03419e-09
1.12749e-09
-1.03401e-09
1.15678e-09
-1.03357e-09
1.18592e-09
-1.03276e-09
1.21488e-09
-1.03149e-09
1.24365e-09
-1.02961e-09
1.27225e-09
-1.02695e-09
1.30065e-09
-1.02331e-09
1.32881e-09
-1.01851e-09
1.35669e-09
-1.01231e-09
1.38429e-09
-1.00443e-09
1.41158e-09
-9.94622e-10
1.43852e-09
-9.82622e-10
1.46511e-09
-9.68151e-10
1.49127e-09
-9.51e-10
1.51687e-09
-9.31055e-10
1.54194e-09
-9.08137e-10
1.56642e-09
-8.82197e-10
1.5903e-09
-8.53219e-10
1.61352e-09
-8.21404e-10
1.63604e-09
-7.86927e-10
1.65787e-09
-7.50115e-10
1.67895e-09
-7.1147e-10
1.6993e-09
-6.71562e-10
-6.30877e-10
1.7188e-09
-1.11558e-09
-6.92966e-10
-1.09407e-09
-7.33677e-10
-1.07171e-09
-7.73646e-10
-1.04852e-09
-8.12306e-10
-1.02456e-09
-8.49121e-10
-9.9987e-10
-8.83638e-10
-9.74492e-10
-9.15497e-10
-9.48478e-10
-9.44442e-10
-9.21869e-10
-9.70325e-10
-8.94718e-10
-9.93114e-10
-8.67087e-10
-1.01286e-09
-8.39027e-10
-1.0297e-09
-8.10597e-10
-1.04382e-09
-7.81849e-10
-1.05543e-09
-7.52829e-10
-1.06478e-09
-7.23574e-10
-1.07213e-09
-6.94116e-10
-1.07775e-09
-6.64475e-10
-1.08188e-09
-6.34666e-10
-1.08478e-09
-6.047e-10
-1.08667e-09
-5.74592e-10
-1.08775e-09
-5.4436e-10
-1.08817e-09
-5.1402e-10
-1.0881e-09
-4.83588e-10
-1.08766e-09
-4.53074e-10
-1.08693e-09
-4.2249e-10
-1.08601e-09
-3.9185e-10
-1.08496e-09
-3.61176e-10
-1.08384e-09
-3.30487e-10
-1.08268e-09
-2.99797e-10
-1.08152e-09
-2.69108e-10
-1.08035e-09
-2.38405e-10
-1.07918e-09
-2.07673e-10
-1.07801e-09
-1.76902e-10
-1.07684e-09
-1.46102e-10
-1.07567e-09
-1.15298e-10
-1.07452e-09
-8.45176e-11
-1.07338e-09
-5.37843e-11
-1.07228e-09
-2.3103e-11
-1.07121e-09
7.5376e-12
-1.07021e-09
3.81565e-11
-1.06927e-09
6.87686e-11
-1.06841e-09
9.93768e-11
-1.06762e-09
1.29972e-10
-1.06689e-09
1.60538e-10
-1.0662e-09
1.91061e-10
-1.06553e-09
2.21537e-10
-1.06489e-09
2.51974e-10
-1.06428e-09
2.82387e-10
-1.06372e-09
3.12794e-10
-1.06322e-09
3.43203e-10
-1.06279e-09
3.73611e-10
-1.06243e-09
4.04009e-10
-1.06213e-09
4.34394e-10
-1.06189e-09
4.64772e-10
-1.0617e-09
4.9516e-10
-1.06154e-09
5.25569e-10
-1.06141e-09
5.56e-10
-1.06132e-09
5.86446e-10
-1.06126e-09
6.16897e-10
-1.06125e-09
6.4735e-10
-1.06128e-09
6.77804e-10
-1.06134e-09
7.08254e-10
-1.06144e-09
7.38684e-10
-1.06157e-09
7.69085e-10
-1.06173e-09
7.99456e-10
-1.06194e-09
8.29804e-10
-1.06216e-09
8.60125e-10
-1.0624e-09
8.90402e-10
-1.06266e-09
9.20615e-10
-1.06293e-09
9.5076e-10
-1.06322e-09
9.8084e-10
-1.06348e-09
1.01085e-09
-1.06371e-09
1.04077e-09
-1.06388e-09
1.07058e-09
-1.06395e-09
1.10027e-09
-1.06389e-09
1.12984e-09
-1.06362e-09
1.1593e-09
-1.06306e-09
1.18861e-09
-1.06213e-09
1.21777e-09
-1.06071e-09
1.24678e-09
-1.05866e-09
1.27564e-09
-1.0558e-09
1.30431e-09
-1.05196e-09
1.33275e-09
-1.04695e-09
1.36095e-09
-1.04049e-09
1.3889e-09
-1.03235e-09
1.41654e-09
-1.02225e-09
1.44388e-09
-1.0099e-09
1.47085e-09
-9.95055e-10
1.49734e-09
-9.77525e-10
1.52332e-09
-9.57121e-10
1.54876e-09
-9.33661e-10
1.57364e-09
-9.07102e-10
1.59783e-09
-8.77489e-10
1.6214e-09
-8.44919e-10
1.64423e-09
-8.09696e-10
1.66627e-09
-7.72145e-10
1.68746e-09
-7.32706e-10
1.70794e-09
-6.91864e-10
-6.50382e-10
1.72756e-09
-1.12464e-09
-7.13768e-10
-1.10298e-09
-7.55314e-10
-1.08043e-09
-7.96137e-10
-1.05701e-09
-8.35649e-10
-1.03277e-09
-8.73291e-10
-1.00776e-09
-9.08588e-10
-9.82011e-10
-9.41168e-10
-9.55597e-10
-9.70776e-10
-9.28582e-10
-9.97266e-10
-9.01021e-10
-1.02061e-09
-8.72987e-10
-1.04086e-09
-8.44532e-10
-1.05815e-09
-8.15709e-10
-1.07264e-09
-7.86575e-10
-1.08458e-09
-7.57179e-10
-1.0942e-09
-7.27565e-10
-1.10178e-09
-6.9777e-10
-1.10757e-09
-6.67818e-10
-1.11185e-09
-6.37726e-10
-1.11487e-09
-6.07504e-10
-1.11686e-09
-5.77165e-10
-1.11802e-09
-5.46725e-10
-1.11852e-09
-5.162e-10
-1.11851e-09
-4.85603e-10
-1.11813e-09
-4.54947e-10
-1.11747e-09
-4.24242e-10
-1.11663e-09
-3.93501e-10
-1.11566e-09
-3.62736e-10
-1.11462e-09
-3.31962e-10
-1.11353e-09
-3.01186e-10
-1.11241e-09
-2.70404e-10
-1.11126e-09
-2.39601e-10
-1.11008e-09
-2.08766e-10
-1.10888e-09
-1.77893e-10
-1.10768e-09
-1.46996e-10
-1.10649e-09
-1.16099e-10
-1.10532e-09
-8.5236e-11
-1.10418e-09
-5.44286e-11
-1.10309e-09
-2.36834e-11
-1.10204e-09
7.01276e-12
-1.10104e-09
3.76851e-11
-1.10008e-09
6.83586e-11
-1.09917e-09
9.90459e-11
-1.09832e-09
1.29742e-10
-1.09752e-09
1.60426e-10
-1.09676e-09
1.91073e-10
-1.09605e-09
2.21667e-10
-1.09539e-09
2.52207e-10
-1.09478e-09
2.8271e-10
-1.09423e-09
3.13198e-10
-1.09374e-09
3.43686e-10
-1.09332e-09
3.74175e-10
-1.09296e-09
4.04661e-10
-1.09267e-09
4.35143e-10
-1.09242e-09
4.65624e-10
-1.0922e-09
4.96116e-10
-1.09201e-09
5.26621e-10
-1.09185e-09
5.57138e-10
-1.09173e-09
5.87662e-10
-1.09165e-09
6.18189e-10
-1.09163e-09
6.48722e-10
-1.09164e-09
6.79254e-10
-1.09169e-09
7.09774e-10
-1.09178e-09
7.40271e-10
-1.0919e-09
7.70741e-10
-1.09206e-09
8.0119e-10
-1.09223e-09
8.31619e-10
-1.09242e-09
8.62018e-10
-1.09262e-09
8.92368e-10
-1.09283e-09
9.22661e-10
-1.09307e-09
9.52902e-10
-1.0933e-09
9.83093e-10
-1.09351e-09
1.01322e-09
-1.09368e-09
1.04326e-09
-1.0938e-09
1.0732e-09
-1.09382e-09
1.10305e-09
-1.09369e-09
1.13281e-09
-1.09333e-09
1.16246e-09
-1.09268e-09
1.19198e-09
-1.09165e-09
1.22138e-09
-1.09011e-09
1.25066e-09
-1.08791e-09
1.27979e-09
-1.0849e-09
1.30873e-09
-1.08091e-09
1.33748e-09
-1.07571e-09
1.36603e-09
-1.06905e-09
1.39433e-09
-1.06067e-09
1.42236e-09
-1.05029e-09
1.4501e-09
-1.03762e-09
1.47744e-09
-1.02243e-09
1.5043e-09
-1.0045e-09
1.53071e-09
-9.83592e-10
1.55656e-09
-9.5958e-10
1.58183e-09
-9.32388e-10
1.60642e-09
-9.02114e-10
1.6303e-09
-8.68814e-10
1.65342e-09
-8.32776e-10
1.67571e-09
-7.94409e-10
1.69716e-09
-7.54184e-10
1.71765e-09
-7.12548e-10
-6.70071e-10
1.73735e-09
-1.13469e-09
-7.34651e-10
-1.11288e-09
-7.77122e-10
-1.09013e-09
-8.18882e-10
-1.06647e-09
-8.59313e-10
-1.04194e-09
-8.97827e-10
-1.01657e-09
-9.33938e-10
-9.9044e-10
-9.67269e-10
-9.63617e-10
-9.97565e-10
-9.3619e-10
-1.02468e-09
-9.08216e-10
-1.04858e-09
-8.79764e-10
-1.06932e-09
-8.50895e-10
-1.08702e-09
-8.21659e-10
-1.10188e-09
-7.92115e-10
-1.11411e-09
-7.62319e-10
-1.12398e-09
-7.32323e-10
-1.13175e-09
-7.02171e-10
-1.13772e-09
-6.71889e-10
-1.14214e-09
-6.41495e-10
-1.14528e-09
-6.10999e-10
-1.14736e-09
-5.80412e-10
-1.1486e-09
-5.49749e-10
-1.14917e-09
-5.19024e-10
-1.14923e-09
-4.88253e-10
-1.14891e-09
-4.57445e-10
-1.14831e-09
-4.26606e-10
-1.14752e-09
-3.95742e-10
-1.1466e-09
-3.64858e-10
-1.1456e-09
-3.33959e-10
-1.14453e-09
-3.03051e-10
-1.14341e-09
-2.7213e-10
-1.14224e-09
-2.4119e-10
-1.14104e-09
-2.10225e-10
-1.13982e-09
-1.79237e-10
-1.1386e-09
-1.48236e-10
-1.13741e-09
-1.17245e-10
-1.13627e-09
-8.62887e-11
-1.13517e-09
-5.53867e-11
-1.13411e-09
-2.45445e-11
-1.13308e-09
6.25009e-12
-1.13206e-09
3.70223e-11
-1.13107e-09
6.77997e-11
-1.1301e-09
9.85983e-11
-1.12918e-09
1.29414e-10
-1.1283e-09
1.60224e-10
-1.1275e-09
1.90998e-10
-1.12676e-09
2.21715e-10
-1.1261e-09
2.52373e-10
-1.12551e-09
2.82989e-10
-1.12499e-09
3.13588e-10
-1.12452e-09
3.44187e-10
-1.12411e-09
3.74793e-10
-1.12375e-09
4.05403e-10
-1.12345e-09
4.36015e-10
-1.12318e-09
4.66632e-10
-1.12296e-09
4.97252e-10
-1.12277e-09
5.27872e-10
-1.12261e-09
5.58491e-10
-1.1225e-09
5.8911e-10
-1.12244e-09
6.19733e-10
-1.12242e-09
6.50361e-10
-1.12244e-09
6.80987e-10
-1.1225e-09
7.11598e-10
-1.12258e-09
7.42187e-10
-1.12269e-09
7.72758e-10
-1.12281e-09
8.03312e-10
-1.12294e-09
8.33844e-10
-1.12308e-09
8.64338e-10
-1.12322e-09
8.94783e-10
-1.12338e-09
9.25183e-10
-1.12353e-09
9.55543e-10
-1.12368e-09
9.85858e-10
-1.12381e-09
1.01611e-09
-1.1239e-09
1.04629e-09
-1.12393e-09
1.0764e-09
-1.12386e-09
1.10645e-09
-1.12363e-09
1.13641e-09
-1.12318e-09
1.16628e-09
-1.12245e-09
1.19604e-09
-1.12132e-09
1.22572e-09
-1.11968e-09
1.25527e-09
-1.11738e-09
1.28467e-09
-1.11427e-09
1.31392e-09
-1.11015e-09
1.34301e-09
-1.10479e-09
1.3719e-09
-1.09795e-09
1.40057e-09
-1.08934e-09
1.42901e-09
-1.07868e-09
1.45714e-09
-1.0657e-09
1.48486e-09
-1.05015e-09
1.51217e-09
-1.03178e-09
1.53901e-09
-1.01035e-09
1.56531e-09
-9.8576e-10
1.59094e-09
-9.5795e-10
1.61597e-09
-9.26933e-10
1.6402e-09
-8.92919e-10
1.66359e-09
-8.56106e-10
1.68609e-09
-8.16838e-10
1.7078e-09
-7.75602e-10
1.72853e-09
-7.33142e-10
-6.89829e-10
1.74826e-09
-1.14569e-09
-7.55699e-10
-1.12371e-09
-7.99184e-10
-1.10075e-09
-8.41957e-10
-1.07682e-09
-8.83361e-10
-1.05197e-09
-9.22787e-10
-1.02624e-09
-9.59738e-10
-9.99715e-10
-9.93837e-10
-9.72479e-10
-1.02484e-09
-9.44631e-10
-1.05259e-09
-9.16239e-10
-1.07704e-09
-8.87363e-10
-1.09825e-09
-8.58065e-10
-1.11635e-09
-8.28404e-10
-1.13152e-09
-7.9844e-10
-1.14401e-09
-7.68236e-10
-1.1541e-09
-7.37851e-10
-1.16206e-09
-7.07332e-10
-1.16818e-09
-6.76708e-10
-1.17274e-09
-6.45998e-10
-1.17599e-09
-6.15212e-10
-1.17817e-09
-5.8436e-10
-1.17949e-09
-5.53458e-10
-1.18012e-09
-5.2252e-10
-1.18024e-09
-4.91559e-10
-1.17996e-09
-4.60581e-10
-1.1794e-09
-4.29585e-10
-1.17864e-09
-3.98568e-10
-1.17774e-09
-3.67527e-10
-1.17674e-09
-3.36466e-10
-1.17566e-09
-3.05387e-10
-1.17452e-09
-2.74297e-10
-1.17333e-09
-2.43199e-10
-1.17211e-09
-2.12096e-10
-1.17088e-09
-1.80989e-10
-1.16968e-09
-1.49884e-10
-1.16852e-09
-1.18788e-10
-1.16741e-09
-8.7716e-11
-1.16634e-09
-5.66825e-11
-1.16529e-09
-2.56952e-11
-1.16425e-09
5.25062e-12
-1.1632e-09
3.61721e-11
-1.16215e-09
6.70913e-11
-1.16111e-09
9.80233e-11
-1.16011e-09
1.28966e-10
-1.15918e-09
1.59902e-10
-1.15833e-09
1.90803e-10
-1.15758e-09
2.21654e-10
-1.15691e-09
2.52454e-10
-1.15632e-09
2.83218e-10
-1.15578e-09
3.13968e-10
-1.15529e-09
3.44717e-10
-1.15485e-09
3.75474e-10
-1.15446e-09
4.06238e-10
-1.15413e-09
4.37008e-10
-1.15385e-09
4.67779e-10
-1.15362e-09
4.98543e-10
-1.15345e-09
5.29297e-10
-1.15333e-09
5.6004e-10
-1.15325e-09
5.9078e-10
-1.15323e-09
6.21526e-10
-1.15323e-09
6.52276e-10
-1.15327e-09
6.83022e-10
-1.15334e-09
7.13754e-10
-1.15344e-09
7.44471e-10
-1.15355e-09
7.75175e-10
-1.15366e-09
8.05863e-10
-1.15378e-09
8.3652e-10
-1.15391e-09
8.67135e-10
-1.15403e-09
8.97706e-10
-1.15415e-09
9.28242e-10
-1.15426e-09
9.58742e-10
-1.15435e-09
9.89198e-10
-1.15441e-09
1.0196e-09
-1.15442e-09
1.04995e-09
-1.15436e-09
1.08026e-09
-1.1542e-09
1.11051e-09
-1.15388e-09
1.14069e-09
-1.15335e-09
1.17079e-09
-1.15254e-09
1.20082e-09
-1.15133e-09
1.23077e-09
-1.14961e-09
1.2606e-09
-1.14725e-09
1.2903e-09
-1.14406e-09
1.31988e-09
-1.13984e-09
1.34931e-09
-1.13435e-09
1.37857e-09
-1.12734e-09
1.40764e-09
-1.11853e-09
1.43649e-09
-1.10762e-09
1.465e-09
-1.09435e-09
1.49315e-09
-1.07846e-09
1.52092e-09
-1.05964e-09
1.54818e-09
-1.03774e-09
1.57491e-09
-1.01259e-09
1.60098e-09
-9.8417e-10
1.62635e-09
-9.52442e-10
1.65095e-09
-9.1763e-10
1.67469e-09
-8.80006e-10
1.69749e-09
-8.39903e-10
1.71928e-09
-7.97699e-10
1.74026e-09
-7.54089e-10
-7.09776e-10
1.76016e-09
-1.15755e-09
-7.76962e-10
-1.13538e-09
-8.2153e-10
-1.11218e-09
-8.65362e-10
-1.08796e-09
-9.0777e-10
-1.06276e-09
-9.48134e-10
-1.03665e-09
-9.85954e-10
-1.00974e-09
-1.02085e-09
-9.82098e-10
-1.05256e-09
-9.53826e-10
-1.08095e-09
-9.25004e-10
-1.10596e-09
-8.95695e-10
-1.12763e-09
-8.65965e-10
-1.1461e-09
-8.35879e-10
-1.16158e-09
-8.05502e-10
-1.17432e-09
-7.749e-10
-1.1846e-09
-7.44133e-10
-1.19273e-09
-7.13249e-10
-1.19898e-09
-6.8228e-10
-1.20365e-09
-6.51244e-10
-1.20698e-09
-6.20154e-10
-1.20923e-09
-5.89023e-10
-1.21059e-09
-5.57865e-10
-1.21127e-09
-5.26695e-10
-1.21142e-09
-4.95523e-10
-1.21117e-09
-4.64349e-10
-1.21063e-09
-4.33164e-10
-1.20987e-09
-4.0196e-10
-1.20897e-09
-3.70729e-10
-1.20795e-09
-3.39472e-10
-1.20685e-09
-3.08201e-10
-1.20569e-09
-2.76928e-10
-1.2045e-09
-2.45667e-10
-1.20329e-09
-2.14423e-10
-1.2021e-09
-1.83192e-10
-1.20094e-09
-1.51965e-10
-1.19982e-09
-1.20737e-10
-1.19873e-09
-8.95109e-11
-1.19767e-09
-5.82987e-11
-1.1966e-09
-2.71163e-11
-1.19553e-09
4.02745e-12
-1.19444e-09
3.51361e-11
-1.19334e-09
6.62234e-11
-1.19227e-09
9.73035e-11
-1.19124e-09
1.28382e-10
-1.19029e-09
1.5945e-10
-1.18944e-09
1.90496e-10
-1.18867e-09
2.21509e-10
-1.18799e-09
2.52488e-10
-1.18738e-09
2.83441e-10
-1.18681e-09
3.14379e-10
-1.18628e-09
3.45312e-10
-1.1858e-09
3.76244e-10
-1.18538e-09
4.0718e-10
-1.18503e-09
4.38119e-10
-1.18474e-09
4.69053e-10
-1.18452e-09
4.99976e-10
-1.18436e-09
5.30882e-10
-1.18425e-09
5.61778e-10
-1.18418e-09
5.92672e-10
-1.18414e-09
6.2357e-10
-1.18412e-09
6.54468e-10
-1.18413e-09
6.8536e-10
-1.18417e-09
7.16242e-10
-1.18423e-09
7.47116e-10
-1.18431e-09
7.7798e-10
-1.18441e-09
8.08822e-10
-1.18451e-09
8.39631e-10
-1.18462e-09
8.70399e-10
-1.18473e-09
9.01134e-10
-1.18483e-09
9.31838e-10
-1.1849e-09
9.62506e-10
-1.18494e-09
9.9313e-10
-1.18495e-09
1.02371e-09
-1.18491e-09
1.05426e-09
-1.18478e-09
1.08477e-09
-1.18455e-09
1.11523e-09
-1.18416e-09
1.14564e-09
-1.18357e-09
1.176e-09
-1.18269e-09
1.2063e-09
-1.18142e-09
1.23652e-09
-1.17964e-09
1.26664e-09
-1.17721e-09
1.29666e-09
-1.17393e-09
1.32658e-09
-1.16961e-09
1.35636e-09
-1.16399e-09
1.38601e-09
-1.15682e-09
1.41549e-09
-1.14781e-09
1.44472e-09
-1.13667e-09
1.47363e-09
-1.12315e-09
1.50224e-09
-1.1069e-09
1.53044e-09
-1.08768e-09
1.55814e-09
-1.06533e-09
1.58526e-09
-1.03964e-09
1.6118e-09
-1.01058e-09
1.63754e-09
-9.78225e-10
1.66247e-09
-9.42635e-10
1.68653e-09
-9.04081e-10
1.70973e-09
-8.62994e-10
1.73176e-09
-8.19958e-10
1.75287e-09
-7.75364e-10
-7.29986e-10
1.77293e-09
-1.17016e-09
-7.98426e-10
-1.14777e-09
-8.4411e-10
-1.12429e-09
-8.89014e-10
-1.09973e-09
-9.32438e-10
-1.07418e-09
-9.7376e-10
-1.04769e-09
-1.01248e-09
-1.02039e-09
-1.04822e-09
-9.92356e-10
-1.08069e-09
-9.63668e-10
-1.10972e-09
-9.34415e-10
-1.13528e-09
-9.04674e-10
-1.15742e-09
-8.74518e-10
-1.17627e-09
-8.44019e-10
-1.19205e-09
-8.13244e-10
-1.20504e-09
-7.82258e-10
-1.21552e-09
-7.5112e-10
-1.22379e-09
-7.19877e-10
-1.23016e-09
-6.88561e-10
-1.2349e-09
-6.57195e-10
-1.23829e-09
-6.25795e-10
-1.24057e-09
-5.94374e-10
-1.24196e-09
-5.62948e-10
-1.24265e-09
-5.31529e-10
-1.24281e-09
-5.00123e-10
-1.24257e-09
-4.68725e-10
-1.24202e-09
-4.37322e-10
-1.24125e-09
-4.05902e-10
-1.24032e-09
-3.74458e-10
-1.23927e-09
-3.42993e-10
-1.23816e-09
-3.11521e-10
-1.237e-09
-2.80063e-10
-1.23583e-09
-2.48633e-10
-1.23465e-09
-2.17235e-10
-1.23349e-09
-1.85855e-10
-1.23235e-09
-1.54472e-10
-1.23122e-09
-1.23069e-10
-1.2301e-09
-9.16445e-11
-1.22898e-09
-6.02142e-11
-1.22785e-09
-2.88043e-11
-1.22671e-09
2.56254e-12
-1.22558e-09
3.3878e-11
-1.22447e-09
6.51502e-11
-1.22339e-09
9.63961e-11
-1.22236e-09
1.27631e-10
-1.22142e-09
1.58862e-10
-1.22055e-09
1.90088e-10
-1.21977e-09
2.21303e-10
-1.21906e-09
2.52501e-10
-1.21841e-09
2.83679e-10
-1.21782e-09
3.14834e-10
-1.21729e-09
3.45972e-10
-1.21683e-09
3.771e-10
-1.21644e-09
4.08225e-10
-1.21614e-09
4.3935e-10
-1.2159e-09
4.70469e-10
-1.21573e-09
5.01577e-10
-1.21561e-09
5.32672e-10
-1.21553e-09
5.63758e-10
-1.21547e-09
5.94842e-10
-1.21543e-09
6.25922e-10
-1.21541e-09
6.56994e-10
-1.21541e-09
6.88054e-10
-1.21543e-09
7.19107e-10
-1.21547e-09
7.50154e-10
-1.21553e-09
7.8119e-10
-1.2156e-09
8.12203e-10
-1.21569e-09
8.43186e-10
-1.21578e-09
8.74139e-10
-1.21587e-09
9.05067e-10
-1.21594e-09
9.35965e-10
-1.21598e-09
9.66827e-10
-1.21599e-09
9.9765e-10
-1.21596e-09
1.02844e-09
-1.21587e-09
1.05921e-09
-1.2157e-09
1.08994e-09
-1.21542e-09
1.12063e-09
-1.215e-09
1.15128e-09
-1.21436e-09
1.1819e-09
-1.21343e-09
1.21247e-09
-1.21212e-09
1.24298e-09
-1.21029e-09
1.2734e-09
-1.2078e-09
1.30376e-09
-1.20444e-09
1.33401e-09
-1.20002e-09
1.36416e-09
-1.19428e-09
1.3942e-09
-1.18695e-09
1.42405e-09
-1.17775e-09
1.45366e-09
-1.1664e-09
1.483e-09
-1.15257e-09
1.51203e-09
-1.13596e-09
1.54063e-09
-1.11634e-09
1.56876e-09
-1.09347e-09
1.59631e-09
-1.06722e-09
1.62322e-09
-1.03746e-09
1.64938e-09
-1.00433e-09
1.67471e-09
-9.67939e-10
1.69911e-09
-9.28513e-10
1.72251e-09
-8.8634e-10
1.74492e-09
-8.42119e-10
1.76625e-09
-7.96488e-10
-7.50072e-10
1.78649e-09
-1.18335e-09
-8.2004e-10
-1.16068e-09
-8.66833e-10
-1.13688e-09
-9.12818e-10
-1.11199e-09
-9.57291e-10
-1.08609e-09
-9.99619e-10
-1.05925e-09
-1.03929e-09
-1.03157e-09
-1.07589e-09
-1.00313e-09
-1.10914e-09
-9.74037e-10
-1.13885e-09
-9.44365e-10
-1.16498e-09
-9.14207e-10
-1.18758e-09
-8.83646e-10
-1.20681e-09
-8.52755e-10
-1.22291e-09
-8.216e-10
-1.23614e-09
-7.90244e-10
-1.2468e-09
-7.58744e-10
-1.2552e-09
-7.27147e-10
-1.26166e-09
-6.95487e-10
-1.26646e-09
-6.63792e-10
-1.26988e-09
-6.3208e-10
-1.27218e-09
-6.00366e-10
-1.27359e-09
-5.68663e-10
-1.2743e-09
-5.3698e-10
-1.27447e-09
-5.05318e-10
-1.27423e-09
-4.73672e-10
-1.27368e-09
-4.42028e-10
-1.2729e-09
-4.10375e-10
-1.27196e-09
-3.78706e-10
-1.27092e-09
-3.47027e-10
-1.26982e-09
-3.15352e-10
-1.26869e-09
-2.837e-10
-1.26755e-09
-2.52082e-10
-1.26641e-09
-2.20495e-10
-1.26526e-09
-1.88921e-10
-1.2641e-09
-1.57333e-10
-1.26293e-09
-1.25713e-10
-1.26174e-09
-9.40595e-11
-1.26054e-09
-6.23941e-11
-1.25935e-09
-3.07496e-11
-1.25818e-09
8.44826e-13
-1.25704e-09
3.23766e-11
-1.25593e-09
6.3853e-11
-1.25486e-09
9.52946e-11
-1.25383e-09
1.26724e-10
-1.25286e-09
1.58159e-10
-1.25194e-09
1.89603e-10
-1.25109e-09
2.21051e-10
-1.2503e-09
2.52489e-10
-1.24959e-09
2.83904e-10
-1.24896e-09
3.15289e-10
-1.24841e-09
3.46647e-10
-1.24795e-09
3.77989e-10
-1.24757e-09
4.09326e-10
-1.24727e-09
4.40665e-10
-1.24704e-09
4.72002e-10
-1.24688e-09
5.03334e-10
-1.24676e-09
5.34658e-10
-1.24668e-09
5.65975e-10
-1.24662e-09
5.97281e-10
-1.24659e-09
6.28572e-10
-1.24658e-09
6.59843e-10
-1.24659e-09
6.91098e-10
-1.24662e-09
7.22344e-10
-1.24667e-09
7.53583e-10
-1.24673e-09
7.84809e-10
-1.24681e-09
8.16014e-10
-1.24689e-09
8.47198e-10
-1.24696e-09
8.78362e-10
-1.24703e-09
9.09506e-10
-1.24707e-09
9.4062e-10
-1.24709e-09
9.717e-10
-1.24708e-09
1.00275e-09
-1.24702e-09
1.03377e-09
-1.2469e-09
1.06476e-09
-1.2467e-09
1.09573e-09
-1.24639e-09
1.12666e-09
-1.24594e-09
1.15758e-09
-1.24527e-09
1.18847e-09
-1.24431e-09
1.21932e-09
-1.24298e-09
1.25012e-09
-1.24113e-09
1.28087e-09
-1.2386e-09
1.31155e-09
-1.23521e-09
1.34215e-09
-1.23074e-09
1.37267e-09
-1.22492e-09
1.40308e-09
-1.21749e-09
1.43329e-09
-1.20816e-09
1.46328e-09
-1.19661e-09
1.49304e-09
-1.18251e-09
1.52245e-09
-1.16558e-09
1.55146e-09
-1.14556e-09
1.57998e-09
-1.12219e-09
1.60799e-09
-1.09534e-09
1.63523e-09
-1.06498e-09
1.66176e-09
-1.03101e-09
1.68748e-09
-9.93684e-10
1.71235e-09
-9.53351e-10
1.736e-09
-9.1034e-10
1.75862e-09
-8.65017e-10
1.78016e-09
-8.1818e-10
-7.70561e-10
1.80063e-09
-1.19688e-09
-8.41779e-10
-1.17391e-09
-8.89692e-10
-1.14979e-09
-9.36791e-10
-1.12458e-09
-9.82365e-10
-1.09835e-09
-1.02576e-09
-1.07118e-09
-1.06641e-09
-1.04313e-09
-1.10391e-09
-1.01431e-09
-1.13795e-09
-9.84812e-10
-1.16834e-09
-9.54739e-10
-1.19504e-09
-9.24189e-10
-1.21813e-09
-8.93249e-10
-1.23776e-09
-8.6199e-10
-1.25416e-09
-8.30477e-10
-1.26762e-09
-7.98768e-10
-1.27844e-09
-7.66919e-10
-1.28696e-09
-7.34979e-10
-1.29348e-09
-7.02987e-10
-1.29831e-09
-6.70974e-10
-1.30176e-09
-6.38958e-10
-1.30408e-09
-6.06953e-10
-1.3055e-09
-5.74968e-10
-1.30621e-09
-5.43009e-10
-1.30638e-09
-5.11076e-10
-1.30613e-09
-4.79164e-10
-1.30557e-09
-4.47264e-10
-1.30479e-09
-4.15368e-10
-1.30385e-09
-3.8347e-10
-1.30282e-09
-3.51572e-10
-1.30174e-09
-3.19682e-10
-1.30063e-09
-2.87812e-10
-1.29951e-09
-2.55968e-10
-1.29836e-09
-2.24144e-10
-1.29719e-09
-1.92325e-10
-1.29599e-09
-1.6049e-10
-1.29475e-09
-1.28624e-10
-1.29351e-09
-9.6732e-11
-1.29227e-09
-6.48337e-11
-1.29108e-09
-3.2958e-11
-1.28992e-09
-1.12983e-12
-1.28882e-09
3.06405e-11
-1.28776e-09
6.23599e-11
-1.28672e-09
9.40471e-11
-1.2857e-09
1.25724e-10
-1.28472e-09
1.57408e-10
-1.28377e-09
1.89102e-10
-1.28288e-09
2.208e-10
-1.28206e-09
2.52487e-10
-1.28134e-09
2.84146e-10
-1.28071e-09
3.15772e-10
-1.28016e-09
3.4737e-10
-1.27971e-09
3.78953e-10
-1.27932e-09
4.10533e-10
-1.27901e-09
4.42117e-10
-1.27874e-09
4.73702e-10
-1.27854e-09
5.05285e-10
-1.27838e-09
5.36863e-10
-1.27827e-09
5.68429e-10
-1.2782e-09
5.99975e-10
-1.27816e-09
6.31496e-10
-1.27815e-09
6.62991e-10
-1.27816e-09
6.94467e-10
-1.27819e-09
7.25933e-10
-1.27822e-09
7.57387e-10
-1.27826e-09
7.88828e-10
-1.27831e-09
8.20252e-10
-1.27835e-09
8.51664e-10
-1.27839e-09
8.83062e-10
-1.27841e-09
9.1444e-10
-1.27841e-09
9.45789e-10
-1.27839e-09
9.7711e-10
-1.27833e-09
1.0084e-09
-1.27823e-09
1.03967e-09
-1.27807e-09
1.07091e-09
-1.27783e-09
1.10213e-09
-1.27748e-09
1.13333e-09
-1.27698e-09
1.16451e-09
-1.27626e-09
1.19567e-09
-1.27526e-09
1.2268e-09
-1.27389e-09
1.2579e-09
-1.272e-09
1.28896e-09
-1.26943e-09
1.31997e-09
-1.266e-09
1.35092e-09
-1.26148e-09
1.3818e-09
-1.25558e-09
1.41254e-09
-1.24805e-09
1.44311e-09
-1.23858e-09
1.4735e-09
-1.22681e-09
1.50363e-09
-1.21244e-09
1.5334e-09
-1.19519e-09
1.56282e-09
-1.17473e-09
1.59172e-09
-1.15086e-09
1.62008e-09
-1.1234e-09
1.64777e-09
-1.09236e-09
1.67467e-09
-1.05768e-09
1.70065e-09
-1.01951e-09
1.72583e-09
-9.78114e-10
1.74994e-09
-9.34056e-10
1.77284e-09
-8.87794e-10
1.7946e-09
-8.39895e-10
-7.91149e-10
1.81527e-09
-1.21054e-09
-8.63718e-10
-1.18727e-09
-9.1281e-10
-1.16286e-09
-9.61083e-10
-1.13735e-09
-1.00779e-09
-1.11082e-09
-1.05226e-09
-1.08332e-09
-1.0939e-09
-1.05492e-09
-1.13228e-09
-1.02574e-09
-1.16709e-09
-9.95861e-10
-1.19815e-09
-9.65415e-10
-1.22543e-09
-9.34503e-10
-1.249e-09
-9.03212e-10
-1.26901e-09
-8.7161e-10
-1.28572e-09
-8.39758e-10
-1.29941e-09
-8.07715e-10
-1.3104e-09
-7.75536e-10
-1.31902e-09
-7.43274e-10
-1.32561e-09
-7.10971e-10
-1.33049e-09
-6.78658e-10
-1.33397e-09
-6.46351e-10
-1.3363e-09
-6.14061e-10
-1.33773e-09
-5.81792e-10
-1.33845e-09
-5.49548e-10
-1.33862e-09
-5.17332e-10
-1.33836e-09
-4.85145e-10
-1.3378e-09
-4.52982e-10
-1.33701e-09
-4.20839e-10
-1.33608e-09
-3.88705e-10
-1.33506e-09
-3.56574e-10
-1.33399e-09
-3.24445e-10
-1.33288e-09
-2.92322e-10
-1.33174e-09
-2.60209e-10
-1.33056e-09
-2.28107e-10
-1.32934e-09
-1.9601e-10
-1.32807e-09
-1.63908e-10
-1.32679e-09
-1.31796e-10
-1.32551e-09
-9.96741e-11
-1.32426e-09
-6.75513e-11
-1.32306e-09
-3.54429e-11
-1.32192e-09
-3.36304e-12
-1.32082e-09
2.86807e-11
-1.31974e-09
6.06893e-11
-1.31868e-09
9.26713e-11
-1.31763e-09
1.24639e-10
-1.31661e-09
1.56603e-10
-1.31563e-09
1.88568e-10
-1.31473e-09
2.20529e-10
-1.31391e-09
2.52476e-10
-1.3132e-09
2.84399e-10
-1.31258e-09
3.16296e-10
-1.31205e-09
3.48172e-10
-1.3116e-09
3.80037e-10
-1.31121e-09
4.11899e-10
-1.31087e-09
4.43759e-10
-1.3106e-09
4.75616e-10
-1.31039e-09
5.07469e-10
-1.31023e-09
5.39312e-10
-1.31013e-09
5.71139e-10
-1.31007e-09
6.0294e-10
-1.31006e-09
6.34711e-10
-1.31006e-09
6.66457e-10
-1.31008e-09
6.98183e-10
-1.31011e-09
7.29895e-10
-1.31013e-09
7.61593e-10
-1.31015e-09
7.93274e-10
-1.31016e-09
8.24943e-10
-1.31017e-09
8.56603e-10
-1.31016e-09
8.8825e-10
-1.31015e-09
9.19877e-10
-1.31012e-09
9.51481e-10
-1.31007e-09
9.83062e-10
-1.30999e-09
1.01462e-09
-1.30987e-09
1.04615e-09
-1.30968e-09
1.07766e-09
-1.30941e-09
1.10914e-09
-1.30903e-09
1.14061e-09
-1.3085e-09
1.17207e-09
-1.30776e-09
1.2035e-09
-1.30675e-09
1.23491e-09
-1.30535e-09
1.2663e-09
-1.30345e-09
1.29766e-09
-1.30087e-09
1.32898e-09
-1.29741e-09
1.36027e-09
-1.29284e-09
1.39148e-09
-1.28689e-09
1.42255e-09
-1.27927e-09
1.45349e-09
-1.26965e-09
1.48424e-09
-1.25768e-09
1.5147e-09
-1.24307e-09
1.54485e-09
-1.22548e-09
1.5746e-09
-1.20459e-09
1.60389e-09
-1.18024e-09
1.63252e-09
-1.15223e-09
1.66059e-09
-1.12042e-09
1.68786e-09
-1.08495e-09
1.71422e-09
-1.04601e-09
1.73961e-09
-1.00377e-09
1.764e-09
-9.58592e-10
1.78726e-09
-9.11174e-10
1.80928e-09
-8.62107e-10
-8.12099e-10
1.83017e-09
-1.22417e-09
-8.85978e-10
-1.20061e-09
-9.36307e-10
-1.17593e-09
-9.85797e-10
-1.15014e-09
-1.03366e-09
-1.12331e-09
-1.0792e-09
-1.09549e-09
-1.12182e-09
-1.06677e-09
-1.16106e-09
-1.03725e-09
-1.19662e-09
-1.00704e-09
-1.22834e-09
-9.76261e-10
-1.25617e-09
-9.45027e-10
-1.2802e-09
-9.13418e-10
-1.3006e-09
-8.81501e-10
-1.3176e-09
-8.49337e-10
-1.3315e-09
-8.16985e-10
-1.34264e-09
-7.84504e-10
-1.35136e-09
-7.51948e-10
-1.35801e-09
-7.19359e-10
-1.36293e-09
-6.86765e-10
-1.36642e-09
-6.54179e-10
-1.36876e-09
-6.21607e-10
-1.37018e-09
-5.89052e-10
-1.37087e-09
-5.56519e-10
-1.37101e-09
-5.24017e-10
-1.37073e-09
-4.9155e-10
-1.37016e-09
-4.5912e-10
-1.36937e-09
-4.26719e-10
-1.36844e-09
-3.94331e-10
-1.36742e-09
-3.61941e-10
-1.36634e-09
-3.2954e-10
-1.36521e-09
-2.97127e-10
-1.36404e-09
-2.64712e-10
-1.36283e-09
-2.32307e-10
-1.36158e-09
-1.9992e-10
-1.36031e-09
-1.67551e-10
-1.35904e-09
-1.35194e-10
-1.35779e-09
-1.02839e-10
-1.35658e-09
-7.04788e-11
-1.3554e-09
-3.81137e-11
-1.35425e-09
-5.7492e-12
-1.35312e-09
2.66036e-11
-1.352e-09
5.89339e-11
-1.3509e-09
9.1236e-11
-1.34982e-09
1.23512e-10
-1.34877e-09
1.55768e-10
-1.34779e-09
1.88013e-10
-1.34689e-09
2.2025e-10
-1.34607e-09
2.52477e-10
-1.34535e-09
2.84693e-10
-1.34472e-09
3.16895e-10
-1.34416e-09
3.49085e-10
-1.34367e-09
3.81262e-10
-1.34325e-09
4.13429e-10
-1.34289e-09
4.45585e-10
-1.34261e-09
4.7773e-10
-1.34239e-09
5.09865e-10
-1.34223e-09
5.41987e-10
-1.34213e-09
5.7409e-10
-1.34208e-09
6.06169e-10
-1.34206e-09
6.3822e-10
-1.34206e-09
6.70248e-10
-1.34206e-09
7.02255e-10
-1.34206e-09
7.3424e-10
-1.34205e-09
7.66205e-10
-1.34204e-09
7.98152e-10
-1.34202e-09
8.30085e-10
-1.342e-09
8.62007e-10
-1.34196e-09
8.93915e-10
-1.34192e-09
9.25806e-10
-1.34187e-09
9.57681e-10
-1.34179e-09
9.8954e-10
-1.34168e-09
1.02138e-09
-1.34153e-09
1.05319e-09
-1.34133e-09
1.08497e-09
-1.34104e-09
1.11674e-09
-1.34065e-09
1.14849e-09
-1.34011e-09
1.18021e-09
-1.33938e-09
1.21191e-09
-1.33836e-09
1.2436e-09
-1.33696e-09
1.27527e-09
-1.33504e-09
1.30692e-09
-1.33244e-09
1.33856e-09
-1.32894e-09
1.37015e-09
-1.32431e-09
1.40167e-09
-1.3183e-09
1.43307e-09
-1.31057e-09
1.46435e-09
-1.3008e-09
1.49542e-09
-1.28866e-09
1.5262e-09
-1.27382e-09
1.5567e-09
-1.2559e-09
1.58674e-09
-1.23465e-09
1.61633e-09
-1.2098e-09
1.64533e-09
-1.18127e-09
1.67367e-09
-1.14886e-09
1.70115e-09
-1.11257e-09
1.72786e-09
-1.07261e-09
1.75364e-09
-1.02943e-09
1.77826e-09
-9.83322e-10
1.80183e-09
-9.34794e-10
1.8242e-09
-8.84647e-10
-8.33494e-10
1.84527e-09
-1.23764e-09
-9.08618e-10
-1.21381e-09
-9.60191e-10
-1.18884e-09
-1.01088e-09
-1.16277e-09
-1.05989e-09
-1.13565e-09
-1.10647e-09
-1.10753e-09
-1.15002e-09
-1.07851e-09
-1.19011e-09
-1.04869e-09
-1.22642e-09
-1.01819e-09
-1.25879e-09
-9.87134e-10
-1.28719e-09
-9.55621e-10
-1.31169e-09
-9.23731e-10
-1.33247e-09
-8.91533e-10
-1.34977e-09
-8.59089e-10
-1.3639e-09
-8.26461e-10
-1.3752e-09
-7.93709e-10
-1.38404e-09
-7.60887e-10
-1.39078e-09
-7.28035e-10
-1.39575e-09
-6.95175e-10
-1.39926e-09
-6.62319e-10
-1.4016e-09
-6.29469e-10
-1.40299e-09
-5.96631e-10
-1.40366e-09
-5.63813e-10
-1.40377e-09
-5.31028e-10
-1.40347e-09
-4.98284e-10
-1.40287e-09
-4.65582e-10
-1.40207e-09
-4.3291e-10
-1.40113e-09
-4.00247e-10
-1.40008e-09
-3.67571e-10
-1.39896e-09
-3.3487e-10
-1.39778e-09
-3.02149e-10
-1.39656e-09
-2.69425e-10
-1.39531e-09
-2.36717e-10
-1.39406e-09
-2.04042e-10
-1.39281e-09
-1.71402e-10
-1.39158e-09
-1.38783e-10
-1.39036e-09
-1.06165e-10
-1.38915e-09
-7.35289e-11
-1.38794e-09
-4.08664e-11
-1.38674e-09
-8.18442e-12
-1.38554e-09
2.44987e-11
-1.38436e-09
5.71615e-11
-1.38322e-09
8.97896e-11
-1.38213e-09
1.22381e-10
-1.3811e-09
1.54943e-10
-1.38014e-09
1.8749e-10
-1.37925e-09
2.20033e-10
-1.37843e-09
2.52575e-10
-1.37769e-09
2.85116e-10
-1.37702e-09
3.17651e-10
-1.37643e-09
3.50174e-10
-1.37592e-09
3.82679e-10
-1.37549e-09
4.15164e-10
-1.37513e-09
4.47629e-10
-1.37485e-09
4.80077e-10
-1.37464e-09
5.12513e-10
-1.37448e-09
5.44934e-10
-1.37436e-09
5.77337e-10
-1.37429e-09
6.09718e-10
-1.37423e-09
6.42075e-10
-1.3742e-09
6.74408e-10
-1.37417e-09
7.06715e-10
-1.37414e-09
7.38993e-10
-1.3741e-09
7.71245e-10
-1.37406e-09
8.03474e-10
-1.37402e-09
8.35687e-10
-1.37395e-09
8.67886e-10
-1.37388e-09
9.0007e-10
-1.37379e-09
9.32243e-10
-1.37369e-09
9.64403e-10
-1.37357e-09
9.96549e-10
-1.37343e-09
1.02867e-09
-1.37326e-09
1.06077e-09
-1.37304e-09
1.09285e-09
-1.37276e-09
1.1249e-09
-1.37239e-09
1.15693e-09
-1.37189e-09
1.18893e-09
-1.37118e-09
1.22091e-09
-1.37019e-09
1.25287e-09
-1.36881e-09
1.28482e-09
-1.36689e-09
1.31676e-09
-1.36427e-09
1.34868e-09
-1.36074e-09
1.38056e-09
-1.35606e-09
1.41237e-09
-1.34997e-09
1.44409e-09
-1.34213e-09
1.47565e-09
-1.33223e-09
1.50699e-09
-1.31993e-09
1.53809e-09
-1.30486e-09
1.56885e-09
-1.28666e-09
1.59919e-09
-1.26507e-09
1.62898e-09
-1.23975e-09
1.65828e-09
-1.21056e-09
1.68696e-09
-1.17751e-09
1.71474e-09
-1.14057e-09
1.74158e-09
-1.09974e-09
1.76762e-09
-1.05539e-09
1.79259e-09
-1.00811e-09
1.81638e-09
-9.58371e-10
1.83911e-09
-9.06969e-10
-8.54686e-10
1.86052e-09
-1.25075e-09
-9.31596e-10
-1.22667e-09
-9.84418e-10
-1.20143e-09
-1.03628e-09
-1.17509e-09
-1.08636e-09
-1.14769e-09
-1.13395e-09
-1.11931e-09
-1.17843e-09
-1.09003e-09
-1.21936e-09
-1.05997e-09
-1.25641e-09
-1.02925e-09
-1.28944e-09
-9.97964e-10
-1.31839e-09
-9.66219e-10
-1.34334e-09
-9.34092e-10
-1.36448e-09
-9.01653e-10
-1.38206e-09
-8.68968e-10
-1.39641e-09
-8.36101e-10
-1.40788e-09
-8.03112e-10
-1.41683e-09
-7.70051e-10
-1.42364e-09
-7.36953e-10
-1.42864e-09
-7.03839e-10
-1.43217e-09
-6.70719e-10
-1.43449e-09
-6.37601e-10
-1.43587e-09
-6.0449e-10
-1.43651e-09
-5.714e-10
-1.4366e-09
-5.38341e-10
-1.43629e-09
-5.05323e-10
-1.43568e-09
-4.7234e-10
-1.43486e-09
-4.3938e-10
-1.4339e-09
-4.06418e-10
-1.43282e-09
-3.73438e-10
-1.43168e-09
-3.40431e-10
-1.4305e-09
-3.07406e-10
-1.4293e-09
-2.74383e-10
-1.42809e-09
-2.41383e-10
-1.42688e-09
-2.08418e-10
-1.42568e-09
-1.75487e-10
-1.42447e-09
-1.42571e-10
-1.42326e-09
-1.09647e-10
-1.42203e-09
-7.66952e-11
-1.4208e-09
-4.37109e-11
-1.41957e-09
-1.07047e-11
-1.41836e-09
2.23014e-11
-1.41718e-09
5.52851e-11
-1.41605e-09
8.82333e-11
-1.41497e-09
1.21146e-10
-1.41394e-09
1.54036e-10
-1.41298e-09
1.86916e-10
-1.41207e-09
2.19797e-10
-1.41123e-09
2.52683e-10
-1.41046e-09
2.8557e-10
-1.40978e-09
3.1845e-10
-1.40918e-09
3.51314e-10
-1.40866e-09
3.84155e-10
-1.40823e-09
4.16971e-10
-1.40787e-09
4.49764e-10
-1.40758e-09
4.82539e-10
-1.40735e-09
5.15299e-10
-1.40718e-09
5.48043e-10
-1.40704e-09
5.80767e-10
-1.40694e-09
6.13468e-10
-1.40687e-09
6.46142e-10
-1.40681e-09
6.78788e-10
-1.40677e-09
7.11403e-10
-1.40672e-09
7.43984e-10
-1.40667e-09
7.76536e-10
-1.40661e-09
8.09062e-10
-1.40654e-09
8.41569e-10
-1.40644e-09
8.74058e-10
-1.40633e-09
9.06534e-10
-1.4062e-09
9.38998e-10
-1.40606e-09
9.7145e-10
-1.40589e-09
1.00389e-09
-1.40571e-09
1.0363e-09
-1.40551e-09
1.06869e-09
-1.40527e-09
1.10105e-09
-1.40498e-09
1.13339e-09
-1.4046e-09
1.1657e-09
-1.40408e-09
1.19798e-09
-1.40336e-09
1.23024e-09
-1.40235e-09
1.26248e-09
-1.40094e-09
1.2947e-09
-1.399e-09
1.32692e-09
-1.39635e-09
1.35912e-09
-1.39278e-09
1.39126e-09
-1.38805e-09
1.42334e-09
-1.38189e-09
1.45532e-09
-1.37397e-09
1.48712e-09
-1.36396e-09
1.51872e-09
-1.35149e-09
1.55007e-09
-1.33619e-09
1.58102e-09
-1.3177e-09
1.61166e-09
-1.29571e-09
1.64167e-09
-1.26996e-09
1.67111e-09
-1.24022e-09
1.69999e-09
-1.20642e-09
1.72815e-09
-1.16861e-09
1.75527e-09
-1.12696e-09
1.78148e-09
-1.08175e-09
1.80672e-09
-1.03343e-09
1.8307e-09
-9.82617e-10
1.85361e-09
-9.29994e-10
1.87531e-09
-8.7635e-10
-6.89206e-13
1.05924e-12
-1.90916e-12
1.21948e-12
-3.33473e-12
1.42513e-12
-4.55735e-12
1.22224e-12
-5.84427e-12
1.28662e-12
-6.99541e-12
1.15092e-12
-8.09701e-12
1.10146e-12
-9.11518e-12
1.01812e-12
-1.00513e-11
9.36099e-13
-1.09018e-11
8.50543e-13
-1.16669e-11
7.65243e-13
-1.23468e-11
6.80042e-13
-1.2943e-11
5.96475e-13
-1.34587e-11
5.15951e-13
-1.38974e-11
4.3907e-13
-1.42638e-11
3.66801e-13
-1.45627e-11
2.99305e-13
-1.47982e-11
2.35932e-13
-1.49741e-11
1.76391e-13
-1.50948e-11
1.21103e-13
-1.51644e-11
7.01531e-14
-1.51868e-11
2.29004e-14
-1.51664e-11
-1.99248e-14
-1.51054e-11
-6.04824e-14
-1.50053e-11
-9.95122e-14
-1.48655e-11
-1.3912e-13
-1.46866e-11
-1.78313e-13
-1.44684e-11
-2.17454e-13
-1.42114e-11
-2.56319e-13
-1.39087e-11
-3.01904e-13
-1.3564e-11
-3.43826e-13
-1.31793e-11
-3.83879e-13
-1.27465e-11
-4.31882e-13
-1.22683e-11
-4.77219e-13
-1.17436e-11
-5.23767e-13
-1.11731e-11
-5.69521e-13
-1.0557e-11
-6.15235e-13
-9.8943e-12
-6.61733e-13
-9.1884e-12
-7.04942e-13
-8.44552e-12
-7.41905e-13
-7.66639e-12
-7.78152e-13
-6.85745e-12
-8.07968e-13
-6.02217e-12
-8.34317e-13
-5.1635e-12
-8.57724e-13
-4.29039e-12
-8.72195e-13
-3.40758e-12
-8.81906e-13
-2.52189e-12
-8.8482e-13
-1.64036e-12
-8.8067e-13
-7.69378e-13
-8.70145e-13
8.49152e-14
-8.53457e-13
9.16156e-13
-8.30403e-13
1.71589e-12
-7.98888e-13
2.47761e-12
-7.60866e-13
3.19648e-12
-7.18012e-13
3.86685e-12
-6.69483e-13
4.48485e-12
-6.1707e-13
5.04697e-12
-5.6116e-13
5.54963e-12
-5.01663e-13
5.99143e-12
-4.4078e-13
6.37213e-12
-3.7971e-13
6.69242e-12
-3.19353e-13
6.95223e-12
-2.58956e-13
7.15182e-12
-1.98826e-13
7.29323e-12
-1.40703e-13
7.38041e-12
-8.6472e-14
7.41515e-12
-3.39891e-14
7.40129e-12
1.46773e-14
7.3453e-12
5.687e-14
7.2554e-12
9.08307e-14
7.13823e-12
1.1809e-13
6.99726e-12
1.41853e-13
6.83716e-12
1.60923e-13
6.66416e-12
1.73762e-13
6.47981e-12
1.85108e-13
6.28444e-12
1.96186e-13
6.08321e-12
2.0213e-13
5.878e-12
2.06186e-13
5.6627e-12
2.16302e-13
5.43692e-12
2.26726e-13
5.20603e-12
2.31734e-13
4.97106e-12
2.35707e-13
4.73179e-12
2.39944e-13
4.48813e-12
2.44342e-13
4.24606e-12
2.4282e-13
4.00769e-12
2.39197e-13
3.75996e-12
2.48587e-13
3.50479e-12
2.55996e-13
3.24582e-12
2.59685e-13
2.98017e-12
2.66288e-13
2.7118e-12
2.69029e-13
2.44164e-12
2.70934e-13
2.16511e-12
2.77416e-13
1.88316e-12
2.82815e-13
1.59187e-12
2.91974e-13
1.29465e-12
2.97695e-13
1.00105e-12
2.94031e-13
7.09227e-13
2.92352e-13
4.32021e-13
2.77834e-13
1.93516e-13
2.39085e-13
1.93969e-13
9.42107e-13
2.56696e-12
-1.24736e-12
3.4081e-12
-3.72903e-12
3.90614e-12
-6.05736e-12
3.55007e-12
-8.34596e-12
3.57485e-12
-1.0436e-11
3.24069e-12
-1.23758e-11
3.04122e-12
-1.41427e-11
2.78503e-12
-1.57327e-11
2.52617e-12
-1.71447e-11
2.26277e-12
-1.83788e-11
1.99963e-12
-1.94375e-11
1.73916e-12
-2.03263e-11
1.48583e-12
-2.10531e-11
1.24332e-12
-2.16256e-11
1.01234e-12
-2.20535e-11
7.95383e-13
-2.23465e-11
5.93084e-13
-2.25134e-11
4.03692e-13
-2.25628e-11
2.26625e-13
-2.25038e-11
6.29759e-14
-2.23441e-11
-8.86828e-14
-2.20927e-11
-2.27545e-13
-2.17545e-11
-3.57075e-13
-2.13355e-11
-4.78457e-13
-2.08377e-11
-5.96243e-13
-2.0265e-11
-7.1068e-13
-1.96225e-11
-8.19594e-13
-1.89132e-11
-9.25521e-13
-1.81321e-11
-1.03597e-12
-1.72881e-11
-1.14445e-12
-1.63812e-11
-1.24922e-12
-1.54083e-11
-1.35512e-12
-1.43754e-11
-1.46325e-12
-1.32852e-11
-1.56579e-12
-1.21392e-11
-1.66814e-12
-1.094e-11
-1.76708e-12
-9.69119e-12
-1.86248e-12
-8.40016e-12
-1.95112e-12
-7.07112e-12
-2.03232e-12
-5.71308e-12
-2.09829e-12
-4.3294e-12
-2.16018e-12
-2.93301e-12
-2.20273e-12
-1.53075e-12
-2.23499e-12
-1.35289e-13
-2.25163e-12
1.25312e-12
-2.25909e-12
2.62257e-12
-2.24987e-12
3.95981e-12
-2.22061e-12
5.25608e-12
-2.17552e-12
6.50428e-12
-2.11692e-12
7.69639e-12
-2.04414e-12
8.82331e-12
-1.95589e-12
9.87609e-12
-1.85021e-12
1.08493e-11
-1.73258e-12
1.174e-11
-1.60721e-12
1.25443e-11
-1.47221e-12
1.32567e-11
-1.32779e-12
1.38732e-11
-1.176e-12
1.4394e-11
-1.02074e-12
1.48217e-11
-8.66828e-13
1.51574e-11
-7.13868e-13
1.54012e-11
-5.61744e-13
1.55552e-11
-4.11662e-13
1.5625e-11
-2.67381e-13
1.56178e-11
-1.32233e-13
1.5539e-11
-6.32332e-15
1.53915e-11
1.14937e-13
1.5181e-11
2.26685e-13
1.4918e-11
3.21492e-13
1.46131e-11
3.97298e-13
1.42732e-11
4.59438e-13
1.39029e-11
5.13614e-13
1.35088e-11
5.5631e-13
1.31e-11
5.84027e-13
1.26812e-11
6.05333e-13
1.22521e-11
6.26925e-13
1.18114e-11
6.44516e-13
1.13619e-11
6.57422e-13
1.09065e-11
6.73253e-13
1.04451e-11
6.89612e-13
9.97522e-12
7.02945e-13
9.50051e-12
7.11705e-13
9.02208e-12
7.19702e-13
8.53755e-12
7.30309e-13
8.05198e-12
7.29932e-13
7.56645e-12
7.263e-13
7.07364e-12
7.42891e-13
6.57045e-12
7.60544e-13
6.05884e-12
7.72595e-13
5.54248e-12
7.84e-13
5.02066e-12
7.92346e-13
4.49274e-12
8.00456e-13
3.96179e-12
8.09852e-13
3.42859e-12
8.17225e-13
2.89487e-12
8.26658e-13
2.35497e-12
8.38519e-13
1.81568e-12
8.3436e-13
1.28068e-12
8.28475e-13
7.664e-13
7.93146e-13
3.05118e-13
7.0123e-13
4.99471e-13
6.48666e-12
4.27858e-12
3.77165e-12
6.12239e-12
8.43387e-13
6.83388e-12
-2.09448e-12
6.4875e-12
-4.84787e-12
6.32791e-12
-7.40758e-12
5.80017e-12
-9.76493e-12
5.39845e-12
-1.1908e-11
4.92808e-12
-1.38259e-11
4.44407e-12
-1.55181e-11
3.95513e-12
-1.69833e-11
3.46517e-12
-1.82259e-11
2.98206e-12
-1.92555e-11
2.51587e-12
-2.0081e-11
2.06937e-12
-2.07136e-11
1.64555e-12
-2.11656e-11
1.24796e-12
-2.14487e-11
8.76792e-13
-2.15748e-11
5.30465e-13
-2.15556e-11
2.08053e-13
-2.14057e-11
-8.62814e-14
-2.11342e-11
-3.5948e-13
-2.07512e-11
-6.0974e-13
-2.02656e-11
-8.41948e-13
-1.96849e-11
-1.05838e-12
-1.90169e-11
-1.26346e-12
-1.8266e-11
-1.46067e-12
-1.74362e-11
-1.6485e-12
-1.65369e-11
-1.82394e-12
-1.55634e-11
-2.00843e-12
-1.45192e-11
-2.1876e-12
-1.34165e-11
-2.35088e-12
-1.22506e-11
-2.51989e-12
-1.10274e-11
-2.68538e-12
-9.74965e-12
-2.84242e-12
-8.42526e-12
-2.99145e-12
-7.05832e-12
-3.13294e-12
-5.64732e-12
-3.2724e-12
-4.20017e-12
-3.39717e-12
-2.73495e-12
-3.49644e-12
-1.25032e-12
-3.58182e-12
2.3671e-13
-3.64611e-12
1.7318e-12
-3.69674e-12
3.21773e-12
-3.71986e-12
4.68664e-12
-3.71951e-12
6.13189e-12
-3.70334e-12
7.54444e-12
-3.66144e-12
8.91113e-12
-3.58634e-12
1.02213e-11
-3.48469e-12
1.14682e-11
-3.36293e-12
1.2646e-11
-3.221e-12
1.37448e-11
-3.0537e-12
1.47568e-11
-2.86123e-12
1.56783e-11
-2.65316e-12
1.65069e-11
-2.43479e-12
1.72395e-11
-2.20376e-12
1.78715e-11
-1.95871e-12
1.83999e-11
-1.70326e-12
1.88254e-11
-1.44517e-12
1.91513e-11
-1.19158e-12
1.93788e-11
-9.40403e-13
1.9508e-11
-6.89986e-13
1.95418e-11
-4.44609e-13
1.94886e-11
-2.13237e-13
1.93572e-11
1.02374e-16
1.91537e-11
1.98214e-13
1.88839e-11
3.85827e-13
1.85553e-11
5.56402e-13
1.81774e-11
7.00567e-13
1.7757e-11
8.18818e-13
1.7299e-11
9.18591e-13
1.68104e-11
1.00322e-12
1.62987e-11
1.06909e-12
1.57701e-11
1.11374e-12
1.52321e-11
1.14451e-12
1.46876e-11
1.17268e-12
1.41328e-11
1.20065e-12
1.35686e-11
1.22297e-12
1.30029e-11
1.24016e-12
1.24374e-11
1.25633e-12
1.18691e-11
1.27249e-12
1.1296e-11
1.28605e-12
1.07195e-11
1.29753e-12
1.01402e-11
1.31111e-12
9.55259e-12
1.31902e-12
8.95539e-12
1.325e-12
8.35531e-12
1.34441e-12
7.75064e-12
1.36658e-12
7.13861e-12
1.38598e-12
6.52079e-12
1.40322e-12
5.89638e-12
1.41823e-12
5.26524e-12
1.43306e-12
4.63298e-12
1.4434e-12
4.00153e-12
1.44975e-12
3.3763e-12
1.45283e-12
2.75128e-12
1.46452e-12
2.11943e-12
1.46727e-12
1.49432e-12
1.4546e-12
8.80129e-13
1.4082e-12
3.27179e-13
1.25495e-12
8.27051e-13
1.06756e-11
6.18267e-12
7.74157e-12
9.05589e-12
4.54912e-12
1.00259e-11
1.36587e-12
9.67033e-12
-1.61668e-12
9.3101e-12
-4.42248e-12
8.60571e-12
-7.00343e-12
7.97925e-12
-9.34499e-12
7.26959e-12
-1.14401e-11
6.53922e-12
-1.32833e-11
5.79843e-12
-1.48769e-11
5.05905e-12
-1.62273e-11
4.33269e-12
-1.73422e-11
3.63114e-12
-1.82337e-11
2.96135e-12
-1.89149e-11
2.32718e-12
-1.93989e-11
1.73242e-12
-1.96987e-11
1.17712e-12
-1.98296e-11
6.61827e-13
-1.98036e-11
1.82637e-13
-1.96345e-11
-2.54826e-13
-1.93382e-11
-6.55201e-13
-1.89245e-11
-1.02294e-12
-1.84032e-11
-1.36259e-12
-1.77821e-11
-1.67889e-12
-1.70732e-11
-1.9717e-12
-1.62806e-11
-2.25269e-12
-1.54067e-11
-2.52172e-12
-1.44587e-11
-2.77125e-12
-1.34439e-11
-3.02247e-12
-1.23639e-11
-3.2669e-12
-1.12171e-11
-3.49694e-12
-1.00131e-11
-3.72314e-12
-8.75735e-12
-3.94034e-12
-7.44813e-12
-4.1509e-12
-6.09329e-12
-4.34556e-12
-4.69856e-12
-4.52694e-12
-3.27056e-12
-4.69967e-12
-1.81302e-12
-4.85398e-12
-3.33275e-13
-4.97543e-12
1.15534e-12
-5.06967e-12
2.65106e-12
-5.14107e-12
4.14298e-12
-5.18793e-12
5.62396e-12
-5.20011e-12
7.08435e-12
-5.17919e-12
8.51381e-12
-5.1321e-12
9.903e-12
-5.04994e-12
1.12449e-11
-4.92757e-12
1.25287e-11
-4.76779e-12
1.37437e-11
-4.57734e-12
1.48843e-11
-4.36096e-12
1.59426e-11
-4.11132e-12
1.69123e-11
-3.83031e-12
1.77899e-11
-3.53001e-12
1.85701e-11
-3.21432e-12
1.9249e-11
-2.88197e-12
1.98246e-11
-2.53363e-12
2.02967e-11
-2.17459e-12
2.06653e-11
-1.8131e-12
2.09301e-11
-1.45567e-12
2.10932e-11
-1.10276e-12
2.11585e-11
-7.54574e-13
2.11307e-11
-4.16031e-13
2.10149e-11
-9.67741e-14
2.08184e-11
1.97414e-13
2.05505e-11
4.67062e-13
2.02206e-11
7.16623e-13
1.98362e-11
9.41724e-13
1.94031e-11
1.13458e-12
1.89279e-11
1.29498e-12
1.84183e-11
1.42913e-12
1.7881e-11
1.54138e-12
1.7322e-11
1.62901e-12
1.67463e-11
1.69049e-12
1.61585e-11
1.73336e-12
1.55635e-11
1.76877e-12
1.4964e-11
1.80122e-12
1.43604e-11
1.82772e-12
1.3754e-11
1.84763e-12
1.31473e-11
1.8643e-12
1.25406e-11
1.88044e-12
1.19314e-11
1.89662e-12
1.13176e-11
1.91276e-12
1.06998e-11
1.9305e-12
1.00747e-11
1.94569e-12
9.44096e-12
1.96023e-12
8.80465e-12
1.98219e-12
8.16519e-12
2.0075e-12
7.51906e-12
2.03356e-12
6.86591e-12
2.05782e-12
6.20621e-12
2.07934e-12
5.54198e-12
2.0986e-12
4.87782e-12
2.10872e-12
4.21819e-12
2.11041e-12
3.55778e-12
2.11425e-12
2.89364e-12
2.1297e-12
2.22848e-12
2.13347e-12
1.56409e-12
2.11991e-12
9.27567e-13
2.04553e-12
3.70484e-13
1.81282e-12
1.19799e-12
1.25065e-11
7.97594e-12
9.46605e-12
1.20959e-11
6.17774e-12
1.33137e-11
2.90413e-12
1.29435e-11
-2.02276e-13
1.24161e-11
-3.12669e-12
1.15298e-11
-5.81107e-12
1.06634e-11
-8.24549e-12
9.70392e-12
-1.04235e-11
8.71722e-12
-1.23371e-11
7.71215e-12
-1.39913e-11
6.71341e-12
-1.53906e-11
5.73217e-12
-1.6544e-11
4.78483e-12
-1.7466e-11
3.88359e-12
-1.81695e-11
3.03101e-12
-1.86685e-11
2.23177e-12
-1.89777e-11
1.48669e-12
-1.91117e-11
7.96326e-13
-1.9086e-11
1.57293e-13
-1.8915e-11
-4.25375e-13
-1.86115e-11
-9.58227e-13
-1.81875e-11
-1.4464e-12
-1.76571e-11
-1.89249e-12
-1.7027e-11
-2.30851e-12
-1.63021e-11
-2.69607e-12
-1.54982e-11
-3.05596e-12
-1.46177e-11
-3.40166e-12
-1.36589e-11
-3.72948e-12
-1.2632e-11
-4.04882e-12
-1.15426e-11
-4.35571e-12
-1.03908e-11
-4.64811e-12
-9.17651e-12
-4.93688e-12
-7.90943e-12
-5.20684e-12
-6.59587e-12
-5.46389e-12
-5.23383e-12
-5.70702e-12
-3.83011e-12
-5.93008e-12
-2.39835e-12
-6.13083e-12
-9.3875e-13
-6.31296e-12
5.42374e-13
-6.45592e-12
2.03915e-12
-6.56579e-12
3.53933e-12
-6.6406e-12
5.03266e-12
-6.68059e-12
6.51303e-12
-6.67982e-12
7.97347e-12
-6.63897e-12
9.40036e-12
-6.55833e-12
1.07838e-11
-6.43272e-12
1.2119e-11
-6.26213e-12
1.33952e-11
-6.04341e-12
1.46026e-11
-5.78409e-12
1.57338e-11
-5.4916e-12
1.67826e-11
-5.15951e-12
1.77423e-11
-4.78949e-12
1.86065e-11
-4.39367e-12
1.93705e-11
-3.97771e-12
2.00316e-11
-3.54249e-12
2.0588e-11
-3.08943e-12
2.10386e-11
-2.62459e-12
2.13825e-11
-2.15645e-12
2.16207e-11
-1.69314e-12
2.17561e-11
-1.23753e-12
2.1793e-11
-7.90744e-13
2.17354e-11
-3.57573e-13
2.15893e-11
5.01347e-14
2.13635e-11
4.24137e-13
2.10669e-11
7.6461e-13
2.07082e-11
1.07621e-12
2.02959e-11
1.35493e-12
1.98369e-11
1.59452e-12
1.93371e-11
1.79569e-12
1.88041e-11
1.96307e-12
1.82454e-11
2.10104e-12
1.76658e-11
2.20952e-12
1.70697e-11
2.28759e-12
1.64623e-11
2.34176e-12
1.58485e-11
2.38356e-12
1.52309e-11
2.41979e-12
1.46111e-11
2.44854e-12
1.39909e-11
2.46897e-12
1.33719e-11
2.48451e-12
1.27542e-11
2.49948e-12
1.21353e-11
2.51705e-12
1.15121e-11
2.53746e-12
1.08831e-11
2.56101e-12
1.02458e-11
2.58446e-12
9.60175e-12
2.60575e-12
8.95456e-12
2.63081e-12
8.3028e-12
2.66068e-12
7.645e-12
2.69276e-12
6.97987e-12
2.72426e-12
6.3075e-12
2.75289e-12
5.63379e-12
2.77336e-12
4.96348e-12
2.77998e-12
4.29533e-12
2.77951e-12
3.62202e-12
2.78855e-12
2.94718e-12
2.80556e-12
2.2695e-12
2.8121e-12
1.59057e-12
2.79966e-12
9.49903e-13
2.68698e-12
3.8802e-13
2.37557e-12
1.58652e-12
1.30334e-11
9.84066e-12
9.94447e-12
1.51842e-11
6.57758e-12
1.668e-11
3.24103e-12
1.62795e-11
8.03902e-14
1.55763e-11
-2.91128e-12
1.45212e-11
-5.64353e-12
1.33955e-11
-8.12167e-12
1.21819e-11
-1.03311e-11
1.09266e-11
-1.22703e-11
9.65138e-12
-1.39423e-11
8.38538e-12
-1.53534e-11
7.14342e-12
-1.65154e-11
5.94697e-12
-1.74406e-11
4.80893e-12
-1.81423e-11
3.73289e-12
-1.86361e-11
2.72589e-12
-1.89382e-11
1.78902e-12
-1.90636e-11
9.22128e-13
-1.90311e-11
1.25146e-13
-1.88531e-11
-6.02962e-13
-1.85424e-11
-1.26851e-12
-1.81109e-11
-1.87743e-12
-1.75706e-11
-2.43234e-12
-1.69322e-11
-2.94639e-12
-1.6203e-11
-3.42467e-12
-1.53876e-11
-3.87083e-12
-1.44969e-11
-4.29175e-12
-1.3536e-11
-4.68979e-12
-1.25024e-11
-5.0819e-12
-1.14048e-11
-5.45265e-12
-1.02483e-11
-5.80403e-12
-9.02921e-12
-6.15538e-12
-7.75599e-12
-6.47945e-12
-6.43237e-12
-6.78688e-12
-5.06381e-12
-7.07493e-12
-3.65228e-12
-7.34092e-12
-2.20281e-12
-7.57959e-12
-7.34396e-13
-7.78062e-12
7.57077e-13
-7.94661e-12
2.26363e-12
-8.07154e-12
3.77613e-12
-8.15228e-12
5.2826e-12
-8.18623e-12
6.77374e-12
-8.17012e-12
8.24317e-12
-8.10754e-12
9.67977e-12
-7.99407e-12
1.10732e-11
-7.82529e-12
1.2416e-11
-7.60413e-12
1.37005e-11
-7.32711e-12
1.4916e-11
-6.99881e-12
1.60529e-11
-6.62778e-12
1.71063e-11
-6.21217e-12
1.80709e-11
-5.7533e-12
1.89386e-11
-5.26069e-12
1.97034e-11
-4.74183e-12
2.0363e-11
-4.20134e-12
2.09157e-11
-3.64141e-12
2.13605e-11
-3.06872e-12
2.16964e-11
-2.4915e-12
2.19239e-11
-1.91986e-12
2.20468e-11
-1.35952e-12
2.20696e-11
-8.12567e-13
2.19972e-11
-2.84069e-13
2.18362e-11
2.12223e-13
2.15962e-11
6.65362e-13
2.1285e-11
1.07692e-12
2.091e-11
1.45231e-12
2.04803e-11
1.78567e-12
2.00046e-11
2.07128e-12
1.94892e-11
2.31209e-12
1.89409e-11
2.51245e-12
1.83685e-11
2.67454e-12
1.77783e-11
2.80087e-12
1.71731e-11
2.89391e-12
1.65566e-11
2.95929e-12
1.59338e-11
3.00736e-12
1.53089e-11
3.04559e-12
1.46844e-11
3.07402e-12
1.40614e-11
3.09308e-12
1.34397e-11
3.10746e-12
1.28183e-11
3.12237e-12
1.21951e-11
3.14168e-12
1.1568e-11
3.16595e-12
1.09363e-11
3.19403e-12
1.02982e-11
3.22378e-12
9.65325e-12
3.25194e-12
9.00363e-12
3.28166e-12
8.34871e-12
3.31681e-12
7.68761e-12
3.35498e-12
7.01891e-12
3.39393e-12
6.34521e-12
3.42739e-12
5.67396e-12
3.44532e-12
5.00334e-12
3.45133e-12
4.32832e-12
3.45536e-12
3.65042e-12
3.46736e-12
2.96732e-12
3.48956e-12
2.28049e-12
3.49973e-12
1.59754e-12
3.48336e-12
9.54616e-13
3.33072e-12
3.90799e-13
2.94034e-12
1.97785e-12
1.30761e-11
1.17555e-11
9.93956e-12
1.832e-11
6.49157e-12
2.01273e-11
3.08781e-12
1.96827e-11
-1.40999e-13
1.88047e-11
-3.16044e-12
1.75403e-11
-5.92381e-12
1.61586e-11
-8.42055e-12
1.46784e-11
-1.06405e-11
1.31463e-11
-1.25835e-11
1.15942e-11
-1.42523e-11
1.00542e-11
-1.56554e-11
8.54643e-12
-1.6805e-11
7.09658e-12
-1.77135e-11
5.71752e-12
-1.83962e-11
4.41559e-12
-1.88697e-11
3.19962e-12
-1.9151e-11
2.07055e-12
-1.92582e-11
1.02962e-12
-1.92079e-11
7.51754e-14
-1.90136e-11
-7.96895e-13
-1.86896e-11
-1.59206e-12
-1.82474e-11
-2.31915e-12
-1.76954e-11
-2.9838e-12
-1.70461e-11
-3.59502e-12
-1.63107e-11
-4.1595e-12
-1.54884e-11
-4.69245e-12
-1.45899e-11
-5.18961e-12
-1.36226e-11
-5.65637e-12
-1.25814e-11
-6.1224e-12
-1.14803e-11
-6.55305e-12
-1.03138e-11
-6.96982e-12
-9.09042e-12
-7.37798e-12
-7.81094e-12
-7.75814e-12
-6.47967e-12
-8.11732e-12
-5.10119e-12
-8.45253e-12
-3.6803e-12
-8.7609e-12
-2.22174e-12
-9.03717e-12
-7.38661e-13
-9.26269e-12
7.68469e-13
-9.45268e-12
2.28834e-12
-9.59032e-12
3.81409e-12
-9.67692e-12
5.33552e-12
-9.70653e-12
6.84293e-12
-9.67638e-12
8.32714e-12
-9.5906e-12
9.77775e-12
-9.44352e-12
1.11853e-11
-9.23172e-12
1.25405e-11
-8.95816e-12
1.38374e-11
-8.62295e-12
1.50663e-11
-8.22666e-12
1.6216e-11
-7.77651e-12
1.728e-11
-7.27515e-12
1.82531e-11
-6.7254e-12
1.91289e-11
-6.13552e-12
1.99008e-11
-5.51272e-12
2.05648e-11
-4.86434e-12
2.11189e-11
-4.19449e-12
2.15624e-11
-3.51129e-12
2.18952e-11
-2.8232e-12
2.2118e-11
-2.14148e-12
2.22337e-11
-1.47406e-12
2.22476e-11
-8.25147e-13
2.21662e-11
-2.01206e-13
2.19962e-11
3.83648e-13
2.17456e-11
9.17464e-13
2.14217e-11
1.40219e-12
2.10328e-11
1.8426e-12
2.05888e-11
2.23092e-12
2.00985e-11
2.5628e-12
1.95686e-11
2.8432e-12
1.90066e-11
3.07573e-12
1.8422e-11
3.26045e-12
1.78225e-11
3.40166e-12
1.72109e-11
3.50679e-12
1.65888e-11
3.58246e-12
1.59612e-11
3.63602e-12
1.53338e-11
3.67394e-12
1.47096e-11
3.69927e-12
1.4087e-11
3.71679e-12
1.34639e-11
3.73183e-12
1.28395e-11
3.74819e-12
1.22113e-11
3.77113e-12
1.15803e-11
3.79815e-12
1.09477e-11
3.82766e-12
1.03113e-11
3.86114e-12
9.66894e-12
3.89517e-12
9.0205e-12
3.93103e-12
8.36638e-12
3.97185e-12
7.70551e-12
4.01663e-12
7.0388e-12
4.06122e-12
6.37111e-12
4.09551e-12
5.70303e-12
4.11384e-12
5.03125e-12
4.12367e-12
4.35313e-12
4.13421e-12
3.66909e-12
4.1522e-12
2.97926e-12
4.18015e-12
2.28667e-12
4.19302e-12
1.60391e-12
4.16686e-12
9.54048e-13
3.98148e-12
3.803e-13
3.5151e-12
2.35865e-12
1.30352e-11
1.36367e-11
9.79847e-12
2.1556e-11
6.26266e-12
2.36625e-11
2.78987e-12
2.3155e-11
-4.96427e-13
2.20905e-11
-3.5505e-12
2.0594e-11
-6.34004e-12
1.89478e-11
-8.85194e-12
1.719e-11
-1.10781e-11
1.53722e-11
-1.30192e-11
1.35351e-11
-1.46798e-11
1.17147e-11
-1.60712e-11
9.93767e-12
-1.72046e-11
8.22984e-12
-1.80944e-11
6.60733e-12
-1.87567e-11
5.07791e-12
-1.92084e-11
3.65137e-12
-1.94666e-11
2.32898e-12
-1.95505e-11
1.11377e-12
-1.94764e-11
1.40574e-15
-1.92606e-11
-1.01234e-12
-1.89158e-11
-1.93637e-12
-1.84548e-11
-2.77964e-12
-1.78887e-11
-3.54926e-12
-1.72274e-11
-4.25563e-12
-1.64762e-11
-4.91006e-12
-1.56465e-11
-5.52136e-12
-1.47405e-11
-6.09487e-12
-1.37608e-11
-6.63525e-12
-1.27163e-11
-7.16619e-12
-1.16042e-11
-7.6643e-12
-1.04317e-11
-8.14145e-12
-9.20203e-12
-8.60676e-12
-7.91613e-12
-9.0431e-12
-6.57463e-12
-9.45781e-12
-5.18393e-12
-9.84216e-12
-3.75462e-12
-1.01891e-11
-2.28715e-12
-1.05034e-11
-7.86625e-13
-1.0762e-11
7.3349e-13
-1.09715e-11
2.26855e-12
-1.11241e-11
3.80967e-12
-1.12167e-11
5.34658e-12
-1.12421e-11
6.87041e-12
-1.11989e-11
8.37007e-12
-1.10889e-11
9.83713e-12
-1.09092e-11
1.12622e-11
-1.06554e-11
1.26341e-11
-1.03288e-11
1.3945e-11
-9.93264e-12
1.51876e-11
-9.46797e-12
1.63513e-11
-8.93897e-12
1.74273e-11
-8.34992e-12
1.84118e-11
-7.70867e-12
1.92977e-11
-7.02014e-12
2.00774e-11
-6.29119e-12
2.07464e-11
-5.53214e-12
2.13036e-11
-4.75045e-12
2.17474e-11
-3.95391e-12
2.20778e-11
-3.15225e-12
2.22963e-11
-2.35861e-12
2.24058e-11
-1.58214e-12
2.24116e-11
-8.29374e-13
2.23214e-11
-1.09426e-13
2.21427e-11
5.64073e-13
2.18805e-11
1.18131e-12
2.15422e-11
1.74193e-12
2.11384e-11
2.24787e-12
2.06799e-11
2.69081e-12
2.01753e-11
3.06875e-12
1.96317e-11
3.38813e-12
1.90575e-11
3.65136e-12
1.84619e-11
3.85749e-12
1.78525e-11
4.01253e-12
1.72328e-11
4.12778e-12
1.66052e-11
4.21121e-12
1.59744e-11
4.26798e-12
1.53454e-11
4.30389e-12
1.47197e-11
4.3261e-12
1.40949e-11
4.34272e-12
1.34705e-11
4.35743e-12
1.28457e-11
4.37426e-12
1.22185e-11
4.39952e-12
1.15884e-11
4.42918e-12
1.09558e-11
4.46099e-12
1.03203e-11
4.49728e-12
9.6791e-12
4.53701e-12
9.03164e-12
4.57922e-12
8.37812e-12
4.62604e-12
7.71782e-12
4.67744e-12
7.05382e-12
4.72556e-12
6.38947e-12
4.76013e-12
5.72247e-12
4.78122e-12
5.05038e-12
4.79632e-12
4.36775e-12
4.81756e-12
3.67916e-12
4.84154e-12
2.99168e-12
4.86832e-12
2.30183e-12
4.88359e-12
1.61443e-12
4.85509e-12
9.5741e-13
4.63947e-12
3.81575e-13
4.09192e-12
2.74066e-12
1.30114e-11
1.56619e-11
9.65048e-12
2.49163e-11
6.0102e-12
2.73022e-11
2.458e-12
2.67067e-11
-8.88047e-13
2.54362e-11
-3.98103e-12
2.36865e-11
-6.79743e-12
2.17638e-11
-9.32383e-12
1.9716e-11
-1.15558e-11
1.76038e-11
-1.34952e-11
1.54742e-11
-1.51484e-11
1.33676e-11
-1.65268e-11
1.13158e-11
-1.76433e-11
9.34627e-12
-1.85123e-11
7.47619e-12
-1.91504e-11
5.71605e-12
-1.95755e-11
4.07658e-12
-1.98082e-11
2.5618e-12
-1.98657e-11
1.17153e-12
-1.97668e-11
-9.71724e-14
-1.95267e-11
-1.25208e-12
-1.91604e-11
-2.30227e-12
-1.86797e-11
-3.25979e-12
-1.80979e-11
-4.13048e-12
-1.74219e-11
-4.93104e-12
-1.66603e-11
-5.67099e-12
-1.58197e-11
-6.36129e-12
-1.49047e-11
-7.00906e-12
-1.39183e-11
-7.62093e-12
-1.28657e-11
-8.21799e-12
-1.17492e-11
-8.78002e-12
-1.05675e-11
-9.32239e-12
-9.32971e-12
-9.84362e-12
-8.03428e-12
-1.03376e-11
-6.68295e-12
-1.08081e-11
-5.28252e-12
-1.12415e-11
-3.83483e-12
-1.16356e-11
-2.35807e-12
-1.1979e-11
-8.44206e-13
-1.22746e-11
6.91242e-13
-1.25057e-11
2.24251e-12
-1.26741e-11
3.80029e-12
-1.27732e-11
5.35428e-12
-1.27948e-11
6.89582e-12
-1.27391e-11
8.41388e-12
-1.26057e-11
9.90007e-12
-1.23941e-11
1.13444e-11
-1.20985e-11
1.27345e-11
-1.17177e-11
1.40614e-11
-1.12583e-11
1.53203e-11
-1.07256e-11
1.65004e-11
-1.01178e-11
1.75904e-11
-9.4387e-12
1.85856e-11
-8.70256e-12
1.94813e-11
-7.9145e-12
2.02701e-11
-7.07868e-12
2.09452e-11
-6.20604e-12
2.15046e-11
-5.30855e-12
2.19478e-11
-4.39587e-12
2.22759e-11
-3.47905e-12
2.24898e-11
-2.57115e-12
2.25913e-11
-1.6822e-12
2.25865e-11
-8.23002e-13
2.24857e-11
-7.14283e-15
2.22964e-11
7.54965e-13
2.20211e-11
1.45815e-12
2.16679e-11
2.09658e-12
2.12487e-11
2.6684e-12
2.07747e-11
3.16607e-12
2.02542e-11
3.59052e-12
1.96959e-11
3.94786e-12
1.91093e-11
4.23939e-12
1.85027e-11
4.4655e-12
1.78822e-11
4.63438e-12
1.72526e-11
4.75876e-12
1.66184e-11
4.84656e-12
1.59846e-11
4.90292e-12
1.53537e-11
4.93584e-12
1.47249e-11
4.9561e-12
1.40978e-11
4.97095e-12
1.34736e-11
4.98288e-12
1.28497e-11
4.99928e-12
1.22239e-11
5.02621e-12
1.15963e-11
5.0575e-12
1.09662e-11
5.09167e-12
1.03317e-11
5.13242e-12
9.69087e-12
5.17841e-12
9.044e-12
5.22676e-12
8.38992e-12
5.28073e-12
7.72947e-12
5.33836e-12
7.06595e-12
5.38943e-12
6.39843e-12
5.42803e-12
5.72583e-12
5.45437e-12
5.04724e-12
5.47566e-12
4.36291e-12
5.50274e-12
3.67909e-12
5.52617e-12
2.99525e-12
5.55293e-12
2.30938e-12
5.57028e-12
1.624e-12
5.54141e-12
9.68397e-13
5.29608e-12
3.92601e-13
4.66861e-12
3.13362e-12
1.29548e-11
1.79288e-11
9.49813e-12
2.83724e-11
5.74282e-12
3.1057e-11
2.09872e-12
3.03503e-11
-1.31553e-12
2.885e-11
-4.45694e-12
2.68275e-11
-7.3039e-12
2.46103e-11
-9.84512e-12
2.22568e-11
-1.20791e-11
1.98374e-11
-1.40107e-11
1.74055e-11
-1.56489e-11
1.50056e-11
-1.70068e-11
1.26736e-11
-1.80984e-11
1.04377e-11
-1.89405e-11
8.31819e-12
-1.95523e-11
6.32791e-12
-1.99511e-11
4.47543e-12
-2.01573e-11
2.76812e-12
-2.01889e-11
1.20328e-12
-2.00659e-11
-2.1996e-13
-1.98024e-11
-1.51525e-12
-1.94119e-11
-2.6924e-12
-1.89119e-11
-3.7594e-12
-1.83126e-11
-4.72937e-12
-1.76205e-11
-5.62269e-12
-1.68494e-11
-6.44163e-12
-1.5997e-11
-7.21311e-12
-1.5073e-11
-7.93258e-12
-1.40794e-11
-8.61393e-12
-1.30186e-11
-9.27817e-12
-1.18916e-11
-9.90639e-12
-1.07047e-11
-1.05087e-11
-9.46028e-12
-1.10873e-11
-8.15148e-12
-1.16456e-11
-6.79296e-12
-1.21658e-11
-5.38383e-12
-1.26497e-11
-3.92917e-12
-1.30893e-11
-2.43161e-12
-1.34756e-11
-9.072e-13
-1.3798e-11
6.45789e-13
-1.40577e-11
2.21539e-12
-1.42427e-11
3.79233e-12
-1.43492e-11
5.36659e-12
-1.43682e-11
6.9276e-12
-1.42992e-11
8.46599e-12
-1.41431e-11
9.97337e-12
-1.39006e-11
1.14391e-11
-1.35632e-11
1.28506e-11
-1.31282e-11
1.41971e-11
-1.26039e-11
1.54733e-11
-1.20008e-11
1.66711e-11
-1.13146e-11
1.77792e-11
-1.05456e-11
1.87874e-11
-9.70963e-12
1.96918e-11
-8.81782e-12
2.04891e-11
-7.8748e-12
2.11722e-11
-6.88807e-12
2.17357e-11
-5.87104e-12
2.21796e-11
-4.83865e-12
2.25059e-11
-3.8043e-12
2.27156e-11
-2.77977e-12
2.28106e-11
-1.77608e-12
2.27961e-11
-8.07307e-13
2.26806e-11
1.09662e-13
2.24737e-11
9.63051e-13
2.21818e-11
1.7513e-12
2.18114e-11
2.4681e-12
2.13745e-11
3.10636e-12
2.08821e-11
3.65944e-12
2.03429e-11
4.13083e-12
1.97671e-11
4.52476e-12
1.91656e-11
4.84212e-12
1.85458e-11
5.08663e-12
1.79129e-11
5.26858e-12
1.72728e-11
5.40009e-12
1.66321e-11
5.48844e-12
1.59951e-11
5.54097e-12
1.53615e-11
5.57057e-12
1.47298e-11
5.58891e-12
1.4102e-11
5.59994e-12
1.3478e-11
5.608e-12
1.2854e-11
5.62431e-12
1.22293e-11
5.65176e-12
1.16045e-11
5.68298e-12
1.09769e-11
5.71993e-12
1.03432e-11
5.76669e-12
9.70371e-12
5.81868e-12
9.057e-12
5.87424e-12
8.40213e-12
5.93634e-12
7.74254e-12
5.9986e-12
7.07883e-12
6.05377e-12
6.40805e-12
6.09955e-12
5.73072e-12
6.13262e-12
5.04605e-12
6.16137e-12
4.36153e-12
6.18828e-12
3.67914e-12
6.20951e-12
2.99609e-12
6.23692e-12
2.31125e-12
6.25612e-12
1.62819e-12
6.22553e-12
9.78056e-13
5.94717e-12
3.92983e-13
5.25448e-12
3.52695e-12
1.28752e-11
2.00805e-11
9.29754e-12
3.19497e-11
5.4239e-12
3.49302e-11
1.67891e-12
3.40949e-11
-1.80931e-12
3.23377e-11
-5.00637e-12
3.00241e-11
-7.88876e-12
2.74922e-11
-1.04489e-11
2.48165e-11
-1.26876e-11
2.20759e-11
-1.46115e-11
1.93291e-11
-1.62323e-11
1.66261e-11
-1.75647e-11
1.40059e-11
-1.86257e-11
1.14986e-11
-1.94339e-11
9.12644e-12
-2.00091e-11
6.90311e-12
-2.03712e-11
4.83752e-12
-2.05415e-11
2.93848e-12
-2.05419e-11
1.20379e-12
-2.03859e-11
-3.75818e-13
-2.00928e-11
-1.80823e-12
-1.96783e-11
-3.10673e-12
-1.91559e-11
-4.28166e-12
-1.85336e-11
-5.35144e-12
-1.7824e-11
-6.3321e-12
-1.7035e-11
-7.23041e-12
-1.61683e-11
-8.07956e-12
-1.52315e-11
-8.86913e-12
-1.42277e-11
-9.61753e-12
-1.31618e-11
-1.03437e-11
-1.20324e-11
-1.10355e-11
-1.08397e-11
-1.17011e-11
-9.58829e-12
-1.23383e-11
-8.27728e-12
-1.29561e-11
-6.90865e-12
-1.35339e-11
-5.48823e-12
-1.40696e-11
-4.02448e-12
-1.45525e-11
-2.51553e-12
-1.4984e-11
-9.73473e-13
-1.53395e-11
5.99238e-13
-1.56299e-11
2.18917e-12
-1.58322e-11
3.78631e-12
-1.59459e-11
5.38262e-12
-1.5964e-11
6.9685e-12
-1.58846e-11
8.53133e-12
-1.57054e-11
1.00597e-11
-1.54284e-11
1.15473e-11
-1.50502e-11
1.29834e-11
-1.45637e-11
1.43543e-11
-1.39741e-11
1.56496e-11
-1.32954e-11
1.68642e-11
-1.25283e-11
1.79896e-11
-1.16702e-11
1.90146e-11
-1.07338e-11
1.99316e-11
-9.73389e-12
2.07367e-11
-8.67914e-12
2.14262e-11
-7.57679e-12
2.19949e-11
-6.439e-12
2.24407e-11
-5.28373e-12
2.27644e-11
-4.12729e-12
2.29684e-11
-2.98305e-12
2.30563e-11
-1.86324e-12
2.3033e-11
-7.83246e-13
2.29052e-11
2.38347e-13
2.26808e-11
1.18824e-12
2.2368e-11
2.06484e-12
2.19763e-11
2.8605e-12
2.15178e-11
3.56555e-12
2.10027e-11
4.17527e-12
2.04414e-11
4.69295e-12
1.98459e-11
5.1212e-12
1.92266e-11
5.46234e-12
1.85907e-11
5.72365e-12
1.7944e-11
5.91627e-12
1.72939e-11
6.05134e-12
1.6647e-11
6.13644e-12
1.60057e-11
6.18339e-12
1.53681e-11
6.20925e-12
1.47344e-11
6.22369e-12
1.41064e-11
6.22904e-12
1.34821e-11
6.23333e-12
1.28584e-11
6.24887e-12
1.22361e-11
6.27492e-12
1.16147e-11
6.30517e-12
1.09889e-11
6.34649e-12
1.03565e-11
6.39987e-12
9.71812e-12
6.45799e-12
9.07095e-12
6.52238e-12
8.41651e-12
6.59174e-12
7.758e-12
6.65806e-12
7.09238e-12
6.72041e-12
6.4187e-12
6.77438e-12
5.73641e-12
6.81619e-12
5.04783e-12
6.85123e-12
4.36189e-12
6.87542e-12
3.67819e-12
6.89432e-12
2.9949e-12
6.92132e-12
2.30907e-12
6.9431e-12
1.63328e-12
6.9024e-12
9.81043e-13
6.60032e-12
3.84107e-13
5.85218e-12
3.91145e-12
1.27441e-11
2.21616e-11
9.04264e-12
3.56507e-11
5.03429e-12
3.89381e-11
1.17359e-12
3.79551e-11
-2.38816e-12
3.5899e-11
-5.63951e-12
3.3275e-11
-8.55718e-12
3.04096e-11
-1.11358e-11
2.73948e-11
-1.3379e-11
2.43189e-11
-1.52957e-11
2.12456e-11
-1.68992e-11
1.82296e-11
-1.82062e-11
1.53129e-11
-1.92354e-11
1.25277e-11
-2.0007e-11
9.89807e-12
-2.05418e-11
7.43792e-12
-2.08637e-11
5.15934e-12
-2.09935e-11
3.06835e-12
-2.09522e-11
1.16238e-12
-2.07588e-11
-5.69258e-13
-2.04302e-11
-2.13677e-12
-1.99843e-11
-3.55267e-12
-1.94325e-11
-4.83351e-12
-1.87863e-11
-5.99776e-12
-1.80564e-11
-7.06197e-12
-1.72477e-11
-8.03918e-12
-1.63674e-11
-8.95984e-12
-1.54202e-11
-9.81636e-12
-1.4409e-11
-1.06287e-11
-1.33348e-11
-1.14179e-11
-1.21966e-11
-1.21736e-11
-1.09998e-11
-1.28979e-11
-9.73813e-12
-1.35998e-11
-8.42036e-12
-1.42738e-11
-7.04473e-12
-1.49093e-11
-5.61324e-12
-1.55009e-11
-4.13064e-12
-1.60349e-11
-2.60798e-12
-1.65064e-11
-1.03994e-12
-1.69074e-11
5.46902e-13
-1.72166e-11
2.15808e-12
-1.74432e-11
3.78015e-12
-1.75678e-11
5.40197e-12
-1.75857e-11
7.01339e-12
-1.74958e-11
8.60404e-12
-1.72959e-11
1.01602e-11
-1.69843e-11
1.16716e-11
-1.65612e-11
1.31308e-11
-1.60225e-11
1.45275e-11
-1.53703e-11
1.58476e-11
-1.4615e-11
1.70819e-11
-1.37619e-11
1.8224e-11
-1.28117e-11
1.92657e-11
-1.17749e-11
2.01978e-11
-1.06653e-11
2.10139e-11
-9.49474e-12
2.171e-11
-8.27237e-12
2.22827e-11
-7.01114e-12
2.27299e-11
-5.73046e-12
2.30511e-11
-4.44809e-12
2.32484e-11
-3.17993e-12
2.33265e-11
-1.94084e-12
2.32912e-11
-7.47506e-13
2.31482e-11
3.81807e-13
2.29039e-11
1.43296e-12
2.25683e-11
2.40084e-12
2.21536e-11
3.27567e-12
2.16712e-11
4.04841e-12
2.11319e-11
4.71513e-12
2.05476e-11
5.27784e-12
1.99308e-11
5.73869e-12
1.92915e-11
6.1024e-12
1.86373e-11
6.37866e-12
1.79761e-11
6.57839e-12
1.73157e-11
6.71273e-12
1.66614e-11
6.79173e-12
1.60138e-11
6.83212e-12
1.5372e-11
6.85207e-12
1.47371e-11
6.85963e-12
1.41087e-11
6.85844e-12
1.34843e-11
6.85865e-12
1.28629e-11
6.87111e-12
1.22447e-11
6.89393e-12
1.16264e-11
6.92429e-12
1.10024e-11
6.97148e-12
1.03719e-11
7.0313e-12
9.7342e-12
7.09679e-12
9.08745e-12
7.17024e-12
8.43475e-12
7.24557e-12
7.77585e-12
7.31817e-12
7.10774e-12
7.38984e-12
6.43087e-12
7.4527e-12
5.74384e-12
7.5047e-12
5.05237e-12
7.54406e-12
4.36216e-12
7.56688e-12
3.67541e-12
7.58228e-12
2.98948e-12
7.60847e-12
2.30577e-12
7.628e-12
1.63949e-12
7.56972e-12
9.8203e-13
7.25862e-12
3.87833e-13
6.44719e-12
4.29975e-12
1.26555e-11
2.43483e-11
8.78306e-12
3.95225e-11
4.60439e-12
4.31162e-11
6.03992e-13
4.1955e-11
-3.04241e-12
3.9545e-11
-6.35314e-12
3.65854e-11
-9.30591e-12
3.3362e-11
-1.18996e-11
2.99883e-11
-1.4142e-11
2.65612e-11
-1.60453e-11
2.31488e-11
-1.76256e-11
1.98099e-11
-1.89016e-11
1.65889e-11
-1.98943e-11
1.35204e-11
-2.06259e-11
1.06297e-11
-2.11191e-11
7.93111e-12
-2.13983e-11
5.43846e-12
-2.14865e-11
3.1564e-12
-2.1401e-11
1.07678e-12
-2.11683e-11
-8.02092e-13
-2.08021e-11
-2.50306e-12
-2.03192e-11
-4.03572e-12
-1.97372e-11
-5.41571e-12
-1.90658e-11
-6.66932e-12
-1.83149e-11
-7.81304e-12
-1.74908e-11
-8.86347e-12
-1.6595e-11
-9.85582e-12
-1.56379e-11
-1.07736e-11
-1.46172e-11
-1.16494e-11
-1.35377e-11
-1.24974e-11
-1.2395e-11
-1.33163e-11
-1.11878e-11
-1.41051e-11
-9.91926e-12
-1.48683e-11
-8.58863e-12
-1.56043e-11
-7.1969e-12
-1.6301e-11
-5.75311e-12
-1.69446e-11
-4.25543e-12
-1.75325e-11
-2.7106e-12
-1.80512e-11
-1.1298e-12
-1.84882e-11
4.87594e-13
-1.8834e-11
2.12317e-12
-1.90788e-11
3.77029e-12
-1.92149e-11
5.4197e-12
-1.9235e-11
7.05831e-12
-1.91343e-11
8.67692e-12
-1.89143e-11
1.0265e-11
-1.85721e-11
1.18076e-11
-1.81035e-11
1.32938e-11
-1.75082e-11
1.47154e-11
-1.67915e-11
1.60611e-11
-1.59601e-11
1.73193e-11
-1.50195e-11
1.84826e-11
-1.39744e-11
1.95426e-11
-1.28343e-11
2.04906e-11
-1.16127e-11
2.13194e-11
-1.0323e-11
2.20243e-11
-8.97685e-12
2.26024e-11
-7.58871e-12
2.30505e-11
-6.17812e-12
2.33683e-11
-4.76554e-12
2.35584e-11
-3.36954e-12
2.36254e-11
-2.00746e-12
2.35746e-11
-6.96449e-13
2.34116e-11
5.45172e-13
2.31442e-11
1.70066e-12
2.2785e-11
2.76043e-12
2.23458e-11
3.71532e-12
2.18375e-11
4.55718e-12
2.12719e-11
5.28124e-12
2.06624e-11
5.88791e-12
2.00217e-11
6.38009e-12
1.93597e-11
6.76511e-12
1.86852e-11
7.05386e-12
1.80077e-11
7.2567e-12
1.73356e-11
7.38566e-12
1.66727e-11
7.45568e-12
1.60187e-11
7.48713e-12
1.53743e-11
7.49748e-12
1.47389e-11
7.49598e-12
1.41095e-11
7.48868e-12
1.34849e-11
7.48405e-12
1.28665e-11
7.49022e-12
1.22529e-11
7.50842e-12
1.16373e-11
7.54077e-12
1.10163e-11
7.59353e-12
1.03888e-11
7.65983e-12
9.75197e-12
7.73468e-12
9.10715e-12
7.81614e-12
8.45634e-12
7.89753e-12
7.79635e-12
7.97945e-12
7.1274e-12
8.06021e-12
6.44774e-12
8.13382e-12
5.75756e-12
8.19627e-12
5.06267e-12
8.24019e-12
4.36401e-12
8.2667e-12
3.66916e-12
8.2783e-12
2.97549e-12
8.30333e-12
2.2979e-12
8.30671e-12
1.63815e-12
8.2304e-12
9.82843e-13
7.91477e-12
3.99502e-13
7.03144e-12
4.69979e-12
1.2557e-11
2.6751e-11
8.48425e-12
4.35946e-11
4.12335e-12
4.74766e-11
-1.45586e-14
4.60925e-11
-3.76468e-12
4.32947e-11
-7.14297e-12
3.99634e-11
-1.01346e-11
3.63534e-11
-1.27453e-11
3.25989e-11
-1.49853e-11
2.88011e-11
-1.68707e-11
2.50342e-11
-1.8421e-11
2.13602e-11
-1.96582e-11
1.78261e-11
-2.06056e-11
1.44678e-11
-2.12884e-11
1.13124e-11
-2.17316e-11
8.37425e-12
-2.19595e-11
5.66622e-12
-2.19965e-11
3.19327e-12
-2.18658e-11
9.46001e-13
-2.15851e-11
-1.08291e-12
-2.11784e-11
-2.90989e-12
-2.066e-11
-4.55433e-12
-2.00449e-11
-6.03095e-12
-1.93474e-11
-7.36693e-12
-1.85737e-11
-8.58683e-12
-1.77355e-11
-9.7018e-12
-1.68308e-11
-1.07605e-11
-1.58623e-11
-1.17421e-11
-1.48325e-11
-1.26792e-11
-1.37461e-11
-1.35838e-11
-1.25956e-11
-1.44668e-11
-1.13812e-11
-1.53194e-11
-1.01015e-11
-1.61479e-11
-8.76237e-12
-1.69433e-11
-7.36336e-12
-1.76999e-11
-5.90148e-12
-1.84063e-11
-4.38665e-12
-1.90472e-11
-2.82187e-12
-1.96158e-11
-1.21682e-12
-2.0093e-11
4.25489e-13
-2.04761e-11
2.08873e-12
-2.07418e-11
3.76488e-12
-2.08907e-11
5.44383e-12
-2.09136e-11
7.11424e-12
-2.08043e-11
8.76407e-12
-2.05636e-11
1.03819e-11
-2.01894e-11
1.19554e-11
-1.96763e-11
1.34718e-11
-1.9024e-11
1.49208e-11
-1.82397e-11
1.62928e-11
-1.73313e-11
1.75774e-11
-1.63033e-11
1.87648e-11
-1.5161e-11
1.98459e-11
-1.39146e-11
2.08118e-11
-1.25779e-11
2.16551e-11
-1.11657e-11
2.23706e-11
-9.69166e-12
2.29543e-11
-8.17168e-12
2.34034e-11
-6.62655e-12
2.37178e-11
-5.07925e-12
2.38994e-11
-3.55057e-12
2.39526e-11
-2.06004e-12
2.38835e-11
-6.26848e-13
2.36989e-11
7.30257e-13
2.34072e-11
1.99278e-12
2.30213e-11
3.14693e-12
2.2554e-11
4.18328e-12
2.20171e-11
5.09481e-12
2.14231e-11
5.87601e-12
2.07859e-11
6.52589e-12
2.01181e-11
7.04855e-12
1.94309e-11
7.45309e-12
1.87347e-11
7.75079e-12
1.80394e-11
7.95279e-12
1.73534e-11
8.07258e-12
1.668e-11
8.13006e-12
1.60198e-11
8.14844e-12
1.53729e-11
8.14528e-12
1.47376e-11
8.13215e-12
1.41091e-11
8.1178e-12
1.34863e-11
8.10755e-12
1.28715e-11
8.10568e-12
1.22622e-11
8.11858e-12
1.16502e-11
8.15378e-12
1.10328e-11
8.21193e-12
1.04078e-11
8.28575e-12
9.77258e-12
8.3708e-12
9.1291e-12
8.46055e-12
8.47743e-12
8.55023e-12
7.81564e-12
8.64241e-12
7.1458e-12
8.73132e-12
6.46577e-12
8.81508e-12
5.7758e-12
8.88734e-12
5.08026e-12
8.93673e-12
4.37714e-12
8.9708e-12
3.67174e-12
8.98473e-12
2.98074e-12
8.99536e-12
2.30187e-12
8.9865e-12
1.63075e-12
8.90235e-12
9.7648e-13
8.5699e-12
4.04159e-13
7.60476e-12
5.10449e-12
1.23492e-11
2.93292e-11
8.07927e-12
4.7864e-11
3.54227e-12
5.20132e-11
-7.19445e-13
5.03538e-11
-4.5826e-12
4.71576e-11
-8.02721e-12
4.34078e-11
-1.10564e-11
3.93824e-11
-1.36817e-11
3.5224e-11
-1.5917e-11
3.10364e-11
-1.77819e-11
2.6899e-11
-1.92984e-11
2.28768e-11
-2.04921e-11
1.90197e-11
-2.13891e-11
1.53647e-11
-2.20159e-11
1.19392e-11
-2.24025e-11
8.76075e-12
-2.25716e-11
5.83524e-12
-2.25514e-11
3.17295e-12
-2.23664e-11
7.60975e-13
-2.20356e-11
-1.41379e-12
-2.15817e-11
-3.36383e-12
-2.10216e-11
-5.11443e-12
-2.03706e-11
-6.68196e-12
-1.96404e-11
-8.09705e-12
-1.88422e-11
-9.38492e-12
-1.79793e-11
-1.05646e-11
-1.70626e-11
-1.1677e-11
-1.60844e-11
-1.27201e-11
-1.50493e-11
-1.3714e-11
-1.39539e-11
-1.46789e-11
-1.2797e-11
-1.56233e-11
-1.15782e-11
-1.6538e-11
-1.02954e-11
-1.74303e-11
-8.94472e-12
-1.82936e-11
-7.52871e-12
-1.91154e-11
-6.05862e-12
-1.98759e-11
-4.52181e-12
-2.05835e-11
-2.93614e-12
-2.1201e-11
-1.29731e-12
-2.17314e-11
3.65015e-13
-2.21378e-11
2.05798e-12
-2.24341e-11
3.76679e-12
-2.25989e-11
5.47931e-12
-2.26254e-11
7.18417e-12
-2.25083e-11
8.86798e-12
-2.22465e-11
1.05177e-11
-2.18382e-11
1.21216e-11
-2.12792e-11
1.36681e-11
-2.05694e-11
1.51471e-11
-1.97177e-11
1.65485e-11
-1.87317e-11
1.78611e-11
-1.76148e-11
1.90741e-11
-1.63729e-11
2.01779e-11
-1.50174e-11
2.11635e-11
-1.35626e-11
2.20227e-11
-1.20239e-11
2.27492e-11
-1.04171e-11
2.33389e-11
-8.76033e-12
2.37895e-11
-7.07611e-12
2.40998e-11
-5.38856e-12
2.42711e-11
-3.7209e-12
2.43078e-11
-2.09592e-12
2.42174e-11
-5.35688e-13
2.40086e-11
9.39849e-13
2.36905e-11
2.31175e-12
2.32751e-11
3.56323e-12
2.27764e-11
4.68291e-12
2.22083e-11
5.66395e-12
2.15842e-11
6.50118e-12
2.09177e-11
7.19338e-12
2.02215e-11
7.74561e-12
1.95083e-11
8.1671e-12
1.8791e-11
8.4689e-12
1.8079e-11
8.66563e-12
1.73769e-11
8.77569e-12
1.66874e-11
8.82055e-12
1.60146e-11
8.82228e-12
1.53601e-11
8.80069e-12
1.47233e-11
8.76971e-12
1.41014e-11
8.7403e-12
1.34905e-11
8.71901e-12
1.28868e-11
8.71011e-12
1.22826e-11
8.72367e-12
1.16735e-11
8.76388e-12
1.10572e-11
8.82915e-12
1.04308e-11
8.91287e-12
9.79624e-12
9.0061e-12
9.15176e-12
9.10576e-12
8.49348e-12
9.20938e-12
7.82484e-12
9.31203e-12
7.14742e-12
9.40973e-12
6.46378e-12
9.4996e-12
5.77511e-12
9.57677e-12
5.08005e-12
9.63251e-12
4.38487e-12
9.66676e-12
3.68759e-12
9.68285e-12
2.99931e-12
9.68445e-12
2.31111e-12
9.67544e-12
1.62506e-12
9.58914e-12
9.62431e-13
9.23342e-12
3.84116e-13
8.18406e-12
5.48907e-12
1.20213e-11
3.19975e-11
7.54612e-12
5.23388e-11
2.83496e-12
5.6724e-11
-1.5691e-12
5.47576e-11
-5.53099e-12
5.11191e-11
-9.03577e-12
4.69123e-11
-1.20944e-11
4.24409e-11
-1.47241e-11
3.78535e-11
-1.69453e-11
3.32576e-11
-1.87816e-11
2.87351e-11
-2.02577e-11
2.43527e-11
-2.14014e-11
2.01632e-11
-2.22433e-11
1.62065e-11
-2.28093e-11
1.25051e-11
-2.31323e-11
9.08367e-12
-2.32395e-11
5.94239e-12
-2.31564e-11
3.08984e-12
-2.29096e-11
5.14182e-13
-2.2523e-11
-1.8003e-12
-2.20173e-11
-3.86935e-12
-2.14116e-11
-5.71992e-12
-2.07208e-11
-7.37247e-12
-1.99582e-11
-8.85929e-12
-1.91338e-11
-1.0209e-11
-1.82492e-11
-1.14488e-11
-1.73156e-11
-1.26102e-11
-1.63271e-11
-1.3708e-11
-1.52847e-11
-1.47558e-11
-1.41846e-11
-1.57783e-11
-1.30223e-11
-1.67851e-11
-1.17967e-11
-1.77629e-11
-1.05063e-11
-1.87201e-11
-9.14713e-12
-1.96521e-11
-7.7223e-12
-2.05396e-11
-6.22521e-12
-2.13724e-11
-4.67607e-12
-2.21319e-11
-3.05831e-12
-2.2818e-11
-1.4051e-12
-2.33837e-11
2.93971e-13
-2.3836e-11
2.02022e-12
-2.41594e-11
3.76398e-12
-2.43416e-11
5.51244e-12
-2.43727e-11
7.25294e-12
-2.42476e-11
8.97184e-12
-2.39642e-11
1.06566e-11
-2.35217e-11
1.22954e-11
-2.29167e-11
1.38766e-11
-2.21493e-11
1.53893e-11
-2.12291e-11
1.68232e-11
-2.01643e-11
1.8167e-11
-1.89573e-11
1.94086e-11
-1.76134e-11
2.05375e-11
-1.6145e-11
2.15446e-11
-1.45685e-11
2.24215e-11
-1.28996e-11
2.3161e-11
-1.11553e-11
2.37582e-11
-9.35622e-12
2.42105e-11
-7.52703e-12
2.45166e-11
-5.69346e-12
2.46779e-11
-3.88096e-12
2.46985e-11
-2.11545e-12
2.4586e-11
-4.22166e-13
2.43503e-11
1.17662e-12
2.40022e-11
2.66104e-12
2.35539e-11
4.01273e-12
2.30199e-11
5.21812e-12
2.24159e-11
6.26927e-12
2.17568e-11
7.16151e-12
2.10566e-11
7.89468e-12
2.03289e-11
8.47435e-12
1.95877e-11
8.90917e-12
1.88462e-11
9.21119e-12
1.8113e-11
9.3998e-12
1.7392e-11
9.49764e-12
1.66883e-11
9.52529e-12
1.60063e-11
9.50515e-12
1.53474e-11
9.46046e-12
1.47104e-11
9.40737e-12
1.40937e-11
9.35759e-12
1.34928e-11
9.32052e-12
1.28967e-11
9.30704e-12
1.22973e-11
9.32399e-12
1.16925e-11
9.36965e-12
1.10795e-11
9.44294e-12
1.04563e-11
9.53674e-12
9.82348e-12
9.63951e-12
9.17747e-12
9.7524e-12
8.51543e-12
9.87216e-12
7.84134e-12
9.98689e-12
7.15693e-12
1.00949e-11
6.46677e-12
1.01904e-11
5.77572e-12
1.02683e-11
5.08559e-12
1.03232e-11
4.39372e-12
1.03593e-11
3.70072e-12
1.03765e-11
3.00706e-12
1.03787e-11
2.31166e-12
1.03714e-11
1.61692e-12
1.02846e-11
9.50277e-13
9.90092e-12
3.66202e-13
8.76901e-12
5.8556e-12
1.16022e-11
3.47891e-11
6.91821e-12
5.70226e-11
2.03368e-12
6.16082e-11
-2.52235e-12
5.93132e-11
-6.58621e-12
5.51826e-11
-1.0155e-11
5.04808e-11
-1.32437e-11
4.55293e-11
-1.58746e-11
4.04842e-11
-1.80747e-11
3.54574e-11
-1.98727e-11
3.05328e-11
-2.12985e-11
2.57781e-11
-2.23834e-11
2.12478e-11
-2.31597e-11
1.69826e-11
-2.36584e-11
1.30036e-11
-2.39109e-11
9.33608e-12
-2.3948e-11
5.97946e-12
-2.37967e-11
2.9386e-12
-2.34861e-11
2.03749e-13
-2.30387e-11
-2.24752e-12
-2.24781e-11
-4.42965e-12
-2.18234e-11
-6.37421e-12
-2.10918e-11
-8.10359e-12
-2.02936e-11
-9.65703e-12
-1.94414e-11
-1.10606e-11
-1.85377e-11
-1.23518e-11
-1.7588e-11
-1.35593e-11
-1.65889e-11
-1.47063e-11
-1.55398e-11
-1.58043e-11
-1.44358e-11
-1.68816e-11
-1.32703e-11
-1.79499e-11
-1.20387e-11
-1.89937e-11
-1.0741e-11
-2.00171e-11
-9.37384e-12
-2.10185e-11
-7.93122e-12
-2.19815e-11
-6.42689e-12
-2.28759e-11
-4.84532e-12
-2.37127e-11
-3.21447e-12
-2.44479e-11
-1.52536e-12
-2.50719e-11
2.05691e-13
-2.5566e-11
1.96853e-12
-2.59211e-11
3.75015e-12
-2.6122e-11
5.53788e-12
-2.61592e-11
7.31865e-12
-2.60271e-11
9.07754e-12
-2.57218e-11
1.08011e-11
-2.52439e-11
1.24785e-11
-2.45928e-11
1.40989e-11
-2.37684e-11
1.56497e-11
-2.27786e-11
1.71189e-11
-2.16322e-11
1.84953e-11
-2.03325e-11
1.97673e-11
-1.88842e-11
2.09238e-11
-1.73003e-11
2.19547e-11
-1.55982e-11
2.28513e-11
-1.37949e-11
2.36056e-11
-1.19083e-11
2.42121e-11
-9.96134e-12
2.46673e-11
-7.98081e-12
2.49697e-11
-5.99462e-12
2.51209e-11
-4.03089e-12
2.51253e-11
-2.11867e-12
2.49904e-11
-2.86149e-13
2.47265e-11
1.44164e-12
2.43456e-11
3.04317e-12
2.38609e-11
4.49874e-12
2.32875e-11
5.79292e-12
2.26419e-11
6.91612e-12
2.1941e-11
7.86361e-12
2.12006e-11
8.63619e-12
2.04362e-11
9.23967e-12
1.96633e-11
9.68296e-12
1.88936e-11
9.98176e-12
1.81356e-11
1.01586e-11
1.73966e-11
1.02376e-11
1.66827e-11
1.02401e-11
1.59958e-11
1.01929e-11
1.53352e-11
1.01218e-11
1.47002e-11
1.00429e-11
1.40881e-11
9.97034e-12
1.34908e-11
9.91858e-12
1.28986e-11
9.90015e-12
1.23061e-11
9.91739e-12
1.17086e-11
9.96808e-12
1.11014e-11
1.00509e-11
1.04842e-11
1.01546e-11
9.854e-12
1.02703e-11
9.20702e-12
1.04001e-11
8.5446e-12
1.05353e-11
7.86775e-12
1.06644e-11
7.18025e-12
1.0783e-11
6.48638e-12
1.08847e-11
5.78805e-12
1.09672e-11
5.09588e-12
1.1016e-11
4.40662e-12
1.10492e-11
3.71488e-12
1.10689e-11
3.01174e-12
1.10824e-11
2.30962e-12
1.10741e-11
1.6129e-12
1.0982e-11
9.43736e-13
1.05709e-11
3.67914e-13
9.34552e-12
6.22372e-12
1.10658e-11
3.78178e-11
6.18442e-12
6.19037e-11
1.12112e-12
6.66711e-11
-3.58287e-12
6.40168e-11
-7.7422e-12
5.93416e-11
-1.13691e-11
5.41073e-11
-1.44842e-11
4.8644e-11
-1.71156e-11
4.31152e-11
-1.92937e-11
3.76351e-11
-2.10513e-11
3.22899e-11
-2.24224e-11
2.71487e-11
-2.34415e-11
2.22665e-11
-2.41441e-11
1.76849e-11
-2.45673e-11
1.34266e-11
-2.47411e-11
9.50978e-12
-2.46998e-11
5.93812e-12
-2.44741e-11
2.71302e-12
-2.40918e-11
-1.7839e-13
-2.35789e-11
-2.76015e-12
-2.29597e-11
-5.04845e-12
-2.22555e-11
-7.07806e-12
-2.14779e-11
-8.88068e-12
-2.06474e-11
-1.0487e-11
-1.97664e-11
-1.19409e-11
-1.88436e-11
-1.32741e-11
-1.78769e-11
-1.45254e-11
-1.68668e-11
-1.57158e-11
-1.58116e-11
-1.68588e-11
-1.47027e-11
-1.79898e-11
-1.35326e-11
-1.91193e-11
-1.2298e-11
-2.02276e-11
-1.09943e-11
-2.13202e-11
-9.61475e-12
-2.23974e-11
-8.16613e-12
-2.34294e-11
-6.63396e-12
-2.44073e-11
-5.04227e-12
-2.53036e-11
-3.37564e-12
-2.61137e-11
-1.6566e-12
-2.679e-11
1.10013e-13
-2.73317e-11
1.91196e-12
-2.7722e-11
3.73553e-12
-2.79445e-11
5.56635e-12
-2.79889e-11
7.38957e-12
-2.78492e-11
9.1916e-12
-2.75227e-11
1.09583e-11
-2.70095e-11
1.26773e-11
-2.63107e-11
1.43384e-11
-2.54283e-11
1.59292e-11
-2.43682e-11
1.74366e-11
-2.31386e-11
1.88481e-11
-2.17429e-11
2.01525e-11
-2.01876e-11
2.13391e-11
-1.84858e-11
2.23967e-11
-1.66548e-11
2.33154e-11
-1.47125e-11
2.40864e-11
-1.26781e-11
2.47029e-11
-1.05766e-11
2.51614e-11
-8.43812e-12
2.54604e-11
-6.29245e-12
2.56006e-11
-4.17002e-12
2.55867e-11
-2.10372e-12
2.54268e-11
-1.25213e-13
2.51316e-11
1.73785e-12
2.47142e-11
3.46165e-12
2.41892e-11
5.02492e-12
2.35723e-11
6.41093e-12
2.28815e-11
7.60805e-12
2.21354e-11
8.61077e-12
2.13515e-11
9.42092e-12
2.05474e-11
1.00447e-11
1.97392e-11
1.04919e-11
1.89389e-11
1.07828e-11
1.81553e-11
1.0943e-11
1.73976e-11
1.09961e-11
1.6672e-11
1.09664e-11
1.59783e-11
1.08873e-11
1.53159e-11
1.07848e-11
1.46846e-11
1.0675e-11
1.40788e-11
1.05769e-11
1.34874e-11
1.05108e-11
1.29027e-11
1.04857e-11
1.23195e-11
1.05016e-11
1.17293e-11
1.05591e-11
1.11285e-11
1.06525e-11
1.05164e-11
1.07674e-11
9.88734e-12
1.09001e-11
9.24012e-12
1.10481e-11
8.57635e-12
1.11999e-11
7.89617e-12
1.13453e-11
7.20606e-12
1.14737e-11
6.50654e-12
1.15848e-11
5.80558e-12
1.16688e-11
5.11266e-12
1.17096e-11
4.42231e-12
1.17402e-11
3.71964e-12
1.17721e-11
3.00997e-12
1.17926e-11
2.30376e-12
1.1781e-11
1.60472e-12
1.16818e-11
9.43236e-13
1.1233e-11
3.66179e-13
9.92307e-12
6.59007e-12
1.03659e-11
4.08893e-11
5.28268e-12
6.69865e-11
3.26087e-14
7.19208e-11
-4.80023e-12
6.88493e-11
-9.04398e-12
6.3585e-11
-1.27148e-11
5.77778e-11
-1.58432e-11
5.17719e-11
-1.84629e-11
4.57345e-11
-2.06095e-11
3.97812e-11
-2.23202e-11
3.40002e-11
-2.36325e-11
2.84606e-11
-2.45821e-11
2.32156e-11
-2.52073e-11
1.83098e-11
-2.55477e-11
1.37667e-11
-2.56355e-11
9.59744e-12
-2.55083e-11
5.81077e-12
-2.51994e-11
2.40413e-12
-2.4737e-11
-6.40652e-13
-2.41552e-11
-3.34177e-12
-2.34709e-11
-5.73255e-12
-2.27089e-11
-7.83979e-12
-2.1886e-11
-9.70322e-12
-2.10172e-11
-1.13554e-11
-2.01066e-11
-1.28511e-11
-1.91586e-11
-1.42216e-11
-1.81744e-11
-1.55092e-11
-1.71566e-11
-1.67331e-11
-1.60931e-11
-1.79217e-11
-1.49802e-11
-1.91022e-11
-1.38067e-11
-2.02922e-11
-1.25711e-11
-2.14628e-11
-1.12588e-11
-2.26319e-11
-9.87293e-12
-2.37828e-11
-8.40445e-12
-2.48974e-11
-6.85773e-12
-2.59535e-11
-5.22805e-12
-2.69327e-11
-3.53921e-12
-2.7802e-11
-1.7861e-12
-2.85425e-11
2.05261e-14
-2.91376e-11
1.86448e-12
-2.95652e-11
3.73026e-12
-2.98094e-11
5.60331e-12
-2.98611e-11
7.46918e-12
-2.97142e-11
9.31495e-12
-2.93676e-11
1.11271e-11
-2.88208e-11
1.28918e-11
-2.80747e-11
1.45979e-11
-2.71336e-11
1.6233e-11
-2.60026e-11
1.77834e-11
-2.46882e-11
1.92367e-11
-2.31954e-11
2.05809e-11
-2.15311e-11
2.18027e-11
-1.97068e-11
2.28892e-11
-1.77405e-11
2.38299e-11
-1.56524e-11
2.46162e-11
-1.34636e-11
2.52411e-11
-1.12006e-11
2.56996e-11
-8.8958e-12
2.59904e-11
-6.58232e-12
2.61154e-11
-4.29423e-12
2.60795e-11
-2.06701e-12
2.58901e-11
6.4944e-14
2.55588e-11
2.07008e-12
2.51001e-11
3.92119e-12
2.45304e-11
5.59545e-12
2.38675e-11
7.07466e-12
2.31308e-11
8.34558e-12
2.23395e-11
9.40286e-12
2.15118e-11
1.02493e-11
2.06658e-11
1.08914e-11
1.98181e-11
1.13404e-11
1.8982e-11
1.16196e-11
1.81696e-11
1.1756e-11
1.73914e-11
1.17749e-11
1.66523e-11
1.17061e-11
1.59516e-11
1.15886e-11
1.52889e-11
1.14482e-11
1.46623e-11
1.13022e-11
1.40634e-11
1.11765e-11
1.34811e-11
1.1094e-11
1.2908e-11
1.10597e-11
1.2336e-11
1.10744e-11
1.17549e-11
1.1141e-11
1.11615e-11
1.12467e-11
1.05535e-11
1.13763e-11
9.92464e-12
1.15299e-11
9.27655e-12
1.16971e-11
8.60951e-12
1.18678e-11
7.92656e-12
1.20291e-11
7.23453e-12
1.21664e-11
6.53227e-12
1.22878e-11
5.83237e-12
1.23695e-11
5.13259e-12
1.24102e-11
4.42879e-12
1.24447e-11
3.71683e-12
1.24847e-11
3.00421e-12
1.25058e-11
2.29603e-12
1.24898e-11
1.60043e-12
1.23781e-11
9.37486e-13
1.18965e-11
3.55324e-13
1.05057e-11
6.94559e-12
9.49281e-12
4.39985e-11
4.19808e-12
7.22809e-11
-1.24284e-12
7.73614e-11
-6.18884e-12
7.3795e-11
-1.05136e-11
6.79094e-11
-1.42257e-11
6.14895e-11
-1.73599e-11
5.49057e-11
-1.99578e-11
4.83318e-11
-2.20606e-11
4.18835e-11
-2.37106e-11
3.56496e-11
-2.49488e-11
2.96982e-11
-2.58166e-11
2.4083e-11
-2.63539e-11
1.88467e-11
-2.65992e-11
1.40116e-11
-2.65937e-11
9.59161e-12
-2.63709e-11
5.58777e-12
-2.59712e-11
2.00427e-12
-2.54245e-11
-1.18741e-12
-2.476e-11
-4.00626e-12
-2.40054e-11
-6.48713e-12
-2.31818e-11
-8.66331e-12
-2.23074e-11
-1.05774e-11
-2.1395e-11
-1.22677e-11
-2.04517e-11
-1.37941e-11
-1.94811e-11
-1.5192e-11
-1.84849e-11
-1.65051e-11
-1.74571e-11
-1.77606e-11
-1.63897e-11
-1.89889e-11
-1.52746e-11
-2.02171e-11
-1.41027e-11
-2.14638e-11
-1.28635e-11
-2.27017e-11
-1.1546e-11
-2.39492e-11
-1.01508e-11
-2.51777e-11
-8.66765e-12
-2.63802e-11
-7.09727e-12
-2.75236e-11
-5.44964e-12
-2.858e-11
-3.72011e-12
-2.95311e-11
-1.92434e-12
-3.03378e-11
-8.37047e-14
-3.09777e-11
1.80426e-12
-3.14526e-11
3.71603e-12
-3.17206e-11
5.63665e-12
-3.17812e-11
7.55152e-12
-3.16285e-11
9.44653e-12
-3.12621e-11
1.13077e-11
-3.06814e-11
1.31214e-11
-2.98878e-11
1.48758e-11
-2.88874e-11
1.65586e-11
-2.76849e-11
1.81557e-11
-2.62848e-11
1.9653e-11
-2.46923e-11
2.1038e-11
-2.29156e-11
2.22966e-11
-2.09648e-11
2.34144e-11
-1.88577e-11
2.43797e-11
-1.66171e-11
2.51836e-11
-1.42668e-11
2.58186e-11
-1.1835e-11
2.62788e-11
-9.35536e-12
2.65623e-11
-6.86513e-12
2.66715e-11
-4.40283e-12
2.66114e-11
-2.00623e-12
2.63899e-11
2.87029e-13
2.60196e-11
2.44108e-12
2.55161e-11
4.4253e-12
2.48974e-11
6.21483e-12
2.41832e-11
7.78944e-12
2.33948e-11
9.13462e-12
2.25522e-11
1.02461e-11
2.1675e-11
1.11272e-11
2.07826e-11
1.17845e-11
1.98926e-11
1.2231e-11
1.90199e-11
1.2493e-11
1.81776e-11
1.25989e-11
1.7377e-11
1.2576e-11
1.66236e-11
1.24601e-11
1.59168e-11
1.2296e-11
1.52558e-11
1.21099e-11
1.46359e-11
1.19229e-11
1.40467e-11
1.17665e-11
1.34774e-11
1.16642e-11
1.29186e-11
1.16193e-11
1.23597e-11
1.16341e-11
1.17895e-11
1.17119e-11
1.12036e-11
1.18334e-11
1.05978e-11
1.19831e-11
9.96787e-12
1.21608e-11
9.31578e-12
1.23502e-11
8.64241e-12
1.25421e-11
7.95529e-12
1.2717e-11
7.25941e-12
1.28631e-11
6.55709e-12
1.2991e-11
5.85219e-12
1.30753e-11
5.14062e-12
1.31225e-11
4.42697e-12
1.31591e-11
3.71102e-12
1.32013e-11
3.00203e-12
1.32155e-11
2.29132e-12
1.32013e-11
1.60253e-12
1.30675e-11
9.27486e-13
1.2572e-11
3.54271e-13
1.10793e-11
7.30016e-12
8.46183e-12
4.72175e-11
2.96303e-12
7.77795e-11
-2.64646e-12
8.29707e-11
-7.71726e-12
7.88656e-11
-1.21191e-11
7.2311e-11
-1.58692e-11
6.52392e-11
-1.90072e-11
5.80432e-11
-2.15777e-11
5.09019e-11
-2.36306e-11
4.39359e-11
-2.52106e-11
3.7229e-11
-2.63642e-11
3.08513e-11
-2.71383e-11
2.48566e-11
-2.75742e-11
1.92821e-11
-2.77151e-11
1.41521e-11
-2.76035e-11
9.47974e-12
-2.72787e-11
5.26261e-12
-2.67787e-11
1.50399e-12
-2.61383e-11
-1.82804e-12
-2.53878e-11
-4.75693e-12
-2.45568e-11
-7.31824e-12
-2.36669e-11
-9.55331e-12
-2.27378e-11
-1.15066e-11
-2.17768e-11
-1.32286e-11
-2.08016e-11
-1.47693e-11
-1.98102e-11
-1.61834e-11
-1.88014e-11
-1.75138e-11
-1.77669e-11
-1.87951e-11
-1.6698e-11
-2.00577e-11
-1.55824e-11
-2.13325e-11
-1.44129e-11
-2.26332e-11
-1.31739e-11
-2.39405e-11
-1.18558e-11
-2.5267e-11
-1.04467e-11
-2.65866e-11
-8.95462e-12
-2.7872e-11
-7.3662e-12
-2.91117e-11
-5.68496e-12
-3.0261e-11
-3.93102e-12
-3.12847e-11
-2.10153e-12
-3.21669e-11
-2.05003e-13
-3.28738e-11
1.72914e-12
-3.33863e-11
3.69325e-12
-3.36843e-11
5.66811e-12
-3.37556e-11
7.63774e-12
-3.35978e-11
9.5874e-12
-3.32113e-11
1.15018e-11
-3.25955e-11
1.33669e-11
-3.17525e-11
1.51708e-11
-3.06908e-11
1.69027e-11
-2.94165e-11
1.85486e-11
-2.79302e-11
2.00921e-11
-2.62353e-11
2.15192e-11
-2.43422e-11
2.28162e-11
-2.22613e-11
2.39685e-11
-2.00095e-11
2.49626e-11
-1.76107e-11
2.57873e-11
-1.5091e-11
2.64341e-11
-1.24812e-11
2.68978e-11
-9.81849e-12
2.7176e-11
-7.14269e-12
2.72694e-11
-4.49567e-12
2.71835e-11
-1.91969e-12
2.69279e-11
5.43205e-13
2.65163e-11
2.85333e-12
2.59652e-11
4.97699e-12
2.52937e-11
6.88692e-12
2.45231e-11
8.56055e-12
2.36758e-11
9.98256e-12
2.27735e-11
1.1149e-11
2.18399e-11
1.20617e-11
2.08979e-11
1.27274e-11
1.99645e-11
1.31653e-11
1.90544e-11
1.34039e-11
1.81811e-11
1.3473e-11
1.73551e-11
1.34026e-11
1.65842e-11
1.32316e-11
1.58709e-11
1.301e-11
1.5213e-11
1.27686e-11
1.46036e-11
1.25331e-11
1.4031e-11
1.234e-11
1.34801e-11
1.22158e-11
1.29391e-11
1.21609e-11
1.23955e-11
1.21784e-11
1.1836e-11
1.22722e-11
1.12571e-11
1.24131e-11
1.06524e-11
1.25888e-11
1.00191e-11
1.27952e-11
9.35892e-12
1.30113e-11
8.67406e-12
1.32277e-11
7.97649e-12
1.34153e-11
7.27175e-12
1.35686e-11
6.57189e-12
1.36916e-11
5.86743e-12
1.37805e-11
5.14973e-12
1.38409e-11
4.42798e-12
1.38814e-11
3.71116e-12
1.39187e-11
3.00329e-12
1.39241e-11
2.29359e-12
1.39116e-11
1.60048e-12
1.37611e-11
9.16102e-13
1.32568e-11
3.38287e-13
1.16577e-11
7.63883e-12
7.27366e-12
5.05584e-11
1.57097e-12
8.34821e-11
-4.214e-12
8.87555e-11
-9.4069e-12
8.40582e-11
-1.38747e-11
7.67785e-11
-1.76494e-11
6.90135e-11
-2.07786e-11
6.1172e-11
-2.33137e-11
5.34367e-11
-2.53065e-11
4.59282e-11
-2.68085e-11
3.87306e-11
-2.78694e-11
3.19119e-11
-2.85401e-11
2.55269e-11
-2.8865e-11
1.96066e-11
-2.88919e-11
1.41786e-11
-2.86647e-11
9.25218e-12
-2.82269e-11
4.82451e-12
-2.7617e-11
8.93676e-13
-2.68722e-11
-2.5731e-12
-2.60286e-11
-5.6008e-12
-2.51133e-11
-8.23371e-12
-2.41514e-11
-1.05153e-11
-2.31631e-11
-1.24951e-11
-2.21597e-11
-1.42321e-11
-2.11496e-11
-1.57794e-11
-2.01369e-11
-1.71961e-11
-1.91171e-11
-1.85336e-11
-1.80783e-11
-1.98338e-11
-1.70112e-11
-2.11247e-11
-1.59022e-11
-2.24414e-11
-1.47376e-11
-2.37974e-11
-1.34988e-11
-2.51791e-11
-1.21833e-11
-2.65821e-11
-1.07709e-11
-2.79987e-11
-9.25546e-12
-2.93871e-11
-7.65036e-12
-3.07165e-11
-5.9451e-12
-3.19658e-11
-4.14549e-12
-3.30839e-11
-2.26778e-12
-3.40442e-11
-3.31785e-13
-3.48093e-11
1.65756e-12
-3.53752e-11
3.67728e-12
-3.57036e-11
5.7092e-12
-3.57871e-11
7.73669e-12
-3.56248e-11
9.74441e-12
-3.52186e-11
1.1717e-11
-3.45676e-11
1.36403e-11
-3.36753e-11
1.5501e-11
-3.25511e-11
1.72864e-11
-3.12013e-11
1.89831e-11
-2.96264e-11
2.05759e-11
-2.78275e-11
2.20492e-11
-2.58149e-11
2.33875e-11
-2.35989e-11
2.45752e-11
-2.11965e-11
2.55983e-11
-1.86332e-11
2.64442e-11
-1.59362e-11
2.71029e-11
-1.31393e-11
2.75685e-11
-1.02835e-11
2.78379e-11
-7.41148e-12
2.79119e-11
-4.569e-12
2.77966e-11
-1.80369e-12
2.75027e-11
8.37852e-13
2.70445e-11
3.31227e-12
2.64395e-11
5.5827e-12
2.57083e-11
7.61882e-12
2.48742e-11
9.39532e-12
2.39617e-11
1.08958e-11
2.2995e-11
1.21165e-11
2.19993e-11
1.30585e-11
2.09998e-11
1.3728e-11
2.00175e-11
1.41487e-11
1.90679e-11
1.43545e-11
1.81639e-11
1.43779e-11
1.73154e-11
1.42519e-11
1.65299e-11
1.40178e-11
1.58116e-11
1.37292e-11
1.51555e-11
1.34256e-11
1.45537e-11
1.31358e-11
1.39936e-11
1.2901e-11
1.34575e-11
1.27525e-11
1.29335e-11
1.26855e-11
1.24069e-11
1.27055e-11
1.18632e-11
1.28165e-11
1.12972e-11
1.29799e-11
1.07018e-11
1.31851e-11
1.00712e-11
1.34266e-11
9.41025e-12
1.36729e-11
8.72351e-12
1.39151e-11
8.01942e-12
1.41199e-11
7.30774e-12
1.42808e-11
6.59161e-12
1.44083e-11
5.87888e-12
1.44937e-11
5.16229e-12
1.45579e-11
4.43519e-12
1.46089e-11
3.71782e-12
1.46366e-11
3.00273e-12
1.46397e-11
2.29932e-12
1.46155e-11
1.58673e-12
1.44741e-11
9.08133e-13
1.39359e-11
3.26914e-13
1.22396e-11
7.96615e-12
5.86826e-12
5.40364e-11
-3.4603e-14
8.93848e-11
-5.99141e-12
9.47121e-11
-1.12964e-11
8.93629e-11
-1.58215e-11
8.13033e-11
-1.96071e-11
7.27989e-11
-2.27098e-11
6.42745e-11
-2.519e-11
5.59166e-11
-2.71047e-11
4.78426e-11
-2.85125e-11
4.01382e-11
-2.94678e-11
3.28668e-11
-3.00213e-11
2.60801e-11
-3.02251e-11
1.98102e-11
-3.01276e-11
1.40809e-11
-2.9775e-11
8.89931e-12
-2.92153e-11
4.2645e-12
-2.84887e-11
1.66838e-13
-2.76345e-11
-3.42754e-12
-2.66875e-11
-6.54797e-12
-2.56832e-11
-9.23808e-12
-2.46452e-11
-1.15534e-11
-2.35921e-11
-1.35482e-11
-2.25411e-11
-1.5283e-11
-2.14967e-11
-1.68238e-11
-2.04618e-11
-1.82309e-11
-1.94297e-11
-1.95655e-11
-1.83929e-11
-2.08704e-11
-1.73308e-11
-2.21865e-11
-1.62311e-11
-2.35407e-11
-1.50775e-11
-2.49506e-11
-1.3849e-11
-2.64071e-11
-1.25318e-11
-2.78987e-11
-1.11149e-11
-2.94151e-11
-9.58975e-12
-3.09117e-11
-7.9507e-12
-3.2355e-11
-6.21301e-12
-3.3703e-11
-4.37845e-12
-3.49179e-11
-2.45633e-12
-3.59657e-11
-4.60306e-13
-3.68048e-11
1.58454e-12
-3.74195e-11
3.6624e-12
-3.77809e-11
5.75565e-12
-3.78799e-11
7.84605e-12
-3.77147e-11
9.91608e-12
-3.72881e-11
1.19506e-11
-3.66016e-11
1.39358e-11
-3.566e-11
1.58572e-11
-3.44718e-11
1.77001e-11
-3.30436e-11
1.94508e-11
-3.13763e-11
2.10954e-11
-2.94714e-11
2.26178e-11
-2.73364e-11
2.40009e-11
-2.49813e-11
2.5228e-11
-2.24228e-11
2.62826e-11
-1.96871e-11
2.71518e-11
-1.68046e-11
2.78245e-11
-1.38112e-11
2.82926e-11
-1.07508e-11
2.85521e-11
-7.6702e-12
2.8604e-11
-4.62014e-12
2.84554e-11
-1.65422e-12
2.81185e-11
1.17565e-12
2.76083e-11
3.82329e-12
2.69427e-11
6.24919e-12
2.61441e-11
8.41822e-12
2.52391e-11
1.03011e-11
2.42546e-11
1.18813e-11
2.32171e-11
1.31551e-11
2.2153e-11
1.41238e-11
2.10885e-11
1.47938e-11
2.00479e-11
1.51905e-11
1.90521e-11
1.53514e-11
1.81165e-11
1.53145e-11
1.72501e-11
1.51193e-11
1.6456e-11
1.48129e-11
1.57356e-11
1.44506e-11
1.50841e-11
1.40781e-11
1.44897e-11
1.37311e-11
1.39395e-11
1.34519e-11
1.34207e-11
1.3272e-11
1.29164e-11
1.31904e-11
1.24088e-11
1.32136e-11
1.18865e-11
1.33396e-11
1.13374e-11
1.35297e-11
1.07517e-11
1.37716e-11
1.01293e-11
1.40497e-11
9.47012e-12
1.43327e-11
8.78224e-12
1.46034e-11
8.07302e-12
1.48296e-11
7.34868e-12
1.50056e-11
6.61513e-12
1.51423e-11
5.87955e-12
1.52295e-11
5.15152e-12
1.52862e-11
4.43151e-12
1.53292e-11
3.7157e-12
1.53528e-11
2.99883e-12
1.53571e-11
2.28878e-12
1.5326e-11
1.5788e-12
1.51845e-11
8.97601e-13
1.46177e-11
3.3418e-13
1.28038e-11
8.30071e-12
4.22038e-12
5.77388e-11
-1.88362e-12
9.54885e-11
-8.00169e-12
1.0083e-10
-1.34018e-11
9.47628e-11
-1.79645e-11
8.58658e-11
-2.17449e-11
7.65792e-11
-2.48046e-11
6.73341e-11
-2.72143e-11
5.83262e-11
-2.90395e-11
4.96677e-11
-3.0337e-11
4.14357e-11
-3.11685e-11
3.36983e-11
-3.15918e-11
2.65033e-11
-3.16586e-11
1.98769e-11
-3.14223e-11
1.38445e-11
-3.09328e-11
8.40963e-12
-3.02394e-11
3.57112e-12
-2.93869e-11
-6.85738e-13
-2.84162e-11
-4.39829e-12
-2.73654e-11
-7.59878e-12
-2.62668e-11
-1.03366e-11
-2.5151e-11
-1.26691e-11
-2.40345e-11
-1.46646e-11
-2.2933e-11
-1.63843e-11
-2.18545e-11
-1.79021e-11
-2.07978e-11
-1.92873e-11
-1.9756e-11
-2.06069e-11
-1.87179e-11
-2.19081e-11
-1.76647e-11
-2.32393e-11
-1.65774e-11
-2.46274e-11
-1.54374e-11
-2.609e-11
-1.42197e-11
-2.76241e-11
-1.29041e-11
-2.92136e-11
-1.14863e-11
-3.08322e-11
-9.9483e-12
-3.2449e-11
-8.28972e-12
-3.40129e-11
-6.51406e-12
-3.54779e-11
-4.62694e-12
-3.68043e-11
-2.65388e-12
-3.79381e-11
-6.06863e-13
-3.88512e-11
1.49904e-12
-3.95248e-11
3.64027e-12
-3.99216e-11
5.79883e-12
-4.00378e-11
7.95487e-12
-3.98702e-11
1.00905e-11
-3.94231e-11
1.21904e-11
-3.87008e-11
1.42401e-11
-3.7709e-11
1.62249e-11
-3.64559e-11
1.81289e-11
-3.49468e-11
1.99372e-11
-3.31837e-11
2.16358e-11
-3.11691e-11
2.32093e-11
-2.89089e-11
2.46402e-11
-2.64112e-11
2.59099e-11
-2.36917e-11
2.7001e-11
-2.07773e-11
2.78977e-11
-1.77006e-11
2.85873e-11
-1.45001e-11
2.90601e-11
-1.12228e-11
2.93117e-11
-7.92099e-12
2.93433e-11
-4.65086e-12
2.91619e-11
-1.47189e-12
2.87801e-11
1.55845e-12
2.82146e-11
4.38972e-12
2.74856e-11
6.97903e-12
2.66173e-11
9.28741e-12
2.56375e-11
1.12819e-11
2.45761e-11
1.29436e-11
2.3463e-11
1.42693e-11
2.23262e-11
1.52618e-11
2.11929e-11
1.59284e-11
2.00898e-11
1.62948e-11
1.90409e-11
1.64015e-11
1.80642e-11
1.62922e-11
1.71715e-11
1.60129e-11
1.63661e-11
1.56192e-11
1.56434e-11
1.51743e-11
1.4997e-11
1.47255e-11
1.44159e-11
1.43131e-11
1.38849e-11
1.39837e-11
1.33905e-11
1.37669e-11
1.29113e-11
1.36702e-11
1.24268e-11
1.36987e-11
1.19258e-11
1.38413e-11
1.13921e-11
1.40642e-11
1.08156e-11
1.43488e-11
1.01972e-11
1.46686e-11
9.53562e-12
1.49946e-11
8.84124e-12
1.52981e-11
8.11851e-12
1.55527e-11
7.3768e-12
1.57476e-11
6.63116e-12
1.58882e-11
5.88947e-12
1.59714e-11
5.15463e-12
1.60213e-11
4.4293e-12
1.60549e-11
3.71001e-12
1.60726e-11
2.99424e-12
1.60733e-11
2.28175e-12
1.60389e-11
1.56766e-12
1.58992e-11
8.86716e-13
1.52994e-11
3.31584e-13
1.33597e-11
8.63262e-12
2.28453e-12
6.16851e-11
-4.0118e-12
1.01785e-10
-1.0254e-11
1.07072e-10
-1.57188e-11
1.00228e-10
-2.02926e-11
9.04395e-11
-2.40444e-11
8.03309e-11
-2.70453e-11
7.0335e-11
-2.93707e-11
6.06516e-11
-3.10899e-11
5.1387e-11
-3.22679e-11
4.26137e-11
-3.29658e-11
3.43962e-11
-3.32468e-11
2.67844e-11
-3.31659e-11
1.97961e-11
-3.27789e-11
1.34577e-11
-3.21383e-11
7.76915e-12
-3.12981e-11
2.73108e-12
-3.03063e-11
-1.6774e-12
-2.92067e-11
-5.49764e-12
-2.80398e-11
-8.76546e-12
-2.68423e-11
-1.15338e-11
-2.56423e-11
-1.38688e-11
-2.44612e-11
-1.58453e-11
-2.33125e-11
-1.75326e-11
-2.22022e-11
-1.9012e-11
-2.11278e-11
-2.03613e-11
-2.0085e-11
-2.16492e-11
-1.90517e-11
-2.29408e-11
-1.80141e-11
-2.42762e-11
-1.69435e-11
-2.56973e-11
-1.58186e-11
-2.72141e-11
-1.46137e-11
-2.88282e-11
-1.33073e-11
-3.05192e-11
-1.18809e-11
-3.22577e-11
-1.03308e-11
-3.39982e-11
-8.65227e-12
-3.56906e-11
-6.8431e-12
-3.72863e-11
-4.91624e-12
-3.87304e-11
-2.88668e-12
-3.99669e-11
-7.72011e-13
-4.09652e-11
1.39867e-12
-4.16949e-11
3.60857e-12
-4.21309e-11
5.83474e-12
-4.22634e-11
8.05727e-12
-4.20921e-11
1.0258e-11
-4.16232e-11
1.24223e-11
-4.08643e-11
1.45362e-11
-3.98221e-11
1.65851e-11
-3.85039e-11
1.85537e-11
-3.69145e-11
2.04265e-11
-3.50555e-11
2.21878e-11
-3.29295e-11
2.38211e-11
-3.05412e-11
2.53078e-11
-2.7897e-11
2.66283e-11
-2.50112e-11
2.7762e-11
-2.19103e-11
2.86908e-11
-1.86286e-11
2.94001e-11
-1.52088e-11
2.98798e-11
-1.17018e-11
3.01247e-11
-8.16509e-12
3.01354e-11
-4.66072e-12
2.99191e-11
-1.2547e-12
2.94892e-11
1.98924e-12
2.8864e-11
5.01569e-12
2.80667e-11
7.77723e-12
2.71239e-11
1.0231e-11
2.60649e-11
1.23416e-11
2.49206e-11
1.40887e-11
2.37233e-11
1.54674e-11
2.25058e-11
1.64802e-11
2.12985e-11
1.71366e-11
2.01294e-11
1.74648e-11
1.90236e-11
1.75082e-11
1.80019e-11
1.73147e-11
1.70767e-11
1.69389e-11
1.62521e-11
1.64446e-11
1.55258e-11
1.59014e-11
1.48895e-11
1.53626e-11
1.43292e-11
1.48742e-11
1.38269e-11
1.44866e-11
1.3364e-11
1.42304e-11
1.29158e-11
1.4119e-11
1.246e-11
1.41553e-11
1.19814e-11
1.43206e-11
1.14627e-11
1.45837e-11
1.08945e-11
1.49175e-11
1.02758e-11
1.52878e-11
9.60818e-12
1.56627e-11
8.90296e-12
1.60038e-11
8.16679e-12
1.62893e-11
7.41786e-12
1.64969e-11
6.66757e-12
1.66388e-11
5.91588e-12
1.67234e-11
5.1702e-12
1.67674e-11
4.43906e-12
1.67866e-11
3.71208e-12
1.68001e-11
2.9949e-12
1.67909e-11
2.28312e-12
1.67512e-11
1.55939e-12
1.66236e-11
8.72949e-13
1.59866e-11
2.98214e-13
1.39351e-11
8.93116e-12
-4.27624e-14
6.57582e-11
-6.44825e-12
1.0819e-10
-1.27668e-11
1.1339e-10
-1.82616e-11
1.05722e-10
-2.28226e-11
9.50005e-11
-2.65256e-11
8.40339e-11
-2.94481e-11
7.32576e-11
-3.16707e-11
6.28743e-11
-3.32659e-11
5.29825e-11
-3.43062e-11
4.36542e-11
-3.48575e-11
3.49477e-11
-3.49821e-11
2.69093e-11
-3.47427e-11
1.9557e-11
-3.41932e-11
1.29084e-11
-3.33926e-11
6.96893e-12
-3.23972e-11
1.73598e-12
-3.12555e-11
-2.81871e-12
-3.00171e-11
-6.73576e-12
-2.87255e-11
-1.00566e-11
-2.74184e-11
-1.28405e-11
-2.6126e-11
-1.51607e-11
-2.48734e-11
-1.70974e-11
-2.36734e-11
-1.87321e-11
-2.25316e-11
-2.01531e-11
-2.1447e-11
-2.14454e-11
-2.04047e-11
-2.26909e-11
-1.93877e-11
-2.3957e-11
-1.83699e-11
-2.52933e-11
-1.73244e-11
-2.6742e-11
-1.62244e-11
-2.83133e-11
-1.50393e-11
-3.00124e-11
-1.37448e-11
-3.18128e-11
-1.23226e-11
-3.36791e-11
-1.07593e-11
-3.55607e-11
-9.04838e-12
-3.74007e-11
-7.19771e-12
-3.91361e-11
-5.22388e-12
-4.07035e-11
-3.13791e-12
-4.20522e-11
-9.61378e-13
-4.31411e-11
1.28632e-12
-4.3942e-11
3.57137e-12
-4.44153e-11
5.8733e-12
-4.45647e-11
8.17063e-12
-4.43887e-11
1.04445e-11
-4.38964e-11
1.26796e-11
-4.30987e-11
1.48621e-11
-4.20038e-11
1.69778e-11
-4.06188e-11
1.90124e-11
-3.89483e-11
2.09507e-11
-3.6993e-11
2.2777e-11
-3.47549e-11
2.44737e-11
-3.22369e-11
2.60206e-11
-2.94432e-11
2.73961e-11
-2.63859e-11
2.85767e-11
-2.30903e-11
2.95416e-11
-1.9593e-11
3.02739e-11
-1.59406e-11
3.07618e-11
-1.21891e-11
3.09989e-11
-8.40154e-12
3.09858e-11
-4.64694e-12
3.07305e-11
-9.98621e-13
3.02473e-11
2.47313e-12
2.95563e-11
5.70735e-12
2.86828e-11
8.65135e-12
2.76564e-11
1.12581e-11
2.65082e-11
1.34903e-11
2.52715e-11
1.5326e-11
2.39821e-11
1.67573e-11
2.26763e-11
1.77866e-11
2.13878e-11
1.84257e-11
2.0147e-11
1.8706e-11
1.89815e-11
1.86742e-11
1.79141e-11
1.83826e-11
1.69582e-11
1.78952e-11
1.61179e-11
1.72854e-11
1.53913e-11
1.66286e-11
1.47696e-11
1.59849e-11
1.42345e-11
1.54098e-11
1.3764e-11
1.49575e-11
1.33375e-11
1.46575e-11
1.29253e-11
1.45319e-11
1.25011e-11
1.45801e-11
1.20479e-11
1.47745e-11
1.15468e-11
1.50854e-11
1.09873e-11
1.54775e-11
1.03666e-11
1.59088e-11
9.6898e-12
1.634e-11
8.96849e-12
1.67256e-11
8.21603e-12
1.70423e-11
7.4525e-12
1.7261e-11
6.68516e-12
1.74066e-11
5.92312e-12
1.7486e-11
5.17175e-12
1.75194e-11
4.43632e-12
1.75228e-11
3.71114e-12
1.7526e-11
2.99983e-12
1.75029e-11
2.28085e-12
1.74709e-11
1.56075e-12
1.73446e-11
8.68331e-13
1.66799e-11
3.02636e-13
1.45015e-11
9.23417e-12
-2.81531e-12
6.96897e-11
-9.2271e-12
1.14601e-10
-1.55597e-11
1.19723e-10
-2.1051e-11
1.11214e-10
-2.55768e-11
9.95263e-11
-2.92124e-11
8.76695e-11
-3.20369e-11
7.60823e-11
-3.41372e-11
6.49748e-11
-3.5592e-11
5.44375e-11
-3.6475e-11
4.45376e-11
-3.68609e-11
3.5334e-11
-3.68132e-11
2.6862e-11
-3.63977e-11
1.91419e-11
-3.5671e-11
1.21822e-11
-3.46985e-11
5.99687e-12
-3.35337e-11
5.7162e-13
-3.22341e-11
-4.11787e-12
-3.08481e-11
-8.12133e-12
-2.94241e-11
-1.14801e-11
-2.80006e-11
-1.42635e-11
-2.66127e-11
-1.65481e-11
-2.52844e-11
-1.84252e-11
-2.40294e-11
-1.99864e-11
-2.2858e-11
-2.13239e-11
-2.17599e-11
-2.25429e-11
-2.07217e-11
-2.37283e-11
-1.97236e-11
-2.49544e-11
-1.87329e-11
-2.62833e-11
-1.77195e-11
-2.77546e-11
-1.66514e-11
-2.93807e-11
-1.54934e-11
-3.11696e-11
-1.42162e-11
-3.30892e-11
-1.27971e-11
-3.50973e-11
-1.12234e-11
-3.71336e-11
-9.48941e-12
-3.91339e-11
-7.6007e-12
-4.10241e-11
-5.56784e-12
-4.27356e-11
-3.40873e-12
-4.42106e-11
-1.15074e-12
-4.53985e-11
1.16455e-12
-4.62567e-11
3.53056e-12
-4.67807e-11
5.915e-12
-4.69485e-11
8.29389e-12
-4.67669e-11
1.06476e-11
-4.62493e-11
1.2959e-11
-4.54094e-11
1.52135e-11
-4.42575e-11
1.73985e-11
-4.2803e-11
1.95008e-11
-4.10498e-11
2.15074e-11
-3.89988e-11
2.34028e-11
-3.66495e-11
2.51674e-11
-3.40009e-11
2.67794e-11
-3.10545e-11
2.82146e-11
-2.78206e-11
2.94474e-11
-2.43226e-11
3.04532e-11
-2.05983e-11
3.12117e-11
-1.66985e-11
3.17082e-11
-1.26852e-11
3.19361e-11
-8.62882e-12
3.18965e-11
-4.60675e-12
3.15983e-11
-6.99876e-13
3.10569e-11
3.01512e-12
3.02939e-11
6.47084e-12
2.9337e-11
9.6088e-12
2.82176e-11
1.23779e-11
2.69696e-11
1.47386e-11
2.56301e-11
1.66658e-11
2.4239e-11
1.81486e-11
2.28367e-11
1.91891e-11
2.146e-11
1.98025e-11
2.01426e-11
2.00237e-11
1.89144e-11
1.99025e-11
1.7799e-11
1.94982e-11
1.68111e-11
1.88834e-11
1.59567e-11
1.814e-11
1.52332e-11
1.73524e-11
1.46298e-11
1.65886e-11
1.41243e-11
1.59157e-11
1.36912e-11
1.53911e-11
1.33063e-11
1.50429e-11
1.29358e-11
1.4903e-11
1.25488e-11
1.49679e-11
1.21261e-11
1.51978e-11
1.16459e-11
1.55659e-11
1.10966e-11
1.60272e-11
1.04753e-11
1.65306e-11
9.78735e-12
1.70284e-11
9.05102e-12
1.74626e-11
8.28183e-12
1.78121e-11
7.49286e-12
1.80506e-11
6.69726e-12
1.82029e-11
5.91549e-12
1.82687e-11
5.16132e-12
1.82746e-11
4.43138e-12
1.82536e-11
3.71126e-12
1.82469e-11
3.01262e-12
1.82024e-11
2.28591e-12
1.81986e-11
1.5641e-12
1.80674e-11
8.65256e-13
1.73796e-11
3.06078e-13
1.50615e-11
9.54073e-12
-5.89999e-12
7.3413e-11
-1.22913e-11
1.20993e-10
-1.86184e-11
1.2605e-10
-2.40901e-11
1.16685e-10
-2.85603e-11
1.03996e-10
-3.21071e-11
9.12164e-11
-3.48135e-11
7.87888e-11
-3.67747e-11
6.69363e-11
-3.8073e-11
5.57361e-11
-3.87867e-11
4.52516e-11
-3.89902e-11
3.55379e-11
-3.87524e-11
2.66246e-11
-3.81424e-11
1.85324e-11
-3.72239e-11
1.12641e-11
-3.60609e-11
4.83433e-12
-3.47154e-11
-7.73482e-13
-3.32416e-11
-5.59121e-12
-3.16974e-11
-9.66503e-12
-3.01312e-11
-1.30458e-11
-2.85855e-11
-1.58087e-11
-2.70947e-11
-1.80383e-11
-2.56875e-11
-1.98318e-11
-2.43778e-11
-2.12955e-11
-2.31703e-11
-2.25308e-11
-2.20616e-11
-2.36509e-11
-2.10328e-11
-2.47565e-11
-2.00566e-11
-2.59299e-11
-1.91009e-11
-2.72384e-11
-1.81279e-11
-2.87269e-11
-1.70988e-11
-3.04091e-11
-1.59738e-11
-3.22939e-11
-1.47189e-11
-3.43433e-11
-1.33078e-11
-3.65076e-11
-1.1724e-11
-3.87167e-11
-9.96232e-12
-4.08949e-11
-8.02841e-12
-4.29573e-11
-5.93724e-12
-4.48261e-11
-3.71252e-12
-4.64347e-11
-1.38079e-12
-4.77295e-11
1.03099e-12
-4.86678e-11
3.48298e-12
-4.9232e-11
5.95142e-12
-4.94162e-11
8.41275e-12
-4.92275e-11
1.08468e-11
-4.86826e-11
1.32362e-11
-4.77981e-11
1.55672e-11
-4.65877e-11
1.78281e-11
-4.50632e-11
2.00071e-11
-4.32281e-11
2.2091e-11
-4.10821e-11
2.40629e-11
-3.86208e-11
2.59024e-11
-3.58397e-11
2.75853e-11
-3.27369e-11
2.90854e-11
-2.93203e-11
3.03743e-11
-2.5611e-11
3.14244e-11
-2.16479e-11
3.22114e-11
-1.7485e-11
3.27181e-11
-1.31913e-11
3.29371e-11
-8.84726e-12
3.28692e-11
-4.53828e-12
3.25239e-11
-3.54109e-13
3.19182e-11
3.62137e-12
3.10766e-11
7.3129e-12
3.00298e-11
1.0656e-11
2.88116e-11
1.35965e-11
2.74579e-11
1.60926e-11
2.60087e-11
1.81151e-11
2.45075e-11
1.96499e-11
2.29977e-11
2.06989e-11
2.1521e-11
2.12792e-11
2.01165e-11
2.14282e-11
1.88178e-11
2.12012e-11
1.76505e-11
2.06656e-11
1.663e-11
1.99041e-11
1.57625e-11
1.90078e-11
1.50447e-11
1.80703e-11
1.44621e-11
1.71714e-11
1.3991e-11
1.63871e-11
1.36031e-11
1.57793e-11
1.32663e-11
1.53803e-11
1.2943e-11
1.52269e-11
1.26023e-11
1.53091e-11
1.22166e-11
1.55838e-11
1.17618e-11
1.6021e-11
1.1226e-11
1.65632e-11
1.06056e-11
1.71513e-11
9.90864e-12
1.77259e-11
9.15253e-12
1.82193e-11
8.359e-12
1.86063e-11
7.54494e-12
1.88654e-11
6.71591e-12
1.90328e-11
5.91545e-12
1.90701e-11
5.14112e-12
1.90499e-11
4.40324e-12
1.89925e-11
3.69558e-12
1.89555e-11
2.99009e-12
1.89089e-11
2.28551e-12
1.89043e-11
1.56982e-12
1.87841e-11
8.67686e-13
1.80826e-11
3.03394e-13
1.56267e-11
9.84467e-12
-9.14676e-12
7.72939e-11
-1.56002e-11
1.27446e-10
-2.19395e-11
1.32389e-10
-2.73762e-11
1.22122e-10
-3.17692e-11
1.08389e-10
-3.52035e-11
9.46508e-11
-3.77696e-11
8.13551e-11
-3.95684e-11
6.87352e-11
-4.06897e-11
5.68577e-11
-4.1217e-11
4.57791e-11
-4.12244e-11
3.55456e-11
-4.07855e-11
2.61861e-11
-3.9969e-11
1.77162e-11
-3.88443e-11
1.01398e-11
-3.74791e-11
3.46947e-12
-3.59349e-11
-2.31719e-12
-3.42739e-11
-7.25186e-12
-3.2556e-11
-1.13824e-11
-3.08344e-11
-1.4767e-11
-2.91547e-11
-1.74878e-11
-2.75544e-11
-1.9638e-11
-2.60628e-11
-2.13228e-11
-2.46966e-11
-2.26611e-11
-2.34594e-11
-2.37674e-11
-2.23425e-11
-2.47672e-11
-2.1328e-11
-2.57704e-11
-2.03841e-11
-2.68731e-11
-1.94727e-11
-2.81492e-11
-1.85497e-11
-2.96493e-11
-1.7569e-11
-3.13892e-11
-1.64858e-11
-3.33765e-11
-1.52596e-11
-3.55689e-11
-1.38573e-11
-3.79093e-11
-1.2262e-11
-4.03113e-11
-1.04695e-11
-4.26866e-11
-8.48572e-12
-4.49403e-11
-6.32772e-12
-4.69834e-11
-4.02216e-12
-4.87395e-11
-1.60615e-12
-5.01448e-11
8.89581e-13
-5.11627e-11
3.43278e-12
-5.17744e-11
5.9915e-12
-5.19741e-11
8.5411e-12
-5.17762e-11
1.1059e-11
-5.11997e-11
1.35292e-11
-5.02675e-11
1.59395e-11
-4.89973e-11
1.82793e-11
-4.74023e-11
2.05389e-11
-4.54871e-11
2.2704e-11
-4.32466e-11
2.47563e-11
-4.06726e-11
2.6676e-11
-3.77588e-11
2.84367e-11
-3.44972e-11
3.00088e-11
-3.08918e-11
3.13596e-11
-2.69613e-11
3.24584e-11
-2.27461e-11
3.3278e-11
-1.8304e-11
3.37984e-11
-1.37111e-11
3.40102e-11
-9.05849e-12
3.3912e-11
-4.43949e-12
3.35142e-11
4.42117e-14
3.28367e-11
4.29937e-12
3.19081e-11
8.24199e-12
3.0763e-11
1.18015e-11
2.94383e-11
1.49217e-11
2.79717e-11
1.75595e-11
2.64044e-11
1.96827e-11
2.47815e-11
2.12728e-11
2.31518e-11
2.23287e-11
2.15635e-11
2.28675e-11
2.00619e-11
2.293e-11
1.86854e-11
2.2578e-11
1.74634e-11
2.1888e-11
1.64121e-11
2.09557e-11
1.55335e-11
1.98867e-11
1.48237e-11
1.87804e-11
1.42672e-11
1.77283e-11
1.38368e-11
1.6818e-11
1.35025e-11
1.61142e-11
1.32211e-11
1.56624e-11
1.29535e-11
1.54951e-11
1.26656e-11
1.55974e-11
1.23211e-11
1.59286e-11
1.1897e-11
1.64454e-11
1.13767e-11
1.70839e-11
1.07574e-11
1.7771e-11
1.00497e-11
1.84342e-11
9.26785e-12
1.90017e-11
8.4445e-12
1.94303e-11
7.59707e-12
1.97136e-11
6.73375e-12
1.9897e-11
5.90534e-12
1.98995e-11
5.11528e-12
1.98409e-11
4.37282e-12
1.97358e-11
3.6708e-12
1.96584e-11
2.96974e-12
1.9611e-11
2.27566e-12
1.95994e-11
1.5701e-12
1.94905e-11
8.63867e-13
1.87897e-11
2.89924e-13
1.62017e-11
1.01352e-11
-1.27138e-11
8.13858e-11
-1.92237e-11
1.33956e-10
-2.55531e-11
1.38718e-10
-3.09274e-11
1.27496e-10
-3.52183e-11
1.1268e-10
-3.85153e-11
9.7948e-11
-4.09178e-11
8.37578e-11
-4.2532e-11
7.03496e-11
-4.34538e-11
5.77797e-11
-4.37721e-11
4.60976e-11
-4.35633e-11
3.53371e-11
-4.29047e-11
2.55278e-11
-4.18637e-11
1.66755e-11
-4.05193e-11
8.79568e-12
-3.89349e-11
1.8855e-12
-3.71793e-11
-4.07241e-12
-3.53172e-11
-9.11356e-12
-3.34132e-11
-1.32859e-11
-3.15244e-11
-1.66552e-11
-2.97e-11
-1.93117e-11
-2.79827e-11
-2.13547e-11
-2.64016e-11
-2.29033e-11
-2.49767e-11
-2.40854e-11
-2.371e-11
-2.50334e-11
-2.2593e-11
-2.58835e-11
-2.16018e-11
-2.67611e-11
-2.06998e-11
-2.77745e-11
-1.98425e-11
-2.90061e-11
-1.89787e-11
-3.05125e-11
-1.80542e-11
-3.23132e-11
-1.70188e-11
-3.44114e-11
-1.58268e-11
-3.67603e-11
-1.44461e-11
-3.92894e-11
-1.28504e-11
-4.19064e-11
-1.10328e-11
-4.45035e-11
-9.00072e-12
-4.69717e-11
-6.77391e-12
-4.92094e-11
-4.38325e-12
-5.11294e-11
-1.86498e-12
-5.26623e-11
7.4052e-13
-5.37674e-11
3.39155e-12
-5.44246e-11
6.05419e-12
-5.46358e-11
8.69929e-12
-5.44205e-11
1.13047e-11
-5.38042e-11
1.38551e-11
-5.28171e-11
1.63408e-11
-5.14823e-11
1.87546e-11
-4.98155e-11
2.10893e-11
-4.78212e-11
2.33343e-11
-4.54912e-11
2.54728e-11
-4.28106e-11
2.74811e-11
-3.97666e-11
2.93312e-11
-3.63467e-11
3.09873e-11
-3.25473e-11
3.2412e-11
-2.83853e-11
3.35688e-11
-2.39022e-11
3.44269e-11
-1.91614e-11
3.49637e-11
-1.42471e-11
3.51663e-11
-9.26052e-12
3.50362e-11
-4.30885e-12
3.45838e-11
4.97114e-13
3.38312e-11
5.05255e-12
3.28081e-11
9.26561e-12
3.15509e-11
1.30593e-11
3.01004e-11
1.63728e-11
2.85007e-11
1.91598e-11
2.67985e-11
2.13852e-11
2.50438e-11
2.30279e-11
2.32886e-11
2.40841e-11
2.15844e-11
2.45721e-11
1.99789e-11
2.45359e-11
1.85147e-11
2.40428e-11
1.72252e-11
2.31781e-11
1.61317e-11
2.20498e-11
1.52408e-11
2.07781e-11
1.45469e-11
1.94748e-11
1.40304e-11
1.82454e-11
1.36583e-11
1.71909e-11
1.33899e-11
1.63834e-11
1.31787e-11
1.58744e-11
1.29792e-11
1.56954e-11
1.275e-11
1.58271e-11
1.24508e-11
1.62282e-11
1.20548e-11
1.68418e-11
1.15455e-11
1.75935e-11
1.09211e-11
1.83959e-11
1.01952e-11
1.91607e-11
9.38832e-12
1.98092e-11
8.53028e-12
2.0289e-11
7.63957e-12
2.0605e-11
6.75873e-12
2.07787e-11
5.9064e-12
2.07527e-11
5.10499e-12
2.06431e-11
4.36253e-12
2.0479e-11
3.66417e-12
2.03576e-11
2.98021e-12
2.02958e-11
2.28122e-12
2.02992e-11
1.58203e-12
2.01905e-11
8.85313e-13
1.94874e-11
2.95914e-13
1.67921e-11
1.04316e-11
-1.66652e-11
8.55539e-11
-2.31956e-11
1.40486e-10
-2.94857e-11
1.45008e-10
-3.47703e-11
1.32781e-10
-3.89293e-11
1.1684e-10
-4.20602e-11
1.01079e-10
-4.42739e-11
8.59716e-11
-4.56817e-11
7.17575e-11
-4.63835e-11
5.84817e-11
-4.64711e-11
4.61853e-11
-4.60261e-11
3.48923e-11
-4.51249e-11
2.46267e-11
-4.38435e-11
1.53945e-11
-4.22545e-11
7.20698e-12
-4.04342e-11
6.55609e-14
-3.84473e-11
-6.05879e-12
-3.63685e-11
-1.11919e-11
-3.42632e-11
-1.53906e-11
-3.21937e-11
-1.87242e-11
-3.02152e-11
-2.12895e-11
-2.83732e-11
-2.31962e-11
-2.67004e-11
-2.45754e-11
-2.52159e-11
-2.55693e-11
-2.39232e-11
-2.63255e-11
-2.28106e-11
-2.69956e-11
-2.18503e-11
-2.77208e-11
-2.10032e-11
-2.86211e-11
-2.02138e-11
-2.97949e-11
-1.94236e-11
-3.13023e-11
-1.857e-11
-3.31663e-11
-1.75955e-11
-3.53854e-11
-1.64475e-11
-3.79078e-11
-1.50863e-11
-4.065e-11
-1.34879e-11
-4.35043e-11
-1.16417e-11
-4.6349e-11
-9.554e-12
-4.90587e-11
-7.24824e-12
-5.15145e-11
-4.76224e-12
-5.36146e-11
-2.13819e-12
-5.52856e-11
5.80139e-13
-5.64849e-11
3.34627e-12
-5.71899e-11
6.11886e-12
-5.74076e-11
8.86528e-12
-5.71661e-11
1.15625e-11
-5.65007e-11
1.41959e-11
-5.54499e-11
1.67596e-11
-5.40453e-11
1.925e-11
-5.23054e-11
2.16629e-11
-5.02337e-11
2.3992e-11
-4.78198e-11
2.62223e-11
-4.50405e-11
2.83274e-11
-4.18714e-11
3.02739e-11
-3.82926e-11
3.20225e-11
-3.42953e-11
3.35292e-11
-2.98914e-11
3.47517e-11
-2.51239e-11
3.56541e-11
-2.00631e-11
3.62104e-11
-1.48027e-11
3.64056e-11
-9.45518e-12
3.62407e-11
-4.14341e-12
3.57281e-11
1.01012e-12
3.48922e-11
5.88904e-12
3.37651e-11
1.03933e-11
3.23862e-11
1.44388e-11
3.08007e-11
1.79591e-11
2.90576e-11
2.09036e-11
2.72089e-11
2.32345e-11
2.53091e-11
2.49282e-11
2.34144e-11
2.59794e-11
2.15798e-11
2.64073e-11
1.98584e-11
2.62579e-11
1.8299e-11
2.56029e-11
1.69398e-11
2.45381e-11
1.58044e-11
2.3186e-11
1.49034e-11
2.16799e-11
1.42307e-11
2.01483e-11
1.37598e-11
1.87172e-11
1.34535e-11
1.74981e-11
1.3265e-11
1.65729e-11
1.31371e-11
1.60032e-11
1.30178e-11
1.58154e-11
1.28566e-11
1.59889e-11
1.26085e-11
1.64769e-11
1.22419e-11
1.7209e-11
1.17392e-11
1.80968e-11
1.11024e-11
1.90333e-11
1.03477e-11
1.99161e-11
9.50338e-12
2.06541e-11
8.59752e-12
2.11955e-11
7.66582e-12
2.15375e-11
6.7577e-12
2.16876e-11
5.88745e-12
2.16236e-11
5.0782e-12
2.14529e-11
4.3416e-12
2.12162e-11
3.64685e-12
2.10531e-11
2.98157e-12
2.09619e-11
2.30315e-12
2.09784e-11
1.6132e-12
2.08812e-11
9.20644e-13
2.01808e-11
3.12183e-13
1.74015e-11
1.07441e-11
-2.10101e-11
8.98163e-11
-2.75123e-11
1.46988e-10
-3.37352e-11
1.51231e-10
-3.89028e-11
1.37949e-10
-4.2902e-11
1.20839e-10
-4.58404e-11
1.04017e-10
-4.7838e-11
8.79692e-11
-4.9013e-11
7.29325e-11
-4.94727e-11
5.89414e-11
-4.9309e-11
4.60217e-11
-4.86093e-11
3.41927e-11
-4.74474e-11
2.34651e-11
-4.59045e-11
1.38519e-11
-4.40551e-11
5.35805e-12
-4.1976e-11
-2.01316e-12
-3.97412e-11
-8.29304e-12
-3.74272e-11
-1.35054e-11
-3.51047e-11
-1.77125e-11
-3.28413e-11
-2.09869e-11
-3.06965e-11
-2.34338e-11
-2.87207e-11
-2.51714e-11
-2.69501e-11
-2.63454e-11
-2.54051e-11
-2.71136e-11
-2.40906e-11
-2.76396e-11
-2.29903e-11
-2.80953e-11
-2.20743e-11
-2.86364e-11
-2.12942e-11
-2.94008e-11
-2.05905e-11
-3.04982e-11
-1.98919e-11
-3.20005e-11
-1.91259e-11
-3.39319e-11
-1.82258e-11
-3.62852e-11
-1.7132e-11
-3.90012e-11
-1.57983e-11
-4.19833e-11
-1.41938e-11
-4.51083e-11
-1.23127e-11
-4.82295e-11
-1.01661e-11
-5.12047e-11
-7.77388e-12
-5.39061e-11
-5.1805e-12
-5.62074e-11
-2.43609e-12
-5.80293e-11
4.01925e-13
-5.93222e-11
3.28853e-12
-6.00758e-11
6.17575e-12
-6.02941e-11
9.02811e-12
-6.00178e-11
1.18223e-11
-5.92942e-11
1.45456e-11
-5.81727e-11
1.71939e-11
-5.66931e-11
1.97666e-11
-5.48777e-11
2.2264e-11
-5.27307e-11
2.46818e-11
-5.02371e-11
2.70065e-11
-4.73648e-11
2.92131e-11
-4.40774e-11
3.12643e-11
-4.03433e-11
3.31146e-11
-3.61449e-11
3.47136e-11
-3.14896e-11
3.60115e-11
-2.6421e-11
3.69651e-11
-2.1016e-11
3.75437e-11
-1.53807e-11
3.77304e-11
-9.64138e-12
3.75262e-11
-3.93872e-12
3.69455e-11
1.59121e-12
3.60167e-11
6.81835e-12
3.47764e-11
1.16343e-11
3.32674e-11
1.59486e-11
3.15382e-11
1.96891e-11
2.96419e-11
2.28007e-11
2.76345e-11
2.52427e-11
2.5575e-11
2.69883e-11
2.35252e-11
2.80299e-11
2.15467e-11
2.83864e-11
1.96997e-11
2.81056e-11
1.80396e-11
2.72639e-11
1.66091e-11
2.59695e-11
1.54349e-11
2.4361e-11
1.45284e-11
2.25872e-11
1.38801e-11
2.07974e-11
1.34595e-11
1.91388e-11
1.32253e-11
1.77333e-11
1.31224e-11
1.66767e-11
1.30861e-11
1.60403e-11
1.30566e-11
1.58456e-11
1.29751e-11
1.60711e-11
1.27889e-11
1.66638e-11
1.24615e-11
1.75371e-11
1.19742e-11
1.85849e-11
1.13268e-11
1.96815e-11
1.05395e-11
2.07042e-11
9.64127e-12
2.1553e-11
8.67653e-12
2.2161e-11
7.6934e-12
2.25214e-11
6.74325e-12
2.26384e-11
5.84509e-12
2.25223e-11
5.03118e-12
2.22674e-11
4.29665e-12
2.19514e-11
3.62278e-12
2.17277e-11
2.98406e-12
2.16013e-11
2.35168e-12
2.16114e-11
1.68623e-12
2.15475e-11
9.76812e-13
2.08911e-11
3.54919e-13
1.80242e-11
1.10994e-11
-2.57484e-11
9.40061e-11
-3.21798e-11
1.5342e-10
-3.83035e-11
1.57355e-10
-4.33227e-11
1.42968e-10
-4.71311e-11
1.24647e-10
-4.98459e-11
1.06732e-10
-5.15985e-11
8.97218e-11
-5.25149e-11
7.38489e-11
-5.27076e-11
5.91342e-11
-5.22714e-11
4.55856e-11
-5.12962e-11
3.32178e-11
-4.98543e-11
2.20235e-11
-4.80345e-11
1.20325e-11
-4.59067e-11
3.23076e-12
-4.3553e-11
-4.36625e-12
-4.1053e-11
-1.07924e-11
-3.84867e-11
-1.60711e-11
-3.59321e-11
-2.02665e-11
-3.34594e-11
-2.34589e-11
-3.11365e-11
-2.57561e-11
-2.90181e-11
-2.72892e-11
-2.71441e-11
-2.8219e-11
-2.55388e-11
-2.87184e-11
-2.42038e-11
-2.89741e-11
-2.31244e-11
-2.91742e-11
-2.22634e-11
-2.94969e-11
-2.15656e-11
-3.00982e-11
-2.09623e-11
-3.11011e-11
-2.03723e-11
-3.25902e-11
-1.97119e-11
-3.45919e-11
-1.89028e-11
-3.70939e-11
-1.78765e-11
-4.00271e-11
-1.65759e-11
-4.32834e-11
-1.49781e-11
-4.67056e-11
-1.3062e-11
-5.01451e-11
-1.08432e-11
-5.34229e-11
-8.35194e-12
-5.63968e-11
-5.64019e-12
-5.89185e-11
-2.76751e-12
-6.09014e-11
2.09771e-13
-6.22989e-11
3.22848e-12
-6.30939e-11
6.23882e-12
-6.33039e-11
9.20335e-12
-6.29817e-11
1.20979e-11
-6.21883e-11
1.49122e-11
-6.09866e-11
1.76452e-11
-5.94256e-11
2.03011e-11
-5.75332e-11
2.28853e-11
-5.53145e-11
2.53974e-11
-5.27487e-11
2.78246e-11
-4.97916e-11
3.01423e-11
-4.63945e-11
3.2309e-11
-4.25093e-11
3.42727e-11
-3.81079e-11
3.59748e-11
-3.31911e-11
3.73578e-11
-2.78033e-11
3.83703e-11
-2.20279e-11
3.89746e-11
-1.59845e-11
3.91534e-11
-9.81975e-12
3.89058e-11
-3.69066e-12
3.82508e-11
2.24666e-12
3.72201e-11
7.8496e-12
3.58556e-11
1.29995e-11
3.42046e-11
1.76003e-11
3.23194e-11
2.15751e-11
3.02565e-11
2.48644e-11
2.80756e-11
2.74242e-11
2.58407e-11
2.92239e-11
2.36195e-11
3.02517e-11
2.14816e-11
3.0525e-11
1.94955e-11
3.00924e-11
1.77233e-11
2.90368e-11
1.62135e-11
2.748e-11
1.49972e-11
2.5578e-11
1.40861e-11
2.3499e-11
1.34677e-11
2.14165e-11
1.3109e-11
1.94982e-11
1.29616e-11
1.78814e-11
1.29604e-11
1.66785e-11
1.30332e-11
1.59682e-11
1.31095e-11
1.57698e-11
1.31198e-11
1.60614e-11
1.3004e-11
1.67803e-11
1.27205e-11
1.78215e-11
1.2247e-11
1.90593e-11
1.15842e-11
2.03451e-11
1.07536e-11
2.15356e-11
9.79487e-12
2.25125e-11
8.7653e-12
2.31914e-11
7.72118e-12
2.35662e-11
6.71661e-12
2.36436e-11
5.78682e-12
2.34527e-11
4.95914e-12
2.30957e-11
4.22923e-12
2.26821e-11
3.58428e-12
2.23734e-11
2.9811e-12
2.22052e-11
2.39121e-12
2.22021e-11
1.7634e-12
2.21762e-11
1.0535e-12
2.16019e-11
4.10891e-13
1.86676e-11
1.15106e-11
-3.08311e-11
9.80843e-11
-3.71858e-11
1.59774e-10
-4.32033e-11
1.63372e-10
-4.80511e-11
1.47816e-10
-5.16348e-11
1.28231e-10
-5.40899e-11
1.09187e-10
-5.55652e-11
9.11973e-11
-5.61968e-11
7.44806e-11
-5.60984e-11
5.9036e-11
-5.53681e-11
4.48556e-11
-5.40919e-11
3.1942e-11
-5.23556e-11
2.02876e-11
-5.02337e-11
9.91119e-12
-4.78088e-11
8.06403e-13
-4.51612e-11
-7.01331e-12
-4.23779e-11
-1.35752e-11
-3.95412e-11
-1.89072e-11
-3.6736e-11
-2.30711e-11
-3.404e-11
-2.61544e-11
-3.15269e-11
-2.82686e-11
-2.92561e-11
-2.95595e-11
-2.72742e-11
-3.02005e-11
-2.56057e-11
-3.03866e-11
-2.42556e-11
-3.03236e-11
-2.32042e-11
-3.02253e-11
-2.24108e-11
-3.02899e-11
-2.1812e-11
-3.06966e-11
-2.1328e-11
-3.15847e-11
-2.08663e-11
-3.30515e-11
-2.03305e-11
-3.51272e-11
-1.96294e-11
-3.77946e-11
-1.86815e-11
-4.09745e-11
-1.74326e-11
-4.45318e-11
-1.58359e-11
-4.83018e-11
-1.38804e-11
-5.21001e-11
-1.15804e-11
-5.57224e-11
-8.98283e-12
-5.89939e-11
-6.13513e-12
-6.17657e-11
-3.10833e-12
-6.39276e-11
7.85249e-15
-6.54145e-11
3.17261e-12
-6.62581e-11
6.31574e-12
-6.64465e-11
9.39808e-12
-6.60635e-11
1.23954e-11
-6.51851e-11
1.52996e-11
-6.38902e-11
1.8115e-11
-6.22405e-11
2.08535e-11
-6.02711e-11
2.3526e-11
-5.79865e-11
2.61377e-11
-5.53598e-11
2.86769e-11
-5.23301e-11
3.11157e-11
-4.88327e-11
3.34101e-11
-4.4803e-11
3.55004e-11
-4.01975e-11
3.73185e-11
-3.50085e-11
3.87971e-11
-2.92812e-11
3.98769e-11
-2.3107e-11
4.05131e-11
-1.66202e-11
4.06849e-11
-9.99105e-12
4.03908e-11
-3.39602e-12
3.96537e-11
2.98432e-12
3.85107e-11
8.99329e-12
3.70092e-11
1.45017e-11
3.52029e-11
1.94074e-11
3.31484e-11
2.36304e-11
3.09045e-11
2.71091e-11
2.85342e-11
2.97952e-11
2.61065e-11
3.16523e-11
2.36957e-11
3.26632e-11
2.13798e-11
3.28415e-11
1.92374e-11
3.22354e-11
1.73395e-11
3.09352e-11
1.57417e-11
2.90783e-11
1.44794e-11
2.68408e-11
1.35648e-11
2.44141e-11
1.29846e-11
2.19973e-11
1.27019e-11
1.97815e-11
1.26577e-11
1.79261e-11
1.27768e-11
1.65598e-11
1.29782e-11
1.57672e-11
1.3177e-11
1.55714e-11
1.32924e-11
1.59466e-11
1.32572e-11
1.68162e-11
1.30222e-11
1.80573e-11
1.25631e-11
1.95191e-11
1.18822e-11
2.10268e-11
1.10034e-11
2.24152e-11
9.97782e-12
2.35389e-11
8.86819e-12
2.43018e-11
7.74761e-12
2.46876e-11
6.67498e-12
2.4717e-11
5.70281e-12
2.44256e-11
4.8641e-12
2.39353e-11
4.13873e-12
2.34084e-11
3.53753e-12
2.29755e-11
2.99784e-12
2.27458e-11
2.44125e-12
2.27596e-11
1.85691e-12
2.27614e-11
1.17005e-12
2.22896e-11
4.9068e-13
1.93477e-11
1.20017e-11
-3.61568e-11
1.02147e-10
-4.25157e-11
1.66133e-10
-4.84459e-11
1.69303e-10
-5.31031e-11
1.52473e-10
-5.64302e-11
1.31558e-10
-5.85864e-11
1.11344e-10
-5.97493e-11
9.23603e-11
-6.00653e-11
7.47968e-11
-5.96523e-11
5.86233e-11
-5.86078e-11
4.38115e-11
-5.70129e-11
3.03475e-11
-5.49596e-11
1.82348e-11
-5.25171e-11
7.46918e-12
-4.97725e-11
-1.93771e-12
-4.6809e-11
-9.9763e-12
-4.3718e-11
-1.66656e-11
-4.05899e-11
-2.20348e-11
-3.75134e-11
-2.61471e-11
-3.45764e-11
-2.90909e-11
-3.18573e-11
-3.09873e-11
-2.94237e-11
-3.19927e-11
-2.73267e-11
-3.2297e-11
-2.55953e-11
-3.21176e-11
-2.42347e-11
-3.16838e-11
-2.32221e-11
-3.12374e-11
-2.25118e-11
-3.09996e-11
-2.20314e-11
-3.11764e-11
-2.16897e-11
-3.19259e-11
-2.13797e-11
-3.33609e-11
-2.09909e-11
-3.55154e-11
-2.04171e-11
-3.83678e-11
-1.95694e-11
-4.18215e-11
-1.83713e-11
-4.57294e-11
-1.67782e-11
-4.98944e-11
-1.47869e-11
-5.40909e-11
-1.2407e-11
-5.81017e-11
-9.68211e-12
-6.17182e-11
-6.68487e-12
-6.47624e-11
-3.49802e-12
-6.71139e-11
-2.04248e-13
-6.87077e-11
3.12154e-12
-6.95833e-11
6.40778e-12
-6.97321e-11
9.61437e-12
-6.92696e-11
1.27168e-11
-6.8287e-11
1.57102e-11
-6.68831e-11
1.86052e-11
-6.51349e-11
2.1422e-11
-6.30874e-11
2.41814e-11
-6.07452e-11
2.68921e-11
-5.80699e-11
2.95487e-11
-5.4986e-11
3.212e-11
-5.14033e-11
3.45563e-11
-4.72386e-11
3.67915e-11
-4.24321e-11
3.87442e-11
-3.69605e-11
4.03351e-11
-3.08715e-11
4.1494e-11
-2.42653e-11
4.21678e-11
-1.72934e-11
4.233e-11
-1.01527e-11
4.19847e-11
-3.05004e-12
4.11561e-11
3.81373e-12
3.98885e-11
1.02616e-11
3.8237e-11
1.61541e-11
3.62612e-11
2.13841e-11
3.40219e-11
2.58706e-11
3.15808e-11
2.9551e-11
2.90045e-11
3.23722e-11
2.63667e-11
3.42909e-11
2.3748e-11
3.52826e-11
2.12361e-11
3.53541e-11
1.89208e-11
3.45513e-11
1.68837e-11
3.29727e-11
1.51888e-11
3.07738e-11
1.38772e-11
2.81529e-11
1.29632e-11
2.53286e-11
1.24302e-11
2.25307e-11
1.22361e-11
1.99759e-11
1.23125e-11
1.78498e-11
1.25728e-11
1.62997e-11
1.29232e-11
1.5417e-11
1.32653e-11
1.52295e-11
1.35052e-11
1.57072e-11
1.3564e-11
1.67579e-11
1.33848e-11
1.82372e-11
1.2938e-11
1.99666e-11
1.22285e-11
2.17369e-11
1.1291e-11
2.33532e-11
1.0187e-11
2.46436e-11
8.98101e-12
2.55085e-11
7.76042e-12
2.59089e-11
6.60993e-12
2.58682e-11
5.59017e-12
2.54462e-11
4.73999e-12
2.47864e-11
4.03776e-12
2.41116e-11
3.47966e-12
2.35345e-11
2.97984e-12
2.32465e-11
2.49854e-12
2.32419e-11
1.97048e-12
2.32905e-11
1.31683e-12
2.29441e-11
5.82902e-13
2.00824e-11
1.2585e-11
-4.17441e-11
1.06456e-10
-4.81886e-11
1.72578e-10
-5.40483e-11
1.75162e-10
-5.84884e-11
1.56913e-10
-6.15176e-11
1.34587e-10
-6.33347e-11
1.13161e-10
-6.41495e-11
9.31754e-11
-6.41182e-11
7.47658e-11
-6.33663e-11
5.78718e-11
-6.19831e-11
4.24286e-11
-6.00566e-11
2.84215e-11
-5.76646e-11
1.58432e-11
-5.48831e-11
4.68804e-12
-5.17985e-11
-5.02189e-12
-4.84985e-11
-1.32759e-11
-4.50764e-11
-2.00873e-11
-4.1633e-11
-2.54778e-11
-3.82638e-11
-2.95159e-11
-3.50645e-11
-3.22899e-11
-3.21217e-11
-3.39297e-11
-2.95112e-11
-3.46028e-11
-2.72905e-11
-3.45173e-11
-2.54932e-11
-3.39144e-11
-2.41262e-11
-3.30502e-11
-2.31641e-11
-3.21989e-11
-2.25548e-11
-3.16083e-11
-2.22153e-11
-3.15153e-11
-2.20417e-11
-3.20988e-11
-2.19105e-11
-3.34914e-11
-2.16958e-11
-3.57295e-11
-2.12745e-11
-3.87884e-11
-2.05391e-11
-4.25563e-11
-1.94064e-11
-4.68616e-11
-1.78283e-11
-5.14721e-11
-1.57874e-11
-5.61312e-11
-1.3305e-11
-6.05837e-11
-1.04433e-11
-6.45794e-11
-7.27402e-12
-6.79311e-11
-3.89551e-12
-7.04919e-11
-4.01053e-13
-7.22016e-11
3.08122e-12
-7.3065e-11
6.52143e-12
-7.31718e-11
9.85861e-12
-7.26062e-11
1.30667e-11
-7.14945e-11
1.61459e-11
-6.99616e-11
1.9115e-11
-6.81033e-11
2.20046e-11
-6.59763e-11
2.48464e-11
-6.35864e-11
2.76587e-11
-6.08814e-11
3.04373e-11
-5.77639e-11
3.31539e-11
-5.41192e-11
3.57514e-11
-4.98354e-11
3.81498e-11
-4.48298e-11
4.02588e-11
-3.90689e-11
4.19807e-11
-3.2593e-11
4.32305e-11
-2.55145e-11
4.39483e-11
-1.80106e-11
4.41027e-11
-1.03063e-11
4.36989e-11
-2.64548e-12
4.27678e-11
4.74578e-12
4.13624e-11
1.16678e-11
3.95465e-11
1.79709e-11
3.73861e-11
2.35453e-11
3.49462e-11
2.83113e-11
3.22913e-11
3.22067e-11
2.94908e-11
3.51734e-11
2.66222e-11
3.71603e-11
2.37733e-11
3.81322e-11
2.10434e-11
3.80846e-11
1.85355e-11
3.70597e-11
1.63431e-11
3.51657e-11
1.45405e-11
3.25769e-11
1.31766e-11
2.95173e-11
1.22672e-11
2.62385e-11
1.17929e-11
2.30055e-11
1.17039e-11
2.00653e-11
1.19217e-11
1.76323e-11
1.23478e-11
1.58737e-11
1.28733e-11
1.48917e-11
1.33835e-11
1.47196e-11
1.37687e-11
1.53224e-11
1.39351e-11
1.6592e-11
1.38159e-11
1.83569e-11
1.33776e-11
2.04054e-11
1.26267e-11
2.24883e-11
1.1608e-11
2.43726e-11
1.03961e-11
2.58561e-11
9.07224e-12
2.68331e-11
7.74173e-12
2.724e-11
6.50586e-12
2.71048e-11
5.44325e-12
2.65097e-11
4.57373e-12
2.56569e-11
3.90435e-12
2.47819e-11
3.39864e-12
2.40411e-11
2.97386e-12
2.36723e-11
2.57146e-12
2.36453e-11
2.11825e-12
2.37445e-11
1.49299e-12
2.35701e-11
6.96822e-13
2.08793e-11
1.32823e-11
-4.77154e-11
1.10932e-10
-5.42763e-11
1.79139e-10
-6.00541e-11
1.8094e-10
-6.42322e-11
1.61091e-10
-6.69054e-11
1.37261e-10
-6.83336e-11
1.14589e-10
-6.87608e-11
9.36028e-11
-6.8352e-11
7.43572e-11
-6.72363e-11
5.67565e-11
-6.54938e-11
4.06864e-11
-6.32155e-11
2.61435e-11
-6.0466e-11
1.3094e-11
-5.7323e-11
1.54538e-12
-5.38764e-11
-8.46827e-12
-5.02158e-11
-1.69362e-11
-4.64416e-11
-2.38611e-11
-4.26589e-11
-2.92602e-11
-3.89745e-11
-3.31999e-11
-3.54908e-11
-3.57732e-11
-3.23057e-11
-3.71145e-11
-2.95036e-11
-3.74045e-11
-2.71505e-11
-3.687e-11
-2.5284e-11
-3.57803e-11
-2.39149e-11
-3.44187e-11
-2.30154e-11
-3.30976e-11
-2.25267e-11
-3.20963e-11
-2.23548e-11
-3.16864e-11
-2.23788e-11
-3.20741e-11
-2.24597e-11
-3.34098e-11
-2.24505e-11
-3.5738e-11
-2.22076e-11
-3.90307e-11
-2.16069e-11
-4.31564e-11
-2.05526e-11
-4.79153e-11
-1.89858e-11
-5.30385e-11
-1.68975e-11
-5.8219e-11
-1.43094e-11
-6.31713e-11
-1.12835e-11
-6.76048e-11
-7.91947e-12
-7.12946e-11
-4.33304e-12
-7.40778e-11
-6.44148e-13
-7.58899e-11
3.05081e-12
-7.67594e-11
6.6598e-12
-7.67803e-11
1.01329e-11
-7.60788e-11
1.3448e-11
-7.4809e-11
1.66098e-11
-7.31228e-11
1.96467e-11
-7.11397e-11
2.26029e-11
-6.89319e-11
2.55233e-11
-6.65061e-11
2.84367e-11
-6.37942e-11
3.1345e-11
-6.06717e-11
3.4219e-11
-5.69925e-11
3.69955e-11
-5.26114e-11
3.95818e-11
-4.74157e-11
4.18689e-11
-4.13556e-11
4.37425e-11
-3.44661e-11
4.51e-11
-2.68714e-11
4.58687e-11
-1.87787e-11
4.6015e-11
-1.04519e-11
4.55435e-11
-2.17303e-12
4.44969e-11
5.79322e-12
4.29384e-11
1.32272e-11
4.09422e-11
1.99678e-11
3.85817e-11
2.59064e-11
3.59259e-11
3.09678e-11
3.30407e-11
3.50926e-11
2.99967e-11
3.82181e-11
2.68742e-11
4.02836e-11
2.377e-11
4.12372e-11
2.07967e-11
4.10586e-11
1.80726e-11
3.97844e-11
1.57059e-11
3.7533e-11
1.37847e-11
3.44987e-11
1.23659e-11
3.09369e-11
1.14654e-11
2.71396e-11
1.10611e-11
2.34104e-11
1.10953e-11
2.00317e-11
1.14771e-11
1.72509e-11
1.20949e-11
1.52563e-11
1.28228e-11
1.41643e-11
1.35278e-11
1.40152e-11
1.40819e-11
1.47691e-11
1.43741e-11
1.63004e-11
1.43246e-11
1.8407e-11
1.38957e-11
2.08349e-11
1.30962e-11
2.32884e-11
1.19814e-11
2.5488e-11
1.06339e-11
2.72043e-11
9.1644e-12
2.83032e-11
7.70346e-12
2.87016e-11
6.36571e-12
2.84433e-11
5.24535e-12
2.76309e-11
4.3591e-12
2.6544e-11
3.72108e-12
2.54206e-11
3.28075e-12
2.44822e-11
2.96066e-12
2.39931e-11
2.6716e-12
2.39351e-11
2.29729e-12
2.41194e-11
1.71027e-12
2.41577e-11
8.36276e-13
2.17541e-11
1.41189e-11
-5.41847e-11
1.15545e-10
-6.08694e-11
1.85823e-10
-6.65219e-11
1.86593e-10
-7.03664e-11
1.64936e-10
-7.2612e-11
1.39506e-10
-7.35906e-11
1.15568e-10
-7.35851e-11
9.35976e-11
-7.27669e-11
7.35393e-11
-7.12602e-11
5.52501e-11
-6.91473e-11
3.85738e-11
-6.64919e-11
2.34884e-11
-6.33642e-11
9.96652e-12
-5.98425e-11
-1.97624e-12
-5.60063e-11
-1.23043e-11
-5.19584e-11
-2.09838e-11
-4.78043e-11
-2.8015e-11
-4.36566e-11
-3.34076e-11
-3.96305e-11
-3.72257e-11
-3.58389e-11
-3.95645e-11
-3.23906e-11
-4.05623e-11
-2.93809e-11
-4.04137e-11
-2.68853e-11
-3.93651e-11
-2.49487e-11
-3.77165e-11
-2.35839e-11
-3.57829e-11
-2.27618e-11
-3.39191e-11
-2.24166e-11
-3.24409e-11
-2.24414e-11
-3.1661e-11
-2.27005e-11
-3.18143e-11
-2.30311e-11
-3.30786e-11
-2.32623e-11
-3.55062e-11
-2.32288e-11
-3.90637e-11
-2.27866e-11
-4.35982e-11
-2.18246e-11
-4.88769e-11
-2.02775e-11
-5.45851e-11
-1.81292e-11
-6.03669e-11
-1.54156e-11
-6.58844e-11
-1.22066e-11
-7.08134e-11
-8.61942e-12
-7.48814e-11
-4.79306e-12
-7.79037e-11
-8.67803e-13
-7.98147e-11
3.04027e-12
-8.0667e-11
6.82945e-12
-8.0569e-11
1.04452e-11
-7.9694e-11
1.38668e-11
-7.82302e-11
1.71046e-11
-7.63601e-11
2.02011e-11
-7.42356e-11
2.32141e-11
-7.19444e-11
2.62067e-11
-6.94982e-11
2.92191e-11
-6.68062e-11
3.22641e-11
-6.37163e-11
3.5309e-11
-6.0037e-11
3.8285e-11
-5.55871e-11
4.10861e-11
-5.02165e-11
4.35808e-11
-4.38501e-11
4.56317e-11
-3.65167e-11
4.71157e-11
-2.83549e-11
4.79447e-11
-1.9607e-11
4.80804e-11
-1.05868e-11
4.75305e-11
-1.62229e-12
4.63513e-11
6.97318e-12
4.46215e-11
1.49576e-11
4.2428e-11
2.21617e-11
3.9852e-11
2.84829e-11
3.69655e-11
3.38547e-11
3.38338e-11
3.82247e-11
3.05259e-11
4.15265e-11
2.71248e-11
4.36853e-11
2.37372e-11
4.46253e-11
2.04914e-11
4.4305e-11
1.75238e-11
4.27525e-11
1.49621e-11
4.00953e-11
1.29107e-11
3.65507e-11
1.14333e-11
3.2415e-11
1.05463e-11
2.80274e-11
1.02252e-11
2.37323e-11
1.04009e-11
1.98565e-11
1.09694e-11
1.6683e-11
1.18065e-11
1.44199e-11
1.27674e-11
1.32042e-11
1.36979e-11
1.30855e-11
1.44499e-11
1.40179e-11
1.48907e-11
1.58603e-11
1.49266e-11
1.83718e-11
1.45125e-11
2.12496e-11
1.36566e-11
2.41451e-11
1.2421e-11
2.67244e-11
1.09051e-11
2.87209e-11
9.2635e-12
2.99456e-11
7.63886e-12
3.0327e-11
6.18115e-12
2.99018e-11
4.98122e-12
2.88316e-11
4.09104e-12
2.74348e-11
3.49751e-12
2.60148e-11
3.14937e-12
2.4831e-11
2.95732e-12
2.41858e-11
2.78496e-12
2.41079e-11
2.50969e-12
2.43952e-11
1.9703e-12
2.46977e-11
1.01189e-12
2.27131e-11
1.51309e-11
-6.12863e-11
1.20227e-10
-6.80646e-11
1.92601e-10
-7.35156e-11
1.92044e-10
-7.69202e-11
1.6834e-10
-7.86456e-11
1.41232e-10
-7.91067e-11
1.16029e-10
-7.86218e-11
9.31129e-11
-7.73622e-11
7.22799e-11
-7.5445e-11
5.33331e-11
-7.29351e-11
3.60641e-11
-6.98913e-11
2.04448e-11
-6.63674e-11
6.44272e-12
-6.24406e-11
-5.90293e-12
-5.81933e-11
-1.65514e-11
-5.37316e-11
-2.54454e-11
-4.91697e-11
-3.25767e-11
-4.46267e-11
-3.79504e-11
-4.02298e-11
-4.16223e-11
-3.61021e-11
-4.36918e-11
-3.23666e-11
-4.42975e-11
-2.91306e-11
-4.36493e-11
-2.64807e-11
-4.20146e-11
-2.44711e-11
-3.97256e-11
-2.31179e-11
-3.71356e-11
-2.23913e-11
-3.46452e-11
-2.22172e-11
-3.26145e-11
-2.24739e-11
-3.14037e-11
-2.3004e-11
-3.12838e-11
-2.36266e-11
-3.24556e-11
-2.41409e-11
-3.49914e-11
-2.43549e-11
-3.88494e-11
-2.40952e-11
-4.38575e-11
-2.32417e-11
-4.973e-11
-2.17164e-11
-5.61101e-11
-1.95051e-11
-6.25779e-11
-1.66458e-11
-6.87433e-11
-1.32248e-11
-7.4234e-11
-9.37935e-12
-7.87264e-11
-5.27535e-12
-8.20073e-11
-1.07731e-12
-8.40124e-11
3.05832e-12
-8.48023e-11
7.04276e-12
-8.45531e-11
1.08081e-11
-8.34591e-11
1.43318e-11
-8.17535e-11
1.76361e-11
-7.96639e-11
2.07759e-11
-7.73749e-11
2.38311e-11
-7.49991e-11
2.68817e-11
-7.25484e-11
2.99932e-11
-6.99172e-11
3.31792e-11
-6.69019e-11
3.6415e-11
-6.32725e-11
3.96184e-11
-5.87902e-11
4.2667e-11
-5.32647e-11
4.5404e-11
-4.65868e-11
4.76626e-11
-3.87749e-11
4.92946e-11
-2.99864e-11
5.01955e-11
-2.05072e-11
5.03153e-11
-1.07058e-11
4.96757e-11
-9.81931e-13
4.83449e-11
8.30469e-12
4.64219e-11
1.6881e-11
4.40103e-11
2.45737e-11
4.12005e-11
3.12929e-11
3.80669e-11
3.69885e-11
3.46714e-11
4.16205e-11
3.10792e-11
4.5119e-11
2.73743e-11
4.73906e-11
2.3673e-11
4.83271e-11
2.01205e-11
4.7858e-11
1.6877e-11
4.59964e-11
1.40945e-11
4.28784e-11
1.18958e-11
3.875e-11
1.03535e-11
3.3958e-11
9.48604e-12
2.88955e-11
9.26314e-12
2.39558e-11
9.60564e-12
1.95146e-11
1.03953e-11
1.5894e-11
1.14891e-11
1.33268e-11
1.2721e-11
1.19732e-11
1.39133e-11
1.18941e-11
1.48942e-11
1.30377e-11
1.55071e-11
1.52482e-11
1.56405e-11
1.82392e-11
1.52389e-11
2.1652e-11
1.43092e-11
2.50756e-11
1.2926e-11
2.81084e-11
1.12166e-11
3.04311e-11
9.36337e-12
3.17996e-11
7.54256e-12
3.21486e-11
5.93119e-12
3.15139e-11
4.64326e-12
3.01202e-11
3.74704e-12
2.83316e-11
3.21809e-12
2.65442e-11
2.99215e-12
2.50574e-11
2.93988e-12
2.42385e-11
2.91632e-12
2.41318e-11
2.76408e-12
2.45478e-11
2.28382e-12
2.51784e-11
1.21518e-12
2.37821e-11
1.63462e-11
-6.92426e-11
1.24922e-10
-7.60139e-11
1.99373e-10
-8.11158e-11
1.97146e-10
-8.39217e-11
1.71146e-10
-8.50064e-11
1.42317e-10
-8.48675e-11
1.15891e-10
-8.38571e-11
9.21028e-11
-8.21263e-11
7.05493e-11
-7.97837e-11
5.09906e-11
-7.68618e-11
3.31423e-11
-7.34086e-11
1.69916e-11
-6.94721e-11
2.50621e-12
-6.51193e-11
-1.02556e-11
-6.04371e-11
-2.12334e-11
-5.55333e-11
-3.03491e-11
-5.05337e-11
-3.7576e-11
-4.55661e-11
-4.29177e-11
-4.07672e-11
-4.6421e-11
-3.62724e-11
-4.81864e-11
-3.22206e-11
-4.8349e-11
-2.87376e-11
-4.71321e-11
-2.59221e-11
-4.48297e-11
-2.38363e-11
-4.18112e-11
-2.25023e-11
-3.84693e-11
-2.18865e-11
-3.52607e-11
-2.19096e-11
-3.2591e-11
-2.24357e-11
-3.08773e-11
-2.32848e-11
-3.04343e-11
-2.42458e-11
-3.14944e-11
-2.50898e-11
-3.41471e-11
-2.55909e-11
-3.8348e-11
-2.5553e-11
-4.38952e-11
-2.48276e-11
-5.04551e-11
-2.33302e-11
-5.76072e-11
-2.10453e-11
-6.48624e-11
-1.80193e-11
-7.1769e-11
-1.4352e-11
-7.79008e-11
-1.02081e-11
-8.28699e-11
-5.78896e-12
-8.64259e-11
-1.29367e-12
-8.85073e-11
3.11818e-12
-8.92138e-11
7.31758e-12
-8.87521e-11
1.12374e-11
-8.73784e-11
1.48584e-11
-8.5374e-11
1.82131e-11
-8.30182e-11
2.13754e-11
-8.05367e-11
2.44481e-11
-7.80714e-11
2.75446e-11
-7.56443e-11
3.07461e-11
-7.31181e-11
3.40836e-11
-7.02389e-11
3.75287e-11
-6.67171e-11
4.09923e-11
-6.22532e-11
4.43276e-11
-5.65994e-11
4.73473e-11
-4.96059e-11
4.98503e-11
-4.12772e-11
5.16561e-11
-3.17914e-11
5.264e-11
-2.14902e-11
5.27437e-11
-1.08086e-11
5.19972e-11
-2.34659e-13
5.04917e-11
9.81097e-12
4.83495e-11
1.90237e-11
4.56948e-11
2.72286e-11
4.26298e-11
3.43581e-11
3.92312e-11
4.03873e-11
3.55547e-11
4.52973e-11
3.16583e-11
4.90157e-11
2.76236e-11
5.14256e-11
2.35745e-11
5.23765e-11
1.96756e-11
5.17573e-11
1.61175e-11
4.95548e-11
1.30828e-11
4.59135e-11
1.07166e-11
4.11166e-11
9.10375e-12
3.55713e-11
8.26417e-12
2.97354e-11
8.15878e-12
2.40616e-11
8.69726e-12
1.89765e-11
9.74668e-12
1.48451e-11
1.11405e-11
1.19336e-11
1.26883e-11
1.04262e-11
1.41868e-11
1.03962e-11
1.54333e-11
1.17918e-11
1.62443e-11
1.44378e-11
1.64854e-11
1.79987e-11
1.60913e-11
2.20469e-11
1.50713e-11
2.60965e-11
1.35131e-11
2.96673e-11
1.15753e-11
3.23696e-11
9.46383e-12
3.39117e-11
7.40312e-12
3.421e-11
5.60727e-12
3.33104e-11
4.21294e-12
3.1515e-11
3.30808e-12
2.92369e-11
2.87264e-12
2.69801e-11
2.79498e-12
2.51355e-11
2.89899e-12
2.41349e-11
3.05496e-12
2.39762e-11
3.04875e-12
2.45544e-11
2.63158e-12
2.5596e-11
1.44794e-12
2.49661e-11
1.77943e-11
-7.846e-11
1.29516e-10
-8.49587e-11
2.05872e-10
-8.94338e-11
2.01621e-10
-9.14043e-11
1.73117e-10
-9.16946e-11
1.42607e-10
-9.08593e-11
1.15056e-10
-8.92712e-11
9.05149e-11
-8.70537e-11
6.83319e-11
-8.4267e-11
4.82039e-11
-8.09233e-11
2.97987e-11
-7.70467e-11
1.31151e-11
-7.26795e-11
-1.8609e-12
-6.78785e-11
-1.50566e-11
-6.27342e-11
-2.63776e-11
-5.73591e-11
-3.57242e-11
-5.18897e-11
-4.30453e-11
-4.64649e-11
-4.83424e-11
-4.12304e-11
-5.16553e-11
-3.63358e-11
-5.30808e-11
-3.19373e-11
-5.27474e-11
-2.81821e-11
-5.08871e-11
-2.51832e-11
-4.78285e-11
-2.30163e-11
-4.39779e-11
-2.17066e-11
-3.97788e-11
-2.12251e-11
-3.57419e-11
-2.14791e-11
-3.23368e-11
-2.23187e-11
-3.00376e-11
-2.35377e-11
-2.92151e-11
-2.48947e-11
-3.01372e-11
-2.61244e-11
-3.29172e-11
-2.69628e-11
-3.75093e-11
-2.71838e-11
-4.36739e-11
-2.66048e-11
-5.10337e-11
-2.51433e-11
-5.90684e-11
-2.27712e-11
-6.72341e-11
-1.95529e-11
-7.49868e-11
-1.55999e-11
-8.18533e-11
-1.11069e-11
-8.73624e-11
-6.32048e-12
-9.12119e-11
-1.47906e-12
-9.33482e-11
3.229e-12
-9.39214e-11
7.66084e-12
-9.31835e-11
1.17406e-11
-9.14577e-11
1.54523e-11
-8.90852e-11
1.88382e-11
-8.64035e-11
2.19973e-11
-8.36951e-11
2.50624e-11
-8.11359e-11
2.818e-11
-7.87611e-11
3.14667e-11
-7.6404e-11
3.49604e-11
-7.37318e-11
3.86385e-11
-7.03944e-11
4.23979e-11
-6.60118e-11
4.60666e-11
-6.02672e-11
4.94183e-11
-5.29567e-11
5.22108e-11
-4.40687e-11
5.42242e-11
-3.38037e-11
5.5302e-11
-2.25669e-11
5.53849e-11
-1.08904e-11
5.45107e-11
6.40583e-13
5.27992e-11
1.15233e-11
5.04063e-11
2.14173e-11
4.74832e-11
3.01523e-11
4.41456e-11
3.76962e-11
4.04694e-11
4.4064e-11
3.64982e-11
4.9269e-11
3.22772e-11
5.32372e-11
2.7882e-11
5.58213e-11
2.34437e-11
5.68153e-11
1.91518e-11
5.60496e-11
1.52343e-11
5.34727e-11
1.1911e-11
4.92373e-11
9.35612e-12
4.36718e-11
7.66843e-12
3.72592e-11
6.86523e-12
3.05388e-11
6.89696e-12
2.403e-11
7.66289e-12
1.82109e-11
9.01102e-12
1.34973e-11
1.075e-11
1.0195e-11
1.2665e-11
8.51158e-12
1.45212e-11
8.54032e-12
1.60797e-11
1.02336e-11
1.71235e-11
1.33943e-11
1.74904e-11
1.76321e-11
1.71014e-11
2.24363e-11
1.59697e-11
2.72286e-11
1.42023e-11
3.14351e-11
1.19814e-11
3.4591e-11
9.55389e-12
3.63397e-11
7.20262e-12
3.65618e-11
5.18451e-12
3.5329e-11
3.67372e-12
3.30262e-11
2.76033e-12
3.01507e-11
2.42169e-12
2.73193e-11
2.53097e-12
2.50267e-11
2.86275e-12
2.38035e-11
3.21554e-12
2.36239e-11
3.35558e-12
2.44149e-11
3.01058e-12
2.59415e-11
1.70882e-12
2.62682e-11
1.95034e-11
-8.9596e-11
1.3355e-10
-9.52451e-11
2.11521e-10
-9.86074e-11
2.04984e-10
-9.93988e-11
1.73909e-10
-9.87026e-11
1.41911e-10
-9.70673e-11
1.1342e-10
-9.48597e-11
8.83073e-11
-9.21297e-11
6.56019e-11
-8.8892e-11
4.49663e-11
-8.51192e-11
2.6026e-11
-8.08083e-11
8.80428e-12
-7.59958e-11
-6.67331e-12
-7.0724e-11
-2.03284e-11
-6.50897e-11
-3.20118e-11
-5.92096e-11
-4.16042e-11
-5.32351e-11
-4.90196e-11
-4.73173e-11
-5.426e-11
-4.16105e-11
-5.73621e-11
-3.62794e-11
-5.84118e-11
-3.14988e-11
-5.75279e-11
-2.74422e-11
-5.49436e-11
-2.42398e-11
-5.10308e-11
-2.19848e-11
-4.62328e-11
-2.07059e-11
-4.10575e-11
-2.03776e-11
-3.60702e-11
-2.09005e-11
-3.18138e-11
-2.21046e-11
-2.88334e-11
-2.37524e-11
-2.75672e-11
-2.55718e-11
-2.83177e-11
-2.72516e-11
-3.12371e-11
-2.84853e-11
-3.62755e-11
-2.9004e-11
-4.31549e-11
-2.85996e-11
-5.14377e-11
-2.71745e-11
-6.04931e-11
-2.4707e-11
-6.97012e-11
-2.12679e-11
-7.84254e-11
-1.6982e-11
-8.61387e-11
-1.20816e-11
-9.22623e-11
-6.86993e-12
-9.6423e-11
-1.63432e-12
-9.85833e-11
3.40388e-12
-9.89591e-11
8.08816e-12
-9.78673e-11
1.23339e-11
-9.57029e-11
1.61248e-11
-9.28754e-11
1.95208e-11
-8.97988e-11
2.26406e-11
-8.68141e-11
2.56626e-11
-8.4157e-11
2.87757e-11
-8.18733e-11
3.2129e-11
-7.97563e-11
3.57859e-11
-7.73877e-11
3.97215e-11
-7.4329e-11
4.38201e-11
-7.01093e-11
4.78802e-11
-6.43261e-11
5.16278e-11
-5.67031e-11
5.47644e-11
-4.72041e-11
5.70226e-11
-3.60606e-11
5.82135e-11
-2.37566e-11
5.82636e-11
-1.09392e-11
5.72319e-11
1.67335e-12
5.52758e-11
1.34804e-11
5.25959e-11
2.40981e-11
4.93767e-11
3.33723e-11
4.5749e-11
4.13247e-11
4.17853e-11
4.80285e-11
3.75101e-11
5.3545e-11
3.29466e-11
5.78015e-11
2.81588e-11
6.061e-11
2.32849e-11
6.16899e-11
1.85447e-11
6.07906e-11
1.42145e-11
5.78035e-11
1.05608e-11
5.28917e-11
7.79386e-12
4.64391e-11
6.02668e-12
3.90267e-11
5.26804e-12
3.12977e-11
5.45863e-12
2.38396e-11
6.48634e-12
1.71834e-11
8.17644e-12
1.18075e-11
1.03139e-11
8.05774e-12
1.26542e-11
6.17139e-12
1.49265e-11
6.26809e-12
1.68508e-11
8.30924e-12
1.81684e-11
1.20766e-11
1.86821e-11
1.71185e-11
1.82964e-11
2.28221e-11
1.70314e-11
2.84936e-11
1.49999e-11
3.34667e-11
1.24293e-11
3.71616e-11
9.62115e-12
3.9148e-11
6.9277e-12
3.92554e-11
4.64328e-12
3.76136e-11
3.00589e-12
3.46639e-11
2.08764e-12
3.10693e-11
1.86967e-12
2.75376e-11
2.19416e-12
2.47026e-11
2.80437e-12
2.31938e-11
3.39942e-12
2.30294e-11
3.70759e-12
2.41073e-11
3.41529e-12
2.62342e-11
1.9881e-12
2.76959e-11
2.14918e-11
-1.03542e-10
1.36223e-10
-1.07285e-10
2.15265e-10
-1.08768e-10
2.06466e-10
-1.07911e-10
1.73052e-10
-1.06005e-10
1.40005e-10
-1.03466e-10
1.10881e-10
-1.00607e-10
8.54484e-11
-9.73515e-11
6.23467e-11
-9.36603e-11
4.12752e-11
-8.94545e-11
2.18202e-11
-8.4699e-11
4.04884e-12
-7.94244e-11
-1.19478e-11
-7.3659e-11
-2.60937e-11
-6.75028e-11
-3.8168e-11
-6.108e-11
-4.8027e-11
-5.45613e-11
-5.55383e-11
-4.81113e-11
-6.071e-11
-4.1891e-11
-6.35824e-11
-3.60794e-11
-6.42233e-11
-3.08748e-11
-6.27325e-11
-2.64845e-11
-5.93338e-11
-2.30567e-11
-5.44586e-11
-2.07053e-11
-4.85841e-11
-1.94633e-11
-4.22995e-11
-1.93125e-11
-3.62209e-11
-2.01449e-11
-3.09813e-11
-2.17671e-11
-2.72111e-11
-2.39195e-11
-2.54146e-11
-2.62779e-11
-2.5959e-11
-2.84859e-11
-2.90289e-11
-3.01831e-11
-3.45779e-11
-3.1044e-11
-4.22937e-11
-3.08477e-11
-5.16337e-11
-2.94614e-11
-6.18789e-11
-2.68853e-11
-7.22768e-11
-2.31919e-11
-8.21184e-11
-1.85182e-11
-9.08118e-11
-1.31382e-11
-9.76418e-11
-7.42807e-12
-1.02133e-10
-1.74099e-12
-1.0427e-10
3.67085e-12
-1.04371e-10
8.62969e-12
-1.02826e-10
1.3045e-11
-1.00118e-10
1.69027e-11
-9.67325e-11
2.02787e-11
-9.31741e-11
2.33207e-11
-8.98553e-11
2.6248e-11
-8.70835e-11
2.93188e-11
-8.49432e-11
3.27239e-11
-8.31604e-11
3.65452e-11
-8.1208e-11
4.07659e-11
-7.85486e-11
4.52541e-11
-7.45964e-11
4.97718e-11
-6.88427e-11
5.39881e-11
-6.09182e-11
5.75365e-11
-5.07513e-11
6.00872e-11
-3.86101e-11
6.14109e-11
-2.50792e-11
6.14153e-11
-1.09426e-11
6.01878e-11
2.90185e-12
5.79376e-11
1.57316e-11
5.49248e-11
2.71119e-11
5.13757e-11
3.69224e-11
4.74385e-11
4.52629e-11
4.31795e-11
5.22885e-11
3.85946e-11
5.81309e-11
3.36737e-11
6.27235e-11
2.84613e-11
6.58232e-11
2.30994e-11
6.70528e-11
1.78442e-11
6.60467e-11
1.30356e-11
6.2613e-11
8.99906e-12
5.6929e-11
5.99253e-12
4.94462e-11
4.14517e-12
4.08745e-11
3.44655e-12
3.19967e-11
3.8211e-12
2.34655e-11
5.14946e-12
1.58554e-11
7.23029e-12
9.72701e-12
9.82457e-12
5.46369e-12
1.26571e-11
3.33894e-12
1.54134e-11
3.51166e-12
1.7769e-11
5.95352e-12
1.94103e-11
1.04352e-11
2.00978e-11
1.6431e-11
1.97189e-11
2.32007e-11
1.82875e-11
2.99247e-11
1.59386e-11
3.58154e-11
1.29464e-11
4.01536e-11
9.67896e-12
4.24153e-11
6.55971e-12
4.23746e-11
3.95877e-12
4.02145e-11
2.16867e-12
3.6454e-11
1.26364e-12
3.19745e-11
1.19663e-12
2.76049e-11
1.80885e-12
2.40907e-11
2.75043e-12
2.22526e-11
3.62172e-12
2.21586e-11
4.11192e-12
2.36176e-11
3.85383e-12
2.64928e-11
2.28335e-12
2.9267e-11
2.37755e-11
-1.21338e-10
1.3636e-10
-1.21532e-10
2.15458e-10
-1.20061e-10
2.04995e-10
-1.16959e-10
1.6995e-10
-1.13595e-10
1.3664e-10
-1.10062e-10
1.07348e-10
-1.06519e-10
8.19057e-11
-1.02735e-10
5.85632e-11
-9.85886e-11
3.71286e-11
-9.39443e-11
1.71759e-11
-8.87279e-11
-1.16752e-12
-8.29736e-11
-1.77021e-11
-7.66838e-11
-3.23836e-11
-6.99655e-11
-4.48862e-11
-6.29567e-11
-5.50357e-11
-5.58499e-11
-6.26451e-11
-4.88246e-11
-6.77353e-11
-4.20445e-11
-7.03624e-11
-3.5702e-11
-7.05658e-11
-3.00237e-11
-6.84108e-11
-2.52603e-11
-6.40972e-11
-2.15792e-11
-5.81398e-11
-1.91212e-11
-5.1042e-11
-1.79226e-11
-4.3498e-11
-1.79742e-11
-3.61692e-11
-1.91629e-11
-2.97925e-11
-2.12697e-11
-2.51042e-11
-2.39986e-11
-2.26855e-11
-2.69823e-11
-2.29751e-11
-2.98072e-11
-2.62037e-11
-3.20509e-11
-3.2334e-11
-3.33248e-11
-4.10194e-11
-3.33635e-11
-5.15946e-11
-3.2026e-11
-6.3216e-11
-2.93329e-11
-7.49695e-11
-2.53399e-11
-8.61111e-11
-2.02084e-11
-9.59429e-11
-1.42651e-11
-1.03585e-10
-7.98945e-12
-1.08408e-10
-1.76921e-12
-1.1049e-10
4.06161e-12
-1.10201e-10
9.32033e-12
-1.08084e-10
1.39079e-11
-1.04705e-10
1.78152e-11
-1.00639e-10
2.11329e-11
-9.64912e-11
2.40411e-11
-9.27629e-11
2.6816e-11
-8.98578e-11
2.97908e-11
-8.79174e-11
3.32221e-11
-8.6591e-11
3.72102e-11
-8.51954e-11
4.17482e-11
-8.30858e-11
4.66852e-11
-7.95325e-11
5.17436e-11
-7.39002e-11
5.65192e-11
-6.5693e-11
6.05614e-11
-5.47927e-11
6.34627e-11
-4.15107e-11
6.49434e-11
-2.65592e-11
6.48819e-11
-1.08806e-11
6.34073e-11
4.3771e-12
6.07983e-11
1.83411e-11
5.73954e-11
3.05155e-11
5.34781e-11
4.08405e-11
4.92143e-11
4.95276e-11
4.46602e-11
5.68434e-11
3.97687e-11
6.30232e-11
3.44801e-11
6.80129e-11
2.88112e-11
7.1493e-11
2.29007e-11
7.29643e-11
1.70487e-11
7.18996e-11
1.1682e-11
6.79806e-11
7.19949e-12
6.14123e-11
3.92237e-12
5.27241e-11
2.00236e-12
4.27952e-11
1.38874e-12
3.26109e-11
1.96901e-12
2.28858e-11
3.6374e-12
1.41876e-11
6.16352e-12
7.20138e-12
9.27967e-12
2.34787e-12
1.26816e-11
-6.2796e-14
1.59991e-11
1.94237e-13
1.8864e-11
3.08868e-12
2.08888e-11
8.41035e-12
2.17819e-11
1.55378e-11
2.14071e-11
2.35753e-11
1.97703e-11
3.15612e-11
1.70396e-11
3.85457e-11
1.35406e-11
4.36524e-11
9.72072e-12
4.62349e-11
6.0791e-12
4.60159e-11
3.10083e-12
4.31926e-11
1.14456e-12
3.84103e-11
2.76099e-13
3.2843e-11
4.04617e-13
2.74765e-11
1.35776e-12
2.31378e-11
2.69535e-12
2.09153e-11
3.89796e-12
2.09563e-11
4.56131e-12
2.29546e-11
4.30999e-12
2.67445e-11
2.57386e-12
3.10036e-11
2.63496e-11
-1.44134e-10
1.32741e-10
-1.3856e-10
2.09885e-10
-1.32743e-10
1.99177e-10
-1.26682e-10
1.63889e-10
-1.21624e-10
1.31582e-10
-1.16982e-10
1.02706e-10
-1.12718e-10
7.7642e-11
-1.08384e-10
5.42291e-11
-1.03759e-10
3.25037e-11
-9.86502e-11
1.20668e-11
-9.29318e-11
-6.88599e-12
-8.6655e-11
-2.39789e-11
-7.9785e-11
-3.92537e-11
-7.24487e-11
-5.22225e-11
-6.47939e-11
-6.26905e-11
-5.70426e-11
-7.03964e-11
-4.93914e-11
-7.53866e-11
-4.1998e-11
-7.77559e-11
-3.50599e-11
-7.75038e-11
-2.88429e-11
-7.46278e-11
-2.3657e-11
-6.9283e-11
-1.96884e-11
-6.21084e-11
-1.71112e-11
-5.36192e-11
-1.59615e-11
-4.46476e-11
-1.62421e-11
-3.58885e-11
-1.78373e-11
-2.81972e-11
-2.05026e-11
-2.24388e-11
-2.38994e-11
-1.92884e-11
-2.76143e-11
-1.926e-11
-3.1168e-11
-2.26497e-11
-3.40641e-11
-2.94376e-11
-3.58118e-11
-3.92714e-11
-3.6126e-11
-5.12801e-11
-3.48453e-11
-6.44965e-11
-3.20035e-11
-7.78112e-11
-2.76861e-11
-9.04284e-11
-2.20221e-11
-1.01607e-10
-1.54055e-11
-1.10201e-10
-8.44209e-12
-1.15371e-10
-1.64989e-12
-1.17282e-10
4.65382e-12
-1.16505e-10
1.02348e-11
-1.13665e-10
1.49962e-11
-1.09466e-10
1.89268e-11
-1.0457e-10
2.2137e-11
-9.97009e-11
2.4841e-11
-9.54665e-11
2.7381e-11
-9.23974e-11
3.01968e-11
-9.07328e-11
3.36198e-11
-9.00135e-11
3.77707e-11
-8.93459e-11
4.2659e-11
-8.79736e-11
4.81179e-11
-8.49908e-11
5.38092e-11
-7.9591e-11
5.92627e-11
-7.1146e-11
6.38947e-11
-5.94242e-11
6.72145e-11
-4.48302e-11
6.88832e-11
-2.82278e-11
6.87262e-11
-1.07235e-11
6.69358e-11
6.16755e-12
6.38822e-11
2.1395e-11
6.00161e-11
3.43819e-11
5.56847e-11
4.51724e-11
5.10763e-11
5.41364e-11
4.62343e-11
6.16858e-11
4.10522e-11
6.82057e-11
3.53912e-11
7.36743e-11
2.92333e-11
7.76514e-11
2.27033e-11
7.94948e-11
1.61578e-11
7.84457e-11
1.01355e-11
7.40035e-11
5.13541e-12
6.6413e-11
1.56346e-12
5.62966e-11
-4.42466e-13
4.48017e-11
-9.18798e-13
3.30879e-11
-4.86161e-14
2.20163e-11
1.94589e-12
1.21937e-11
4.97466e-12
4.17313e-12
8.67971e-12
-1.35679e-12
1.27179e-11
-4.10067e-12
1.66764e-11
-3.76398e-12
2.01712e-11
-4.05856e-13
2.26521e-11
5.92962e-12
2.37878e-11
1.44022e-11
2.34105e-11
2.39526e-11
2.15315e-11
3.34401e-11
1.83395e-11
4.17376e-11
1.42281e-11
4.77638e-11
9.73602e-12
5.07269e-11
5.46719e-12
5.02847e-11
2.00934e-12
4.66504e-11
-2.42195e-13
4.06618e-11
-1.05239e-12
3.36532e-11
-5.53317e-13
2.69774e-11
7.95974e-13
2.17885e-11
2.64595e-12
1.90655e-11
4.27571e-12
1.93267e-11
5.1271e-12
2.21033e-11
4.81573e-12
2.70561e-11
2.88576e-12
3.29339e-11
2.92353e-11
-1.72954e-10
1.23931e-10
-1.59146e-10
1.96076e-10
-1.47434e-10
1.87466e-10
-1.37656e-10
1.54112e-10
-1.30668e-10
1.24595e-10
-1.24756e-10
9.67929e-11
-1.19663e-10
7.25491e-11
-1.14672e-10
4.92376e-11
-1.09451e-10
2.72827e-11
-1.03757e-10
6.37326e-12
-9.74104e-11
-1.32329e-11
-9.05068e-11
-3.08826e-11
-8.29579e-11
-4.68026e-11
-7.48924e-11
-6.02879e-11
-6.64829e-11
-7.11e-11
-5.79893e-11
-7.889e-11
-4.96311e-11
-8.37449e-11
-4.15445e-11
-8.58425e-11
-3.39117e-11
-8.51366e-11
-2.70585e-11
-8.1481e-11
-2.13799e-11
-7.49615e-11
-1.70777e-11
-6.64106e-11
-1.43698e-11
-5.63271e-11
-1.32803e-11
-4.57371e-11
-1.38198e-11
-3.53489e-11
-1.58851e-11
-2.61317e-11
-1.91863e-11
-1.91374e-11
-2.33402e-11
-1.51343e-11
-2.7924e-11
-1.4676e-11
-3.23341e-11
-1.82394e-11
-3.60123e-11
-2.57592e-11
-3.8326e-11
-3.69575e-11
-3.89622e-11
-5.06437e-11
-3.77526e-11
-6.57059e-11
-3.47644e-11
-8.07993e-11
-3.00828e-11
-9.511e-11
-2.38007e-11
-1.07889e-10
-1.63912e-11
-1.17611e-10
-8.64366e-12
-1.23119e-10
-1.16318e-12
-1.24762e-10
5.65005e-12
-1.23318e-10
1.15702e-11
-1.19585e-10
1.64991e-11
-1.14395e-10
2.04148e-11
-1.08485e-10
2.34514e-11
-1.02737e-10
2.58608e-11
-9.78757e-11
2.80555e-11
-9.45918e-11
3.06225e-11
-9.32996e-11
3.39874e-11
-9.33781e-11
3.82803e-11
-9.36385e-11
4.35535e-11
-9.32465e-11
4.96108e-11
-9.10478e-11
5.60513e-11
-8.60311e-11
6.23175e-11
-7.7412e-11
6.76591e-11
-6.47657e-11
7.14752e-11
-4.86463e-11
7.3369e-11
-3.01218e-11
7.30655e-11
-1.04202e-11
7.08594e-11
8.37346e-12
6.7243e-11
2.50113e-11
6.28204e-11
3.88045e-11
5.80228e-11
4.99701e-11
5.30517e-11
5.91077e-11
4.79435e-11
6.6794e-11
4.24971e-11
7.36522e-11
3.64651e-11
7.97062e-11
2.97902e-11
8.43265e-11
2.25524e-11
8.67328e-11
1.51719e-11
8.58265e-11
8.36798e-12
8.08076e-11
2.75248e-12
7.20288e-11
-1.25358e-12
6.03029e-11
-3.32115e-12
4.68696e-11
-3.64851e-12
3.34156e-11
-2.44241e-12
2.08106e-11
8.02156e-14
9.67149e-12
3.6724e-12
5.81259e-13
8.01121e-12
-5.69532e-12
1.28099e-11
-8.89905e-12
1.75224e-11
-8.47612e-12
2.17907e-11
-4.67376e-12
2.4766e-11
2.95465e-12
2.61833e-11
1.29851e-11
2.58028e-11
2.43332e-11
2.36392e-11
3.56039e-11
1.98827e-11
4.54943e-11
1.50154e-11
5.26314e-11
9.68617e-12
5.60562e-11
4.62954e-12
5.53415e-11
5.60007e-13
5.07201e-11
-1.96559e-12
4.31875e-11
-2.68204e-12
3.43697e-11
-1.79109e-12
2.60865e-11
1.61585e-13
1.98359e-11
2.66256e-12
1.65645e-11
4.82939e-12
1.71598e-11
5.87419e-12
2.10585e-11
5.44373e-12
2.74867e-11
3.2692e-12
3.51084e-11
3.25043e-11
-2.08259e-10
1.11194e-10
-1.84701e-10
1.72519e-10
-1.65818e-10
1.68582e-10
-1.51642e-10
1.39936e-10
-1.42424e-10
1.15377e-10
-1.34891e-10
8.92592e-11
-1.28637e-10
6.62953e-11
-1.22662e-10
4.32624e-11
-1.16497e-10
2.11173e-11
-1.09889e-10
-2.35064e-13
-1.02593e-10
-2.05283e-11
-9.47845e-11
-3.86914e-11
-8.6284e-11
-5.53031e-11
-7.72321e-11
-6.93398e-11
-6.78364e-11
-8.04957e-11
-5.84008e-11
-8.83257e-11
-4.91577e-11
-9.29881e-11
-4.02313e-11
-9.47689e-11
-3.17678e-11
-9.36002e-11
-2.416e-11
-8.9089e-11
-1.78925e-11
-8.1229e-11
-1.31584e-11
-7.11447e-11
-1.02506e-11
-5.9235e-11
-9.18048e-12
-4.68072e-11
-9.94852e-12
-3.45808e-11
-1.25022e-11
-2.35779e-11
-1.6454e-11
-1.51855e-11
-2.13634e-11
-1.02246e-11
-2.70373e-11
-9.00195e-12
-3.26386e-11
-1.26378e-11
-3.72903e-11
-2.11072e-11
-4.02644e-11
-3.39833e-11
-4.1283e-11
-4.9625e-11
-4.01839e-11
-6.6805e-11
-3.70537e-11
-8.39295e-11
-3.19854e-11
-1.00178e-10
-2.50008e-11
-1.14873e-10
-1.66716e-11
-1.2594e-10
-8.013e-12
-1.31777e-10
2.25746e-13
-1.33001e-10
7.59756e-12
-1.30689e-10
1.38683e-11
-1.25855e-10
1.89517e-11
-1.19478e-10
2.27973e-11
-1.1233e-10
2.55761e-11
-1.05516e-10
2.75867e-11
-9.98861e-11
2.92884e-11
-9.62933e-11
3.14497e-11
-9.54607e-11
3.46273e-11
-9.65556e-11
3.89894e-11
-9.80003e-11
4.46751e-11
-9.8932e-11
5.14327e-11
-9.78051e-11
5.87616e-11
-9.33597e-11
6.60103e-11
-8.46603e-11
7.21905e-11
-7.09458e-11
7.65755e-11
-5.30314e-11
7.87199e-11
-3.22664e-11
7.81723e-11
-9.87268e-12
7.54164e-11
1.11292e-11
7.10687e-11
2.9359e-11
6.59702e-11
4.39032e-11
6.06502e-11
5.52902e-11
5.53027e-11
6.44552e-11
4.99728e-11
7.21239e-11
4.43203e-11
7.93046e-11
3.79221e-11
8.61044e-11
3.06988e-11
9.15498e-11
2.26414e-11
9.47902e-11
1.42377e-11
9.42302e-11
6.48937e-12
8.85559e-11
9.6204e-14
7.84219e-11
-4.31442e-12
6.47136e-11
-6.38076e-12
4.8936e-11
-6.50903e-12
3.3544e-11
-4.93947e-12
1.92411e-11
-1.87099e-12
6.60304e-12
2.17308e-12
-3.4628e-12
7.33828e-12
-1.08605e-11
1.30251e-11
-1.45857e-11
1.8572e-11
-1.40229e-11
2.34674e-11
-9.56887e-12
2.7275e-11
-8.52639e-13
2.90853e-11
1.11751e-11
2.86898e-11
2.4729e-11
2.61926e-11
3.81015e-11
2.17545e-11
4.99329e-11
1.59594e-11
5.84269e-11
9.60711e-12
6.2409e-11
3.58218e-12
6.13668e-11
-1.2348e-12
5.55374e-11
-4.06928e-12
4.60223e-11
-4.64863e-12
3.49492e-11
-3.21556e-12
2.46535e-11
-4.8207e-13
1.71024e-11
2.78056e-12
1.33018e-11
5.69087e-12
1.42494e-11
6.95353e-12
1.97958e-11
6.3515e-12
2.80887e-11
3.82425e-12
3.76355e-11
3.63284e-11
-2.50173e-10
9.70441e-11
-2.18097e-10
1.40444e-10
-1.91874e-10
1.42359e-10
-1.72586e-10
1.20647e-10
-1.60661e-10
1.03452e-10
-1.5067e-10
7.92675e-11
-1.42445e-10
5.80702e-11
-1.34724e-10
3.55411e-11
-1.26823e-10
1.32166e-11
-1.18349e-10
-8.70903e-12
-1.09376e-10
-2.95013e-11
-1.00028e-10
-4.804e-11
-8.9984e-11
-6.53468e-11
-7.94169e-11
-7.99071e-11
-6.85593e-11
-9.13534e-11
-5.77705e-11
-9.91147e-11
-4.72831e-11
-1.03476e-10
-3.71936e-11
-1.04859e-10
-2.75053e-11
-1.03289e-10
-1.8769e-11
-9.78254e-11
-1.16367e-11
-8.83614e-11
-6.25786e-12
-7.65236e-11
-3.06473e-12
-6.24281e-11
-2.01984e-12
-4.7852e-11
-3.0196e-12
-3.3581e-11
-6.16451e-12
-2.04329e-11
-1.10627e-11
-1.02872e-11
-1.72873e-11
-3.99985e-12
-2.47804e-11
-1.50879e-12
-3.13282e-11
-6.08989e-12
-3.65191e-11
-1.59162e-11
-4.01486e-11
-3.03537e-11
-4.1651e-11
-4.81225e-11
-4.07216e-11
-6.77344e-11
-3.74807e-11
-8.71703e-11
-3.20019e-11
-1.05657e-10
-2.42438e-11
-1.22631e-10
-1.49118e-11
-1.35272e-10
-5.26525e-12
-1.41424e-10
3.82926e-12
-1.42095e-10
1.18214e-11
-1.38681e-10
1.8445e-11
-1.32478e-10
2.36449e-11
-1.24677e-10
2.72985e-11
-1.15984e-10
2.96562e-11
-1.07873e-10
3.11119e-11
-1.01342e-10
3.21111e-11
-9.72923e-11
3.3658e-11
-9.70074e-11
3.64804e-11
-9.93777e-11
4.07765e-11
-1.02296e-10
4.69059e-11
-1.05061e-10
5.45074e-11
-1.05406e-10
6.28874e-11
-1.01739e-10
7.13341e-11
-9.31066e-11
7.84731e-11
-7.80845e-11
8.34667e-11
-5.80249e-11
8.59992e-11
-3.47988e-11
8.54142e-11
-9.28762e-12
8.13424e-11
1.52013e-11
7.59782e-11
3.47235e-11
6.99955e-11
4.98862e-11
6.40346e-11
6.12513e-11
5.82358e-11
7.02543e-11
5.27132e-11
7.76466e-11
4.6926e-11
8.5092e-11
4.01498e-11
9.28808e-11
3.23606e-11
9.93391e-11
2.33662e-11
1.03785e-10
1.36596e-11
1.03937e-10
4.73049e-12
9.74851e-11
-2.59381e-12
8.57463e-11
-7.60738e-12
6.97272e-11
-9.66336e-12
5.0992e-11
-9.55598e-12
3.34366e-11
-7.65585e-12
1.73409e-11
-3.67436e-12
2.62135e-12
1.01762e-12
-8.155e-12
6.85851e-12
-1.67015e-11
1.35292e-11
-2.12564e-11
2.00309e-11
-2.05246e-11
2.60278e-11
-1.55657e-11
3.12547e-11
-6.07948e-12
3.2786e-11
9.64384e-12
3.23283e-11
2.5187e-11
2.94397e-11
4.09904e-11
2.41614e-11
5.52115e-11
1.72173e-11
6.53714e-11
9.58683e-12
7.00398e-11
2.38523e-12
6.85688e-11
-3.33668e-12
6.12597e-11
-6.57951e-12
4.92654e-11
-7.12267e-12
3.54926e-11
-5.04801e-12
2.2579e-11
-1.15993e-12
1.32144e-11
3.47305e-12
8.66884e-12
7.11875e-12
1.06037e-11
8.61033e-12
1.83042e-11
7.77494e-12
2.8924e-11
4.70362e-12
4.07066e-11
4.10319e-11
-2.91818e-10
9.34178e-11
-2.61449e-10
1.10075e-10
-2.31875e-10
1.12784e-10
-2.08277e-10
9.7049e-11
-1.92419e-10
8.75938e-11
-1.78353e-10
6.52015e-11
-1.66194e-10
4.59117e-11
-1.54711e-10
2.40584e-11
-1.4185e-10
3.55603e-13
-1.31387e-10
-1.91723e-11
-1.19918e-10
-4.09702e-11
-1.07877e-10
-6.00814e-11
-9.52422e-11
-7.79817e-11
-8.22943e-11
-9.28551e-11
-6.92422e-11
-1.04406e-10
-5.64069e-11
-1.1195e-10
-4.39612e-11
-1.15922e-10
-3.21568e-11
-1.16663e-10
-2.07698e-11
-1.14676e-10
-1.04803e-11
-1.08115e-10
-2.03997e-12
-9.68017e-11
4.39593e-12
-8.29595e-11
8.30272e-12
-6.63349e-11
9.6831e-12
-4.92324e-11
8.71711e-12
-3.2615e-11
4.87653e-12
-1.65923e-11
-7.68843e-13
-4.64183e-12
-7.29888e-12
2.53023e-12
-1.48432e-11
6.03555e-12
-2.18091e-11
8.7609e-13
-2.85861e-11
-9.13923e-12
-3.39907e-11
-2.49491e-11
-3.68399e-11
-4.52733e-11
-3.64066e-11
-6.81678e-11
-3.30396e-11
-9.05374e-11
-2.70378e-11
-1.11659e-10
-1.85261e-11
-1.31143e-10
-8.30826e-12
-1.4549e-10
2.19649e-12
-1.51928e-10
1.23704e-11
-1.52269e-10
2.12665e-11
-1.47577e-10
2.84229e-11
-1.39634e-10
3.38188e-11
-1.30073e-10
3.71637e-11
-1.19328e-10
3.88908e-11
-1.096e-10
3.95916e-11
-1.02042e-10
3.95173e-11
-9.72179e-11
3.99879e-11
-9.7478e-11
4.20084e-11
-1.01398e-10
4.58982e-11
-1.06186e-10
5.24902e-11
-1.11653e-10
6.11728e-11
-1.14088e-10
7.08455e-11
-1.11412e-10
8.08716e-11
-1.03132e-10
8.91807e-11
-8.63932e-11
9.47213e-11
-6.35653e-11
9.7426e-11
-3.75032e-11
9.3915e-11
-5.7763e-12
9.06023e-11
1.85145e-11
8.42204e-11
4.11058e-11
7.69546e-11
5.71525e-11
7.00972e-11
6.81093e-11
6.36204e-11
7.67316e-11
5.78562e-11
8.34113e-11
5.19374e-11
9.10114e-11
4.46692e-11
1.0015e-10
3.6284e-11
1.07725e-10
2.62313e-11
1.13838e-10
1.48318e-11
1.15337e-10
4.46195e-12
1.07855e-10
-3.9413e-12
9.41499e-11
-9.76039e-12
7.55466e-11
-1.15989e-11
5.28307e-11
-1.11047e-11
3.29425e-11
-8.82581e-12
1.5062e-11
-4.26535e-12
-1.93923e-12
8.64803e-13
-1.32853e-11
7.48213e-12
-2.3319e-11
1.53648e-11
-2.91392e-11
2.28228e-11
-2.79826e-11
2.96834e-11
-2.24265e-11
3.44307e-11
-1.08268e-11
3.76272e-11
6.44733e-12
3.75914e-11
2.52229e-11
3.42356e-11
4.43464e-11
2.7854e-11
6.15933e-11
1.94486e-11
7.37769e-11
1.02206e-11
7.92681e-11
1.54573e-12
7.72439e-11
-5.41621e-12
6.82218e-11
-9.24171e-12
5.3091e-11
-9.37563e-12
3.56266e-11
-6.35102e-12
1.95545e-11
-1.75294e-12
8.61645e-12
3.46991e-12
3.44609e-12
8.31701e-12
5.75672e-12
1.10049e-11
1.56164e-11
9.96181e-12
2.9967e-11
6.29999e-12
4.43684e-11
4.73321e-11
-3.2338e-10
1.05515e-10
-3.12205e-10
9.89e-11
-2.90099e-10
9.06777e-11
-2.69632e-10
7.65819e-11
-2.43782e-10
6.17437e-11
-2.24205e-10
4.56249e-11
-2.04296e-10
2.60029e-11
-1.87715e-10
7.4782e-12
-1.70862e-10
-1.64972e-11
-1.54083e-10
-3.59515e-11
-1.36636e-10
-5.84174e-11
-1.18851e-10
-7.78667e-11
-1.01482e-10
-9.5351e-11
-8.47527e-11
-1.09585e-10
-6.90421e-11
-1.20117e-10
-5.29435e-11
-1.28049e-10
-3.70248e-11
-1.31841e-10
-2.24983e-11
-1.3119e-10
-9.00095e-12
-1.28173e-10
3.19375e-12
-1.2031e-10
1.35866e-11
-1.07194e-10
2.25512e-11
-9.19241e-11
2.8197e-11
-7.19807e-11
3.06474e-11
-5.16828e-11
3.04517e-11
-3.24193e-11
2.61291e-11
-1.22698e-11
1.98948e-11
1.59231e-12
1.25757e-11
9.84928e-12
2.81312e-12
1.5798e-11
-6.96011e-12
1.06492e-11
-1.50752e-11
-1.02425e-12
-2.11287e-11
-1.88957e-11
-2.40811e-11
-4.2321e-11
-2.31461e-11
-6.91029e-11
-1.82934e-11
-9.53902e-11
-1.05536e-11
-1.19399e-10
-1.38757e-12
-1.40309e-10
8.03053e-12
-1.54908e-10
1.90126e-11
-1.6291e-10
3.08426e-11
-1.64099e-10
4.1388e-11
-1.58122e-10
4.94539e-11
-1.477e-10
5.50328e-11
-1.35652e-10
5.75531e-11
-1.21849e-10
5.79908e-11
-1.10038e-10
5.73257e-11
-1.01377e-10
5.52144e-11
-9.51068e-11
5.33919e-11
-9.56555e-11
5.32302e-11
-1.01236e-10
5.58732e-11
-1.08828e-10
6.31215e-11
-1.18901e-10
7.35383e-11
-1.24504e-10
8.53254e-11
-1.23198e-10
9.82241e-11
-1.1603e-10
1.08573e-10
-9.67416e-11
1.15503e-10
-7.04943e-11
1.20071e-10
-4.20708e-11
1.19637e-10
-5.34173e-12
1.13596e-10
2.45563e-11
1.04631e-10
5.0072e-11
9.57179e-11
6.60667e-11
8.77685e-11
7.60599e-11
8.00889e-11
8.44124e-11
7.3605e-11
8.98965e-11
6.69427e-11
9.76751e-11
5.80682e-11
1.09026e-10
4.78156e-11
1.17979e-10
3.52808e-11
1.26374e-10
2.03964e-11
1.30223e-10
7.28113e-12
1.20972e-10
-3.29765e-12
1.0473e-10
-1.10499e-11
8.32999e-11
-1.26713e-11
5.44529e-11
-1.20323e-11
3.23041e-11
-1.02784e-11
1.33084e-11
-4.60839e-12
-7.60918e-12
2.11934e-12
-2.00131e-11
9.84379e-12
-3.10435e-11
1.96493e-11
-3.89449e-11
2.84509e-11
-3.67844e-11
3.74913e-11
-3.14673e-11
4.65303e-11
-1.98663e-11
5.08669e-11
2.11032e-12
4.9469e-11
2.66205e-11
4.44757e-11
4.93394e-11
3.64302e-11
6.96386e-11
2.54111e-11
8.47959e-11
1.29606e-11
9.17184e-11
1.27176e-12
8.89327e-11
-8.14256e-12
7.76362e-11
-1.36037e-11
5.85522e-11
-1.41637e-11
3.61868e-11
-9.78442e-12
1.51755e-11
-2.4239e-12
1.25623e-12
5.73137e-12
-4.70883e-12
1.33903e-11
-1.9018e-12
1.62707e-11
1.27363e-11
1.43061e-11
3.19318e-11
1.02312e-11
4.84435e-11
5.75635e-11
-2.42192e-10
1.25678e-10
-2.83324e-10
1.40036e-10
-3.05626e-10
1.12989e-10
-3.24097e-10
9.50822e-11
-2.68715e-10
6.39952e-12
-2.61723e-10
3.86608e-11
-2.34866e-10
-8.32262e-13
-2.20531e-10
-6.84577e-12
-1.96597e-10
-4.04369e-11
-1.7525e-10
-5.73203e-11
-1.56873e-10
-7.68236e-11
-1.3414e-10
-1.00632e-10
-1.15776e-10
-1.13748e-10
-9.70718e-11
-1.2832e-10
-8.22315e-11
-1.34984e-10
-6.2245e-11
-1.48059e-10
-4.15486e-11
-1.52558e-10
-2.21396e-11
-1.50612e-10
-8.2907e-12
-1.42028e-10
4.67117e-12
-1.33269e-10
1.93603e-11
-1.21881e-10
3.39642e-11
-1.06525e-10
4.73583e-11
-8.53743e-11
5.56122e-11
-5.99376e-11
5.96183e-11
-3.64307e-11
5.93834e-11
-1.20443e-11
5.80134e-11
2.95069e-12
5.44121e-11
1.34382e-11
4.58678e-11
2.4328e-11
3.34084e-11
2.30932e-11
2.24317e-11
9.9361e-12
1.39402e-11
-1.04178e-11
7.61757e-12
-3.60124e-11
2.32079e-12
-6.38191e-11
2.45832e-12
-9.5545e-11
8.60692e-12
-1.25574e-10
1.26196e-11
-1.44341e-10
1.35207e-11
-1.5582e-10
2.01947e-11
-1.696e-10
3.24545e-11
-1.76365e-10
4.5974e-11
-1.71637e-10
5.74143e-11
-1.59148e-10
6.51695e-11
-1.43426e-10
6.94825e-11
-1.26176e-10
7.04847e-11
-1.11059e-10
6.97925e-11
-1.00717e-10
6.77498e-11
-9.30938e-11
6.37819e-11
-9.17042e-11
5.8798e-11
-9.62635e-11
6.04067e-11
-1.10448e-10
6.67679e-11
-1.25263e-10
7.66178e-11
-1.34338e-10
8.88807e-11
-1.35432e-10
1.02048e-10
-1.29169e-10
1.14591e-10
-1.09257e-10
1.24566e-10
-8.04402e-11
1.32452e-10
-4.99217e-11
1.4652e-10
-1.9371e-11
1.61235e-10
9.88245e-12
1.68709e-10
4.26479e-11
1.70705e-10
6.41294e-11
1.71204e-10
7.56266e-11
1.70131e-10
8.55593e-11
1.6878e-10
9.1334e-11
1.68284e-10
9.82765e-11
1.64692e-10
1.12739e-10
1.48348e-10
1.34451e-10
1.21239e-10
1.53612e-10
1.03487e-10
1.48097e-10
8.34961e-11
1.4108e-10
6.27441e-11
1.25597e-10
4.20629e-11
1.04095e-10
2.49393e-11
7.16839e-11
1.24529e-11
4.48823e-11
3.71584e-12
2.21133e-11
2.45773e-12
-6.30755e-12
5.31731e-12
-2.28449e-11
1.00496e-11
-3.57536e-11
1.64767e-11
-4.53535e-11
2.35954e-11
-4.38968e-11
3.18228e-11
-3.97076e-11
4.21181e-11
-3.01892e-11
5.72518e-11
-1.30518e-11
6.95941e-11
1.42566e-11
7.59937e-11
4.29204e-11
7.64808e-11
6.91265e-11
7.13753e-11
8.98728e-11
6.0924e-11
1.02147e-10
4.77468e-11
1.02095e-10
3.32041e-11
9.21681e-11
1.82335e-11
7.35151e-11
-1.32101e-12
5.57428e-11
-1.18209e-11
2.5688e-11
-6.70905e-12
-3.83671e-12
-1.3247e-12
-1.00682e-11
-7.02861e-12
3.83701e-12
-8.62966e-12
1.43737e-11
-5.3865e-12
2.87116e-11
2.84332e-12
4.02311e-11
6.04438e-11
3.1585e-10
1.48521e-10
3.09434e-10
1.46529e-10
3.05115e-10
1.17387e-10
3.15686e-10
8.45842e-11
3.29485e-10
-7.36523e-12
3.55062e-10
1.30867e-11
3.75854e-10
-2.16419e-11
4.02125e-10
-3.31659e-11
4.23856e-10
-6.22527e-11
4.47473e-10
-8.10395e-11
4.70739e-10
-1.0019e-10
4.91675e-10
-1.21673e-10
5.12371e-10
-1.34543e-10
5.30244e-10
-1.46283e-10
5.4802e-10
-1.52844e-10
5.63667e-10
-1.63783e-10
5.78448e-10
-1.67411e-10
5.91141e-10
-1.63343e-10
6.01511e-10
-1.52412e-10
6.09193e-10
-1.40941e-10
6.15825e-10
-1.28509e-10
6.21329e-10
-1.12023e-10
6.25709e-10
-8.97564e-11
6.2933e-10
-6.35686e-11
6.3125e-10
-3.83747e-11
6.33916e-10
-1.47438e-11
6.35342e-10
1.49226e-12
6.35391e-10
1.33565e-11
6.37569e-10
2.21115e-11
6.41702e-10
1.89188e-11
6.45886e-10
5.71177e-12
6.50422e-10
-1.49813e-11
6.55279e-10
-4.09044e-11
6.60369e-10
-6.89593e-11
6.64851e-10
-1.00086e-10
6.67605e-10
-1.28412e-10
6.68343e-10
-1.45154e-10
6.67436e-10
-1.54941e-10
6.64951e-10
-1.67137e-10
6.62536e-10
-1.73978e-10
6.60607e-10
-1.69713e-10
6.58575e-10
-1.57132e-10
6.55526e-10
-1.40446e-10
6.52087e-10
-1.22836e-10
6.48796e-10
-1.0786e-10
6.4553e-10
-9.75459e-11
6.43457e-10
-9.11243e-11
6.41754e-10
-9.00807e-11
6.40703e-10
-9.52373e-11
6.39766e-10
-1.09495e-10
6.38474e-10
-1.23935e-10
6.35887e-10
-1.31681e-10
6.31894e-10
-1.31319e-10
6.24975e-10
-1.22104e-10
6.16838e-10
-1.0099e-10
6.09485e-10
-7.29806e-11
6.03066e-10
-4.33941e-11
5.9854e-10
-1.47144e-11
5.91445e-10
1.7134e-11
5.86336e-10
4.79336e-11
5.80977e-10
6.96812e-11
5.72922e-10
8.38917e-11
5.63246e-10
9.5476e-11
5.50125e-10
1.04746e-10
5.32232e-10
1.16515e-10
5.10625e-10
1.34727e-10
4.89055e-10
1.56396e-10
4.73636e-10
1.69372e-10
4.56423e-10
1.6562e-10
4.4111e-10
1.56687e-10
4.26504e-10
1.40495e-10
4.13865e-10
1.1702e-10
3.99444e-10
8.63656e-11
3.85469e-10
5.90697e-11
3.74688e-10
3.30476e-11
3.62235e-10
6.25792e-12
3.5056e-10
-1.1067e-11
3.3893e-10
-2.40108e-11
3.2509e-10
-3.14085e-11
3.11166e-10
-2.99093e-11
2.9686e-10
-2.5384e-11
2.82257e-10
-1.55844e-11
2.67452e-10
1.77709e-12
2.50343e-10
3.14067e-11
2.33729e-10
5.95599e-11
2.16606e-10
8.62491e-11
1.99007e-10
1.07467e-10
1.81476e-10
1.19688e-10
1.63895e-10
1.1969e-10
1.46854e-10
1.09213e-10
1.29394e-10
9.09845e-11
1.14218e-10
7.09462e-11
9.94499e-11
4.04918e-11
8.38361e-11
1.18139e-11
6.87416e-11
5.08355e-12
5.25179e-11
2.0136e-11
3.46209e-11
3.23174e-11
1.70648e-11
4.62806e-11
2.0454e-12
5.53131e-11
6.25923e-11
7.58701e-10
1.61867e-10
7.60377e-10
1.44931e-10
7.68435e-10
1.09376e-10
7.85267e-10
6.77434e-11
7.89305e-10
-1.14564e-11
8.13937e-10
-1.16107e-11
8.34504e-10
-4.22938e-11
8.58931e-10
-5.7701e-11
8.80548e-10
-8.39835e-11
9.02902e-10
-1.03503e-10
9.24576e-10
-1.21966e-10
9.44196e-10
-1.41395e-10
9.62637e-10
-1.53078e-10
9.79199e-10
-1.62932e-10
9.94534e-10
-1.68275e-10
1.00694e-09
-1.76271e-10
1.01704e-09
-1.77574e-10
1.02527e-09
-1.71593e-10
1.03185e-09
-1.59003e-10
1.03656e-09
-1.45642e-10
1.03976e-09
-1.3171e-10
1.04204e-09
-1.14304e-10
1.04443e-09
-9.21656e-11
1.04774e-09
-6.68999e-11
1.05183e-09
-4.24909e-11
1.05762e-09
-2.05639e-11
1.06431e-09
-5.21666e-12
1.07189e-09
5.75341e-12
1.08262e-09
1.13522e-11
1.09504e-09
6.48686e-12
1.10716e-09
-6.43125e-12
1.11772e-09
-2.55496e-11
1.12636e-09
-4.95691e-11
1.13271e-09
-7.53875e-11
1.13575e-09
-1.03193e-10
1.13505e-09
-1.27776e-10
1.13157e-09
-1.41724e-10
1.12614e-09
-1.49538e-10
1.11812e-09
-1.59102e-10
1.1086e-09
-1.64464e-10
1.09931e-09
-1.60473e-10
1.09094e-09
-1.48827e-10
1.08352e-09
-1.33103e-10
1.07738e-09
-1.16828e-10
1.07244e-09
-1.03068e-10
1.06829e-09
-9.34979e-11
1.06499e-09
-8.78787e-11
1.06163e-09
-8.67562e-11
1.05726e-09
-9.08677e-11
1.05009e-09
-1.02263e-10
1.03929e-09
-1.12995e-10
1.02516e-09
-1.17391e-10
1.00813e-09
-1.14143e-10
9.88556e-10
-1.0237e-10
9.68858e-10
-8.11447e-11
9.50539e-10
-5.45316e-11
9.33211e-10
-2.59394e-11
9.15811e-10
2.83874e-12
8.99851e-10
3.32778e-11
8.85844e-10
6.21354e-11
8.71593e-10
8.41329e-11
8.55147e-10
1.00565e-10
8.36455e-10
1.14451e-10
8.14686e-10
1.26856e-10
7.90439e-10
1.4113e-10
7.66899e-10
1.58621e-10
7.47683e-10
1.75919e-10
7.33408e-10
1.83909e-10
7.18942e-10
1.80325e-10
7.05269e-10
1.70599e-10
6.91869e-10
1.54142e-10
6.77909e-10
1.31216e-10
6.61017e-10
1.03457e-10
6.42808e-10
7.74327e-11
6.2373e-10
5.22533e-11
6.01099e-10
2.90275e-11
5.77175e-10
1.30245e-11
5.51247e-10
2.09646e-12
5.23226e-10
-3.23986e-12
4.94237e-10
-8.18194e-13
4.64151e-10
4.7913e-12
4.32582e-10
1.61022e-11
4.00189e-10
3.43124e-11
3.70937e-10
6.07841e-11
3.43571e-10
8.70112e-11
3.18751e-10
1.11136e-10
2.96574e-10
1.29719e-10
2.76511e-10
1.39819e-10
2.57332e-10
1.3891e-10
2.3801e-10
1.28561e-10
2.17252e-10
1.11774e-10
1.95719e-10
9.25082e-11
1.70563e-10
6.56632e-11
1.39273e-10
4.31291e-11
1.06358e-10
3.80437e-11
7.70228e-11
4.94876e-11
4.82967e-11
6.10175e-11
2.16237e-11
7.29829e-11
1.80474e-12
7.52762e-11
6.44418e-11
1.09399e-09
1.61114e-10
1.10296e-09
1.35905e-10
1.11526e-09
9.69852e-11
1.13053e-09
5.23572e-11
1.1341e-09
-1.51307e-11
1.15126e-09
-2.88385e-11
1.16687e-09
-5.79596e-11
1.18565e-09
-7.65121e-11
1.20291e-09
-1.0125e-10
1.2206e-09
-1.212e-10
1.23794e-09
-1.39308e-10
1.25331e-09
-1.56788e-10
1.26786e-09
-1.67649e-10
1.28075e-09
-1.75858e-10
1.29252e-09
-1.80104e-10
1.30125e-09
-1.85059e-10
1.30782e-09
-1.842e-10
1.31297e-09
-1.76774e-10
1.31751e-09
-1.63559e-10
1.32109e-09
-1.49243e-10
1.32374e-09
-1.34365e-10
1.32613e-09
-1.16701e-10
1.32945e-09
-9.54913e-11
1.33459e-09
-7.20279e-11
1.34165e-09
-4.95289e-11
1.35103e-09
-2.99037e-11
1.36177e-09
-1.59074e-11
1.37426e-09
-6.67618e-12
1.38888e-09
-3.21795e-12
1.40357e-09
-8.1484e-12
1.4171e-09
-1.98976e-11
1.42847e-09
-3.68678e-11
1.43662e-09
-5.76885e-11
1.44129e-09
-8.00427e-11
1.44157e-09
-1.03476e-10
1.43742e-09
-1.23626e-10
1.43066e-09
-1.34938e-10
1.42228e-09
-1.41137e-10
1.41137e-09
-1.48175e-10
1.39875e-09
-1.51824e-10
1.3863e-09
-1.48015e-10
1.37507e-09
-1.37636e-10
1.36541e-09
-1.23485e-10
1.35735e-09
-1.08797e-10
1.35044e-09
-9.61784e-11
1.34395e-09
-8.70317e-11
1.33737e-09
-8.12948e-11
1.32977e-09
-7.91128e-11
1.32008e-09
-8.11197e-11
1.30633e-09
-8.84468e-11
1.28817e-09
-9.47549e-11
1.26646e-09
-9.55885e-11
1.24207e-09
-8.96729e-11
1.21603e-09
-7.62875e-11
1.19033e-09
-5.54374e-11
1.16585e-09
-3.00588e-11
1.14234e-09
-2.45208e-12
1.11955e-09
2.5612e-11
1.09826e-09
5.45461e-11
1.07874e-09
8.16178e-11
1.05912e-09
1.03697e-10
1.03812e-09
1.21501e-10
1.01571e-09
1.36829e-10
9.91827e-10
1.50716e-10
9.67804e-10
1.65129e-10
9.46114e-10
1.80256e-10
9.28673e-10
1.93271e-10
9.14184e-10
1.98291e-10
8.99617e-10
1.94798e-10
8.849e-10
1.85256e-10
8.69273e-10
1.69745e-10
8.5158e-10
1.48914e-10
8.30337e-10
1.24726e-10
8.0643e-10
1.0139e-10
7.79623e-10
7.91491e-11
7.49027e-10
5.97657e-11
7.16153e-10
4.60916e-11
6.81093e-10
3.73706e-11
6.4394e-10
3.41199e-11
6.06277e-10
3.70436e-11
5.67432e-10
4.38521e-11
5.27992e-10
5.57851e-11
4.89208e-10
7.33377e-11
4.53989e-10
9.62057e-11
4.22072e-10
1.1909e-10
3.93708e-10
1.39645e-10
3.6855e-10
1.55006e-10
3.45585e-10
1.62876e-10
3.23053e-10
1.61489e-10
2.99388e-10
1.52247e-10
2.73263e-10
1.37897e-10
2.44604e-10
1.21133e-10
2.10506e-10
9.9705e-11
1.70588e-10
8.29999e-11
1.29382e-10
7.92017e-11
9.14997e-11
8.72836e-11
5.61647e-11
9.62726e-11
2.54532e-11
1.03717e-10
3.29564e-12
9.75167e-11
6.77349e-11
1.34949e-09
1.4779e-10
1.36379e-09
1.21485e-10
1.37716e-09
8.35204e-11
1.3892e-09
4.02477e-11
1.39092e-09
-1.68737e-11
1.40051e-09
-3.84118e-11
1.40965e-09
-6.70641e-11
1.42146e-09
-8.82754e-11
1.43282e-09
-1.12564e-10
1.44481e-09
-1.33151e-10
1.45678e-09
-1.51264e-10
1.46749e-09
-1.67496e-10
1.47772e-09
-1.77885e-10
1.48686e-09
-1.85031e-10
1.49512e-09
-1.88423e-10
1.50104e-09
-1.91034e-10
1.50536e-09
-1.88571e-10
1.50895e-09
-1.8041e-10
1.51268e-09
-1.67325e-10
1.51628e-09
-1.52881e-10
1.51962e-09
-1.37719e-10
1.52328e-09
-1.20375e-10
1.52826e-09
-1.00463e-10
1.53533e-09
-7.90656e-11
1.5446e-09
-5.8734e-11
1.55605e-09
-4.12708e-11
1.56886e-09
-2.86225e-11
1.58292e-09
-2.06357e-11
1.59787e-09
-1.80715e-11
1.61206e-09
-2.2238e-11
1.62435e-09
-3.209e-11
1.63395e-09
-4.63673e-11
1.64e-09
-6.36661e-11
1.64223e-09
-8.22135e-11
1.64002e-09
-1.01203e-10
1.63361e-09
-1.17181e-10
1.62493e-09
-1.26203e-10
1.6149e-09
-1.3104e-10
1.60268e-09
-1.35924e-10
1.58884e-09
-1.37977e-10
1.57497e-09
-1.34114e-10
1.56211e-09
-1.24745e-10
1.55064e-09
-1.12005e-10
1.54044e-09
-9.857e-11
1.53093e-09
-8.65988e-11
1.52131e-09
-7.73222e-11
1.5109e-09
-7.08105e-11
1.49893e-09
-6.70753e-11
1.48449e-09
-6.65942e-11
1.46596e-09
-6.98379e-11
1.44332e-09
-7.2058e-11
1.41754e-09
-6.97715e-11
1.3896e-09
-6.17245e-11
1.36063e-09
-4.73362e-11
1.33209e-09
-2.69332e-11
1.30456e-09
-2.59899e-12
1.2782e-09
2.3843e-11
1.25277e-09
5.09548e-11
1.22887e-09
7.835e-11
1.20648e-09
1.03891e-10
1.18436e-09
1.25676e-10
1.16174e-09
1.43972e-10
1.13861e-09
1.59812e-10
1.11518e-09
1.73994e-10
1.09252e-09
1.87619e-10
1.07207e-09
2.0051e-10
1.05457e-09
2.10551e-10
1.03853e-09
2.14136e-10
1.02207e-09
2.11079e-10
1.00467e-09
2.02522e-10
9.85497e-10
1.8883e-10
9.63514e-10
1.70848e-10
9.37805e-10
1.50431e-10
9.08804e-10
1.30436e-10
8.76352e-10
1.11696e-10
8.40409e-10
9.58455e-11
8.02041e-10
8.46249e-11
7.61655e-10
7.79288e-11
7.19774e-10
7.61698e-11
6.77466e-10
7.95252e-11
6.34703e-10
8.68059e-11
5.9223e-10
9.84559e-11
5.51241e-10
1.14499e-10
5.13561e-10
1.34016e-10
4.79297e-10
1.53461e-10
4.48371e-10
1.70671e-10
4.20159e-10
1.83302e-10
3.93499e-10
1.89585e-10
3.66654e-10
1.88354e-10
3.38128e-10
1.8078e-10
3.06869e-10
1.6914e-10
2.72558e-10
1.55396e-10
2.3314e-10
1.39071e-10
1.89192e-10
1.2691e-10
1.44357e-10
1.23984e-10
1.02305e-10
1.29261e-10
6.35206e-11
1.35032e-10
3.03804e-11
1.36914e-10
6.18563e-12
1.2175e-10
7.38805e-11
1.54342e-09
1.24874e-10
1.56152e-09
1.03375e-10
1.57468e-09
7.03937e-11
1.58317e-09
3.18134e-11
1.58242e-09
-1.60507e-11
1.58536e-09
-4.12897e-11
1.58823e-09
-6.98869e-11
1.59332e-09
-9.3335e-11
1.59883e-09
-1.18059e-10
1.60527e-09
-1.39599e-10
1.61218e-09
-1.58185e-10
1.61862e-09
-1.73951e-10
1.62504e-09
-1.84318e-10
1.63099e-09
-1.91014e-10
1.63647e-09
-1.93956e-10
1.64047e-09
-1.95084e-10
1.64354e-09
-1.91696e-10
1.64648e-09
-1.83405e-10
1.65002e-09
-1.70926e-10
1.65398e-09
-1.56894e-10
1.65816e-09
-1.41956e-10
1.66303e-09
-1.25268e-10
1.66928e-09
-1.06724e-10
1.67749e-09
-8.72619e-11
1.68769e-09
-6.88767e-11
1.69963e-09
-5.3139e-11
1.71259e-09
-4.14871e-11
1.72614e-09
-3.40987e-11
1.73968e-09
-3.15328e-11
1.75197e-09
-3.44503e-11
1.76207e-09
-4.20995e-11
1.76928e-09
-5.34849e-11
1.77302e-09
-6.73304e-11
1.77309e-09
-8.22024e-11
1.7691e-09
-9.71346e-11
1.76145e-09
-1.09475e-10
1.75178e-09
-1.1648e-10
1.74083e-09
-1.20046e-10
1.72799e-09
-1.23055e-10
1.71361e-09
-1.23593e-10
1.69891e-09
-1.1939e-10
1.68479e-09
-1.10569e-10
1.67162e-09
-9.87484e-11
1.65923e-09
-8.60849e-11
1.6471e-09
-7.43366e-11
1.63449e-09
-6.4571e-11
1.62081e-09
-5.69813e-11
1.60544e-09
-5.15883e-11
1.58764e-09
-4.86965e-11
1.56626e-09
-4.83663e-11
1.54137e-09
-4.71085e-11
1.51383e-09
-4.22044e-11
1.48459e-09
-3.24615e-11
1.45466e-09
-1.7386e-11
1.42512e-09
2.62339e-12
1.3965e-09
2.60307e-11
1.369e-09
5.13553e-11
1.34264e-09
7.73352e-11
1.31775e-09
1.03258e-10
1.29419e-09
1.27449e-10
1.2712e-09
1.48656e-10
1.24826e-09
1.66894e-10
1.22531e-09
1.82738e-10
1.20251e-09
1.96754e-10
1.1805e-09
2.09567e-10
1.16001e-09
2.20915e-10
1.14121e-09
2.29271e-10
1.12288e-09
2.32399e-10
1.10377e-09
2.30135e-10
1.08321e-09
2.23045e-10
1.06043e-09
2.11584e-10
1.03464e-09
1.96638e-10
1.00527e-09
1.79822e-10
9.72559e-10
1.63199e-10
9.36528e-10
1.47788e-10
8.97454e-10
1.34974e-10
8.56166e-10
1.25951e-10
8.13202e-10
1.2091e-10
7.69195e-10
1.20187e-10
7.24939e-10
1.23796e-10
6.80749e-10
1.31015e-10
6.37301e-10
1.41912e-10
5.95547e-10
1.56234e-10
5.56616e-10
1.72912e-10
5.20605e-10
1.8945e-10
4.8729e-10
2.03987e-10
4.5598e-10
2.14619e-10
4.25591e-10
2.19981e-10
3.94663e-10
2.19303e-10
3.61971e-10
2.13508e-10
3.26747e-10
2.04397e-10
2.88641e-10
1.93532e-10
2.46424e-10
1.81334e-10
2.00882e-10
1.72508e-10
1.54753e-10
1.70149e-10
1.10873e-10
1.73175e-10
7.03279e-11
1.75662e-10
3.5433e-11
1.71895e-10
9.30328e-12
1.47869e-10
8.31296e-11
1.68893e-09
9.51668e-11
1.70981e-09
8.2622e-11
1.72247e-09
5.7841e-11
1.72804e-09
2.63279e-11
1.72496e-09
-1.29146e-11
1.72277e-09
-3.90859e-11
1.72044e-09
-6.75638e-11
1.71994e-09
-9.28696e-11
1.72042e-09
-1.1857e-10
1.72216e-09
-1.41373e-10
1.72483e-09
-1.60874e-10
1.72776e-09
-1.76873e-10
1.73113e-09
-1.87683e-10
1.73458e-09
-1.94486e-10
1.73802e-09
-1.97424e-10
1.74073e-09
-1.97841e-10
1.74311e-09
-1.94126e-10
1.74575e-09
-1.86132e-10
1.74923e-09
-1.745e-10
1.7534e-09
-1.61165e-10
1.7581e-09
-1.46746e-10
1.76359e-09
-1.30849e-10
1.77038e-09
-1.13572e-10
1.77882e-09
-9.57399e-11
1.78886e-09
-7.89146e-11
1.80017e-09
-6.44252e-11
1.81209e-09
-5.33754e-11
1.82411e-09
-4.60968e-11
1.83561e-09
-4.30125e-11
1.84564e-09
-4.44541e-11
1.85344e-09
-4.98645e-11
1.85843e-09
-5.8434e-11
1.86021e-09
-6.90636e-11
1.85863e-09
-8.0562e-11
1.85348e-09
-9.19341e-11
1.84518e-09
-1.01137e-10
1.83499e-09
-1.06261e-10
1.82349e-09
-1.08536e-10
1.81026e-09
-1.09831e-10
1.79555e-09
-1.08873e-10
1.78023e-09
-1.04046e-10
1.76509e-09
-9.53452e-11
1.75045e-09
-8.398e-11
1.73619e-09
-7.16706e-11
1.72189e-09
-5.98578e-11
1.70698e-09
-4.94641e-11
1.69094e-09
-4.07583e-11
1.67331e-09
-3.37977e-11
1.65348e-09
-2.87439e-11
1.63065e-09
-2.54252e-11
1.60491e-09
-2.1277e-11
1.57696e-09
-1.41755e-11
1.54763e-09
-3.03745e-12
1.51779e-09
1.25709e-11
1.48829e-09
3.22588e-11
1.45962e-09
5.4853e-11
1.43201e-09
7.91268e-11
1.40556e-09
1.03963e-10
1.38045e-09
1.2854e-10
1.35652e-09
1.51552e-10
1.33325e-09
1.72098e-10
1.31023e-09
1.90071e-10
1.28733e-09
2.0578e-10
1.2646e-09
2.19605e-10
1.24236e-09
2.31898e-10
1.22097e-09
2.42392e-10
1.20034e-09
2.49984e-10
1.17958e-09
2.5325e-10
1.15778e-09
2.52016e-10
1.13428e-09
2.46593e-10
1.10846e-09
2.37438e-10
1.07972e-09
2.25398e-10
1.04774e-09
2.11832e-10
1.01266e-09
1.98301e-10
9.74612e-10
1.85824e-10
9.33959e-10
1.75558e-10
8.9138e-10
1.68414e-10
8.47428e-10
1.6472e-10
8.0271e-10
1.64759e-10
7.57873e-10
1.68493e-10
7.13309e-10
1.75436e-10
6.6959e-10
1.85473e-10
6.27442e-10
1.98216e-10
5.87563e-10
2.12649e-10
5.49998e-10
2.26922e-10
5.14485e-10
2.39452e-10
4.80392e-10
2.48696e-10
4.46807e-10
2.53586e-10
4.12581e-10
2.53597e-10
3.76759e-10
2.49434e-10
3.38767e-10
2.42512e-10
2.98296e-10
2.34147e-10
2.54658e-10
2.2514e-10
2.08598e-10
2.18732e-10
1.62147e-10
2.16742e-10
1.17513e-10
2.17963e-10
7.59859e-11
2.1735e-10
3.97423e-11
2.08209e-10
1.18912e-11
1.75674e-10
9.49908e-11
1.79579e-09
6.06679e-11
1.81883e-09
5.97015e-11
1.83131e-09
4.54128e-11
1.83504e-09
2.26099e-11
1.83042e-09
-8.29832e-12
1.82478e-09
-3.34805e-11
1.8187e-09
-6.15066e-11
1.81408e-09
-8.82641e-11
1.8107e-09
-1.15193e-10
1.80883e-09
-1.39481e-10
1.80825e-09
-1.60251e-10
1.80846e-09
-1.77038e-10
1.8095e-09
-1.88698e-10
1.81107e-09
-1.9606e-10
1.81301e-09
-1.99387e-10
1.8148e-09
-1.99686e-10
1.81668e-09
-1.96088e-10
1.81908e-09
-1.88646e-10
1.82238e-09
-1.7794e-10
1.82647e-09
-1.65408e-10
1.83121e-09
-1.51634e-10
1.83676e-09
-1.36538e-10
1.84342e-09
-1.20353e-10
1.85141e-09
-1.0382e-10
1.86062e-09
-8.81755e-11
1.87068e-09
-7.45357e-11
1.88105e-09
-6.3787e-11
1.89123e-09
-5.6315e-11
1.90062e-09
-5.24581e-11
1.90851e-09
-5.23782e-11
1.91428e-09
-5.56488e-11
1.91743e-09
-6.16071e-11
1.91768e-09
-6.93166e-11
1.9149e-09
-7.77658e-11
1.909e-09
-8.60158e-11
1.90035e-09
-9.24748e-11
1.88987e-09
-9.57783e-11
1.878e-09
-9.66814e-11
1.8645e-09
-9.63492e-11
1.84955e-09
-9.3916e-11
1.83382e-09
-8.82623e-11
1.81794e-09
-7.93514e-11
1.80221e-09
-6.80944e-11
1.78659e-09
-5.58533e-11
1.77075e-09
-4.38122e-11
1.75427e-09
-3.27645e-11
1.73674e-09
-2.30116e-11
1.71776e-09
-1.46369e-11
1.69686e-09
-7.69661e-12
1.67346e-09
-1.8959e-12
1.64766e-09
4.66003e-12
1.62e-09
1.36278e-11
1.59117e-09
2.59523e-11
1.56194e-09
4.20013e-11
1.53299e-09
6.14358e-11
1.50476e-09
8.33295e-11
1.47747e-09
1.06654e-10
1.45123e-09
1.30431e-10
1.42615e-09
1.53846e-10
1.40205e-09
1.75873e-10
1.37852e-09
1.95823e-10
1.35524e-09
2.13535e-10
1.33202e-09
2.29154e-10
1.30883e-09
2.42918e-10
1.28582e-09
2.55007e-10
1.26315e-09
2.65168e-10
1.24065e-09
2.72593e-10
1.21767e-09
2.76349e-10
1.1935e-09
2.76265e-10
1.1676e-09
2.72539e-10
1.13944e-09
2.65601e-10
1.10862e-09
2.56221e-10
1.07493e-09
2.45526e-10
1.03847e-09
2.34742e-10
9.99399e-10
2.24816e-10
9.58096e-10
2.16723e-10
9.15116e-10
2.11221e-10
8.70971e-10
2.0869e-10
8.26203e-10
2.09369e-10
7.81341e-10
2.13209e-10
7.36767e-10
2.1986e-10
6.92961e-10
2.29121e-10
6.50474e-10
2.40562e-10
6.09755e-10
2.53271e-10
5.70825e-10
2.6581e-10
5.33436e-10
2.76838e-10
4.9706e-10
2.85101e-10
4.60966e-10
2.89755e-10
4.2426e-10
2.90427e-10
3.86198e-10
2.87658e-10
3.46325e-10
2.82574e-10
3.04383e-10
2.76304e-10
2.60002e-10
2.69747e-10
2.13835e-10
2.65106e-10
1.67412e-10
2.63362e-10
1.22471e-10
2.6311e-10
8.03249e-11
2.5965e-10
4.30408e-11
2.45517e-10
1.37927e-11
2.04888e-10
1.08812e-10
1.8716e-09
2.27608e-11
1.89645e-09
3.48487e-11
1.90933e-09
3.25046e-11
1.91243e-09
1.94871e-11
1.90732e-09
-3.18572e-12
1.89989e-09
-2.60214e-11
1.8916e-09
-5.31608e-11
1.88434e-09
-8.09395e-11
1.87836e-09
-1.0914e-10
1.87397e-09
-1.35014e-10
1.87106e-09
-1.57279e-10
1.86929e-09
-1.75229e-10
1.86863e-09
-1.88023e-10
1.86878e-09
-1.96253e-10
1.86959e-09
-2.00245e-10
1.87064e-09
-2.00826e-10
1.87207e-09
-1.97628e-10
1.87413e-09
-1.90856e-10
1.87708e-09
-1.81056e-10
1.88084e-09
-1.69327e-10
1.88527e-09
-1.56225e-10
1.89045e-09
-1.41878e-10
1.89657e-09
-1.26605e-10
1.90373e-09
-1.11085e-10
1.91179e-09
-9.63156e-11
1.92042e-09
-8.32363e-11
1.92915e-09
-7.25929e-11
1.93752e-09
-6.47651e-11
1.94502e-09
-6.00373e-11
1.95105e-09
-5.84896e-11
1.95513e-09
-5.97772e-11
1.95683e-09
-6.33569e-11
1.95591e-09
-6.84339e-11
1.95228e-09
-7.41335e-11
1.94588e-09
-7.96106e-11
1.93702e-09
-8.36152e-11
1.92638e-09
-8.51361e-11
1.9143e-09
-8.45995e-11
1.90065e-09
-8.2701e-11
1.8856e-09
-7.88375e-11
1.86966e-09
-7.22474e-11
1.85335e-09
-6.29115e-11
1.83696e-09
-5.15254e-11
1.82047e-09
-3.91634e-11
1.80368e-09
-2.68013e-11
1.78624e-09
-1.51179e-11
1.76784e-09
-4.40986e-12
1.74815e-09
5.23497e-12
1.72677e-09
1.38276e-11
1.7033e-09
2.17093e-11
1.67781e-09
3.02935e-11
1.65075e-09
4.08635e-11
1.62268e-09
5.42182e-11
1.59424e-09
7.06611e-11
1.56599e-09
8.99089e-11
1.53832e-09
1.11219e-10
1.51143e-09
1.33726e-10
1.48542e-09
1.56587e-10
1.46033e-09
1.79053e-10
1.43599e-09
2.00309e-10
1.41208e-09
2.19802e-10
1.38831e-09
2.37343e-10
1.36449e-09
2.52975e-10
1.34055e-09
2.66828e-10
1.31656e-09
2.78966e-10
1.29256e-09
2.89152e-10
1.26839e-09
2.96785e-10
1.24353e-09
3.01233e-10
1.21745e-09
3.02344e-10
1.18968e-09
3.0027e-10
1.15982e-09
2.95405e-10
1.12758e-09
2.88432e-10
1.09282e-09
2.80281e-10
1.0556e-09
2.71942e-10
1.01608e-09
2.64268e-10
9.74613e-10
2.581e-10
9.31653e-10
2.54096e-10
8.87655e-10
2.52639e-10
8.43083e-10
2.5393e-10
7.98376e-10
2.57919e-10
7.53888e-10
2.64345e-10
7.10028e-10
2.7298e-10
6.67222e-10
2.8339e-10
6.25783e-10
2.9477e-10
5.85718e-10
3.05957e-10
5.4682e-10
3.15824e-10
5.08663e-10
3.23355e-10
4.70664e-10
3.27874e-10
4.32125e-10
3.29114e-10
3.92452e-10
3.27499e-10
3.51272e-10
3.23941e-10
3.08371e-10
3.19404e-10
2.63568e-10
3.14738e-10
2.17425e-10
3.11419e-10
1.71125e-10
3.09839e-10
1.26059e-10
3.08346e-10
8.34947e-11
3.02298e-10
4.54276e-11
2.83578e-10
1.51209e-11
2.35231e-10
1.24027e-10
1.92243e-09
-1.74639e-11
1.94892e-09
8.29388e-12
1.96281e-09
1.85978e-11
1.9664e-09
1.59234e-11
1.96189e-09
1.40121e-12
1.95414e-09
-1.81603e-11
1.94505e-09
-4.3974e-11
1.93652e-09
-7.23232e-11
1.92909e-09
-1.01661e-10
1.92317e-09
-1.29068e-10
1.91877e-09
-1.52877e-10
1.91567e-09
-1.72156e-10
1.91379e-09
-1.86207e-10
1.91292e-09
-1.95452e-10
1.91285e-09
-2.00257e-10
1.91328e-09
-2.01349e-10
1.91424e-09
-1.98702e-10
1.9159e-09
-1.92634e-10
1.9184e-09
-1.83673e-10
1.92166e-09
-1.72702e-10
1.92558e-09
-1.60252e-10
1.93018e-09
-1.46587e-10
1.93557e-09
-1.32078e-10
1.94177e-09
-1.17348e-10
1.94863e-09
-1.03233e-10
1.95587e-09
-9.05215e-11
1.96308e-09
-7.98627e-11
1.96985e-09
-7.16055e-11
1.97574e-09
-6.59908e-11
1.98025e-09
-6.30655e-11
1.98296e-09
-6.25389e-11
1.98352e-09
-6.39594e-11
1.98172e-09
-6.66565e-11
1.97746e-09
-6.98695e-11
1.97075e-09
-7.28562e-11
1.96179e-09
-7.46316e-11
1.9511e-09
-7.44169e-11
1.93894e-09
-7.24132e-11
1.92528e-09
-6.90146e-11
1.91028e-09
-6.37904e-11
1.89434e-09
-5.62243e-11
1.87789e-09
-4.6331e-11
1.86118e-09
-3.46589e-11
1.84423e-09
-2.2053e-11
1.8269e-09
-9.31046e-12
1.80894e-09
2.9939e-12
1.79009e-09
1.45869e-11
1.77006e-09
2.53894e-11
1.74854e-09
3.5453e-11
1.72524e-09
4.51142e-11
1.70022e-09
5.54331e-11
1.67383e-09
6.74034e-11
1.64654e-09
8.16799e-11
1.61887e-09
9.85065e-11
1.59129e-09
1.17648e-10
1.56412e-09
1.38506e-10
1.53755e-09
1.6036e-10
1.51165e-09
1.8249e-10
1.48644e-09
2.04237e-10
1.46176e-09
2.24939e-10
1.43735e-09
2.44136e-10
1.41296e-09
2.61624e-10
1.38841e-09
2.77378e-10
1.36364e-09
2.91444e-10
1.33865e-09
3.03812e-10
1.31345e-09
3.14258e-10
1.28786e-09
3.22325e-10
1.26149e-09
3.2757e-10
1.23391e-09
3.29875e-10
1.20474e-09
3.29373e-10
1.17366e-09
3.26426e-10
1.14046e-09
3.21627e-10
1.10501e-09
3.15746e-10
1.06738e-09
3.09603e-10
1.02771e-09
3.03957e-10
9.86288e-10
2.99544e-10
9.43512e-10
2.96943e-10
8.99771e-10
2.96513e-10
8.55456e-10
2.98418e-10
8.10942e-10
3.02613e-10
7.66557e-10
3.08902e-10
7.22655e-10
3.17058e-10
6.79578e-10
3.26661e-10
6.37552e-10
3.36996e-10
5.96584e-10
3.47105e-10
5.56508e-10
3.56051e-10
5.16983e-10
3.63013e-10
4.77539e-10
3.67449e-10
4.37623e-10
3.69162e-10
3.96756e-10
3.68501e-10
3.54624e-10
3.66211e-10
3.11054e-10
3.63103e-10
2.65979e-10
3.59914e-10
2.19887e-10
3.57605e-10
1.73716e-10
3.56122e-10
1.28601e-10
3.53547e-10
8.57519e-11
3.45159e-10
4.71172e-11
3.2223e-10
1.60343e-11
2.66448e-10
1.40195e-10
1.95327e-09
-5.91145e-11
1.98132e-09
-1.97663e-11
1.99673e-09
3.22789e-12
2.00175e-09
1.09822e-11
1.99879e-09
4.45069e-12
1.99192e-09
-1.12164e-11
1.98324e-09
-3.52644e-11
1.97458e-09
-6.36808e-11
1.96673e-09
-9.38468e-11
1.96015e-09
-1.22552e-10
1.95497e-09
-1.4777e-10
1.95107e-09
-1.6835e-10
1.94843e-09
-1.83633e-10
1.94683e-09
-1.93913e-10
1.94611e-09
-1.99578e-10
1.94602e-09
-2.01297e-10
1.94656e-09
-1.99271e-10
1.9478e-09
-1.939e-10
1.94982e-09
-1.85708e-10
1.95255e-09
-1.75442e-10
1.95589e-09
-1.63614e-10
1.95987e-09
-1.50569e-10
1.96449e-09
-1.36711e-10
1.96977e-09
-1.22614e-10
1.97553e-09
-1.08996e-10
1.98153e-09
-9.65287e-11
1.98744e-09
-8.57781e-11
1.99287e-09
-7.70615e-11
1.99742e-09
-7.05806e-11
2.0007e-09
-6.63699e-11
2.00233e-09
-6.41857e-11
2.00201e-09
-6.36419e-11
1.99954e-09
-6.41769e-11
1.99485e-09
-6.51359e-11
1.98794e-09
-6.58722e-11
1.97897e-09
-6.56068e-11
1.96832e-09
-6.37229e-11
1.95621e-09
-6.02652e-11
1.94267e-09
-5.54364e-11
1.92785e-09
-4.89276e-11
1.91207e-09
-4.03888e-11
1.89569e-09
-2.98626e-11
1.87891e-09
-1.77955e-11
1.86179e-09
-4.85552e-12
1.84421e-09
8.31766e-12
1.826e-09
2.12467e-11
1.80693e-09
3.36885e-11
1.78678e-09
4.55735e-11
1.76529e-09
5.69716e-11
1.74225e-09
6.81906e-11
1.71771e-09
8.00289e-11
1.69194e-09
9.32536e-11
1.66534e-09
1.08388e-10
1.63833e-09
1.25621e-10
1.61129e-09
1.44758e-10
1.5845e-09
1.6532e-10
1.55813e-09
1.86709e-10
1.53223e-09
2.08321e-10
1.5068e-09
2.29582e-10
1.4817e-09
2.49943e-10
1.45674e-09
2.69004e-10
1.43169e-09
2.86556e-10
1.40642e-09
3.02526e-10
1.38085e-09
3.169e-10
1.35496e-09
3.29615e-10
1.32872e-09
3.40462e-10
1.30198e-09
3.49084e-10
1.2744e-09
3.55168e-10
1.24565e-09
3.58628e-10
1.21542e-09
3.59599e-10
1.18344e-09
3.58409e-10
1.14955e-09
3.5557e-10
1.11366e-09
3.51722e-10
1.07579e-09
3.47557e-10
1.03608e-09
3.43753e-10
9.94792e-10
3.40956e-10
9.52243e-10
3.39675e-10
9.08769e-10
3.40224e-10
8.64706e-10
3.42737e-10
8.20382e-10
3.47187e-10
7.76104e-10
3.53425e-10
7.3218e-10
3.61233e-10
6.88889e-10
3.7021e-10
6.46401e-10
3.79722e-10
6.04728e-10
3.88976e-10
5.63737e-10
3.972e-10
5.23155e-10
4.0373e-10
4.82596e-10
4.08127e-10
4.41616e-10
4.1025e-10
3.99826e-10
4.10392e-10
3.56965e-10
4.09162e-10
3.12892e-10
4.07233e-10
2.67621e-10
4.05215e-10
2.21575e-10
4.03687e-10
1.7551e-10
4.02234e-10
1.3038e-10
3.98687e-10
8.73463e-11
3.88182e-10
4.83123e-11
3.61352e-10
1.66594e-11
2.98315e-10
1.56985e-10
1.96827e-09
-1.01579e-10
1.9978e-09
-4.92569e-11
2.01512e-09
-1.40332e-11
2.02226e-09
3.88941e-12
2.0216e-09
5.13367e-12
2.01655e-09
-6.19306e-12
2.00923e-09
-2.80078e-11
2.0014e-09
-5.59239e-11
1.99395e-09
-8.64686e-11
1.98744e-09
-1.16103e-10
1.98208e-09
-1.42463e-10
1.97788e-09
-1.64188e-10
1.97484e-09
-1.80591e-10
1.97281e-09
-1.91854e-10
1.97166e-09
-1.98371e-10
1.97119e-09
-2.00768e-10
1.97139e-09
-1.99389e-10
1.97226e-09
-1.94698e-10
1.97385e-09
-1.87214e-10
1.97609e-09
-1.77607e-10
1.97891e-09
-1.6637e-10
1.9823e-09
-1.53893e-10
1.98624e-09
-1.40601e-10
1.99071e-09
-1.27022e-10
1.99554e-09
-1.13786e-10
2.0005e-09
-1.01475e-10
2.00532e-09
-9.05775e-11
2.00966e-09
-8.13863e-11
2.01314e-09
-7.40705e-11
2.01544e-09
-6.86567e-11
2.01622e-09
-6.49514e-11
2.01522e-09
-6.26164e-11
2.01226e-09
-6.11799e-11
2.00727e-09
-6.00908e-11
2.00027e-09
-5.87874e-11
1.99137e-09
-5.66435e-11
1.98084e-09
-5.31619e-11
1.96888e-09
-4.8286e-11
1.95556e-09
-4.2094e-11
1.94102e-09
-3.43667e-11
1.92551e-09
-2.48721e-11
1.90932e-09
-1.36683e-11
1.89264e-09
-1.12217e-12
1.87551e-09
1.22346e-11
1.85785e-09
2.58946e-11
1.83954e-09
3.94705e-11
1.8204e-09
5.27506e-11
1.80023e-09
6.5671e-11
1.77883e-09
7.8304e-11
1.75605e-09
9.09192e-11
1.73193e-09
1.0412e-10
1.7067e-09
1.18496e-10
1.68066e-09
1.34454e-10
1.65416e-09
1.52137e-10
1.62753e-09
1.71387e-10
1.601e-09
1.91818e-10
1.57471e-09
2.12943e-10
1.54872e-09
2.3425e-10
1.52302e-09
2.55243e-10
1.49749e-09
2.75452e-10
1.47198e-09
2.9452e-10
1.44632e-09
3.12234e-10
1.42038e-09
3.28491e-10
1.39408e-09
3.43231e-10
1.36741e-09
3.56362e-10
1.3403e-09
3.67684e-10
1.3126e-09
3.76918e-10
1.28406e-09
3.83839e-10
1.25439e-09
3.88401e-10
1.22332e-09
3.9074e-10
1.19067e-09
3.91153e-10
1.15626e-09
3.90078e-10
1.12004e-09
3.88055e-10
1.08202e-09
3.85678e-10
1.04232e-09
3.83553e-10
1.00117e-09
3.82245e-10
9.58841e-10
3.82193e-10
9.15612e-10
3.83664e-10
8.71779e-10
3.86776e-10
8.27636e-10
3.91521e-10
7.83467e-10
3.97788e-10
7.39542e-10
4.05365e-10
6.96087e-10
4.13873e-10
6.5324e-10
4.22754e-10
6.11015e-10
4.31353e-10
5.69308e-10
4.39039e-10
5.27893e-10
4.45267e-10
4.86451e-10
4.4968e-10
4.44625e-10
4.52179e-10
4.02096e-10
4.53012e-10
3.58648e-10
4.52675e-10
3.14179e-10
4.51726e-10
2.68751e-10
4.5065e-10
2.22734e-10
4.49725e-10
1.76747e-10
4.48232e-10
1.31622e-10
4.43796e-10
8.84799e-11
4.31358e-10
4.91643e-11
4.00842e-10
1.70827e-11
3.30634e-10
1.7416e-10
1.97094e-09
-1.44495e-10
2.00187e-09
-8.0163e-11
2.02133e-09
-3.34778e-11
2.03105e-09
-5.8465e-12
2.0332e-09
2.93666e-12
2.03067e-09
-3.70963e-12
2.02544e-09
-2.28265e-11
2.01915e-09
-4.96672e-11
2.01277e-09
-8.00903e-11
2.00691e-09
-1.10232e-10
2.00189e-09
-1.37413e-10
1.99781e-09
-1.60063e-10
1.99471e-09
-1.77428e-10
1.99253e-09
-1.89584e-10
1.99117e-09
-1.96905e-10
1.99048e-09
-1.99983e-10
1.99044e-09
-1.99243e-10
1.99105e-09
-1.95198e-10
1.99232e-09
-1.88366e-10
1.99419e-09
-1.79368e-10
1.99659e-09
-1.68685e-10
1.9995e-09
-1.56723e-10
2.00288e-09
-1.43923e-10
2.00669e-09
-1.30769e-10
2.01076e-09
-1.17822e-10
2.01488e-09
-1.05596e-10
2.01883e-09
-9.45048e-11
2.02228e-09
-8.48256e-11
2.02492e-09
-7.67059e-11
2.02645e-09
-7.01627e-11
2.02658e-09
-6.50522e-11
2.02506e-09
-6.10801e-11
2.02175e-09
-5.7842e-11
2.01658e-09
-5.48814e-11
2.00956e-09
-5.17164e-11
2.00078e-09
-4.7831e-11
1.99044e-09
-4.28159e-11
1.9787e-09
-3.65581e-11
1.96566e-09
-2.90589e-11
1.95144e-09
-2.01624e-11
1.93626e-09
-9.72098e-12
1.92034e-09
2.19999e-12
1.90382e-09
1.53025e-11
1.88677e-09
2.91613e-11
1.86913e-09
4.33747e-11
1.8508e-09
5.76329e-11
1.83165e-09
7.17555e-11
1.81151e-09
8.56817e-11
1.79022e-09
9.94758e-11
1.76767e-09
1.13366e-10
1.7439e-09
1.27809e-10
1.71908e-09
1.43255e-10
1.69348e-09
1.60016e-10
1.66737e-09
1.78196e-10
1.64103e-09
1.97667e-10
1.61466e-09
2.18123e-10
1.58839e-09
2.39162e-10
1.56226e-09
2.60352e-10
1.53628e-09
2.81255e-10
1.51034e-09
3.0146e-10
1.48433e-09
3.2064e-10
1.45812e-09
3.38583e-10
1.43158e-09
3.55166e-10
1.40465e-09
3.70304e-10
1.37729e-09
3.83881e-10
1.34944e-09
3.95715e-10
1.32095e-09
4.05585e-10
1.29161e-09
4.13334e-10
1.26118e-09
4.18949e-10
1.22945e-09
4.22569e-10
1.19624e-09
4.24456e-10
1.16142e-09
4.24984e-10
1.12493e-09
4.24615e-10
1.0868e-09
4.23871e-10
1.04713e-09
4.23288e-10
1.00611e-09
4.23357e-10
9.63974e-10
4.24446e-10
9.2096e-10
4.26787e-10
8.77332e-10
4.30491e-10
8.33361e-10
4.35572e-10
7.89304e-10
4.41941e-10
7.45392e-10
4.49391e-10
7.01813e-10
4.57567e-10
6.58682e-10
4.65987e-10
6.1602e-10
4.74113e-10
5.7374e-10
4.81424e-10
5.31653e-10
4.87466e-10
4.89495e-10
4.91947e-10
4.46976e-10
4.94801e-10
4.03838e-10
4.96237e-10
3.59903e-10
4.96662e-10
3.1511e-10
4.96539e-10
2.69548e-10
4.96233e-10
2.23538e-10
4.95766e-10
1.77605e-10
4.94176e-10
1.325e-10
4.88917e-10
8.92992e-11
4.7468e-10
4.97742e-11
4.40599e-10
1.73619e-11
3.63249e-10
1.91571e-10
1.96426e-09
-1.87601e-10
1.9965e-09
-1.12408e-10
2.01819e-09
-5.51946e-11
2.03074e-09
-1.84412e-11
2.03604e-09
-2.39998e-12
2.03646e-09
-4.15145e-12
2.03381e-09
-2.01777e-11
2.02959e-09
-4.54333e-11
2.02478e-09
-7.5256e-11
2.02004e-09
-1.05477e-10
2.01577e-09
-1.33132e-10
2.01216e-09
-1.56444e-10
2.00932e-09
-1.7457e-10
2.00725e-09
-1.8748e-10
2.00589e-09
-1.9551e-10
2.00517e-09
-1.99216e-10
2.00505e-09
-1.9907e-10
2.00553e-09
-1.95614e-10
2.00661e-09
-1.89369e-10
2.00823e-09
-1.8092e-10
2.01034e-09
-1.70739e-10
2.0129e-09
-1.59234e-10
2.01585e-09
-1.46851e-10
2.01915e-09
-1.34042e-10
2.02263e-09
-1.21299e-10
2.0261e-09
-1.09091e-10
2.02936e-09
-9.77659e-11
2.03213e-09
-8.75861e-11
2.03411e-09
-7.86893e-11
2.03504e-09
-7.10849e-11
2.03466e-09
-6.46687e-11
2.03276e-09
-5.9191e-11
2.02921e-09
-5.43005e-11
2.02394e-09
-4.96158e-11
2.01696e-09
-4.47305e-11
2.00834e-09
-3.92135e-11
1.99822e-09
-3.27185e-11
1.98674e-09
-2.51074e-11
1.97401e-09
-1.63396e-11
1.96014e-09
-6.30388e-12
1.94529e-09
5.09062e-12
1.92964e-09
1.7777e-11
1.91333e-09
3.15133e-11
1.8964e-09
4.59616e-11
1.87883e-09
6.08018e-11
1.86052e-09
7.57866e-11
1.84138e-09
9.07645e-11
1.82128e-09
1.05677e-10
1.80009e-09
1.20575e-10
1.77773e-09
1.35643e-10
1.75423e-09
1.51229e-10
1.72974e-09
1.67676e-10
1.70446e-09
1.8522e-10
1.67865e-09
2.03935e-10
1.65251e-09
2.23717e-10
1.62624e-09
2.44323e-10
1.59994e-09
2.65419e-10
1.57367e-09
2.86632e-10
1.54742e-09
3.07572e-10
1.52111e-09
3.2787e-10
1.49465e-09
3.47225e-10
1.46794e-09
3.65431e-10
1.44088e-09
3.82357e-10
1.41339e-09
3.979e-10
1.38544e-09
4.11938e-10
1.35694e-09
4.24306e-10
1.32778e-09
4.34831e-10
1.29777e-09
4.43408e-10
1.26671e-09
4.50051e-10
1.23442e-09
4.54889e-10
1.20074e-09
4.58153e-10
1.16556e-09
4.60163e-10
1.12885e-09
4.61324e-10
1.09062e-09
4.62097e-10
1.05098e-09
4.6295e-10
1.01007e-09
4.64301e-10
9.68097e-10
4.6646e-10
9.2527e-10
4.69631e-10
8.81829e-10
4.73932e-10
8.3802e-10
4.79388e-10
7.9407e-10
4.85921e-10
7.50177e-10
4.93328e-10
7.065e-10
5.01286e-10
6.63142e-10
5.09389e-10
6.20125e-10
5.17192e-10
5.77376e-10
5.24257e-10
5.34735e-10
5.30203e-10
4.91983e-10
5.34792e-10
4.48885e-10
5.37981e-10
4.05232e-10
5.3995e-10
3.60887e-10
5.41038e-10
3.15821e-10
5.41628e-10
2.70137e-10
5.41961e-10
2.24113e-10
5.41838e-10
1.78214e-10
5.40112e-10
1.3314e-10
5.34085e-10
8.99026e-11
5.18129e-10
5.02069e-11
4.80533e-10
1.75395e-11
3.96055e-10
2.09133e-10
1.9508e-09
-2.30685e-10
1.98422e-09
-1.45849e-10
2.00813e-09
-7.91255e-11
2.02359e-09
-3.39351e-11
2.03216e-09
-1.09955e-11
2.03577e-09
-7.77683e-12
2.036e-09
-2.04249e-11
2.03419e-09
-4.36642e-11
2.0313e-09
-7.24356e-11
2.02804e-09
-1.023e-10
2.02484e-09
-1.30047e-10
2.02201e-09
-1.5371e-10
2.0197e-09
-1.72346e-10
2.01798e-09
-1.85825e-10
2.01684e-09
-1.94426e-10
2.01625e-09
-1.98668e-10
2.01621e-09
-1.99041e-10
2.01671e-09
-1.96102e-10
2.01773e-09
-1.90373e-10
2.01924e-09
-1.82406e-10
2.02119e-09
-1.72664e-10
2.02352e-09
-1.61553e-10
2.02619e-09
-1.49513e-10
2.02912e-09
-1.36969e-10
2.03215e-09
-1.24358e-10
2.03513e-09
-1.12103e-10
2.03787e-09
-1.00509e-10
2.0401e-09
-8.98194e-11
2.04157e-09
-8.01676e-11
2.04204e-09
-7.15631e-11
2.04129e-09
-6.3927e-11
2.03912e-09
-5.7052e-11
2.03541e-09
-5.06344e-11
2.0301e-09
-4.43484e-11
2.0232e-09
-3.78537e-11
2.01475e-09
-3.07912e-11
2.00487e-09
-2.28625e-11
1.99367e-09
-1.39215e-11
1.98124e-09
-3.90942e-12
1.9677e-09
7.25027e-12
1.95318e-09
1.96153e-11
1.9378e-09
3.31165e-11
1.9217e-09
4.75622e-11
1.9049e-09
6.26837e-11
1.8874e-09
7.82239e-11
1.86914e-09
9.39835e-11
1.85003e-09
1.09835e-10
1.82997e-09
1.25721e-10
1.80886e-09
1.41677e-10
1.78665e-09
1.57847e-10
1.76336e-09
1.74497e-10
1.73911e-09
1.9189e-10
1.71409e-09
2.10201e-10
1.68848e-09
2.29482e-10
1.6625e-09
2.49648e-10
1.63629e-09
2.70502e-10
1.60995e-09
2.91762e-10
1.58354e-09
3.13098e-10
1.55704e-09
3.3416e-10
1.5304e-09
3.54611e-10
1.50355e-09
3.74177e-10
1.4764e-09
3.92664e-10
1.44887e-09
4.09939e-10
1.42089e-09
4.25894e-10
1.3924e-09
4.40404e-10
1.36334e-09
4.53327e-10
1.33359e-09
4.64531e-10
1.303e-09
4.73949e-10
1.2714e-09
4.81605e-10
1.23861e-09
4.87617e-10
1.20453e-09
4.92184e-10
1.16904e-09
4.95586e-10
1.13213e-09
4.98183e-10
1.09382e-09
5.00381e-10
1.05419e-09
5.02581e-10
1.01337e-09
5.05133e-10
9.71531e-10
5.08303e-10
9.28867e-10
5.12281e-10
8.85594e-10
5.17185e-10
8.41932e-10
5.23048e-10
7.98078e-10
5.2979e-10
7.54203e-10
5.37217e-10
7.10446e-10
5.4505e-10
6.66901e-10
5.5295e-10
6.23589e-10
5.60544e-10
5.80447e-10
5.67459e-10
5.37338e-10
5.73373e-10
4.94084e-10
5.78094e-10
4.50495e-10
5.81602e-10
4.06402e-10
5.84051e-10
3.61707e-10
5.85733e-10
3.16407e-10
5.86954e-10
2.70605e-10
5.87821e-10
2.24551e-10
5.87957e-10
1.78676e-10
5.86077e-10
1.3363e-10
5.79317e-10
9.03536e-11
5.61664e-10
5.05084e-11
5.20572e-10
1.76499e-11
4.28996e-10
2.26808e-10
1.93271e-09
-2.7366e-10
1.9672e-09
-1.80357e-10
1.99321e-09
-1.05153e-10
2.01152e-09
-5.22627e-11
2.02334e-09
-2.2839e-11
2.03019e-09
-1.46714e-11
2.03342e-09
-2.37227e-11
2.03422e-09
-4.45589e-11
2.03348e-09
-7.18368e-11
2.03194e-09
-1.00897e-10
2.03008e-09
-1.28333e-10
2.02826e-09
-1.52014e-10
2.02671e-09
-1.70891e-10
2.02554e-09
-1.84736e-10
2.02481e-09
-1.93759e-10
2.02454e-09
-1.98429e-10
2.02472e-09
-1.99242e-10
2.02537e-09
-1.96744e-10
2.02647e-09
-1.91461e-10
2.02799e-09
-1.83909e-10
2.02989e-09
-1.74542e-10
2.03212e-09
-1.63759e-10
2.03461e-09
-1.51992e-10
2.0373e-09
-1.39639e-10
2.04002e-09
-1.27093e-10
2.04263e-09
-1.14732e-10
2.04498e-09
-1.02835e-10
2.04681e-09
-9.16304e-11
2.04789e-09
-8.12418e-11
2.04802e-09
-7.16873e-11
2.04699e-09
-6.29039e-11
2.04463e-09
-5.47203e-11
2.04083e-09
-4.68785e-11
2.03552e-09
-3.90948e-11
2.02872e-09
-3.10823e-11
2.02045e-09
-2.25448e-11
2.01081e-09
-1.32258e-11
1.99988e-09
-2.98022e-12
1.98775e-09
8.25461e-12
1.97451e-09
2.05301e-11
1.96028e-09
3.38766e-11
1.94516e-09
4.82348e-11
1.92924e-09
6.34532e-11
1.91258e-09
7.93193e-11
1.89516e-09
9.56249e-11
1.87695e-09
1.12204e-10
1.85787e-09
1.28946e-10
1.83785e-09
1.45798e-10
1.81681e-09
1.62776e-10
1.79472e-09
1.79993e-10
1.77159e-09
1.97653e-10
1.74753e-09
2.15956e-10
1.7227e-09
2.35033e-10
1.69726e-09
2.54917e-10
1.67139e-09
2.75535e-10
1.64522e-09
2.96723e-10
1.61884e-09
3.18236e-10
1.59229e-09
3.39778e-10
1.56556e-09
3.61028e-10
1.53862e-09
3.81682e-10
1.51142e-09
4.01495e-10
1.48389e-09
4.20287e-10
1.45594e-09
4.3793e-10
1.42751e-09
4.54311e-10
1.39855e-09
4.69314e-10
1.36898e-09
4.8282e-10
1.33871e-09
4.94728e-10
1.30761e-09
5.04996e-10
1.27553e-09
5.1365e-10
1.24231e-09
5.2079e-10
1.20786e-09
5.26589e-10
1.1721e-09
5.31302e-10
1.13501e-09
5.35247e-10
1.09662e-09
5.38779e-10
1.05699e-09
5.42238e-10
1.01623e-09
5.45915e-10
9.74506e-10
5.50044e-10
9.3198e-10
5.54805e-10
8.88855e-10
5.60317e-10
8.45321e-10
5.66603e-10
8.01547e-10
5.73582e-10
7.57684e-10
5.81081e-10
7.13858e-10
5.88864e-10
6.70154e-10
5.96653e-10
6.2659e-10
6.04129e-10
5.8311e-10
6.10966e-10
5.39601e-10
6.16898e-10
4.95918e-10
6.21776e-10
4.51907e-10
6.25593e-10
4.07438e-10
6.28491e-10
3.62444e-10
6.30719e-10
3.16938e-10
6.325e-10
2.71019e-10
6.33813e-10
2.24924e-10
6.34144e-10
1.79062e-10
6.32094e-10
1.34027e-10
6.246e-10
9.06943e-11
6.0524e-10
5.07173e-11
5.60672e-10
1.77217e-11
4.62052e-10
2.44577e-10
1.91182e-09
-3.1651e-10
1.94723e-09
-2.15824e-10
1.97517e-09
-1.33131e-10
1.99616e-09
-7.32771e-11
2.01108e-09
-3.77917e-11
2.0211e-09
-2.47376e-11
2.02732e-09
-3.00056e-11
2.03078e-09
-4.80838e-11
2.03232e-09
-7.3448e-11
2.03264e-09
-1.01281e-10
2.0323e-09
-1.28021e-10
2.03168e-09
-1.51406e-10
2.03106e-09
-1.70272e-10
2.03062e-09
-1.84289e-10
2.03046e-09
-1.93589e-10
2.03064e-09
-1.98578e-10
2.03118e-09
-1.9975e-10
2.0321e-09
-1.97621e-10
2.03339e-09
-1.9271e-10
2.03504e-09
-1.85506e-10
2.03701e-09
-1.76443e-10
2.03922e-09
-1.65923e-10
2.04164e-09
-1.54361e-10
2.04419e-09
-1.42126e-10
2.0467e-09
-1.29584e-10
2.04907e-09
-1.17064e-10
2.05112e-09
-1.04833e-10
2.05265e-09
-9.31056e-11
2.05345e-09
-8.19943e-11
2.05332e-09
-7.15277e-11
2.05209e-09
-6.16555e-11
2.04961e-09
-5.22363e-11
2.04576e-09
-4.30539e-11
2.04048e-09
-3.38597e-11
2.03379e-09
-2.44084e-11
2.02571e-09
-1.44575e-11
2.01629e-09
-3.79087e-12
2.00561e-09
7.72809e-12
1.99376e-09
2.01583e-11
1.9808e-09
3.35343e-11
1.96683e-09
4.78665e-11
1.95193e-09
6.31089e-11
1.93619e-09
7.91459e-11
1.91965e-09
9.58111e-11
1.90232e-09
1.12932e-10
1.88416e-09
1.30366e-10
1.86512e-09
1.48012e-10
1.84513e-09
1.65819e-10
1.82415e-09
1.83794e-10
1.80215e-09
2.02022e-10
1.77915e-09
2.20658e-10
1.75525e-09
2.39854e-10
1.73057e-09
2.59709e-10
1.70526e-09
2.8024e-10
1.67948e-09
3.01382e-10
1.65333e-09
3.22987e-10
1.62691e-09
3.44837e-10
1.60023e-09
3.66661e-10
1.5733e-09
3.88167e-10
1.54609e-09
4.09086e-10
1.51857e-09
4.29198e-10
1.49069e-09
4.4834e-10
1.46236e-09
4.66387e-10
1.43353e-09
4.83228e-10
1.40413e-09
4.98759e-10
1.37411e-09
5.12879e-10
1.34338e-09
5.25516e-10
1.31182e-09
5.36635e-10
1.2793e-09
5.46257e-10
1.2457e-09
5.54468e-10
1.21092e-09
5.61426e-10
1.17491e-09
5.67363e-10
1.13765e-09
5.72565e-10
1.09917e-09
5.77336e-10
1.05953e-09
5.81958e-10
1.01882e-09
5.86682e-10
9.77183e-10
5.91719e-10
9.34774e-10
5.97241e-10
8.91772e-10
6.03354e-10
8.48342e-10
6.10069e-10
8.0463e-10
6.17308e-10
7.60772e-10
6.24925e-10
7.16883e-10
6.32732e-10
6.7304e-10
6.40491e-10
6.29254e-10
6.47924e-10
5.85478e-10
6.54751e-10
5.41622e-10
6.60752e-10
4.97569e-10
6.65814e-10
4.53195e-10
6.69943e-10
4.08404e-10
6.73271e-10
3.63152e-10
6.76004e-10
3.1746e-10
6.78275e-10
2.71426e-10
6.79952e-10
2.25284e-10
6.80423e-10
1.79419e-10
6.78173e-10
1.34367e-10
6.69909e-10
9.09579e-11
6.48821e-10
5.08696e-11
6.00826e-10
1.77765e-11
4.95223e-10
2.62429e-10
1.88962e-09
-3.59109e-10
1.92579e-09
-2.52076e-10
1.95545e-09
-1.62855e-10
1.97886e-09
-9.67611e-11
1.99664e-09
-5.56338e-11
2.00964e-09
-3.77868e-11
2.01875e-09
-3.91368e-11
2.02483e-09
-5.41663e-11
2.02866e-09
-7.72614e-11
2.03094e-09
-1.03505e-10
2.03221e-09
-1.29218e-10
2.03291e-09
-1.52024e-10
2.03335e-09
-1.70647e-10
2.03378e-09
-1.84641e-10
2.03432e-09
-1.94067e-10
2.03507e-09
-1.99258e-10
2.03607e-09
-2.00692e-10
2.03737e-09
-1.98846e-10
2.03895e-09
-1.94224e-10
2.04081e-09
-1.87292e-10
2.04293e-09
-1.78459e-10
2.04522e-09
-1.68135e-10
2.04765e-09
-1.56707e-10
2.05014e-09
-1.44522e-10
2.05254e-09
-1.31924e-10
2.05474e-09
-1.19196e-10
2.0566e-09
-1.066e-10
2.05792e-09
-9.43381e-11
2.05851e-09
-8.25135e-11
2.05819e-09
-7.11612e-11
2.05682e-09
-6.02434e-11
2.05426e-09
-4.96453e-11
2.05039e-09
-3.91873e-11
2.04517e-09
-2.86524e-11
2.0386e-09
-1.78284e-11
2.03069e-09
-6.51812e-12
2.02149e-09
5.45443e-12
2.01104e-09
1.82109e-11
1.99943e-09
3.18067e-11
1.98671e-09
4.62636e-11
1.97297e-09
6.15823e-11
1.95828e-09
7.77288e-11
1.94271e-09
9.46191e-11
1.92629e-09
1.12124e-10
1.90904e-09
1.30097e-10
1.89093e-09
1.48408e-10
1.87192e-09
1.66966e-10
1.85197e-09
1.85719e-10
1.83104e-09
2.0467e-10
1.80912e-09
2.23882e-10
1.78624e-09
2.4347e-10
1.76246e-09
2.63552e-10
1.7379e-09
2.842e-10
1.7127e-09
3.05419e-10
1.68699e-09
3.27143e-10
1.66087e-09
3.49234e-10
1.63439e-09
3.71491e-10
1.60759e-09
3.93666e-10
1.58046e-09
4.15498e-10
1.55301e-09
4.3675e-10
1.52521e-09
4.57227e-10
1.497e-09
4.76779e-10
1.46833e-09
4.95281e-10
1.43913e-09
5.1263e-10
1.40933e-09
5.28729e-10
1.3789e-09
5.43501e-10
1.34775e-09
5.56883e-10
1.31577e-09
5.68846e-10
1.28286e-09
5.79402e-10
1.2489e-09
5.88629e-10
1.21382e-09
5.96676e-10
1.17758e-09
6.03758e-10
1.14017e-09
6.10128e-10
1.1016e-09
6.16044e-10
1.06194e-09
6.21742e-10
1.02125e-09
6.27444e-10
9.79678e-10
6.33346e-10
9.37364e-10
6.39605e-10
8.94459e-10
6.46308e-10
8.51107e-10
6.53456e-10
8.07438e-10
6.60979e-10
7.63578e-10
6.68768e-10
7.19631e-10
6.76668e-10
6.7566e-10
6.84473e-10
6.31674e-10
6.91935e-10
5.87637e-10
6.98815e-10
5.43478e-10
7.04937e-10
4.99103e-10
7.10215e-10
4.54417e-10
7.14666e-10
4.09348e-10
7.1841e-10
3.6387e-10
7.21601e-10
3.18005e-10
7.24287e-10
2.71858e-10
7.26251e-10
2.25664e-10
7.26807e-10
1.79775e-10
7.24305e-10
1.3467e-10
7.1522e-10
9.11757e-11
6.92404e-10
5.09979e-11
6.41052e-10
1.78278e-11
5.28515e-10
2.80354e-10
1.86727e-09
-4.01248e-10
1.90404e-09
-2.88881e-10
1.93517e-09
-1.94052e-10
1.96072e-09
-1.22408e-10
1.98107e-09
-7.60576e-11
1.9968e-09
-5.35625e-11
2.0086e-09
-5.09405e-11
2.01718e-09
-6.2729e-11
2.02326e-09
-8.32902e-11
2.02748e-09
-1.07657e-10
2.0304e-09
-1.32064e-10
2.03248e-09
-1.54032e-10
2.03408e-09
-1.72182e-10
2.03546e-09
-1.85955e-10
2.0368e-09
-1.95341e-10
2.03822e-09
-2.00602e-10
2.03978e-09
-2.02184e-10
2.04153e-09
-2.00525e-10
2.04347e-09
-1.96101e-10
2.04563e-09
-1.8936e-10
2.04797e-09
-1.80685e-10
2.0504e-09
-1.70488e-10
2.05291e-09
-1.59125e-10
2.05541e-09
-1.46928e-10
2.05777e-09
-1.34214e-10
2.05988e-09
-1.21234e-10
2.06161e-09
-1.08241e-10
2.06278e-09
-9.54292e-11
2.06323e-09
-8.28939e-11
2.06279e-09
-7.06714e-11
2.06132e-09
-5.87353e-11
2.05871e-09
-4.6997e-11
2.05486e-09
-3.53092e-11
2.04971e-09
-2.34847e-11
2.04325e-09
-1.13402e-11
2.0355e-09
1.28414e-12
2.0265e-09
1.45253e-11
2.01627e-09
2.84879e-11
2.00487e-09
4.32242e-11
1.99238e-09
5.87508e-11
1.97884e-09
7.50646e-11
1.96434e-09
9.21409e-11
1.94892e-09
1.0992e-10
1.93261e-09
1.28299e-10
1.91544e-09
1.47155e-10
1.89739e-09
1.66364e-10
1.87843e-09
1.85839e-10
1.85851e-09
2.05532e-10
1.83763e-09
2.2544e-10
1.81578e-09
2.45611e-10
1.79299e-09
2.66131e-10
1.76932e-09
2.87088e-10
1.74487e-09
3.08534e-10
1.71976e-09
3.30463e-10
1.69411e-09
3.52802e-10
1.66799e-09
3.75419e-10
1.64146e-09
3.98126e-10
1.61454e-09
4.20699e-10
1.58724e-09
4.42911e-10
1.55956e-09
4.64556e-10
1.53149e-09
4.85458e-10
1.50299e-09
5.05474e-10
1.47399e-09
5.24482e-10
1.44444e-09
5.42383e-10
1.41429e-09
5.59093e-10
1.38347e-09
5.74546e-10
1.35193e-09
5.88688e-10
1.31958e-09
6.01485e-10
1.2863e-09
6.12948e-10
1.25202e-09
6.2315e-10
1.21666e-09
6.32236e-10
1.18021e-09
6.40403e-10
1.14264e-09
6.47871e-10
1.10399e-09
6.54857e-10
1.06428e-09
6.61566e-10
1.0236e-09
6.68198e-10
9.82077e-10
6.74935e-10
9.39832e-10
6.81913e-10
8.96999e-10
6.89199e-10
8.53701e-10
6.96788e-10
8.1006e-10
7.04631e-10
7.6619e-10
7.12646e-10
7.22184e-10
7.20704e-10
6.78093e-10
7.28619e-10
6.33925e-10
7.36172e-10
5.89654e-10
7.43164e-10
5.45227e-10
7.49453e-10
5.00571e-10
7.54976e-10
4.55613e-10
7.59756e-10
4.10302e-10
7.63894e-10
3.64619e-10
7.67488e-10
3.18591e-10
7.70514e-10
2.72337e-10
7.72701e-10
2.26082e-10
7.73285e-10
1.80139e-10
7.70469e-10
1.34958e-10
7.60525e-10
9.13787e-11
7.3602e-10
5.11268e-11
6.81386e-10
1.78813e-11
5.61933e-10
2.98339e-10
1.84566e-09
-4.42902e-10
1.88286e-09
-3.26097e-10
1.91521e-09
-2.26447e-10
1.9426e-09
-1.4985e-10
1.96519e-09
-9.86696e-11
1.98336e-09
-7.17101e-11
1.9976e-09
-6.51348e-11
2.00851e-09
-7.35752e-11
2.01671e-09
-9.1416e-11
2.02282e-09
-1.1368e-10
2.02737e-09
-1.36543e-10
2.03086e-09
-1.57439e-10
2.03366e-09
-1.749e-10
2.03605e-09
-1.88265e-10
2.03826e-09
-1.97449e-10
2.0404e-09
-2.02654e-10
2.04258e-09
-2.04273e-10
2.04485e-09
-2.02706e-10
2.04723e-09
-1.98397e-10
2.04974e-09
-1.91769e-10
2.05234e-09
-1.83188e-10
2.05498e-09
-1.73053e-10
2.05762e-09
-1.61692e-10
2.06019e-09
-1.49424e-10
2.06257e-09
-1.36538e-10
2.06464e-09
-1.23266e-10
2.0663e-09
-1.09846e-10
2.06739e-09
-9.64629e-11
2.06774e-09
-8.32115e-11
2.06721e-09
-7.01246e-11
2.06569e-09
-5.71853e-11
2.06307e-09
-4.433e-11
2.05925e-09
-3.14429e-11
2.05418e-09
-1.83656e-11
2.04783e-09
-4.94109e-12
2.04024e-09
8.95916e-12
2.03142e-09
2.34395e-11
2.02138e-09
3.85855e-11
2.01018e-09
5.44488e-11
1.99788e-09
7.10475e-11
1.98453e-09
8.83784e-11
1.9702e-09
1.06421e-10
1.95492e-09
1.25131e-10
1.93873e-09
1.44426e-10
1.92164e-09
1.64195e-10
1.90365e-09
1.84325e-10
1.88473e-09
2.04728e-10
1.86486e-09
2.25358e-10
1.84403e-09
2.46212e-10
1.82225e-09
2.67323e-10
1.79954e-09
2.88755e-10
1.77596e-09
3.10573e-10
1.75161e-09
3.3281e-10
1.72657e-09
3.55448e-10
1.70095e-09
3.78409e-10
1.67483e-09
4.0156e-10
1.64824e-09
4.24732e-10
1.62121e-09
4.47728e-10
1.59374e-09
4.70354e-10
1.56585e-09
4.92429e-10
1.53753e-09
5.13796e-10
1.50876e-09
5.34314e-10
1.47946e-09
5.53864e-10
1.44959e-09
5.7235e-10
1.41909e-09
5.89699e-10
1.38793e-09
6.05854e-10
1.35603e-09
6.2076e-10
1.32332e-09
6.34384e-10
1.28971e-09
6.46737e-10
1.25512e-09
6.57893e-10
1.21951e-09
6.6799e-10
1.18285e-09
6.77204e-10
1.14513e-09
6.85723e-10
1.10638e-09
6.93729e-10
1.06662e-09
7.01407e-10
1.02594e-09
7.08943e-10
9.84442e-10
7.16499e-10
9.42243e-10
7.24186e-10
8.99455e-10
7.32054e-10
8.56191e-10
7.40102e-10
8.12564e-10
7.48302e-10
7.68678e-10
7.56593e-10
7.2461e-10
7.64861e-10
6.80402e-10
7.72934e-10
6.36064e-10
7.80625e-10
5.91581e-10
7.87771e-10
5.46915e-10
7.94262e-10
5.02011e-10
8.00047e-10
4.56813e-10
8.05155e-10
4.11284e-10
8.09657e-10
3.6541e-10
8.13598e-10
3.1923e-10
8.16905e-10
2.72871e-10
8.19267e-10
2.26542e-10
8.19829e-10
1.80519e-10
8.16649e-10
1.35248e-10
8.05847e-10
9.15939e-11
7.79717e-10
5.12698e-11
7.21855e-10
1.79367e-11
5.95466e-10
3.16366e-10
1.82538e-09
-4.84257e-10
1.86289e-09
-3.63697e-10
1.89621e-09
-2.5983e-10
1.92513e-09
-1.78773e-10
1.94964e-09
-1.23119e-10
1.96992e-09
-9.18958e-11
1.98632e-09
-8.14258e-11
1.99934e-09
-8.64613e-11
2.00951e-09
-1.01446e-10
2.0174e-09
-1.21423e-10
2.02354e-09
-1.42544e-10
2.02842e-09
-1.6217e-10
2.03242e-09
-1.78752e-10
2.03586e-09
-1.91549e-10
2.03897e-09
-2.00388e-10
2.04188e-09
-2.05424e-10
2.04473e-09
-2.06981e-10
2.04756e-09
-2.05417e-10
2.05041e-09
-2.01148e-10
2.05332e-09
-1.94562e-10
2.05624e-09
-1.86014e-10
2.05912e-09
-1.7588e-10
2.06194e-09
-1.64459e-10
2.06462e-09
-1.52063e-10
2.06706e-09
-1.38951e-10
2.06915e-09
-1.25344e-10
2.07078e-09
-1.11464e-10
2.07183e-09
-9.74854e-11
2.07213e-09
-8.35055e-11
2.07157e-09
-6.9554e-11
2.07002e-09
-5.5621e-11
2.0674e-09
-4.16657e-11
2.06363e-09
-2.7603e-11
2.05864e-09
-1.3304e-11
2.05242e-09
1.36489e-12
2.04497e-09
1.65069e-11
2.0363e-09
3.22012e-11
2.02645e-09
4.85151e-11
2.01543e-09
6.55003e-11
2.0033e-09
8.31813e-11
1.99013e-09
1.01557e-10
1.97596e-09
1.20607e-10
1.96082e-09
1.40292e-10
1.94474e-09
1.60541e-10
1.92773e-09
1.81255e-10
1.9098e-09
2.02328e-10
1.89092e-09
2.23674e-10
1.8711e-09
2.45248e-10
1.85032e-09
2.67043e-10
1.8286e-09
2.89086e-10
1.80597e-09
3.11421e-10
1.78248e-09
3.3409e-10
1.7582e-09
3.5711e-10
1.73322e-09
3.80449e-10
1.70763e-09
4.04025e-10
1.68149e-09
4.27711e-10
1.65484e-09
4.51354e-10
1.62769e-09
4.7479e-10
1.60007e-09
4.97853e-10
1.57199e-09
5.20387e-10
1.54344e-09
5.42245e-10
1.5144e-09
5.63288e-10
1.48482e-09
5.83399e-10
1.45465e-09
6.02491e-10
1.42383e-09
6.20496e-10
1.39234e-09
6.37359e-10
1.36011e-09
6.53029e-10
1.32706e-09
6.67475e-10
1.29313e-09
6.80709e-10
1.25825e-09
6.92808e-10
1.2224e-09
7.03898e-10
1.18555e-09
7.14129e-10
1.14769e-09
7.2366e-10
1.10883e-09
7.32651e-10
1.06901e-09
7.41272e-10
1.02831e-09
7.49692e-10
9.86822e-10
7.58051e-10
9.44645e-10
7.66437e-10
9.01879e-10
7.74888e-10
8.5863e-10
7.83416e-10
8.15004e-10
7.92009e-10
7.71092e-10
8.00616e-10
7.26956e-10
8.09125e-10
6.82632e-10
8.17388e-10
6.38134e-10
8.25248e-10
5.93459e-10
8.32578e-10
5.48577e-10
8.3929e-10
5.0345e-10
8.45347e-10
4.58036e-10
8.5077e-10
4.12305e-10
8.55602e-10
3.6625e-10
8.59846e-10
3.19927e-10
8.634e-10
2.73464e-10
8.65906e-10
2.27043e-10
8.66407e-10
1.80922e-10
8.62843e-10
1.35564e-10
8.51224e-10
9.18392e-11
8.23536e-10
5.14287e-11
7.62461e-10
1.79904e-11
6.29091e-10
3.34416e-10
1.80686e-09
-5.25337e-10
1.84457e-09
-4.0155e-10
1.87864e-09
-2.93985e-10
1.90879e-09
-2.0893e-10
1.93487e-09
-1.49163e-10
1.95693e-09
-1.13905e-10
1.97521e-09
-9.96352e-11
1.99009e-09
-1.01252e-10
2.00204e-09
-1.13294e-10
2.01158e-09
-1.30851e-10
2.01923e-09
-1.5007e-10
2.02545e-09
-1.68262e-10
2.03065e-09
-1.83802e-10
2.03513e-09
-1.95884e-10
2.03915e-09
-2.04247e-10
2.04286e-09
-2.08998e-10
2.0464e-09
-2.10389e-10
2.04982e-09
-2.08735e-10
2.05318e-09
-2.04424e-10
2.05651e-09
-1.97802e-10
2.05978e-09
-1.89223e-10
2.06294e-09
-1.79018e-10
2.06597e-09
-1.67473e-10
2.0688e-09
-1.54883e-10
2.07135e-09
-1.41487e-10
2.07349e-09
-1.27499e-10
2.07514e-09
-1.1312e-10
2.07618e-09
-9.85175e-11
2.07648e-09
-8.37919e-11
2.0759e-09
-6.89735e-11
2.07436e-09
-5.40573e-11
2.07177e-09
-3.90208e-11
2.06806e-09
-2.38074e-11
2.06316e-09
-8.31753e-12
2.05705e-09
7.55965e-12
2.04973e-09
2.39108e-11
2.04122e-09
4.07946e-11
2.03153e-09
5.82634e-11
2.02067e-09
7.63678e-11
2.00872e-09
9.51394e-11
1.99571e-09
1.14581e-10
1.98168e-09
1.3467e-10
1.96668e-09
1.55364e-10
1.95071e-09
1.76595e-10
1.93379e-09
1.98274e-10
1.91591e-09
2.20304e-10
1.89708e-09
2.42603e-10
1.8773e-09
2.65127e-10
1.85657e-09
2.87871e-10
1.83491e-09
3.10849e-10
1.81235e-09
3.34089e-10
1.78893e-09
3.57612e-10
1.76471e-09
3.81416e-10
1.73978e-09
4.0546e-10
1.7142e-09
4.29658e-10
1.68804e-09
4.53892e-10
1.66132e-09
4.7803e-10
1.63407e-09
5.01934e-10
1.6063e-09
5.25468e-10
1.57803e-09
5.48493e-10
1.54927e-09
5.70869e-10
1.51999e-09
5.9246e-10
1.49014e-09
6.13154e-10
1.45968e-09
6.32867e-10
1.42857e-09
6.51537e-10
1.39676e-09
6.69111e-10
1.36421e-09
6.85542e-10
1.33085e-09
7.00801e-10
1.29662e-09
7.14909e-10
1.26148e-09
7.27937e-10
1.2254e-09
7.39996e-10
1.18835e-09
7.51211e-10
1.15034e-09
7.61714e-10
1.11137e-09
7.71652e-10
1.07148e-09
7.81184e-10
1.03075e-09
7.9046e-10
9.89253e-10
7.99598e-10
9.47075e-10
8.08666e-10
9.04311e-10
8.17702e-10
8.61061e-10
8.26729e-10
8.17423e-10
8.3574e-10
7.73472e-10
8.44685e-10
7.29259e-10
8.53458e-10
6.84818e-10
8.61932e-10
6.4017e-10
8.69986e-10
5.95316e-10
8.77521e-10
5.50238e-10
8.84466e-10
5.04907e-10
8.90796e-10
4.59293e-10
8.96521e-10
4.1337e-10
9.01655e-10
3.67147e-10
9.06176e-10
3.2069e-10
9.0996e-10
2.74116e-10
9.12589e-10
2.27588e-10
9.13006e-10
1.81363e-10
9.09073e-10
1.35923e-10
8.967e-10
9.21194e-11
8.67493e-10
5.15975e-11
8.03179e-10
1.80382e-11
6.62778e-10
3.52467e-10
1.79035e-09
-5.65945e-10
1.82815e-09
-4.3938e-10
1.86277e-09
-3.28612e-10
1.89386e-09
-2.40022e-10
1.92119e-09
-1.76514e-10
1.94472e-09
-1.37473e-10
1.96458e-09
-1.19544e-10
1.98108e-09
-1.17787e-10
1.99462e-09
-1.26866e-10
2.00566e-09
-1.41931e-10
2.01471e-09
-1.59139e-10
2.02221e-09
-1.75771e-10
2.02855e-09
-1.90133e-10
2.03407e-09
-2.01368e-10
2.03899e-09
-2.09131e-10
2.0435e-09
-2.1348e-10
2.04774e-09
-2.14595e-10
2.05178e-09
-2.12753e-10
2.05566e-09
-2.08308e-10
2.05944e-09
-2.01567e-10
2.06308e-09
-1.92879e-10
2.06654e-09
-1.82526e-10
2.06981e-09
-1.70783e-10
2.07283e-09
-1.57926e-10
2.07551e-09
-1.44185e-10
2.07775e-09
-1.29764e-10
2.07944e-09
-1.14845e-10
2.08051e-09
-9.95869e-11
2.08083e-09
-8.40961e-11
2.08028e-09
-6.84074e-11
2.07877e-09
-5.25198e-11
2.07622e-09
-3.64228e-11
2.07257e-09
-2.00842e-11
2.06777e-09
-3.43227e-12
2.06177e-09
1.36204e-11
2.05459e-09
3.11511e-11
2.04622e-09
4.92041e-11
2.03667e-09
6.78193e-11
2.02598e-09
8.70434e-11
2.01419e-09
1.06913e-10
2.00133e-09
1.27433e-10
1.98745e-09
1.48579e-10
1.97258e-09
1.70297e-10
1.95671e-09
1.92521e-10
1.93987e-09
2.15169e-10
1.92205e-09
2.38155e-10
1.90327e-09
2.6141e-10
1.88354e-09
2.84894e-10
1.86286e-09
3.08594e-10
1.84125e-09
3.32517e-10
1.81875e-09
3.56672e-10
1.79539e-09
3.8106e-10
1.77122e-09
4.05662e-10
1.74631e-09
4.30428e-10
1.72073e-09
4.55273e-10
1.69453e-09
4.80092e-10
1.66774e-09
5.0477e-10
1.64039e-09
5.29194e-10
1.61248e-09
5.53248e-10
1.58405e-09
5.76808e-10
1.55508e-09
5.99737e-10
1.52556e-09
6.21906e-10
1.49546e-09
6.43205e-10
1.46473e-09
6.63557e-10
1.43333e-09
6.82902e-10
1.40123e-09
7.01189e-10
1.36838e-09
7.18376e-10
1.33472e-09
7.34442e-10
1.30021e-09
7.49412e-10
1.26482e-09
7.6335e-10
1.22852e-09
7.76344e-10
1.19129e-09
7.88498e-10
1.15312e-09
7.99927e-10
1.11403e-09
8.10769e-10
1.07407e-09
8.21171e-10
1.03329e-09
8.31265e-10
9.91762e-10
8.41145e-10
9.49563e-10
8.50872e-10
9.06783e-10
8.60489e-10
8.63517e-10
8.70024e-10
8.1985e-10
8.79468e-10
7.75845e-10
8.88764e-10
7.31546e-10
8.97817e-10
6.86988e-10
9.06526e-10
6.42196e-10
9.14799e-10
5.97175e-10
9.2256e-10
5.51914e-10
9.29754e-10
5.06395e-10
9.3636e-10
4.60591e-10
9.42374e-10
4.14488e-10
9.47791e-10
3.68106e-10
9.52579e-10
3.21518e-10
9.56585e-10
2.74826e-10
9.59318e-10
2.28179e-10
9.59643e-10
1.81855e-10
9.5538e-10
1.36334e-10
9.42301e-10
9.24278e-11
9.11571e-10
5.17674e-11
8.43972e-10
1.80784e-11
6.96502e-10
3.70513e-10
1.77596e-09
-6.06077e-10
1.81376e-09
-4.77077e-10
1.84874e-09
-3.63489e-10
1.8805e-09
-2.71724e-10
1.90879e-09
-2.04774e-10
1.93349e-09
-1.62175e-10
1.95467e-09
-1.40742e-10
1.97254e-09
-1.35702e-10
1.98746e-09
-1.4185e-10
1.99986e-09
-1.54412e-10
2.01019e-09
-1.69553e-10
2.01888e-09
-1.84545e-10
2.02632e-09
-1.97641e-10
2.03283e-09
-2.07928e-10
2.03864e-09
-2.14997e-10
2.04393e-09
-2.18848e-10
2.04888e-09
-2.19594e-10
2.05353e-09
-2.17483e-10
2.05796e-09
-2.12817e-10
2.06219e-09
-2.05883e-10
2.06622e-09
-1.97007e-10
2.07001e-09
-1.8643e-10
2.07354e-09
-1.74416e-10
2.07677e-09
-1.61224e-10
2.07962e-09
-1.47079e-10
2.08197e-09
-1.32176e-10
2.08375e-09
-1.16678e-10
2.08488e-09
-1.00737e-10
2.08524e-09
-8.44621e-11
2.08474e-09
-6.78974e-11
2.08328e-09
-5.10468e-11
2.08079e-09
-3.39061e-11
2.07722e-09
-1.64624e-11
2.07251e-09
1.33251e-12
2.06663e-09
1.95384e-11
2.05957e-09
3.82306e-11
2.05133e-09
5.74435e-11
2.04193e-09
7.72083e-11
2.0314e-09
9.7564e-11
2.01976e-09
1.18545e-10
2.00705e-09
1.40158e-10
1.99331e-09
1.6237e-10
1.97855e-09
1.8512e-10
1.96279e-09
2.08337e-10
1.94602e-09
2.31948e-10
1.92827e-09
2.55888e-10
1.90954e-09
2.801e-10
1.88985e-09
3.04548e-10
1.86922e-09
3.29214e-10
1.84767e-09
3.5409e-10
1.82521e-09
3.79167e-10
1.8019e-09
4.04429e-10
1.77776e-09
4.29844e-10
1.75286e-09
4.55357e-10
1.72726e-09
4.80887e-10
1.70102e-09
5.06338e-10
1.67417e-09
5.31612e-10
1.64671e-09
5.56614e-10
1.61868e-09
5.81242e-10
1.59007e-09
6.0538e-10
1.56091e-09
6.28899e-10
1.53117e-09
6.51672e-10
1.50082e-09
6.73598e-10
1.46983e-09
6.94601e-10
1.43817e-09
7.14627e-10
1.40579e-09
7.33626e-10
1.37265e-09
7.51564e-10
1.33871e-09
7.6843e-10
1.30393e-09
7.84247e-10
1.2683e-09
7.99066e-10
1.23178e-09
8.12958e-10
1.19436e-09
8.26007e-10
1.15604e-09
8.38319e-10
1.11683e-09
8.50023e-10
1.07678e-09
8.61253e-10
1.03594e-09
8.72121e-10
9.94365e-10
8.82707e-10
9.52128e-10
8.9307e-10
9.09317e-10
9.03262e-10
8.6602e-10
9.13306e-10
8.22308e-10
9.23187e-10
7.78234e-10
9.32843e-10
7.3384e-10
9.42195e-10
6.89164e-10
9.51166e-10
6.44232e-10
9.59688e-10
5.99052e-10
9.67701e-10
5.5362e-10
9.75162e-10
5.07922e-10
9.82048e-10
4.61937e-10
9.88344e-10
4.15662e-10
9.94037e-10
3.69132e-10
9.99087e-10
3.22412e-10
1.0033e-09
2.75592e-10
1.00612e-09
2.28827e-10
1.00636e-09
1.82406e-10
1.0018e-09
1.3679e-10
9.88032e-10
9.27509e-11
9.55739e-10
5.19325e-11
8.84816e-10
1.81137e-11
7.30266e-10
3.88567e-10
1.76371e-09
-6.45946e-10
1.80141e-09
-5.14743e-10
1.83657e-09
-3.98575e-10
1.86879e-09
-3.0386e-10
1.89778e-09
-2.3367e-10
1.92338e-09
-1.87683e-10
1.94561e-09
-1.62882e-10
1.96463e-09
-1.54653e-10
1.98074e-09
-1.57917e-10
1.99433e-09
-1.67983e-10
2.00582e-09
-1.81036e-10
2.01562e-09
-1.94338e-10
2.02408e-09
-2.06119e-10
2.03154e-09
-2.15394e-10
2.0382e-09
-2.21705e-10
2.04427e-09
-2.24988e-10
2.04992e-09
-2.25294e-10
2.05519e-09
-2.22848e-10
2.06015e-09
-2.17891e-10
2.06485e-09
-2.10699e-10
2.06929e-09
-2.01561e-10
2.07342e-09
-1.90697e-10
2.07724e-09
-1.78352e-10
2.0807e-09
-1.64767e-10
2.08373e-09
-1.50171e-10
2.08622e-09
-1.34748e-10
2.08811e-09
-1.18646e-10
2.08931e-09
-1.02001e-10
2.08975e-09
-8.49261e-11
2.08932e-09
-6.74782e-11
2.08793e-09
-4.96673e-11
2.08551e-09
-3.14929e-11
2.08202e-09
-1.29538e-11
2.07741e-09
5.97069e-12
2.07165e-09
2.53259e-11
2.06471e-09
4.51735e-11
2.0566e-09
6.55504e-11
2.04735e-09
8.64812e-11
2.03696e-09
1.07993e-10
2.02547e-09
1.30112e-10
2.01291e-09
1.52836e-10
1.99929e-09
1.76125e-10
1.98465e-09
1.99912e-10
1.96898e-09
2.24124e-10
1.95229e-09
2.48703e-10
1.9346e-09
2.736e-10
1.91592e-09
2.98777e-10
1.89628e-09
3.24199e-10
1.8757e-09
3.49839e-10
1.85419e-09
3.7567e-10
1.83178e-09
4.0167e-10
1.80849e-09
4.27808e-10
1.78437e-09
4.54046e-10
1.75947e-09
4.80326e-10
1.73385e-09
5.06573e-10
1.70756e-09
5.32699e-10
1.68063e-09
5.5862e-10
1.65308e-09
5.84248e-10
1.62491e-09
6.09493e-10
1.59615e-09
6.34242e-10
1.5668e-09
6.58373e-10
1.53684e-09
6.81767e-10
1.50626e-09
7.04329e-10
1.47502e-09
7.25989e-10
1.4431e-09
7.46693e-10
1.41045e-09
7.664e-10
1.37703e-09
7.85081e-10
1.34283e-09
8.02734e-10
1.3078e-09
8.19378e-10
1.27193e-09
8.35052e-10
1.2352e-09
8.49809e-10
1.19759e-09
8.6372e-10
1.15911e-09
8.76885e-10
1.11978e-09
8.89422e-10
1.07963e-09
9.01448e-10
1.03871e-09
9.13056e-10
9.97072e-10
9.24321e-10
9.54785e-10
9.35306e-10
9.11931e-10
9.46065e-10
8.68587e-10
9.56615e-10
8.24813e-10
9.6693e-10
7.80656e-10
9.76953e-10
7.3616e-10
9.86624e-10
6.91365e-10
9.95886e-10
6.46296e-10
1.00469e-09
6.00964e-10
1.01298e-09
5.55367e-10
1.02072e-09
5.09495e-10
1.02789e-09
4.63336e-10
1.03447e-09
4.16899e-10
1.04043e-09
3.70224e-10
1.04574e-09
3.23367e-10
1.05014e-09
2.76414e-10
1.05303e-09
2.29534e-10
1.0532e-09
1.83015e-10
1.04837e-09
1.37278e-10
1.03388e-09
9.30763e-11
9.99976e-10
5.2093e-11
9.2572e-10
1.81505e-11
7.64098e-10
4.06662e-10
1.75353e-09
-6.85497e-10
1.79107e-09
-5.52309e-10
1.82626e-09
-4.33775e-10
1.85874e-09
-3.36324e-10
1.8882e-09
-2.63101e-10
1.91446e-09
-2.13905e-10
1.9375e-09
-1.85878e-10
1.95745e-09
-1.74562e-10
1.97457e-09
-1.74998e-10
1.9892e-09
-1.8258e-10
2.00172e-09
-1.93533e-10
2.01253e-09
-2.05107e-10
2.02195e-09
-2.15526e-10
2.0303e-09
-2.23728e-10
2.03778e-09
-2.29217e-10
2.04461e-09
-2.31855e-10
2.05093e-09
-2.31651e-10
2.05681e-09
-2.28797e-10
2.06231e-09
-2.23475e-10
2.06749e-09
-2.15957e-10
2.07234e-09
-2.06486e-10
2.07683e-09
-1.95274e-10
2.08094e-09
-1.82543e-10
2.08465e-09
-1.6852e-10
2.08788e-09
-1.53434e-10
2.09054e-09
-1.37463e-10
2.09255e-09
-1.20736e-10
2.09386e-09
-1.03376e-10
2.09439e-09
-8.54928e-11
2.09404e-09
-6.71558e-11
2.09274e-09
-4.83859e-11
2.0904e-09
-2.91857e-11
2.087e-09
-9.56151e-12
2.0825e-09
1.04877e-11
2.07685e-09
3.09892e-11
2.07004e-09
5.19943e-11
2.06206e-09
7.35431e-11
2.05295e-09
9.5657e-11
2.04271e-09
1.1835e-10
2.03136e-09
1.4163e-10
2.01893e-09
1.65481e-10
2.00544e-09
1.89857e-10
1.99089e-09
2.14688e-10
1.97531e-09
2.39908e-10
1.95869e-09
2.6547e-10
1.94107e-09
2.91345e-10
1.92245e-09
3.17507e-10
1.90286e-09
3.43917e-10
1.88232e-09
3.70535e-10
1.86085e-09
3.97319e-10
1.83847e-09
4.24234e-10
1.8152e-09
4.51244e-10
1.79109e-09
4.78307e-10
1.76617e-09
5.05369e-10
1.74052e-09
5.32358e-10
1.71417e-09
5.59195e-10
1.68716e-09
5.858e-10
1.65951e-09
6.12093e-10
1.63122e-09
6.37983e-10
1.60231e-09
6.63364e-10
1.57276e-09
6.88121e-10
1.5426e-09
7.12145e-10
1.51179e-09
7.35348e-10
1.48031e-09
7.57664e-10
1.44814e-09
7.79044e-10
1.41523e-09
7.99452e-10
1.38155e-09
8.18869e-10
1.3471e-09
8.37296e-10
1.31182e-09
8.54749e-10
1.27572e-09
8.71256e-10
1.23877e-09
8.86856e-10
1.20097e-09
9.01613e-10
1.16233e-09
9.15619e-10
1.12287e-09
9.28976e-10
1.08262e-09
9.41781e-10
1.04161e-09
9.54113e-10
9.99893e-10
9.66045e-10
9.57545e-10
9.77646e-10
9.14635e-10
9.88965e-10
8.71227e-10
1.00001e-09
8.27375e-10
1.01076e-09
7.83125e-10
1.02116e-09
7.38523e-10
1.03116e-09
6.93607e-10
1.04074e-09
6.48402e-10
1.04984e-09
6.0292e-10
1.05843e-09
5.57163e-10
1.06647e-09
5.11121e-10
1.07392e-09
4.64793e-10
1.08077e-09
4.182e-10
1.08701e-09
3.71379e-10
1.09255e-09
3.24379e-10
1.09712e-09
2.77292e-10
1.10007e-09
2.30301e-10
1.10019e-09
1.83668e-10
1.09509e-09
1.37778e-10
1.07983e-09
9.33984e-11
1.04429e-09
5.22551e-11
9.66723e-10
1.81969e-11
7.98053e-10
4.2484e-10
1.74532e-09
-7.2453e-10
1.78264e-09
-5.89522e-10
1.81776e-09
-4.68832e-10
1.85032e-09
-3.68881e-10
1.88005e-09
-2.9286e-10
1.90676e-09
-2.40671e-10
1.9304e-09
-2.09595e-10
1.95109e-09
-1.95328e-10
1.96903e-09
-1.9303e-10
1.98455e-09
-1.98176e-10
1.99799e-09
-2.07043e-10
2.0097e-09
-2.16876e-10
2.02001e-09
-2.25892e-10
2.02919e-09
-2.32962e-10
2.03745e-09
-2.37559e-10
2.045e-09
-2.39466e-10
2.05199e-09
-2.38675e-10
2.05847e-09
-2.35325e-10
2.0645e-09
-2.29565e-10
2.07015e-09
-2.21639e-10
2.07542e-09
-2.11761e-10
2.08028e-09
-2.00139e-10
2.08471e-09
-1.86969e-10
2.08866e-09
-1.72465e-10
2.09211e-09
-1.5685e-10
2.09495e-09
-1.40298e-10
2.09712e-09
-1.22927e-10
2.09855e-09
-1.0484e-10
2.09918e-09
-8.61434e-11
2.09894e-09
-6.69147e-11
2.09773e-09
-4.71898e-11
2.0955e-09
-2.69761e-11
2.0922e-09
-6.28268e-12
2.0878e-09
1.48797e-11
2.08227e-09
3.65209e-11
2.07558e-09
5.86812e-11
2.06774e-09
8.14011e-11
2.05876e-09
1.04701e-10
2.04866e-09
1.2858e-10
2.03745e-09
1.53025e-10
2.02515e-09
1.78005e-10
2.01176e-09
2.03468e-10
1.9973e-09
2.29349e-10
1.9818e-09
2.55594e-10
1.96526e-09
2.82167e-10
1.94771e-09
3.0905e-10
1.92915e-09
3.3622e-10
1.90961e-09
3.63632e-10
1.8891e-09
3.91231e-10
1.86766e-09
4.18963e-10
1.8453e-09
4.46784e-10
1.82204e-09
4.7466e-10
1.79792e-09
5.02551e-10
1.77299e-09
5.30408e-10
1.74729e-09
5.58161e-10
1.72089e-09
5.85738e-10
1.6938e-09
6.1306e-10
1.66605e-09
6.40045e-10
1.63763e-09
6.66605e-10
1.60856e-09
6.92638e-10
1.57883e-09
7.18036e-10
1.54846e-09
7.42704e-10
1.51743e-09
7.6656e-10
1.48572e-09
7.89543e-10
1.4533e-09
8.11606e-10
1.42014e-09
8.3272e-10
1.38622e-09
8.52873e-10
1.35152e-09
8.7207e-10
1.31601e-09
8.90321e-10
1.27968e-09
9.07646e-10
1.24252e-09
9.2408e-10
1.20453e-09
9.39679e-10
1.16572e-09
9.54524e-10
1.12612e-09
9.68698e-10
1.08575e-09
9.82275e-10
1.04463e-09
9.95327e-10
1.00283e-09
1.00793e-09
9.60413e-10
1.02014e-09
9.17432e-10
1.03202e-09
8.73947e-10
1.04355e-09
8.30005e-10
1.05473e-09
7.85654e-10
1.0655e-09
7.40941e-10
1.07586e-09
6.95902e-10
1.08577e-09
6.50561e-10
1.09519e-09
6.0493e-10
1.10408e-09
5.59012e-10
1.11241e-09
5.12802e-10
1.12014e-09
4.6631e-10
1.12726e-09
4.19562e-10
1.13376e-09
3.7259e-10
1.13953e-09
3.25443e-10
1.14424e-09
2.78227e-10
1.14727e-09
2.31118e-10
1.14735e-09
1.84346e-10
1.14193e-09
1.38279e-10
1.12587e-09
9.37208e-11
1.08871e-09
5.24286e-11
1.00789e-09
1.82588e-11
8.32182e-10
4.43128e-10
1.73895e-09
-7.63205e-10
1.776e-09
-6.26413e-10
1.81094e-09
-5.03653e-10
1.84346e-09
-4.01323e-10
1.87329e-09
-3.22645e-10
1.90026e-09
-2.67617e-10
1.92432e-09
-2.3365e-10
1.94557e-09
-2.16574e-10
1.96418e-09
-2.11667e-10
1.98046e-09
-2.14467e-10
1.9947e-09
-2.21303e-10
2.00722e-09
-2.29429e-10
2.01833e-09
-2.37038e-10
2.02829e-09
-2.42957e-10
2.03728e-09
-2.4662e-10
2.04553e-09
-2.4774e-10
2.05315e-09
-2.46306e-10
2.06022e-09
-2.42392e-10
2.06678e-09
-2.36133e-10
2.0729e-09
-2.27732e-10
2.07859e-09
-2.17386e-10
2.08382e-09
-2.05298e-10
2.08857e-09
-1.91643e-10
2.09279e-09
-1.76617e-10
2.09645e-09
-1.60432e-10
2.09949e-09
-1.43259e-10
2.10183e-09
-1.25213e-10
2.1034e-09
-1.06382e-10
2.10415e-09
-8.68617e-11
2.10403e-09
-6.67373e-11
2.10293e-09
-4.60601e-11
2.10081e-09
-2.48457e-11
2.09762e-09
-3.10242e-12
2.09333e-09
1.91564e-11
2.08791e-09
4.19262e-11
2.08136e-09
6.52337e-11
2.07365e-09
8.91138e-11
2.06481e-09
1.13583e-10
2.05484e-09
1.3863e-10
2.04376e-09
1.64223e-10
2.03157e-09
1.90317e-10
2.01828e-09
2.16858e-10
2.00391e-09
2.43795e-10
1.98848e-09
2.71083e-10
1.97201e-09
2.98697e-10
1.95453e-09
3.26619e-10
1.93602e-09
3.54818e-10
1.91653e-09
3.83242e-10
1.89606e-09
4.11821e-10
1.87463e-09
4.40495e-10
1.85228e-09
4.69218e-10
1.82903e-09
4.9796e-10
1.8049e-09
5.26688e-10
1.77994e-09
5.55353e-10
1.75419e-09
5.83893e-10
1.72772e-09
6.12235e-10
1.70055e-09
6.40299e-10
1.67269e-09
6.68002e-10
1.64414e-09
6.95253e-10
1.61491e-09
7.21957e-10
1.585e-09
7.48019e-10
1.55443e-09
7.73353e-10
1.52318e-09
7.97888e-10
1.49124e-09
8.21562e-10
1.45859e-09
8.44331e-10
1.42519e-09
8.6617e-10
1.39103e-09
8.87072e-10
1.35609e-09
9.07041e-10
1.32035e-09
9.26087e-10
1.2838e-09
9.44225e-10
1.24643e-09
9.61489e-10
1.20826e-09
9.77929e-10
1.16928e-09
9.93609e-10
1.12953e-09
1.00859e-09
1.08903e-09
1.02294e-09
1.0478e-09
1.0367e-09
1.0059e-09
1.04997e-09
9.63395e-10
1.0628e-09
9.20328e-10
1.07523e-09
8.7675e-10
1.08725e-09
8.32707e-10
1.09885e-09
7.8825e-10
1.11002e-09
7.43421e-10
1.12074e-09
6.98257e-10
1.13098e-09
6.52777e-10
1.14072e-09
6.06996e-10
1.14991e-09
5.60916e-10
1.15852e-09
5.1454e-10
1.16653e-09
4.67886e-10
1.17392e-09
4.20981e-10
1.18067e-09
3.73854e-10
1.18664e-09
3.2656e-10
1.19151e-09
2.79214e-10
1.19462e-09
2.31972e-10
1.19464e-09
1.85034e-10
1.18888e-09
1.38781e-10
1.17201e-09
9.40539e-11
1.13329e-09
5.26222e-11
1.04926e-09
1.83368e-11
8.66512e-10
4.6153e-10
1.73429e-09
-8.01753e-10
1.77103e-09
-6.63191e-10
1.80571e-09
-5.38364e-10
1.83807e-09
-4.33663e-10
1.86786e-09
-3.52365e-10
1.89495e-09
-2.94575e-10
1.91927e-09
-2.57821e-10
1.94092e-09
-2.38046e-10
1.96007e-09
-2.30632e-10
1.97697e-09
-2.31179e-10
1.9919e-09
-2.36047e-10
2.00514e-09
-2.42518e-10
2.01699e-09
-2.48739e-10
2.02766e-09
-2.53517e-10
2.03735e-09
-2.56232e-10
2.04625e-09
-2.56545e-10
2.05448e-09
-2.54435e-10
2.06212e-09
-2.49921e-10
2.0692e-09
-2.43127e-10
2.07578e-09
-2.34208e-10
2.08189e-09
-2.23356e-10
2.08749e-09
-2.10763e-10
2.09256e-09
-1.9659e-10
2.09705e-09
-1.8101e-10
2.10095e-09
-1.64217e-10
2.10419e-09
-1.46382e-10
2.1067e-09
-1.27622e-10
2.10844e-09
-1.08019e-10
2.10933e-09
-8.76568e-11
2.10932e-09
-6.66246e-11
2.10835e-09
-4.49884e-11
2.10635e-09
-2.27747e-11
2.10327e-09
7.8367e-15
2.09909e-09
2.33527e-11
2.0938e-09
4.72439e-11
2.08738e-09
7.16931e-11
2.07981e-09
9.67219e-11
2.0711e-09
1.22339e-10
2.06125e-09
1.48526e-10
2.05028e-09
1.75241e-10
2.0382e-09
2.02432e-10
2.025e-09
2.30048e-10
2.01071e-09
2.58049e-10
1.99536e-09
2.86403e-10
1.97897e-09
3.15085e-10
1.96154e-09
3.44069e-10
1.94309e-09
3.73312e-10
1.92363e-09
4.0275e-10
1.90318e-09
4.32308e-10
1.88177e-09
4.61923e-10
1.85942e-09
4.91554e-10
1.83616e-09
5.21173e-10
1.81202e-09
5.50751e-10
1.78702e-09
5.80245e-10
1.76123e-09
6.09593e-10
1.73469e-09
6.38721e-10
1.70743e-09
6.67547e-10
1.67946e-09
6.95982e-10
1.65078e-09
7.23938e-10
1.62138e-09
7.51328e-10
1.5913e-09
7.78073e-10
1.56052e-09
8.04099e-10
1.52906e-09
8.29338e-10
1.4969e-09
8.53729e-10
1.46401e-09
8.77229e-10
1.43038e-09
8.99813e-10
1.396e-09
9.21477e-10
1.36083e-09
9.42224e-10
1.32487e-09
9.62063e-10
1.2881e-09
9.8101e-10
1.25052e-09
9.99096e-10
1.21216e-09
1.01637e-09
1.17301e-09
1.03287e-09
1.1331e-09
1.04864e-09
1.09245e-09
1.06374e-09
1.0511e-09
1.07822e-09
1.0091e-09
1.09215e-09
9.6649e-10
1.10559e-09
9.23322e-10
1.11856e-09
8.79639e-10
1.13106e-09
8.35488e-10
1.1431e-09
7.90917e-10
1.15467e-09
7.45969e-10
1.16576e-09
7.00674e-10
1.17635e-09
6.55053e-10
1.18641e-09
6.09118e-10
1.1959e-09
5.62874e-10
1.20479e-09
5.16333e-10
1.21307e-09
4.69518e-10
1.22072e-09
4.22453e-10
1.22771e-09
3.75166e-10
1.23389e-09
3.27727e-10
1.23891e-09
2.80245e-10
1.24211e-09
2.32848e-10
1.24205e-09
1.85724e-10
1.23592e-09
1.3929e-10
1.21829e-09
9.44094e-11
1.17807e-09
5.28387e-11
1.09086e-09
1.84248e-11
9.0103e-10
4.80015e-10
1.73122e-09
-8.40086e-10
1.76764e-09
-6.99762e-10
1.80201e-09
-5.72889e-10
1.83411e-09
-4.65873e-10
1.86375e-09
-3.82051e-10
1.89081e-09
-3.21621e-10
1.91525e-09
-2.82217e-10
1.93716e-09
-2.59868e-10
1.95671e-09
-2.50047e-10
1.97412e-09
-2.48427e-10
1.98964e-09
-2.51382e-10
2.00351e-09
-2.56229e-10
2.01602e-09
-2.61067e-10
2.02735e-09
-2.64701e-10
2.0377e-09
-2.66438e-10
2.04721e-09
-2.65924e-10
2.05603e-09
-2.63093e-10
2.06422e-09
-2.57945e-10
2.0718e-09
-2.50575e-10
2.07884e-09
-2.41103e-10
2.08535e-09
-2.29709e-10
2.09133e-09
-2.16576e-10
2.09672e-09
-2.01856e-10
2.1015e-09
-1.85696e-10
2.10563e-09
-1.68265e-10
2.10907e-09
-1.4973e-10
2.11178e-09
-1.30217e-10
2.11368e-09
-1.09809e-10
2.11472e-09
-8.85824e-11
2.11484e-09
-6.66234e-11
2.114e-09
-4.40102e-11
2.11212e-09
-2.07836e-11
2.10916e-09
3.04733e-12
2.1051e-09
2.74782e-11
2.09994e-09
5.24938e-11
2.09364e-09
7.80876e-11
2.0862e-09
1.04263e-10
2.07762e-09
1.31016e-10
2.06789e-09
1.58325e-10
2.05703e-09
1.86146e-10
2.04504e-09
2.14429e-10
2.03193e-09
2.43129e-10
2.01772e-09
2.72213e-10
2.00244e-09
3.01656e-10
1.98612e-09
3.31427e-10
1.96876e-09
3.61487e-10
1.95035e-09
3.91779e-10
1.93092e-09
4.22231e-10
1.91048e-09
4.52768e-10
1.88907e-09
4.83332e-10
1.86672e-09
5.13885e-10
1.84345e-09
5.44403e-10
1.81928e-09
5.74857e-10
1.79425e-09
6.05204e-10
1.7684e-09
6.35382e-10
1.74179e-09
6.65315e-10
1.71444e-09
6.94913e-10
1.68635e-09
7.24089e-10
1.65752e-09
7.52757e-10
1.62797e-09
7.80845e-10
1.59771e-09
8.08287e-10
1.56674e-09
8.35021e-10
1.53508e-09
8.60979e-10
1.50269e-09
8.86102e-10
1.46958e-09
9.10345e-10
1.43573e-09
9.33684e-10
1.40111e-09
9.56114e-10
1.36572e-09
9.77636e-10
1.32954e-09
9.9826e-10
1.29256e-09
1.018e-09
1.25479e-09
1.0369e-09
1.21623e-09
1.05498e-09
1.17691e-09
1.07228e-09
1.13683e-09
1.08882e-09
1.09603e-09
1.10465e-09
1.05455e-09
1.11983e-09
1.01242e-09
1.13442e-09
9.69698e-10
1.14846e-09
9.26416e-10
1.16197e-09
8.82617e-10
1.17496e-09
8.3835e-10
1.18744e-09
7.9366e-10
1.19943e-09
7.48585e-10
1.2109e-09
7.03155e-10
1.22185e-09
6.57388e-10
1.23223e-09
6.11295e-10
1.24202e-09
5.64887e-10
1.25119e-09
5.18182e-10
1.25974e-09
4.71203e-10
1.26766e-09
4.23973e-10
1.27489e-09
3.76528e-10
1.28126e-09
3.28942e-10
1.28645e-09
2.81309e-10
1.28973e-09
2.33734e-10
1.28956e-09
1.86422e-10
1.28307e-09
1.39821e-10
1.26473e-09
9.47939e-11
1.22307e-09
5.30735e-11
1.13266e-09
1.85128e-11
9.35688e-10
4.98542e-10
1.72963e-09
-8.78137e-10
1.76573e-09
-7.35908e-10
1.79975e-09
-6.06958e-10
1.83152e-09
-4.977e-10
1.86091e-09
-4.11509e-10
1.88781e-09
-3.48632e-10
1.91225e-09
-3.06775e-10
1.93431e-09
-2.8204e-10
1.95414e-09
-2.69967e-10
1.97196e-09
-2.66303e-10
1.98796e-09
-2.67439e-10
2.00238e-09
-2.70708e-10
2.01548e-09
-2.74175e-10
2.02742e-09
-2.76658e-10
2.03838e-09
-2.77386e-10
2.04847e-09
-2.76015e-10
2.05785e-09
-2.72411e-10
2.06656e-09
-2.66581e-10
2.07463e-09
-2.58583e-10
2.08211e-09
-2.48511e-10
2.08903e-09
-2.36528e-10
2.09536e-09
-2.22809e-10
2.10108e-09
-2.07501e-10
2.10614e-09
-1.90729e-10
2.11052e-09
-1.72632e-10
2.11418e-09
-1.53367e-10
2.11708e-09
-1.33069e-10
2.11915e-09
-1.11829e-10
2.12035e-09
-8.97182e-11
2.12061e-09
-6.68169e-11
2.11989e-09
-4.32086e-11
2.11814e-09
-1.89486e-11
2.1153e-09
5.94674e-12
2.11137e-09
3.14749e-11
2.10632e-09
5.76218e-11
2.10015e-09
8.43672e-11
2.09284e-09
1.11694e-10
2.08438e-09
1.39585e-10
2.07476e-09
1.68015e-10
2.064e-09
1.96947e-10
2.0521e-09
2.26335e-10
2.03907e-09
2.5614e-10
2.02494e-09
2.86334e-10
2.00974e-09
3.16888e-10
1.99348e-09
3.47762e-10
1.97617e-09
3.78901e-10
1.9578e-09
4.10238e-10
1.93838e-09
4.417e-10
1.91795e-09
4.73219e-10
1.89653e-09
5.04744e-10
1.87417e-09
5.36241e-10
1.85088e-09
5.67684e-10
1.82669e-09
5.99042e-10
1.80162e-09
6.30268e-10
1.77572e-09
6.61299e-10
1.74902e-09
6.92052e-10
1.72156e-09
7.22436e-10
1.69335e-09
7.52363e-10
1.66439e-09
7.81757e-10
1.63468e-09
8.10558e-10
1.60425e-09
8.38714e-10
1.57309e-09
8.66167e-10
1.54122e-09
8.92854e-10
1.50862e-09
9.18713e-10
1.47529e-09
9.437e-10
1.44122e-09
9.67791e-10
1.40638e-09
9.90979e-10
1.37077e-09
1.01327e-09
1.33437e-09
1.03466e-09
1.29719e-09
1.05518e-09
1.25921e-09
1.07486e-09
1.22047e-09
1.09373e-09
1.18096e-09
1.1118e-09
1.14071e-09
1.12909e-09
1.09975e-09
1.14564e-09
1.05813e-09
1.16152e-09
1.01587e-09
1.17675e-09
9.73017e-10
1.19139e-09
9.29608e-10
1.20544e-09
8.85685e-10
1.21893e-09
8.41295e-10
1.23187e-09
7.96479e-10
1.24428e-09
7.51271e-10
1.25615e-09
7.05699e-10
1.26745e-09
6.5978e-10
1.27817e-09
6.13527e-10
1.28827e-09
5.66954e-10
1.29773e-09
5.20084e-10
1.30656e-09
4.72939e-10
1.31474e-09
4.25542e-10
1.3222e-09
3.77938e-10
1.32879e-09
3.30198e-10
1.33415e-09
2.82395e-10
1.33747e-09
2.3463e-10
1.33718e-09
1.87139e-10
1.33037e-09
1.40384e-10
1.31139e-09
9.52045e-11
1.26829e-09
5.33155e-11
1.17463e-09
1.85913e-11
9.70432e-10
5.17075e-10
1.72946e-09
-9.15898e-10
1.76522e-09
-7.71625e-10
1.79885e-09
-6.40511e-10
1.83023e-09
-5.29e-10
1.85927e-09
-4.40501e-10
1.88594e-09
-3.75295e-10
1.91028e-09
-3.31129e-10
1.93237e-09
-3.04178e-10
1.95239e-09
-2.90027e-10
1.97051e-09
-2.84469e-10
1.98692e-09
-2.83923e-10
2.00182e-09
-2.85698e-10
2.01543e-09
-2.87864e-10
2.02793e-09
-2.8922e-10
2.03945e-09
-2.88964e-10
2.05009e-09
-2.86731e-10
2.05999e-09
-2.82342e-10
2.0692e-09
-2.758e-10
2.07775e-09
-2.67139e-10
2.08566e-09
-2.56431e-10
2.09295e-09
-2.43818e-10
2.09964e-09
-2.29465e-10
2.10568e-09
-2.1352e-10
2.11103e-09
-1.96095e-10
2.11565e-09
-1.77303e-10
2.11953e-09
-1.57284e-10
2.12262e-09
-1.36176e-10
2.12488e-09
-1.14083e-10
2.12623e-09
-9.10774e-11
2.12663e-09
-6.723e-11
2.12604e-09
-4.26211e-11
2.12441e-09
-1.73163e-11
2.1217e-09
8.65586e-12
2.1179e-09
3.52898e-11
2.11297e-09
6.25716e-11
2.10692e-09
9.04724e-11
2.09972e-09
1.18958e-10
2.09137e-09
1.47997e-10
2.08186e-09
1.77562e-10
2.07119e-09
2.07622e-10
2.05937e-09
2.38141e-10
2.04642e-09
2.69084e-10
2.03237e-09
3.00416e-10
2.01723e-09
3.32101e-10
2.00103e-09
3.64085e-10
1.98376e-09
3.96303e-10
1.96542e-09
4.2868e-10
1.94601e-09
4.6115e-10
1.92558e-09
4.93655e-10
1.90415e-09
5.26154e-10
1.88178e-09
5.58613e-10
1.85847e-09
5.91001e-10
1.83425e-09
6.2328e-10
1.80913e-09
6.55401e-10
1.78316e-09
6.87294e-10
1.75638e-09
7.18877e-10
1.72881e-09
7.50058e-10
1.70047e-09
7.80754e-10
1.67137e-09
8.10897e-10
1.6415e-09
8.40439e-10
1.6109e-09
8.69333e-10
1.57956e-09
8.97525e-10
1.54749e-09
9.2495e-10
1.51468e-09
9.51549e-10
1.48113e-09
9.77279e-10
1.44684e-09
1.00212e-09
1.41179e-09
1.02605e-09
1.37596e-09
1.04909e-09
1.33935e-09
1.07124e-09
1.30196e-09
1.09252e-09
1.26379e-09
1.11297e-09
1.22485e-09
1.1326e-09
1.18516e-09
1.15141e-09
1.14474e-09
1.16944e-09
1.10362e-09
1.18672e-09
1.06184e-09
1.20328e-09
1.01944e-09
1.21916e-09
9.76444e-10
1.2344e-09
9.32899e-10
1.249e-09
8.88844e-10
1.26299e-09
8.44323e-10
1.27641e-09
7.99373e-10
1.28925e-09
7.54026e-10
1.30151e-09
7.08306e-10
1.31318e-09
6.62231e-10
1.32424e-09
6.15813e-10
1.33465e-09
5.69074e-10
1.34442e-09
5.22037e-10
1.35354e-09
4.74722e-10
1.36199e-09
4.27157e-10
1.3697e-09
3.79392e-10
1.3765e-09
3.31485e-10
1.38201e-09
2.83495e-10
1.38537e-09
2.3554e-10
1.38496e-09
1.87884e-10
1.37788e-09
1.40978e-10
1.35827e-09
9.56295e-11
1.31369e-09
5.35516e-11
1.21673e-09
1.86565e-11
1.00524e-09
5.35617e-10
1.73064e-09
-9.5333e-10
1.76606e-09
-8.06978e-10
1.79926e-09
-6.73663e-10
1.83019e-09
-5.59871e-10
1.85882e-09
-4.69062e-10
1.88517e-09
-4.01567e-10
1.90932e-09
-3.55163e-10
1.93137e-09
-3.26092e-10
1.95147e-09
-3.09987e-10
1.96983e-09
-3.02647e-10
1.98655e-09
-3.00532e-10
2.00186e-09
-3.00893e-10
2.01594e-09
-3.01832e-10
2.02894e-09
-3.02095e-10
2.04097e-09
-3.00903e-10
2.05212e-09
-2.97825e-10
2.06252e-09
-2.92667e-10
2.0722e-09
-2.85409e-10
2.08119e-09
-2.76074e-10
2.08951e-09
-2.6472e-10
2.09718e-09
-2.51457e-10
2.1042e-09
-2.36438e-10
2.11055e-09
-2.19813e-10
2.11618e-09
-2.01692e-10
2.12105e-09
-1.82171e-10
2.12515e-09
-1.61373e-10
2.12844e-09
-1.39433e-10
2.13087e-09
-1.16469e-10
2.13238e-09
-9.25583e-11
2.13293e-09
-6.77664e-11
2.13246e-09
-4.21627e-11
2.13096e-09
-1.58143e-11
2.12837e-09
1.12383e-11
2.12468e-09
3.89804e-11
2.11988e-09
6.73954e-11
2.11393e-09
9.64494e-11
2.10684e-09
1.26097e-10
2.09859e-09
1.56295e-10
2.08917e-09
1.87013e-10
2.07859e-09
2.18226e-10
2.06686e-09
2.49906e-10
2.05399e-09
2.82016e-10
2.04e-09
3.14515e-10
2.02493e-09
3.4735e-10
2.00877e-09
3.80455e-10
1.99153e-09
4.13754e-10
1.9732e-09
4.47176e-10
1.9538e-09
4.80662e-10
1.93336e-09
5.14166e-10
1.91192e-09
5.47653e-10
1.88953e-09
5.81085e-10
1.8662e-09
6.14423e-10
1.84194e-09
6.47621e-10
1.81677e-09
6.80626e-10
1.79072e-09
7.1337e-10
1.76385e-09
7.45775e-10
1.73617e-09
7.77754e-10
1.7077e-09
8.0923e-10
1.67845e-09
8.40146e-10
1.64843e-09
8.70456e-10
1.61766e-09
9.00115e-10
1.58614e-09
9.29065e-10
1.55387e-09
9.57242e-10
1.52086e-09
9.84589e-10
1.4871e-09
1.01107e-09
1.45259e-09
1.03665e-09
1.41732e-09
1.06133e-09
1.38128e-09
1.08511e-09
1.34447e-09
1.108e-09
1.30687e-09
1.13004e-09
1.26851e-09
1.15123e-09
1.22938e-09
1.1716e-09
1.1895e-09
1.19115e-09
1.1489e-09
1.20991e-09
1.10761e-09
1.2279e-09
1.06567e-09
1.24515e-09
1.02312e-09
1.26168e-09
9.79975e-10
1.27752e-09
9.36287e-10
1.29268e-09
8.92093e-10
1.30719e-09
8.47433e-10
1.32108e-09
8.02342e-10
1.33436e-09
7.56849e-10
1.34703e-09
7.10975e-10
1.35907e-09
6.64738e-10
1.37047e-09
6.18154e-10
1.38121e-09
5.71248e-10
1.39129e-09
5.24041e-10
1.40071e-09
4.76553e-10
1.40944e-09
4.28818e-10
1.4174e-09
3.80884e-10
1.42442e-09
3.32795e-10
1.43006e-09
2.8461e-10
1.43344e-09
2.36475e-10
1.43296e-09
1.88662e-10
1.42565e-09
1.41593e-10
1.4054e-09
9.60526e-11
1.35927e-09
5.37729e-11
1.25893e-09
1.87124e-11
1.04011e-09
5.54207e-10
1.73313e-09
-9.90718e-10
1.76821e-09
-8.42085e-10
1.80096e-09
-7.06463e-10
1.8314e-09
-5.90365e-10
1.85955e-09
-4.97281e-10
1.88552e-09
-4.27578e-10
1.9094e-09
-3.79054e-10
1.93132e-09
-3.47983e-10
1.95144e-09
-3.30042e-10
1.96994e-09
-3.2103e-10
1.98692e-09
-3.17424e-10
2.00257e-09
-3.1643e-10
2.01705e-09
-3.16174e-10
2.0305e-09
-3.15355e-10
2.04299e-09
-3.13226e-10
2.05463e-09
-3.09298e-10
2.06548e-09
-3.03359e-10
2.0756e-09
-2.95365e-10
2.08501e-09
-2.85334e-10
2.09373e-09
-2.73314e-10
2.10176e-09
-2.59385e-10
2.1091e-09
-2.43674e-10
2.11574e-09
-2.26328e-10
2.12164e-09
-2.07467e-10
2.12676e-09
-1.87181e-10
2.13107e-09
-1.65575e-10
2.13455e-09
-1.42778e-10
2.13715e-09
-1.18916e-10
2.13882e-09
-9.40815e-11
2.1395e-09
-6.83375e-11
2.13916e-09
-4.17409e-11
2.13777e-09
-1.43517e-11
2.13531e-09
1.37831e-11
2.13173e-09
4.2636e-11
2.12703e-09
7.21828e-11
2.12119e-09
1.02385e-10
2.11419e-09
1.33191e-10
2.10603e-09
1.64552e-10
2.0967e-09
1.96435e-10
2.08621e-09
2.28818e-10
2.07455e-09
2.61677e-10
2.06175e-09
2.94976e-10
2.04782e-09
3.2866e-10
2.0328e-09
3.62659e-10
2.01667e-09
3.96896e-10
1.99945e-09
4.3129e-10
1.98113e-09
4.65776e-10
1.96172e-09
5.00303e-10
1.94127e-09
5.34834e-10
1.91982e-09
5.69331e-10
1.89741e-09
6.0375e-10
1.87404e-09
6.38037e-10
1.84974e-09
6.72142e-10
1.82451e-09
7.0601e-10
1.79839e-09
7.39582e-10
1.77141e-09
7.7279e-10
1.74361e-09
8.05558e-10
1.71501e-09
8.37819e-10
1.68563e-09
8.6952e-10
1.65546e-09
9.00614e-10
1.62452e-09
9.31052e-10
1.59282e-09
9.60773e-10
1.56036e-09
9.89713e-10
1.52714e-09
1.01782e-09
1.49317e-09
1.04505e-09
1.45844e-09
1.07139e-09
1.42296e-09
1.09682e-09
1.38672e-09
1.12135e-09
1.3497e-09
1.14498e-09
1.31191e-09
1.16776e-09
1.27335e-09
1.18969e-09
1.23403e-09
1.21078e-09
1.19396e-09
1.23106e-09
1.15318e-09
1.25054e-09
1.11172e-09
1.26923e-09
1.06962e-09
1.28716e-09
1.0269e-09
1.30434e-09
9.83607e-10
1.32078e-09
9.39767e-10
1.3365e-09
8.95427e-10
1.35154e-09
8.50621e-10
1.36591e-09
8.05381e-10
1.37963e-09
7.59735e-10
1.39271e-09
7.13702e-10
1.40513e-09
6.673e-10
1.41689e-09
6.20548e-10
1.42796e-09
5.73473e-10
1.43837e-09
5.26092e-10
1.44809e-09
4.78429e-10
1.45711e-09
4.30521e-10
1.46533e-09
3.82408e-10
1.47256e-09
3.34124e-10
1.47833e-09
2.85745e-10
1.48175e-09
2.3744e-10
1.48123e-09
1.89467e-10
1.47369e-09
1.42213e-10
1.45275e-09
9.646e-11
1.40502e-09
5.39783e-11
1.30126e-09
1.877e-11
1.07512e-09
5.72909e-10
1.73688e-09
-1.02807e-09
1.77162e-09
-8.76935e-10
1.80392e-09
-7.38836e-10
1.83383e-09
-6.20356e-10
1.86148e-09
-5.25018e-10
1.88701e-09
-4.53198e-10
1.91056e-09
-4.02712e-10
1.93228e-09
-3.69827e-10
1.95234e-09
-3.50216e-10
1.97091e-09
-3.39702e-10
1.98809e-09
-3.34718e-10
2.00402e-09
-3.3248e-10
2.01884e-09
-3.31074e-10
2.03268e-09
-3.29213e-10
2.0456e-09
-3.2614e-10
2.05767e-09
-3.21351e-10
2.06894e-09
-3.14606e-10
2.07947e-09
-3.05836e-10
2.08928e-09
-2.95065e-10
2.09836e-09
-2.82336e-10
2.10673e-09
-2.67705e-10
2.11438e-09
-2.5127e-10
2.1213e-09
-2.33165e-10
2.12746e-09
-2.13519e-10
2.13281e-09
-1.92428e-10
2.13732e-09
-1.69986e-10
2.14097e-09
-1.46307e-10
2.14373e-09
-1.21521e-10
2.14554e-09
-9.57328e-11
2.14636e-09
-6.90134e-11
2.14614e-09
-4.14098e-11
2.14487e-09
-1.29705e-11
2.14251e-09
1.62569e-11
2.13904e-09
4.62311e-11
2.13444e-09
7.69151e-11
2.12869e-09
1.08263e-10
2.12178e-09
1.40222e-10
2.1137e-09
1.72742e-10
2.10444e-09
2.05789e-10
2.09402e-09
2.39342e-10
2.08244e-09
2.73382e-10
2.0697e-09
3.07866e-10
2.05582e-09
3.42729e-10
2.04083e-09
3.77889e-10
2.02472e-09
4.13259e-10
2.00751e-09
4.4876e-10
1.98918e-09
4.84334e-10
1.96977e-09
5.19938e-10
1.94931e-09
5.55535e-10
1.92784e-09
5.91078e-10
1.90539e-09
6.26507e-10
1.88198e-09
6.61758e-10
1.85762e-09
6.96772e-10
1.83233e-09
7.31501e-10
1.80612e-09
7.65899e-10
1.77905e-09
7.99909e-10
1.75114e-09
8.33471e-10
1.72241e-09
8.66526e-10
1.69288e-09
8.99022e-10
1.66257e-09
9.30909e-10
1.63147e-09
9.62132e-10
1.59958e-09
9.92627e-10
1.56693e-09
1.02234e-09
1.53351e-09
1.05122e-09
1.49933e-09
1.07922e-09
1.4644e-09
1.10634e-09
1.42871e-09
1.13254e-09
1.39225e-09
1.15782e-09
1.35503e-09
1.18221e-09
1.31705e-09
1.20573e-09
1.2783e-09
1.22838e-09
1.23879e-09
1.2502e-09
1.19854e-09
1.27119e-09
1.15758e-09
1.29137e-09
1.11595e-09
1.31075e-09
1.07368e-09
1.32935e-09
1.03079e-09
1.34716e-09
9.87334e-10
1.36419e-09
9.43337e-10
1.38047e-09
8.98841e-10
1.39603e-09
8.53882e-10
1.41089e-09
8.08487e-10
1.42506e-09
7.62682e-10
1.43856e-09
7.16485e-10
1.45137e-09
6.69914e-10
1.46348e-09
6.22994e-10
1.47491e-09
5.75747e-10
1.48565e-09
5.2819e-10
1.49569e-09
4.8035e-10
1.505e-09
4.32263e-10
1.51348e-09
3.83957e-10
1.52092e-09
3.35472e-10
1.52682e-09
2.86907e-10
1.53031e-09
2.38437e-10
1.52979e-09
1.90285e-10
1.52199e-09
1.4282e-10
1.5003e-09
9.68471e-11
1.45093e-09
5.41764e-11
1.34377e-09
1.88409e-11
1.11035e-09
5.91776e-10
1.74191e-09
-1.06493e-09
1.77631e-09
-9.1123e-10
1.80813e-09
-7.70589e-10
1.8375e-09
-6.49678e-10
1.86459e-09
-5.52079e-10
1.88964e-09
-4.78179e-10
1.91282e-09
-4.25829e-10
1.93428e-09
-3.91276e-10
1.95422e-09
-3.7015e-10
1.9728e-09
-3.58295e-10
1.99012e-09
-3.52073e-10
2.00627e-09
-3.48741e-10
2.0214e-09
-3.46292e-10
2.03557e-09
-3.43485e-10
2.04887e-09
-3.39522e-10
2.06133e-09
-3.33909e-10
2.07298e-09
-3.26376e-10
2.08388e-09
-3.1683e-10
2.09405e-09
-3.05294e-10
2.10347e-09
-2.91819e-10
2.11216e-09
-2.76451e-10
2.12009e-09
-2.59264e-10
2.12727e-09
-2.40371e-10
2.13366e-09
-2.19905e-10
2.13923e-09
-1.97977e-10
2.14394e-09
-1.74677e-10
2.14775e-09
-1.50105e-10
2.15065e-09
-1.24379e-10
2.15259e-09
-9.7614e-11
2.15353e-09
-6.98898e-11
2.15342e-09
-4.12525e-11
2.15224e-09
-1.17403e-11
2.14998e-09
1.85984e-11
2.14661e-09
4.97128e-11
2.1421e-09
8.15482e-11
2.13643e-09
1.14048e-10
2.12958e-09
1.47159e-10
2.12157e-09
1.80834e-10
2.11238e-09
2.15041e-10
2.10203e-09
2.49758e-10
2.0905e-09
2.84962e-10
2.07782e-09
3.20608e-10
2.06398e-09
3.56623e-10
2.049e-09
3.92917e-10
2.0329e-09
4.29402e-10
2.01568e-09
4.66007e-10
1.99735e-09
5.02681e-10
1.97793e-09
5.39385e-10
1.95744e-09
5.76078e-10
1.93594e-09
6.12698e-10
1.91345e-09
6.49167e-10
1.88999e-09
6.85408e-10
1.86557e-09
7.21361e-10
1.8402e-09
7.56984e-10
1.81391e-09
7.92242e-10
1.78674e-09
8.27092e-10
1.75872e-09
8.61484e-10
1.72986e-09
8.95362e-10
1.7002e-09
9.28672e-10
1.66974e-09
9.6136e-10
1.63847e-09
9.93368e-10
1.60642e-09
1.02464e-09
1.57357e-09
1.05513e-09
1.53995e-09
1.08478e-09
1.50557e-09
1.11358e-09
1.47043e-09
1.14148e-09
1.43453e-09
1.16846e-09
1.39788e-09
1.19453e-09
1.36046e-09
1.21968e-09
1.32228e-09
1.24395e-09
1.28334e-09
1.26734e-09
1.24364e-09
1.28987e-09
1.20321e-09
1.31156e-09
1.16208e-09
1.33243e-09
1.12028e-09
1.35248e-09
1.07783e-09
1.3717e-09
1.03478e-09
1.39012e-09
9.91147e-10
1.40773e-09
9.46987e-10
1.42456e-09
9.0233e-10
1.44064e-09
8.57211e-10
1.45599e-09
8.11655e-10
1.47062e-09
7.65686e-10
1.48454e-09
7.1932e-10
1.49775e-09
6.7258e-10
1.51025e-09
6.25489e-10
1.52204e-09
5.78067e-10
1.53313e-09
5.30332e-10
1.54349e-09
4.82313e-10
1.55309e-09
4.34037e-10
1.56184e-09
3.8553e-10
1.56948e-09
3.36847e-10
1.57552e-09
2.88104e-10
1.57912e-09
2.39459e-10
1.57859e-09
1.91103e-10
1.5705e-09
1.43409e-10
1.54802e-09
9.72214e-11
1.49701e-09
5.43816e-11
1.38652e-09
1.89311e-11
1.14582e-09
6.10813e-10
1.74815e-09
-1.10166e-09
1.78224e-09
-9.45106e-10
1.81359e-09
-8.01767e-10
1.8424e-09
-6.78349e-10
1.86892e-09
-5.78481e-10
1.89346e-09
-5.02542e-10
1.9162e-09
-4.48412e-10
1.93737e-09
-4.12291e-10
1.95713e-09
-3.8977e-10
1.97567e-09
-3.76659e-10
1.99308e-09
-3.69302e-10
2.00941e-09
-3.6495e-10
2.02478e-09
-3.61555e-10
2.03924e-09
-3.57862e-10
2.05286e-09
-3.53064e-10
2.06567e-09
-3.46669e-10
2.07768e-09
-3.38385e-10
2.08891e-09
-3.28091e-10
2.09939e-09
-3.15796e-10
2.10912e-09
-3.01561e-10
2.11809e-09
-2.85438e-10
2.12629e-09
-2.67483e-10
2.1337e-09
-2.47791e-10
2.14031e-09
-2.26491e-10
2.14607e-09
-2.03708e-10
2.15095e-09
-1.7954e-10
2.15491e-09
-1.54074e-10
2.15793e-09
-1.27413e-10
2.15997e-09
-9.96642e-11
2.16101e-09
-7.09166e-11
2.161e-09
-4.12216e-11
2.15991e-09
-1.06163e-11
2.15773e-09
2.08517e-11
2.15444e-09
5.31209e-11
2.14999e-09
8.61219e-11
2.14438e-09
1.19787e-10
2.13759e-09
1.54061e-10
2.12962e-09
1.88902e-10
2.12049e-09
2.24279e-10
2.11019e-09
2.60165e-10
2.09872e-09
2.9653e-10
2.08607e-09
3.3332e-10
2.07225e-09
3.7046e-10
2.05729e-09
4.07859e-10
2.04119e-09
4.45436e-10
2.02396e-09
4.8313e-10
2.00562e-09
5.20899e-10
1.98617e-09
5.58706e-10
1.96567e-09
5.96499e-10
1.94412e-09
6.342e-10
1.92158e-09
6.71719e-10
1.89805e-09
7.08973e-10
1.87355e-09
7.45901e-10
1.84811e-09
7.82467e-10
1.82173e-09
8.18642e-10
1.79446e-09
8.5439e-10
1.76633e-09
8.89661e-10
1.73736e-09
9.24399e-10
1.70756e-09
9.58545e-10
1.67695e-09
9.92042e-10
1.64552e-09
1.02483e-09
1.61329e-09
1.05688e-09
1.58027e-09
1.08813e-09
1.54646e-09
1.11856e-09
1.51188e-09
1.14814e-09
1.47654e-09
1.17682e-09
1.44044e-09
1.20459e-09
1.40357e-09
1.23144e-09
1.36596e-09
1.25737e-09
1.32759e-09
1.28239e-09
1.28845e-09
1.30651e-09
1.24858e-09
1.32976e-09
1.20797e-09
1.35214e-09
1.16666e-09
1.37368e-09
1.12468e-09
1.39437e-09
1.08206e-09
1.41421e-09
1.03883e-09
1.43321e-09
9.95036e-10
1.45138e-09
9.50709e-10
1.46875e-09
9.05887e-10
1.48535e-09
8.60603e-10
1.50119e-09
8.14882e-10
1.51628e-09
7.68743e-10
1.53064e-09
7.22206e-10
1.54427e-09
6.75295e-10
1.55716e-09
6.28031e-10
1.56933e-09
5.80431e-10
1.58077e-09
5.32516e-10
1.59147e-09
4.84311e-10
1.60137e-09
4.3584e-10
1.61037e-09
3.87129e-10
1.61821e-09
3.38254e-10
1.62442e-09
2.89334e-10
1.62815e-09
2.40494e-10
1.62759e-09
1.91911e-10
1.61916e-09
1.43985e-10
1.59588e-09
9.75995e-11
1.54331e-09
5.4607e-11
1.42952e-09
1.90368e-11
1.18154e-09
6.29976e-10
1.75562e-09
-1.1387e-09
1.7894e-09
-9.79027e-10
1.82029e-09
-8.32722e-10
1.84854e-09
-7.06616e-10
1.8745e-09
-6.04403e-10
1.89848e-09
-5.26474e-10
1.92078e-09
-4.70685e-10
1.9416e-09
-4.33131e-10
1.96115e-09
-4.09377e-10
1.97961e-09
-3.951e-10
1.99704e-09
-3.86705e-10
2.0135e-09
-3.8136e-10
2.02906e-09
-3.77058e-10
2.04376e-09
-3.72481e-10
2.05766e-09
-3.66833e-10
2.07077e-09
-3.59636e-10
2.08309e-09
-3.5059e-10
2.09462e-09
-3.39549e-10
2.10538e-09
-3.26496e-10
2.11538e-09
-3.11487e-10
2.1246e-09
-2.94588e-10
2.13303e-09
-2.75851e-10
2.14065e-09
-2.55355e-10
2.14743e-09
-2.33217e-10
2.15335e-09
-2.0957e-10
2.15837e-09
-1.84523e-10
2.16246e-09
-1.58163e-10
2.16558e-09
-1.30573e-10
2.16772e-09
-1.01848e-10
2.16883e-09
-7.20739e-11
2.1689e-09
-4.13123e-11
2.16788e-09
-9.60678e-12
2.16577e-09
2.29899e-11
2.16252e-09
5.64112e-11
2.15812e-09
9.05786e-11
2.15254e-09
1.25418e-10
2.14579e-09
1.60874e-10
2.13786e-09
1.96908e-10
2.12876e-09
2.33485e-10
2.1185e-09
2.70572e-10
2.10706e-09
3.0812e-10
2.09443e-09
3.46069e-10
2.08062e-09
3.84339e-10
2.06565e-09
4.22845e-10
2.04954e-09
4.61517e-10
2.0323e-09
5.00304e-10
2.01394e-09
5.3917e-10
1.99448e-09
5.78072e-10
1.97394e-09
6.16949e-10
1.95235e-09
6.55715e-10
1.92974e-09
6.94273e-10
1.90614e-09
7.32541e-10
1.88156e-09
7.70465e-10
1.85604e-09
8.08011e-10
1.82957e-09
8.45149e-10
1.80221e-09
8.81839e-10
1.77396e-09
9.18028e-10
1.74487e-09
9.53652e-10
1.71494e-09
9.88648e-10
1.68418e-09
1.02296e-09
1.65259e-09
1.05654e-09
1.6202e-09
1.08935e-09
1.587e-09
1.12137e-09
1.55301e-09
1.15256e-09
1.51824e-09
1.1829e-09
1.4827e-09
1.21235e-09
1.44639e-09
1.24089e-09
1.40933e-09
1.26851e-09
1.37152e-09
1.2952e-09
1.33295e-09
1.32097e-09
1.29363e-09
1.34583e-09
1.25357e-09
1.36979e-09
1.21279e-09
1.39287e-09
1.17131e-09
1.41506e-09
1.12915e-09
1.43638e-09
1.08636e-09
1.45683e-09
1.04296e-09
1.47641e-09
9.98988e-10
1.49514e-09
9.54493e-10
1.51305e-09
9.09505e-10
1.53015e-09
8.64054e-10
1.54648e-09
8.18163e-10
1.56205e-09
7.71852e-10
1.57685e-09
7.25142e-10
1.5909e-09
6.78057e-10
1.60421e-09
6.30616e-10
1.61677e-09
5.82835e-10
1.62857e-09
5.34737e-10
1.6396e-09
4.86341e-10
1.6498e-09
4.37667e-10
1.65905e-09
3.88758e-10
1.6671e-09
3.39698e-10
1.67351e-09
2.90591e-10
1.67736e-09
2.41532e-10
1.67672e-09
1.9271e-10
1.66793e-09
1.44564e-10
1.64391e-09
9.79997e-11
1.58982e-09
5.48574e-11
1.47277e-09
1.9145e-11
1.21744e-09
6.49189e-10
1.7643e-09
-1.17553e-09
1.7978e-09
-1.01273e-09
1.82825e-09
-8.6337e-10
1.85595e-09
-7.34496e-10
1.88133e-09
-6.29874e-10
1.90475e-09
-5.49973e-10
1.92657e-09
-4.926e-10
1.94703e-09
-4.53753e-10
1.96634e-09
-4.28919e-10
1.98467e-09
-4.13641e-10
2.00209e-09
-4.04337e-10
2.01864e-09
-3.98116e-10
2.03434e-09
-3.92971e-10
2.04923e-09
-3.87555e-10
2.06335e-09
-3.81064e-10
2.07672e-09
-3.73039e-10
2.0893e-09
-3.63201e-10
2.10109e-09
-3.51391e-10
2.11208e-09
-3.37562e-10
2.1223e-09
-3.21755e-10
2.13173e-09
-3.04046e-10
2.14036e-09
-2.845e-10
2.14814e-09
-2.63184e-10
2.15507e-09
-2.40199e-10
2.16112e-09
-2.15672e-10
2.16625e-09
-1.89724e-10
2.17043e-09
-1.62447e-10
2.17363e-09
-1.33916e-10
2.17583e-09
-1.04209e-10
2.177e-09
-7.34076e-11
2.17712e-09
-4.15787e-11
2.17615e-09
-8.77585e-12
2.17408e-09
2.49318e-11
2.17086e-09
5.9484e-11
2.16648e-09
9.47993e-11
2.16092e-09
1.30807e-10
2.15418e-09
1.67454e-10
2.14626e-09
2.04702e-10
2.13719e-09
2.4251e-10
2.12694e-09
2.80828e-10
2.1155e-09
3.19593e-10
2.10288e-09
3.5873e-10
2.08906e-09
3.98161e-10
2.07407e-09
4.37811e-10
2.05794e-09
4.77617e-10
2.04068e-09
5.17532e-10
2.0223e-09
5.57516e-10
2.00282e-09
5.97519e-10
1.98224e-09
6.37469e-10
1.96059e-09
6.7728e-10
1.93791e-09
7.16861e-10
1.91424e-09
7.56139e-10
1.88958e-09
7.95066e-10
1.86397e-09
8.33607e-10
1.83742e-09
8.71727e-10
1.80995e-09
9.09376e-10
1.7816e-09
9.46494e-10
1.75238e-09
9.83012e-10
1.72231e-09
1.01887e-09
1.6914e-09
1.054e-09
1.65966e-09
1.08838e-09
1.6271e-09
1.12197e-09
1.59373e-09
1.15476e-09
1.55957e-09
1.18671e-09
1.52462e-09
1.2178e-09
1.48888e-09
1.24801e-09
1.45239e-09
1.2773e-09
1.41513e-09
1.30568e-09
1.37712e-09
1.33313e-09
1.33836e-09
1.35965e-09
1.29886e-09
1.38525e-09
1.25861e-09
1.40993e-09
1.21765e-09
1.43371e-09
1.176e-09
1.45658e-09
1.13367e-09
1.47854e-09
1.0907e-09
1.49959e-09
1.04713e-09
1.51976e-09
1.003e-09
1.53905e-09
9.58333e-10
1.5575e-09
9.13178e-10
1.57512e-09
8.67558e-10
1.59194e-09
8.21495e-10
1.60797e-09
7.7501e-10
1.62322e-09
7.28124e-10
1.6377e-09
6.80862e-10
1.65141e-09
6.33241e-10
1.66435e-09
5.85278e-10
1.67652e-09
5.36992e-10
1.68788e-09
4.88398e-10
1.69838e-09
4.39522e-10
1.70788e-09
3.9042e-10
1.71617e-09
3.41176e-10
1.72279e-09
2.91864e-10
1.72673e-09
2.4257e-10
1.72599e-09
1.93513e-10
1.71686e-09
1.45166e-10
1.69213e-09
9.84322e-11
1.63657e-09
5.5125e-11
1.51622e-09
1.92405e-11
1.25344e-09
6.68396e-10
1.77411e-09
-1.21212e-09
1.80739e-09
-1.04584e-09
1.83745e-09
-8.93295e-10
1.86463e-09
-7.61663e-10
1.88942e-09
-6.54669e-10
1.91228e-09
-5.72853e-10
1.93363e-09
-5.13914e-10
1.9537e-09
-4.73866e-10
1.97276e-09
-4.48015e-10
1.99093e-09
-4.31889e-10
2.0083e-09
-4.21773e-10
2.02489e-09
-4.1481e-10
2.0407e-09
-4.08934e-10
2.05574e-09
-4.02775e-10
2.07003e-09
-3.95509e-10
2.08359e-09
-3.86688e-10
2.09638e-09
-3.76063e-10
2.10837e-09
-3.63482e-10
2.11956e-09
-3.48872e-10
2.12995e-09
-3.32255e-10
2.13955e-09
-3.13707e-10
2.14832e-09
-2.93314e-10
2.15624e-09
-2.71146e-10
2.16328e-09
-2.47289e-10
2.16941e-09
-2.21856e-10
2.17461e-09
-1.94967e-10
2.17885e-09
-1.66726e-10
2.1821e-09
-1.37212e-10
2.18434e-09
-1.06493e-10
2.18554e-09
-7.46431e-11
2.18568e-09
-4.17384e-11
2.18473e-09
-7.83791e-12
2.18266e-09
2.69636e-11
2.17945e-09
6.26221e-11
2.17506e-09
9.90575e-11
2.16949e-09
1.36212e-10
2.16275e-09
1.74038e-10
2.15483e-09
2.12492e-10
2.14575e-09
2.51524e-10
2.13549e-09
2.91068e-10
2.12404e-09
3.31044e-10
2.11139e-09
3.71374e-10
2.09755e-09
4.11983e-10
2.08253e-09
4.52807e-10
2.06636e-09
4.93785e-10
2.04908e-09
5.34866e-10
2.03067e-09
5.75996e-10
2.01115e-09
6.17111e-10
1.99052e-09
6.58135e-10
1.96882e-09
6.98984e-10
1.94607e-09
7.39583e-10
1.92231e-09
7.79871e-10
1.89758e-09
8.19802e-10
1.87189e-09
8.59336e-10
1.84525e-09
8.98429e-10
1.81768e-09
9.37022e-10
1.78921e-09
9.75052e-10
1.75986e-09
1.01245e-09
1.72965e-09
1.04916e-09
1.69859e-09
1.08513e-09
1.6667e-09
1.12032e-09
1.63399e-09
1.15472e-09
1.60046e-09
1.18829e-09
1.56612e-09
1.22101e-09
1.53099e-09
1.25286e-09
1.49508e-09
1.28382e-09
1.4584e-09
1.31387e-09
1.42095e-09
1.34299e-09
1.38276e-09
1.37119e-09
1.34381e-09
1.39847e-09
1.30412e-09
1.42481e-09
1.2637e-09
1.45022e-09
1.22256e-09
1.4747e-09
1.18073e-09
1.49825e-09
1.13823e-09
1.52086e-09
1.09509e-09
1.54255e-09
1.05135e-09
1.56331e-09
1.00705e-09
1.58317e-09
9.62222e-10
1.60216e-09
9.16899e-10
1.62029e-09
8.7111e-10
1.6376e-09
8.24873e-10
1.65409e-09
7.78212e-10
1.66978e-09
7.3115e-10
1.68468e-09
6.83708e-10
1.6988e-09
6.35904e-10
1.71212e-09
5.87755e-10
1.72465e-09
5.39276e-10
1.73634e-09
4.90482e-10
1.74713e-09
4.41408e-10
1.7569e-09
3.92119e-10
1.76545e-09
3.42683e-10
1.77227e-09
2.93148e-10
1.77628e-09
2.43614e-10
1.77543e-09
1.94337e-10
1.766e-09
1.45804e-10
1.74063e-09
9.88932e-11
1.68358e-09
5.53926e-11
1.55983e-09
1.93157e-11
1.2895e-09
6.87604e-10
1.78502e-09
-1.24883e-09
1.81812e-09
-1.07872e-09
1.84782e-09
-9.22685e-10
1.87453e-09
-7.88121e-10
1.89878e-09
-6.78749e-10
1.9211e-09
-5.95078e-10
1.94196e-09
-5.34641e-10
1.96166e-09
-4.93462e-10
1.98045e-09
-4.66658e-10
1.99845e-09
-4.49749e-10
2.01573e-09
-4.38883e-10
2.03231e-09
-4.31195e-10
2.04819e-09
-4.24618e-10
2.06334e-09
-4.17762e-10
2.07776e-09
-4.09776e-10
2.09145e-09
-4.00203e-10
2.10439e-09
-3.88813e-10
2.11654e-09
-3.75471e-10
2.12788e-09
-3.60094e-10
2.1384e-09
-3.42674e-10
2.1481e-09
-3.23282e-10
2.15698e-09
-3.02015e-10
2.16498e-09
-2.78962e-10
2.17208e-09
-2.54205e-10
2.17826e-09
-2.27838e-10
2.18349e-09
-1.99976e-10
2.18775e-09
-1.70726e-10
2.19101e-09
-1.40179e-10
2.19325e-09
-1.08406e-10
2.19444e-09
-7.54794e-11
2.19457e-09
-4.14783e-11
2.19361e-09
-6.483e-12
2.19152e-09
2.94226e-11
2.18827e-09
6.61766e-11
2.18386e-09
1.03721e-10
2.17826e-09
1.42009e-10
2.17149e-09
1.80998e-10
2.16355e-09
2.20636e-10
2.15444e-09
2.60859e-10
2.14415e-09
3.01586e-10
2.13266e-09
3.42734e-10
2.11997e-09
3.84227e-10
2.10607e-09
4.26002e-10
2.09101e-09
4.68003e-10
2.07481e-09
5.10168e-10
2.05748e-09
5.52431e-10
2.03903e-09
5.94718e-10
2.01946e-09
6.36951e-10
1.99877e-09
6.79051e-10
1.977e-09
7.20946e-10
1.95418e-09
7.62574e-10
1.93035e-09
8.03881e-10
1.90554e-09
8.44818e-10
1.87977e-09
8.85334e-10
1.85304e-09
9.25373e-10
1.82537e-09
9.64876e-10
1.79678e-09
1.00378e-09
1.76731e-09
1.04204e-09
1.73696e-09
1.07958e-09
1.70575e-09
1.11638e-09
1.67371e-09
1.1524e-09
1.64084e-09
1.1876e-09
1.60715e-09
1.22197e-09
1.57266e-09
1.25548e-09
1.53736e-09
1.28809e-09
1.50127e-09
1.31981e-09
1.46441e-09
1.35061e-09
1.42679e-09
1.38049e-09
1.38841e-09
1.40944e-09
1.34928e-09
1.43746e-09
1.30941e-09
1.46454e-09
1.26881e-09
1.49068e-09
1.2275e-09
1.51587e-09
1.1855e-09
1.54011e-09
1.14283e-09
1.56339e-09
1.09952e-09
1.58571e-09
1.05562e-09
1.60708e-09
1.01115e-09
1.62752e-09
9.66156e-10
1.64705e-09
9.20666e-10
1.6657e-09
8.74704e-10
1.68349e-09
8.28292e-10
1.70044e-09
7.81454e-10
1.71657e-09
7.34214e-10
1.73188e-09
6.86591e-10
1.7464e-09
6.38602e-10
1.7601e-09
5.90263e-10
1.77298e-09
5.41588e-10
1.785e-09
4.92594e-10
1.79609e-09
4.43329e-10
1.80616e-09
3.93854e-10
1.81498e-09
3.44211e-10
1.82199e-09
2.94442e-10
1.82605e-09
2.44676e-10
1.82512e-09
1.95197e-10
1.81544e-09
1.46478e-10
1.78942e-09
9.93663e-11
1.73082e-09
5.56437e-11
1.60358e-09
1.93765e-11
1.32563e-09
7.06882e-10
1.797e-09
-1.28585e-09
1.82996e-09
-1.11179e-09
1.85932e-09
-9.52082e-10
1.88562e-09
-8.14337e-10
1.90937e-09
-7.02475e-10
1.93121e-09
-6.16874e-10
1.9516e-09
-5.55017e-10
1.97095e-09
-5.12741e-10
1.98946e-09
-4.85115e-10
2.00727e-09
-4.6748e-10
2.02444e-09
-4.5595e-10
2.04098e-09
-4.4758e-10
2.05687e-09
-4.40309e-10
2.07208e-09
-4.32761e-10
2.08658e-09
-4.24072e-10
2.10036e-09
-4.13768e-10
2.1134e-09
-4.01624e-10
2.12565e-09
-3.8752e-10
2.13708e-09
-3.71379e-10
2.14768e-09
-3.53174e-10
2.15745e-09
-3.32951e-10
2.16637e-09
-3.10811e-10
2.1744e-09
-2.86859e-10
2.18153e-09
-2.61186e-10
2.18771e-09
-2.3388e-10
2.19292e-09
-2.05039e-10
2.19716e-09
-1.74772e-10
2.20039e-09
-1.43175e-10
2.20259e-09
-1.10331e-10
2.20374e-09
-7.63156e-11
2.20382e-09
-4.12113e-11
2.2028e-09
-5.10865e-12
2.20064e-09
3.19144e-11
2.19734e-09
6.9788e-11
2.19286e-09
1.08468e-10
2.18721e-09
1.47916e-10
2.18039e-09
1.88086e-10
2.1724e-09
2.28914e-10
2.16323e-09
2.70318e-10
2.15288e-09
3.12208e-10
2.14133e-09
3.54505e-10
2.12858e-09
3.97147e-10
2.11463e-09
4.40083e-10
2.09951e-09
4.83263e-10
2.08325e-09
5.26618e-10
2.06587e-09
5.70062e-10
2.04736e-09
6.13502e-10
2.02773e-09
6.56851e-10
2.00697e-09
7.00033e-10
1.98513e-09
7.4299e-10
1.96224e-09
7.85668e-10
1.93833e-09
8.28013e-10
1.91344e-09
8.69964e-10
1.88758e-09
9.11455e-10
1.86076e-09
9.52424e-10
1.83299e-09
9.92814e-10
1.80429e-09
1.03258e-09
1.77469e-09
1.07167e-09
1.74421e-09
1.11004e-09
1.71286e-09
1.14767e-09
1.68068e-09
1.18452e-09
1.64766e-09
1.22055e-09
1.61382e-09
1.25573e-09
1.57916e-09
1.29003e-09
1.5437e-09
1.32343e-09
1.50745e-09
1.35593e-09
1.47042e-09
1.3875e-09
1.43263e-09
1.41816e-09
1.39407e-09
1.44788e-09
1.35477e-09
1.47665e-09
1.31472e-09
1.50448e-09
1.27395e-09
1.53135e-09
1.23247e-09
1.55725e-09
1.1903e-09
1.58218e-09
1.14747e-09
1.60612e-09
1.104e-09
1.62908e-09
1.05993e-09
1.65106e-09
1.0153e-09
1.67208e-09
9.70136e-10
1.69216e-09
9.24476e-10
1.71132e-09
8.7834e-10
1.7296e-09
8.31752e-10
1.747e-09
7.84736e-10
1.76357e-09
7.37315e-10
1.7793e-09
6.89509e-10
1.79421e-09
6.41333e-10
1.80829e-09
5.92803e-10
1.82152e-09
5.4393e-10
1.83388e-09
4.94742e-10
1.84529e-09
4.4529e-10
1.85566e-09
3.95622e-10
1.86475e-09
3.4576e-10
1.87194e-09
2.95756e-10
1.87606e-09
2.45773e-10
1.87509e-09
1.96098e-10
1.86519e-09
1.47176e-10
1.8385e-09
9.98325e-11
1.77827e-09
5.58743e-11
1.64748e-09
1.94394e-11
1.36193e-09
7.26313e-10
1.80993e-09
-1.32304e-09
1.84282e-09
-1.14481e-09
1.87192e-09
-9.81377e-10
1.89785e-09
-8.40391e-10
1.92117e-09
-7.25999e-10
1.94257e-09
-6.38382e-10
1.96255e-09
-5.75093e-10
1.98155e-09
-5.31718e-10
1.9998e-09
-5.03336e-10
2.01743e-09
-4.85101e-10
2.03447e-09
-4.73012e-10
2.05093e-09
-4.64053e-10
2.0668e-09
-4.56148e-10
2.08202e-09
-4.47939e-10
2.09656e-09
-4.38572e-10
2.11037e-09
-4.27559e-10
2.12344e-09
-4.14665e-10
2.13573e-09
-3.99783e-10
2.1472e-09
-3.82857e-10
2.15784e-09
-3.63857e-10
2.16761e-09
-3.42811e-10
2.17652e-09
-3.19804e-10
2.18454e-09
-2.94951e-10
2.19164e-09
-2.68356e-10
2.19778e-09
-2.40112e-10
2.20294e-09
-2.10307e-10
2.20711e-09
-1.79041e-10
2.21027e-09
-1.46414e-10
2.21239e-09
-1.12515e-10
2.21345e-09
-7.74262e-11
2.21343e-09
-4.12321e-11
2.2123e-09
-4.02359e-12
2.21005e-09
3.41261e-11
2.20665e-09
7.3149e-11
2.20209e-09
1.13005e-10
2.19635e-09
1.53655e-10
2.18945e-09
1.95044e-10
2.18138e-09
2.37087e-10
2.17213e-09
2.79689e-10
2.16169e-09
3.22754e-10
2.15006e-09
3.66213e-10
2.13722e-09
4.10019e-10
2.12321e-09
4.54132e-10
2.10802e-09
4.98498e-10
2.09169e-09
5.43036e-10
2.07424e-09
5.87642e-10
2.05566e-09
6.32211e-10
2.03595e-09
6.76657e-10
2.01512e-09
7.20916e-10
1.9932e-09
7.64943e-10
1.97023e-09
8.08687e-10
1.94625e-09
8.52085e-10
1.92128e-09
8.9506e-10
1.89533e-09
9.37534e-10
1.86841e-09
9.79441e-10
1.84053e-09
1.02073e-09
1.81172e-09
1.06137e-09
1.782e-09
1.10132e-09
1.7514e-09
1.14056e-09
1.71992e-09
1.17904e-09
1.6876e-09
1.21673e-09
1.65444e-09
1.2536e-09
1.62046e-09
1.28962e-09
1.58565e-09
1.32474e-09
1.55003e-09
1.35896e-09
1.51362e-09
1.39226e-09
1.47644e-09
1.42464e-09
1.43848e-09
1.45608e-09
1.39975e-09
1.48658e-09
1.36028e-09
1.51612e-09
1.32007e-09
1.54469e-09
1.27913e-09
1.57229e-09
1.23748e-09
1.5989e-09
1.19515e-09
1.62451e-09
1.15215e-09
1.6491e-09
1.10852e-09
1.67269e-09
1.06429e-09
1.69526e-09
1.01949e-09
1.71684e-09
9.74164e-10
1.73745e-09
9.28333e-10
1.75712e-09
8.82022e-10
1.77588e-09
8.35256e-10
1.79374e-09
7.8806e-10
1.81074e-09
7.40457e-10
1.8269e-09
6.92466e-10
1.84221e-09
6.44103e-10
1.85667e-09
5.95378e-10
1.87027e-09
5.46309e-10
1.88295e-09
4.96932e-10
1.89469e-09
4.47295e-10
1.90539e-09
3.97423e-10
1.91473e-09
3.47334e-10
1.92208e-09
2.97104e-10
1.92629e-09
2.46916e-10
1.92532e-09
1.97038e-10
1.91521e-09
1.47885e-10
1.88781e-09
1.00285e-10
1.8259e-09
5.60978e-11
1.69158e-09
1.95215e-11
1.39848e-09
7.45934e-10
1.82368e-09
-1.36007e-09
1.85655e-09
-1.17754e-09
1.88551e-09
-1.0102e-09
1.91113e-09
-8.65956e-10
1.93412e-09
-7.48991e-10
1.95515e-09
-6.59451e-10
1.97479e-09
-5.94714e-10
1.99346e-09
-5.503e-10
2.01147e-09
-5.21117e-10
2.02891e-09
-5.02298e-10
2.04582e-09
-4.89701e-10
2.06219e-09
-4.80214e-10
2.07799e-09
-4.71725e-10
2.09318e-09
-4.6289e-10
2.1077e-09
-4.5287e-10
2.12149e-09
-4.41171e-10
2.13454e-09
-4.27534e-10
2.14682e-09
-4.11856e-10
2.15827e-09
-3.94103e-10
2.16888e-09
-3.74265e-10
2.17862e-09
-3.52366e-10
2.18747e-09
-3.28478e-10
2.19542e-09
-3.02707e-10
2.20243e-09
-2.75172e-10
2.20848e-09
-2.45975e-10
2.21355e-09
-2.15205e-10
2.21761e-09
-1.82956e-10
2.22065e-09
-1.49322e-10
2.22264e-09
-1.14396e-10
2.22358e-09
-7.82646e-11
2.22342e-09
-4.10116e-11
2.22215e-09
-2.72666e-12
2.21976e-09
3.65331e-11
2.21623e-09
7.66979e-11
2.21155e-09
1.1773e-10
2.20571e-09
1.59583e-10
2.19869e-09
2.02183e-10
2.1905e-09
2.45433e-10
2.18113e-09
2.89224e-10
2.17058e-09
3.33467e-10
2.15884e-09
3.78101e-10
2.14591e-09
4.23089e-10
2.13181e-09
4.68391e-10
2.11654e-09
5.13942e-10
2.10013e-09
5.59643e-10
2.08259e-09
6.05379e-10
2.06392e-09
6.51044e-10
2.04412e-09
6.96563e-10
2.02322e-09
7.41887e-10
2.00122e-09
7.86977e-10
1.97818e-09
8.31783e-10
1.95412e-09
8.7623e-10
1.92906e-09
9.20227e-10
1.90301e-09
9.63689e-10
1.87599e-09
1.00655e-09
1.84801e-09
1.04877e-09
1.81909e-09
1.09032e-09
1.78926e-09
1.13118e-09
1.75854e-09
1.1713e-09
1.72695e-09
1.21067e-09
1.6945e-09
1.24923e-09
1.6612e-09
1.28695e-09
1.62708e-09
1.3238e-09
1.59213e-09
1.35976e-09
1.55637e-09
1.39479e-09
1.51981e-09
1.4289e-09
1.48246e-09
1.46208e-09
1.44434e-09
1.4943e-09
1.40546e-09
1.52557e-09
1.36582e-09
1.55586e-09
1.32544e-09
1.58517e-09
1.28434e-09
1.61348e-09
1.24253e-09
1.64078e-09
1.20004e-09
1.66706e-09
1.15688e-09
1.69229e-09
1.11309e-09
1.71648e-09
1.0687e-09
1.73963e-09
1.02374e-09
1.76176e-09
9.78247e-10
1.7829e-09
9.32244e-10
1.80307e-09
8.85758e-10
1.8223e-09
8.38813e-10
1.84062e-09
7.91436e-10
1.85807e-09
7.43649e-10
1.87465e-09
6.95471e-10
1.89037e-09
6.46916e-10
1.90522e-09
5.97996e-10
1.91917e-09
5.48733e-10
1.9322e-09
4.99171e-10
1.94428e-09
4.49343e-10
1.95527e-09
3.99259e-10
1.96486e-09
3.48944e-10
1.97238e-09
2.98501e-10
1.97671e-09
2.48111e-10
1.97577e-09
1.98012e-10
1.96542e-09
1.486e-10
1.93728e-09
1.00735e-10
1.87372e-09
5.6338e-11
1.73594e-09
1.96271e-11
1.43531e-09
7.657e-10
1.83811e-09
-1.39751e-09
1.87104e-09
-1.21049e-09
1.89992e-09
-1.03895e-09
1.92536e-09
-8.91246e-10
1.94812e-09
-7.715e-10
1.96888e-09
-6.80031e-10
1.98825e-09
-6.1391e-10
2.00667e-09
-5.68561e-10
2.02444e-09
-5.38682e-10
2.0417e-09
-5.19303e-10
2.05847e-09
-5.06222e-10
2.07474e-09
-4.96252e-10
2.09045e-09
-4.87222e-10
2.10556e-09
-4.77783e-10
2.12001e-09
-4.67121e-10
2.13375e-09
-4.54746e-10
2.14673e-09
-4.40382e-10
2.15893e-09
-4.23911e-10
2.17032e-09
-4.05309e-10
2.18085e-09
-3.84596e-10
2.19049e-09
-3.61809e-10
2.19924e-09
-3.37013e-10
2.20706e-09
-3.10306e-10
2.21394e-09
-2.81808e-10
2.21985e-09
-2.51631e-10
2.22476e-09
-2.19875e-10
2.22866e-09
-1.86631e-10
2.23154e-09
-1.5199e-10
2.23337e-09
-1.16044e-10
2.23413e-09
-7.88832e-11
2.2338e-09
-4.05905e-11
2.23236e-09
-1.24557e-12
2.2298e-09
3.90971e-11
2.22611e-09
8.0381e-11
2.22128e-09
1.22561e-10
2.21529e-09
1.65579e-10
2.20813e-09
2.09349e-10
2.19979e-09
2.53764e-10
2.19027e-09
2.9872e-10
2.17958e-09
3.44135e-10
2.16771e-09
3.89958e-10
2.15467e-09
4.36151e-10
2.14047e-09
4.82663e-10
2.1251e-09
5.29407e-10
2.10858e-09
5.7627e-10
2.09093e-09
6.23132e-10
2.07216e-09
6.69893e-10
2.05227e-09
7.16491e-10
2.03129e-09
7.62886e-10
2.00922e-09
8.09043e-10
1.9861e-09
8.54901e-10
1.96195e-09
9.00378e-10
1.9368e-09
9.45381e-10
1.91065e-09
9.89826e-10
1.88353e-09
1.03366e-09
1.85545e-09
1.07683e-09
1.82644e-09
1.11933e-09
1.7965e-09
1.16112e-09
1.76567e-09
1.20217e-09
1.73396e-09
1.24243e-09
1.70139e-09
1.28187e-09
1.66797e-09
1.32046e-09
1.63371e-09
1.35816e-09
1.59862e-09
1.39495e-09
1.56272e-09
1.4308e-09
1.52602e-09
1.46572e-09
1.48853e-09
1.49968e-09
1.45025e-09
1.53268e-09
1.41121e-09
1.56471e-09
1.37141e-09
1.59575e-09
1.33087e-09
1.6258e-09
1.2896e-09
1.65483e-09
1.24764e-09
1.68283e-09
1.20499e-09
1.70979e-09
1.16168e-09
1.73567e-09
1.11773e-09
1.76047e-09
1.07318e-09
1.7842e-09
1.02806e-09
1.80688e-09
9.82399e-10
1.82854e-09
9.36225e-10
1.8492e-09
8.89563e-10
1.86891e-09
8.42439e-10
1.88769e-09
7.94879e-10
1.90558e-09
7.46905e-10
1.92258e-09
6.98536e-10
1.93871e-09
6.49785e-10
1.95394e-09
6.00667e-10
1.96824e-09
5.51214e-10
1.98161e-09
5.01465e-10
1.99401e-09
4.51439e-10
2.0053e-09
4.01137e-10
2.0151e-09
3.50604e-10
2.0228e-09
2.99959e-10
2.02727e-09
2.4936e-10
2.02637e-09
1.99016e-10
2.01578e-09
1.49331e-10
1.9869e-09
1.01211e-10
1.92174e-09
5.66137e-11
1.78057e-09
1.97441e-11
1.47236e-09
7.85514e-10
1.85306e-09
-1.43534e-09
1.88617e-09
-1.2438e-09
1.91506e-09
-1.06809e-09
1.94043e-09
-9.16797e-10
1.96305e-09
-7.94189e-10
1.98366e-09
-7.00607e-10
2.00284e-09
-6.33106e-10
2.02107e-09
-5.86823e-10
2.03866e-09
-5.56317e-10
2.05576e-09
-5.36445e-10
2.0724e-09
-5.22917e-10
2.08855e-09
-5.12495e-10
2.10414e-09
-5.0296e-10
2.11914e-09
-4.92937e-10
2.13348e-09
-4.81623e-10
2.14712e-09
-4.68552e-10
2.16e-09
-4.53452e-10
2.17209e-09
-4.36192e-10
2.18335e-09
-4.16745e-10
2.19374e-09
-3.95145e-10
2.20324e-09
-3.71449e-10
2.21183e-09
-3.45731e-10
2.21948e-09
-3.1808e-10
2.22617e-09
-2.8861e-10
2.23189e-09
-2.57439e-10
2.23661e-09
-2.24675e-10
2.24031e-09
-1.90414e-10
2.24298e-09
-1.54748e-10
2.2446e-09
-1.17767e-10
2.24515e-09
-7.95618e-11
2.2446e-09
-4.02141e-11
2.24295e-09
2.03241e-13
2.24019e-09
4.16378e-11
2.23632e-09
8.404e-11
2.23131e-09
1.27355e-10
2.22514e-09
1.71511e-10
2.2178e-09
2.16415e-10
2.20928e-09
2.61966e-10
2.19959e-09
3.08069e-10
2.18873e-09
3.54657e-10
2.17672e-09
4.01682e-10
2.16355e-09
4.49096e-10
2.14922e-09
4.96825e-10
2.13373e-09
5.44764e-10
2.11709e-09
5.92789e-10
2.09931e-09
6.40783e-10
2.08043e-09
6.88659e-10
2.06045e-09
7.3636e-10
2.03938e-09
7.83845e-10
2.01723e-09
8.31068e-10
1.99403e-09
8.77964e-10
1.9698e-09
9.24447e-10
1.94455e-09
9.70433e-10
1.91831e-09
1.01585e-09
1.89109e-09
1.06065e-09
1.86291e-09
1.1048e-09
1.8338e-09
1.14827e-09
1.80377e-09
1.19103e-09
1.77283e-09
1.23302e-09
1.74101e-09
1.27422e-09
1.70832e-09
1.31458e-09
1.67477e-09
1.35407e-09
1.64039e-09
1.39265e-09
1.60517e-09
1.4303e-09
1.56914e-09
1.46699e-09
1.5323e-09
1.50272e-09
1.49466e-09
1.53747e-09
1.45623e-09
1.57125e-09
1.41704e-09
1.60403e-09
1.37708e-09
1.63583e-09
1.33638e-09
1.66662e-09
1.29496e-09
1.69638e-09
1.25284e-09
1.72509e-09
1.21003e-09
1.75273e-09
1.16656e-09
1.77927e-09
1.12246e-09
1.80469e-09
1.07775e-09
1.82901e-09
1.03247e-09
1.85224e-09
9.86647e-10
1.87442e-09
9.40301e-10
1.89558e-09
8.93462e-10
1.91575e-09
8.46156e-10
1.93499e-09
7.98408e-10
1.95331e-09
7.50243e-10
1.97072e-09
7.01677e-10
1.98723e-09
6.52725e-10
2.00283e-09
6.03408e-10
2.01748e-09
5.53763e-10
2.03119e-09
5.03821e-10
2.0439e-09
4.53586e-10
2.05545e-09
4.03068e-10
2.06548e-09
3.5233e-10
2.07338e-09
3.01485e-10
2.07802e-09
2.50663e-10
2.07713e-09
2.00059e-10
2.06629e-09
1.50102e-10
2.03672e-09
1.01738e-10
1.97003e-09
5.69264e-11
1.82546e-09
1.98531e-11
1.50953e-09
8.05304e-10
1.86835e-09
-1.47356e-09
1.90174e-09
-1.27721e-09
1.93078e-09
-1.09736e-09
1.95621e-09
-9.42474e-10
1.97881e-09
-8.17026e-10
1.99936e-09
-7.21258e-10
2.01846e-09
-6.52264e-10
2.03658e-09
-6.05e-10
2.05404e-09
-5.73806e-10
2.07101e-09
-5.53395e-10
2.08754e-09
-5.3939e-10
2.10357e-09
-5.28495e-10
2.11904e-09
-5.18443e-10
2.1339e-09
-5.07823e-10
2.1481e-09
-4.95825e-10
2.1616e-09
-4.82009e-10
2.17434e-09
-4.6613e-10
2.18627e-09
-4.48063e-10
2.19736e-09
-4.27777e-10
2.20758e-09
-4.05305e-10
2.21689e-09
-3.80717e-10
2.22527e-09
-3.54094e-10
2.2327e-09
-3.25525e-10
2.23917e-09
-2.95115e-10
2.24465e-09
-2.62977e-10
2.24913e-09
-2.29222e-10
2.25259e-09
-1.9395e-10
2.25502e-09
-1.57255e-10
2.25638e-09
-1.19227e-10
2.25667e-09
-7.99554e-11
2.25588e-09
-3.95187e-11
2.25399e-09
2.01285e-12
2.25099e-09
4.45854e-11
2.2469e-09
8.81428e-11
2.24168e-09
1.32615e-10
2.2353e-09
1.77918e-10
2.22776e-09
2.23953e-10
2.21903e-09
2.7063e-10
2.20915e-09
3.17872e-10
2.19811e-09
3.65622e-10
2.18594e-09
4.13828e-10
2.17262e-09
4.62425e-10
2.15815e-09
5.11319e-10
2.14251e-09
5.60395e-10
2.12572e-09
6.09535e-10
2.10782e-09
6.58636e-10
2.08881e-09
7.0762e-10
2.06872e-09
7.56428e-10
2.04756e-09
8.05005e-10
2.02533e-09
8.53291e-10
2.00204e-09
9.01212e-10
1.97771e-09
9.48689e-10
1.95237e-09
9.95652e-10
1.92604e-09
1.04205e-09
1.89873e-09
1.08783e-09
1.87047e-09
1.13296e-09
1.84126e-09
1.1774e-09
1.81113e-09
1.22112e-09
1.78009e-09
1.26407e-09
1.74817e-09
1.30621e-09
1.71536e-09
1.34749e-09
1.6817e-09
1.38788e-09
1.64719e-09
1.42734e-09
1.61184e-09
1.46583e-09
1.57567e-09
1.50335e-09
1.5387e-09
1.53988e-09
1.50092e-09
1.57541e-09
1.46235e-09
1.60993e-09
1.423e-09
1.64347e-09
1.38289e-09
1.676e-09
1.34203e-09
1.70752e-09
1.30046e-09
1.73801e-09
1.25818e-09
1.76745e-09
1.21522e-09
1.79579e-09
1.17159e-09
1.823e-09
1.12733e-09
1.84908e-09
1.08247e-09
1.87402e-09
1.03702e-09
1.89783e-09
9.91026e-10
1.92055e-09
9.44505e-10
1.94221e-09
8.97485e-10
1.96287e-09
8.49992e-10
1.98255e-09
8.02052e-10
2.00129e-09
7.53688e-10
2.01911e-09
7.04918e-10
2.036e-09
6.55759e-10
2.05195e-09
6.0624e-10
2.06694e-09
5.56398e-10
2.08098e-09
5.06252e-10
2.094e-09
4.55803e-10
2.1058e-09
4.05072e-10
2.11606e-09
3.54135e-10
2.12419e-09
3.03085e-10
2.12899e-09
2.52026e-10
2.12811e-09
2.01156e-10
2.11702e-09
1.50937e-10
2.08679e-09
1.02325e-10
2.01859e-09
5.72618e-11
1.87053e-09
1.99451e-11
1.54674e-09
8.25073e-10
1.88386e-09
-1.51237e-09
1.91758e-09
-1.31093e-09
1.94691e-09
-1.1266e-09
1.97255e-09
-9.68037e-10
1.9953e-09
-8.39706e-10
2.01591e-09
-7.41842e-10
2.03503e-09
-6.7134e-10
2.05313e-09
-6.23072e-10
2.07053e-09
-5.91178e-10
2.08742e-09
-5.70198e-10
2.10384e-09
-5.55669e-10
2.11976e-09
-5.44265e-10
2.1351e-09
-5.33687e-10
2.14982e-09
-5.22479e-10
2.16386e-09
-5.09808e-10
2.17719e-09
-4.95242e-10
2.18975e-09
-4.78572e-10
2.20149e-09
-4.59697e-10
2.21238e-09
-4.3859e-10
2.22237e-09
-4.15275e-10
2.23145e-09
-3.89821e-10
2.23959e-09
-3.6231e-10
2.24677e-09
-3.32835e-10
2.25297e-09
-3.01493e-10
2.25818e-09
-2.68392e-10
2.26239e-09
-2.33638e-10
2.26557e-09
-1.97336e-10
2.26771e-09
-1.59583e-10
2.2688e-09
-1.20473e-10
2.26881e-09
-8.00935e-11
2.26773e-09
-3.85205e-11
2.26557e-09
4.17612e-12
2.26232e-09
4.79323e-11
2.25797e-09
9.26774e-11
2.2525e-09
1.38323e-10
2.24589e-09
1.8477e-10
2.2381e-09
2.31927e-10
2.22916e-09
2.79715e-10
2.21906e-09
3.28075e-10
2.20783e-09
3.76957e-10
2.19548e-09
4.26298e-10
2.18199e-09
4.76015e-10
2.16735e-09
5.26006e-10
2.15155e-09
5.76165e-10
2.1346e-09
6.26391e-10
2.11655e-09
6.76602e-10
2.09742e-09
7.26721e-10
2.07722e-09
7.76672e-10
2.05595e-09
8.26377e-10
2.03363e-09
8.75755e-10
2.01024e-09
9.24726e-10
1.98582e-09
9.7322e-10
1.96039e-09
1.02118e-09
1.93397e-09
1.06855e-09
1.90657e-09
1.1153e-09
1.87822e-09
1.16139e-09
1.84893e-09
1.20676e-09
1.81871e-09
1.25139e-09
1.78757e-09
1.29523e-09
1.75553e-09
1.33825e-09
1.72262e-09
1.3804e-09
1.68883e-09
1.42164e-09
1.6542e-09
1.46195e-09
1.61872e-09
1.50128e-09
1.58242e-09
1.53963e-09
1.54531e-09
1.57697e-09
1.50739e-09
1.61329e-09
1.46867e-09
1.64861e-09
1.42917e-09
1.68292e-09
1.38891e-09
1.71623e-09
1.34791e-09
1.74853e-09
1.30618e-09
1.77979e-09
1.26374e-09
1.80998e-09
1.22062e-09
1.83905e-09
1.17684e-09
1.86697e-09
1.13242e-09
1.89372e-09
1.08739e-09
1.91929e-09
1.04177e-09
1.94369e-09
9.95598e-10
1.96695e-09
9.48893e-10
1.98912e-09
9.01683e-10
2.01024e-09
8.53994e-10
2.03035e-09
8.05852e-10
2.04949e-09
7.57281e-10
2.06769e-09
7.08297e-10
2.08494e-09
6.58923e-10
2.10124e-09
6.09195e-10
2.11658e-09
5.59146e-10
2.13095e-09
5.08784e-10
2.14427e-09
4.58114e-10
2.15634e-09
4.07174e-10
2.16687e-09
3.56035e-10
2.17524e-09
3.04766e-10
2.1802e-09
2.53459e-10
2.17933e-09
2.02327e-10
2.16802e-09
1.51847e-10
2.13715e-09
1.02965e-10
2.06742e-09
5.76086e-11
1.91578e-09
2.00361e-11
1.58404e-09
8.44919e-10
1.8995e-09
-1.55128e-09
1.93359e-09
-1.34501e-09
1.96331e-09
-1.15617e-09
1.9893e-09
-9.93848e-10
2.01233e-09
-8.62533e-10
2.03314e-09
-7.62483e-10
2.0524e-09
-6.90451e-10
2.07059e-09
-6.41127e-10
2.08802e-09
-6.08503e-10
2.10488e-09
-5.86952e-10
2.12123e-09
-5.71886e-10
2.13704e-09
-5.59926e-10
2.15226e-09
-5.48761e-10
2.16684e-09
-5.36923e-10
2.18071e-09
-5.23551e-10
2.19385e-09
-5.08205e-10
2.2062e-09
-4.90694e-10
2.21772e-09
-4.70948e-10
2.22837e-09
-4.48955e-10
2.23811e-09
-4.24743e-10
2.24693e-09
-3.98371e-10
2.25479e-09
-3.69922e-10
2.2617e-09
-3.39493e-10
2.26761e-09
-3.07185e-10
2.27253e-09
-2.73103e-10
2.27644e-09
-2.37356e-10
2.27932e-09
-2.00049e-10
2.28116e-09
-1.61284e-10
2.28194e-09
-1.21153e-10
2.28164e-09
-7.97378e-11
2.28026e-09
-3.71022e-11
2.2778e-09
6.68728e-12
2.27426e-09
5.1558e-11
2.26963e-09
9.7429e-11
2.26389e-09
1.44196e-10
2.257e-09
1.91758e-10
2.24896e-09
2.4003e-10
2.23976e-09
2.88949e-10
2.22944e-09
3.38463e-10
2.218e-09
3.88511e-10
2.20545e-09
4.39008e-10
2.19177e-09
4.89851e-10
2.17694e-09
5.40934e-10
2.16097e-09
5.92164e-10
2.14386e-09
6.43465e-10
2.12567e-09
6.94765e-10
2.1064e-09
7.4598e-10
2.08608e-09
7.97016e-10
2.0647e-09
8.47773e-10
2.04226e-09
8.9816e-10
2.01877e-09
9.48106e-10
1.99425e-09
9.97556e-10
1.96873e-09
1.04647e-09
1.94221e-09
1.09479e-09
1.91473e-09
1.14249e-09
1.88629e-09
1.18952e-09
1.8569e-09
1.23583e-09
1.82659e-09
1.28139e-09
1.79535e-09
1.32616e-09
1.76321e-09
1.3701e-09
1.73018e-09
1.41318e-09
1.69628e-09
1.45534e-09
1.66152e-09
1.49656e-09
1.62592e-09
1.53679e-09
1.58948e-09
1.57601e-09
1.55223e-09
1.6142e-09
1.51416e-09
1.65136e-09
1.4753e-09
1.68748e-09
1.43565e-09
1.72257e-09
1.39524e-09
1.75665e-09
1.35409e-09
1.78969e-09
1.3122e-09
1.82169e-09
1.26961e-09
1.85261e-09
1.22633e-09
1.88239e-09
1.18238e-09
1.91101e-09
1.13778e-09
1.93843e-09
1.09258e-09
1.96464e-09
1.04678e-09
1.98965e-09
1.00042e-09
2.01348e-09
9.53517e-10
2.03618e-09
9.06104e-10
2.0578e-09
8.58205e-10
2.07838e-09
8.0985e-10
2.09796e-09
7.61058e-10
2.11656e-09
7.1185e-10
2.13419e-09
6.62253e-10
2.15085e-09
6.12307e-10
2.16655e-09
5.62036e-10
2.18124e-09
5.11446e-10
2.19485e-09
4.60551e-10
2.20721e-09
4.09397e-10
2.21801e-09
3.58042e-10
2.22661e-09
3.06537e-10
2.23171e-09
2.54975e-10
2.23085e-09
2.03583e-10
2.21933e-09
1.52836e-10
2.18784e-09
1.03654e-10
2.11653e-09
5.79778e-11
1.96127e-09
2.01665e-11
1.62159e-09
8.65008e-10
1.91479e-09
-1.59071e-09
1.94941e-09
-1.3796e-09
1.97963e-09
-1.18636e-09
2.00611e-09
-1.02026e-09
2.02955e-09
-8.85968e-10
2.05072e-09
-7.83652e-10
2.07025e-09
-7.09973e-10
2.08862e-09
-6.59463e-10
2.10618e-09
-6.2598e-10
2.12308e-09
-6.03781e-10
2.1394e-09
-5.88155e-10
2.15514e-09
-5.75613e-10
2.17026e-09
-5.638e-10
2.18469e-09
-5.51252e-10
2.1984e-09
-5.37131e-10
2.21134e-09
-5.21002e-10
2.22348e-09
-5.02669e-10
2.23476e-09
-4.82065e-10
2.24516e-09
-4.5919e-10
2.25463e-09
-4.34079e-10
2.26316e-09
-4.06793e-10
2.27073e-09
-3.77414e-10
2.27733e-09
-3.46036e-10
2.28294e-09
-3.12763e-10
2.28754e-09
-2.77704e-10
2.29113e-09
-2.40967e-10
2.29369e-09
-2.02656e-10
2.2952e-09
-1.6287e-10
2.29566e-09
-1.21697e-10
2.29505e-09
-7.92166e-11
2.29336e-09
-3.54775e-11
2.29059e-09
9.43965e-12
2.28674e-09
5.54454e-11
2.2818e-09
1.02448e-10
2.27576e-09
1.50338e-10
2.26858e-09
1.99023e-10
2.26026e-09
2.4843e-10
2.25081e-09
2.98496e-10
2.24025e-09
3.49151e-10
2.22859e-09
4.00312e-10
2.21582e-09
4.51885e-10
2.20192e-09
5.03777e-10
2.1869e-09
5.55904e-10
2.17074e-09
6.08197e-10
2.15347e-09
6.60586e-10
2.13512e-09
7.12988e-10
2.11571e-09
7.65305e-10
2.09525e-09
8.17432e-10
2.07375e-09
8.69272e-10
2.05119e-09
9.20744e-10
2.02759e-09
9.7178e-10
2.00297e-09
1.02232e-09
1.97735e-09
1.07232e-09
1.95074e-09
1.1217e-09
1.92317e-09
1.17043e-09
1.89465e-09
1.21845e-09
1.86517e-09
1.26571e-09
1.83476e-09
1.31217e-09
1.80343e-09
1.35781e-09
1.77119e-09
1.40259e-09
1.73805e-09
1.44648e-09
1.70403e-09
1.48945e-09
1.66914e-09
1.53147e-09
1.63341e-09
1.57252e-09
1.59683e-09
1.61256e-09
1.55944e-09
1.65158e-09
1.52122e-09
1.68958e-09
1.48221e-09
1.72655e-09
1.44242e-09
1.76249e-09
1.40186e-09
1.7974e-09
1.36055e-09
1.83127e-09
1.31851e-09
1.86406e-09
1.27576e-09
1.89572e-09
1.23231e-09
1.92622e-09
1.1882e-09
1.95551e-09
1.14343e-09
1.98356e-09
1.09804e-09
2.01036e-09
1.05205e-09
2.03592e-09
1.00549e-09
2.06027e-09
9.58383e-10
2.08345e-09
9.10755e-10
2.10552e-09
8.62635e-10
2.12653e-09
8.1405e-10
2.14653e-09
7.65024e-10
2.16553e-09
7.15579e-10
2.18356e-09
6.65749e-10
2.2006e-09
6.1557e-10
2.21666e-09
5.65062e-10
2.23168e-09
5.14234e-10
2.24559e-09
4.63108e-10
2.25823e-09
4.1173e-10
2.2693e-09
3.60143e-10
2.27809e-09
3.08389e-10
2.28331e-09
2.56571e-10
2.28247e-09
2.0492e-10
2.2708e-09
1.53896e-10
2.23868e-09
1.04402e-10
2.16577e-09
5.83853e-11
2.00696e-09
2.02094e-11
1.65948e-09
8.85055e-10
-1.32558e-10
8.59364e-10
-3.81634e-10
1.62027e-09
-6.82282e-10
1.96767e-09
-1.00574e-09
2.12987e-09
-1.33888e-09
2.2058e-09
-1.67552e-09
2.23976e-09
-2.01272e-09
2.25231e-09
-2.34908e-09
2.25342e-09
-2.68395e-09
2.24808e-09
-3.01703e-09
2.23886e-09
-3.34813e-09
2.22709e-09
-3.67714e-09
2.21344e-09
-4.0039e-09
2.19824e-09
-4.32825e-09
2.18165e-09
-4.64999e-09
2.16374e-09
-4.9689e-09
2.14457e-09
-5.28477e-09
2.12415e-09
-5.59736e-09
2.10251e-09
-5.90645e-09
2.07964e-09
-6.21182e-09
2.05551e-09
-6.51326e-09
2.03012e-09
-6.81057e-09
2.00344e-09
-7.10356e-09
1.97544e-09
-7.39207e-09
1.94614e-09
-7.67592e-09
1.91554e-09
-7.95494e-09
1.88364e-09
-8.22899e-09
1.85049e-09
-8.4979e-09
1.8161e-09
-8.76154e-09
1.78051e-09
-9.01976e-09
1.74372e-09
-9.27246e-09
1.70576e-09
-9.5195e-09
1.66664e-09
-9.7608e-09
1.62637e-09
-9.99623e-09
1.58495e-09
-1.02257e-08
1.54241e-09
-1.04491e-08
1.49876e-09
-1.06664e-08
1.45404e-09
-1.08775e-08
1.40826e-09
-1.10822e-08
1.36147e-09
-1.12806e-08
1.3137e-09
-1.14726e-08
1.265e-09
-1.1658e-08
1.2154e-09
-1.18369e-08
1.16494e-09
-1.2009e-08
1.11367e-09
-1.21745e-08
1.06162e-09
-1.23331e-08
1.00884e-09
-1.24848e-08
9.55363e-10
-1.26296e-08
9.0124e-10
-1.27674e-08
8.46523e-10
-1.28981e-08
7.91272e-10
-1.30219e-08
7.35552e-10
-1.31384e-08
6.79438e-10
-1.32479e-08
6.23009e-10
-1.33501e-08
5.66346e-10
-1.3445e-08
5.09535e-10
-1.35328e-08
4.52662e-10
-1.36132e-08
3.95816e-10
-1.36863e-08
3.39083e-10
-1.37521e-08
2.82549e-10
-1.38104e-08
2.26297e-10
-1.38613e-08
1.70405e-10
-1.39047e-08
1.14938e-10
-1.39404e-08
5.99364e-11
-1.39682e-08
5.18684e-12
-1.39884e-08
-4.84313e-11
-1.40013e-08
-1.00999e-10
-1.40069e-08
-1.52803e-10
-1.4005e-08
-2.03677e-10
-1.39957e-08
-2.53499e-10
-1.3979e-08
-3.02176e-10
-1.39549e-08
-3.49624e-10
-1.39235e-08
-3.95764e-10
-1.38848e-08
-4.40517e-10
-1.38388e-08
-4.83803e-10
-1.37856e-08
-5.25538e-10
-1.37253e-08
-5.65618e-10
-1.36579e-08
-6.03941e-10
-1.35835e-08
-6.40388e-10
-1.35023e-08
-6.7484e-10
-1.34142e-08
-7.07168e-10
-1.33193e-08
-7.37247e-10
-1.32179e-08
-7.64954e-10
-1.31099e-08
-7.90177e-10
-1.29956e-08
-8.12814e-10
-1.2875e-08
-8.3282e-10
-1.27483e-08
-8.50222e-10
-1.26157e-08
-8.65194e-10
-1.24773e-08
-8.78198e-10
-1.23332e-08
-8.90191e-10
-1.21832e-08
-9.02878e-10
-1.20271e-08
-9.18975e-10
-1.18638e-08
-9.42544e-10
-1.16917e-08
-9.79118e-10
-1.15083e-08
-1.03531e-09
-1.13102e-08
-1.11829e-09
-1.1093e-08
-1.23437e-09
-1.08521e-08
-1.38738e-09
-1.0583e-08
-1.57706e-09
-1.02819e-08
-1.79792e-09
-2.03949e-09
-9.94637e-09
-1.38571e-10
9.97845e-10
-3.9868e-10
1.88003e-09
-7.13186e-10
2.28182e-09
-1.05214e-09
2.46847e-09
-1.40181e-09
2.55512e-09
-1.75569e-09
2.59331e-09
-2.1106e-09
2.60692e-09
-2.46493e-09
2.60749e-09
-2.81783e-09
2.60078e-09
-3.16884e-09
2.58974e-09
-3.51769e-09
2.57588e-09
-3.86419e-09
2.55995e-09
-4.20816e-09
2.54229e-09
-4.54944e-09
2.52305e-09
-4.88781e-09
2.50228e-09
-5.22307e-09
2.48002e-09
-5.55498e-09
2.45627e-09
-5.8833e-09
2.43104e-09
-6.2078e-09
2.40433e-09
-6.52824e-09
2.37613e-09
-6.84443e-09
2.34645e-09
-7.15617e-09
2.31529e-09
-7.46327e-09
2.28265e-09
-7.76558e-09
2.24854e-09
-8.06292e-09
2.21297e-09
-8.35514e-09
2.17597e-09
-8.64208e-09
2.13755e-09
-8.92358e-09
2.09775e-09
-9.19947e-09
2.05658e-09
-9.46962e-09
2.01407e-09
-9.73388e-09
1.97024e-09
-9.99212e-09
1.92511e-09
-1.02443e-08
1.8787e-09
-1.04902e-08
1.83103e-09
-1.07298e-08
1.78213e-09
-1.0963e-08
1.73202e-09
-1.11897e-08
1.68075e-09
-1.141e-08
1.62836e-09
-1.16236e-08
1.57488e-09
-1.18305e-08
1.52036e-09
-1.20306e-08
1.46484e-09
-1.22239e-08
1.40838e-09
-1.24102e-08
1.35101e-09
-1.25895e-08
1.29277e-09
-1.27617e-08
1.23372e-09
-1.29267e-08
1.17389e-09
-1.30846e-08
1.11333e-09
-1.32353e-08
1.05209e-09
-1.33788e-08
9.9023e-10
-1.35151e-08
9.27808e-10
-1.36442e-08
8.64891e-10
-1.37661e-08
8.01553e-10
-1.38808e-08
7.37871e-10
-1.39883e-08
6.73927e-10
-1.40886e-08
6.09804e-10
-1.41815e-08
5.4559e-10
-1.42672e-08
4.81368e-10
-1.43454e-08
4.17224e-10
-1.44163e-08
3.53243e-10
-1.44796e-08
2.89506e-10
-1.45353e-08
2.26096e-10
-1.45834e-08
1.63099e-10
-1.46241e-08
1.00609e-10
-1.46576e-08
3.87595e-11
-1.46842e-08
-2.18131e-11
-1.47025e-08
-8.26635e-11
-1.47129e-08
-1.42504e-10
-1.47154e-08
-2.01261e-10
-1.47101e-08
-2.58975e-10
-1.4697e-08
-3.15537e-10
-1.46759e-08
-3.709e-10
-1.46468e-08
-4.24974e-10
-1.46098e-08
-4.77675e-10
-1.45647e-08
-5.28895e-10
-1.45116e-08
-5.78579e-10
-1.44504e-08
-6.26638e-10
-1.43812e-08
-6.72942e-10
-1.43041e-08
-7.17426e-10
-1.42189e-08
-7.59946e-10
-1.41256e-08
-8.00409e-10
-1.40242e-08
-8.38696e-10
-1.39146e-08
-8.74693e-10
-1.37966e-08
-9.08289e-10
-1.36702e-08
-9.39419e-10
-1.35351e-08
-9.68054e-10
-1.33912e-08
-9.942e-10
-1.32383e-08
-1.01814e-09
-1.3076e-08
-1.04043e-09
-1.29041e-08
-1.06205e-09
-1.2722e-08
-1.08494e-09
-1.25288e-08
-1.11205e-09
-1.23236e-08
-1.14774e-09
-1.21049e-08
-1.19782e-09
-1.18709e-08
-1.26935e-09
-1.16195e-08
-1.36965e-09
-1.13486e-08
-1.50527e-09
-1.1056e-08
-1.67991e-09
-1.07401e-08
-1.89297e-09
-1.03998e-08
-2.13834e-09
-2.40444e-09
-1.0035e-08
-1.48757e-10
1.14633e-09
-4.26384e-10
2.15732e-09
-7.6084e-10
2.61599e-09
-1.12053e-09
2.82789e-09
-1.49118e-09
2.92551e-09
-1.86617e-09
2.96804e-09
-2.2423e-09
2.98281e-09
-2.61797e-09
2.98292e-09
-2.9923e-09
2.97488e-09
-3.36478e-09
2.96201e-09
-3.73506e-09
2.94599e-09
-4.10291e-09
2.92765e-09
-4.46809e-09
2.90736e-09
-4.8304e-09
2.88528e-09
-5.18963e-09
2.86145e-09
-5.54554e-09
2.8359e-09
-5.8979e-09
2.80863e-09
-6.24648e-09
2.77964e-09
-6.59104e-09
2.74892e-09
-6.93136e-09
2.7165e-09
-7.26722e-09
2.68237e-09
-7.59843e-09
2.64655e-09
-7.92478e-09
2.60906e-09
-8.2461e-09
2.5699e-09
-8.56222e-09
2.52911e-09
-8.87295e-09
2.48671e-09
-9.17814e-09
2.44273e-09
-9.4776e-09
2.39718e-09
-9.77118e-09
2.35011e-09
-1.00587e-08
2.30154e-09
-1.034e-08
2.2515e-09
-1.0615e-08
2.20001e-09
-1.08834e-08
2.14712e-09
-1.11453e-08
2.09284e-09
-1.14003e-08
2.03722e-09
-1.16486e-08
1.98028e-09
-1.18899e-08
1.92207e-09
-1.21241e-08
1.86263e-09
-1.23511e-08
1.802e-09
-1.2571e-08
1.74023e-09
-1.27835e-08
1.67737e-09
-1.29885e-08
1.61346e-09
-1.31861e-08
1.54856e-09
-1.33761e-08
1.48272e-09
-1.35584e-08
1.41599e-09
-1.3733e-08
1.34843e-09
-1.38997e-08
1.28009e-09
-1.40587e-08
1.21103e-09
-1.42097e-08
1.14131e-09
-1.43528e-08
1.07101e-09
-1.4488e-08
1.00017e-09
-1.46153e-08
9.28889e-10
-1.47345e-08
8.57225e-10
-1.48457e-08
7.8526e-10
-1.49489e-08
7.13076e-10
-1.5044e-08
6.40753e-10
-1.5131e-08
5.68374e-10
-1.52098e-08
4.96023e-10
-1.52805e-08
4.23784e-10
-1.53428e-08
3.51739e-10
-1.53969e-08
2.79973e-10
-1.54425e-08
2.08568e-10
-1.54798e-08
1.37608e-10
-1.55084e-08
6.71733e-11
-1.55276e-08
-2.9068e-12
-1.55385e-08
-7.20493e-11
-1.55409e-08
-1.40323e-10
-1.55347e-08
-2.07676e-10
-1.55197e-08
-2.74128e-10
-1.54958e-08
-3.39522e-10
-1.5463e-08
-4.03748e-10
-1.54212e-08
-4.66747e-10
-1.53704e-08
-5.28429e-10
-1.53105e-08
-5.88696e-10
-1.52416e-08
-6.47449e-10
-1.51635e-08
-7.04639e-10
-1.50762e-08
-7.60177e-10
-1.49796e-08
-8.13939e-10
-1.48737e-08
-8.65836e-10
-1.47584e-08
-9.15793e-10
-1.46334e-08
-9.63703e-10
-1.44987e-08
-1.00948e-09
-1.4354e-08
-1.05305e-09
-1.41992e-08
-1.09438e-09
-1.40339e-08
-1.13342e-09
-1.38578e-08
-1.17033e-09
-1.36706e-08
-1.20534e-09
-1.3472e-08
-1.23909e-09
-1.32613e-08
-1.27271e-09
-1.30381e-08
-1.30815e-09
-1.28018e-08
-1.34842e-09
-1.25516e-08
-1.39797e-09
-1.22868e-08
-1.46267e-09
-1.20066e-08
-1.54953e-09
-1.17105e-08
-1.66592e-09
-1.13977e-08
-1.81817e-09
-1.10681e-08
-2.00985e-09
-1.07213e-08
-2.24012e-09
-1.03575e-08
-2.50257e-09
-2.78546e-09
-9.97689e-09
-1.5909e-10
1.30515e-09
-4.56368e-10
2.45408e-09
-8.14428e-10
2.97356e-09
-1.19926e-09
3.21229e-09
-1.59555e-09
3.32144e-09
-1.99625e-09
3.36844e-09
-2.398e-09
3.38436e-09
-2.79918e-09
3.38397e-09
-3.19891e-09
3.37456e-09
-3.5967e-09
3.3598e-09
-3.99219e-09
3.34153e-09
-4.38513e-09
3.32065e-09
-4.77528e-09
3.29756e-09
-5.16241e-09
3.27243e-09
-5.54628e-09
3.24532e-09
-5.92667e-09
3.21623e-09
-6.30331e-09
3.18517e-09
-6.67597e-09
3.15216e-09
-7.0444e-09
3.11719e-09
-7.40837e-09
3.08028e-09
-7.76763e-09
3.04145e-09
-8.12196e-09
3.00072e-09
-8.47114e-09
2.95811e-09
-8.81497e-09
2.91364e-09
-9.15325e-09
2.86734e-09
-9.48578e-09
2.81923e-09
-9.81237e-09
2.76934e-09
-1.01328e-08
2.71771e-09
-1.0447e-08
2.66435e-09
-1.07547e-08
2.60931e-09
-1.10558e-08
2.55263e-09
-1.135e-08
2.49433e-09
-1.16373e-08
2.43446e-09
-1.19175e-08
2.37306e-09
-1.21904e-08
2.31016e-09
-1.24559e-08
2.24582e-09
-1.27139e-08
2.18008e-09
-1.29642e-08
2.11298e-09
-1.32067e-08
2.04457e-09
-1.34414e-08
1.9749e-09
-1.3668e-08
1.90403e-09
-1.38865e-08
1.832e-09
-1.40967e-08
1.75887e-09
-1.42987e-08
1.68469e-09
-1.44922e-08
1.60953e-09
-1.46772e-08
1.53345e-09
-1.48536e-08
1.45651e-09
-1.50213e-08
1.37877e-09
-1.51803e-08
1.3003e-09
-1.53305e-08
1.22117e-09
-1.54718e-08
1.14146e-09
-1.56042e-08
1.06124e-09
-1.57276e-08
9.80578e-10
-1.58419e-08
8.9956e-10
-1.59472e-08
8.18263e-10
-1.60433e-08
7.36768e-10
-1.61303e-08
6.55155e-10
-1.62079e-08
5.73508e-10
-1.62763e-08
4.9191e-10
-1.63352e-08
4.10444e-10
-1.63848e-08
3.29195e-10
-1.64247e-08
2.48247e-10
-1.64551e-08
1.67687e-10
-1.64758e-08
8.75981e-11
-1.6487e-08
8.06362e-12
-1.64884e-08
-7.08415e-11
-1.64799e-08
-1.48971e-10
-1.64613e-08
-2.2633e-10
-1.64328e-08
-3.02674e-10
-1.63942e-08
-3.78064e-10
-1.63455e-08
-4.52371e-10
-1.62866e-08
-5.25496e-10
-1.62175e-08
-5.97373e-10
-1.61382e-08
-6.67901e-10
-1.60486e-08
-7.37023e-10
-1.59487e-08
-8.04622e-10
-1.58383e-08
-8.70643e-10
-1.57174e-08
-9.3497e-10
-1.55858e-08
-9.97539e-10
-1.54434e-08
-1.05826e-09
-1.52901e-08
-1.11705e-09
-1.51258e-08
-1.17383e-09
-1.49503e-08
-1.22859e-09
-1.47635e-08
-1.28123e-09
-1.4565e-08
-1.33183e-09
-1.43549e-08
-1.38052e-09
-1.41327e-08
-1.42755e-09
-1.38982e-08
-1.4736e-09
-1.36511e-08
-1.51984e-09
-1.33912e-08
-1.56818e-09
-1.3118e-08
-1.62168e-09
-1.28313e-08
-1.68478e-09
-1.25307e-08
-1.76328e-09
-1.22162e-08
-1.86415e-09
-1.18876e-08
-1.99466e-09
-1.15449e-08
-2.16102e-09
-1.11883e-08
-2.36667e-09
-1.08179e-08
-2.61065e-09
-1.04342e-08
-2.88645e-09
-3.18227e-09
-1.00375e-08
-1.70426e-10
1.47551e-09
-4.88707e-10
2.77226e-09
-8.72212e-10
3.35696e-09
-1.28451e-09
3.62448e-09
-1.70924e-09
3.74607e-09
-2.13888e-09
3.79802e-09
-2.56989e-09
3.81532e-09
-3.00047e-09
3.81454e-09
-3.42966e-09
3.80378e-09
-3.85689e-09
3.78708e-09
-4.28175e-09
3.76645e-09
-4.70392e-09
3.74288e-09
-5.1231e-09
3.7168e-09
-5.53905e-09
3.68841e-09
-5.9515e-09
3.65777e-09
-6.36019e-09
3.62489e-09
-6.76486e-09
3.58979e-09
-7.16527e-09
3.55248e-09
-7.56115e-09
3.51298e-09
-7.95227e-09
3.47129e-09
-8.33837e-09
3.42745e-09
-8.71921e-09
3.38148e-09
-9.09458e-09
3.33341e-09
-9.46425e-09
3.28326e-09
-9.82799e-09
3.23106e-09
-1.01856e-08
3.17685e-09
-1.05368e-08
3.12064e-09
-1.08815e-08
3.06248e-09
-1.12194e-08
3.00239e-09
-1.15503e-08
2.94042e-09
-1.18741e-08
2.8766e-09
-1.21905e-08
2.81098e-09
-1.24994e-08
2.74359e-09
-1.28005e-08
2.67449e-09
-1.30938e-08
2.60372e-09
-1.33791e-08
2.53134e-09
-1.36562e-08
2.45739e-09
-1.3925e-08
2.38194e-09
-1.41853e-08
2.30502e-09
-1.44369e-08
2.22671e-09
-1.46798e-08
2.14705e-09
-1.49138e-08
2.0661e-09
-1.51388e-08
1.98392e-09
-1.53546e-08
1.90058e-09
-1.55612e-08
1.81612e-09
-1.57583e-08
1.73063e-09
-1.59459e-08
1.64416e-09
-1.61239e-08
1.55679e-09
-1.62921e-08
1.46859e-09
-1.64506e-08
1.37964e-09
-1.65991e-08
1.29002e-09
-1.67377e-08
1.19981e-09
-1.68661e-08
1.10907e-09
-1.69845e-08
1.0179e-09
-1.70926e-08
9.26377e-10
-1.71904e-08
8.34574e-10
-1.72779e-08
7.42573e-10
-1.7355e-08
6.50459e-10
-1.74215e-08
5.58315e-10
-1.74776e-08
4.66227e-10
-1.75229e-08
3.74284e-10
-1.75576e-08
2.82577e-10
-1.75814e-08
1.91196e-10
-1.75944e-08
1.00238e-10
-1.75965e-08
9.84086e-12
-1.75876e-08
-7.98683e-11
-1.75676e-08
-1.69078e-10
-1.75364e-08
-2.57565e-10
-1.74939e-08
-3.45141e-10
-1.74402e-08
-4.31714e-10
-1.73752e-08
-5.1735e-10
-1.72988e-08
-6.01827e-10
-1.72112e-08
-6.85109e-10
-1.71121e-08
-7.67115e-10
-1.70016e-08
-8.47738e-10
-1.68795e-08
-9.26915e-10
-1.67458e-08
-1.00455e-09
-1.66004e-08
-1.08056e-09
-1.64432e-08
-1.15488e-09
-1.62741e-08
-1.22741e-09
-1.60931e-08
-1.29811e-09
-1.59001e-08
-1.36691e-09
-1.5695e-08
-1.43374e-09
-1.54777e-08
-1.49862e-09
-1.52481e-08
-1.56154e-09
-1.5006e-08
-1.62264e-09
-1.47514e-08
-1.68226e-09
-1.44841e-08
-1.741e-09
-1.4204e-08
-1.80002e-09
-1.39111e-08
-1.86126e-09
-1.36051e-08
-1.92774e-09
-1.32862e-08
-2.00388e-09
-1.29543e-08
-2.09541e-09
-1.26095e-08
-2.20921e-09
-1.22519e-08
-2.35248e-09
-1.18818e-08
-2.53136e-09
-1.14994e-08
-2.74922e-09
-1.11051e-08
-3.00505e-09
-1.06992e-08
-3.29231e-09
-3.59914e-09
-1.02822e-08
-1.84961e-10
1.66021e-09
-5.29666e-10
3.11667e-09
-9.44205e-10
3.77129e-09
-1.38923e-09
4.06936e-09
-1.84714e-09
4.20388e-09
-2.30995e-09
4.26076e-09
-2.77396e-09
4.27927e-09
-3.23735e-09
4.27788e-09
-3.69921e-09
4.26555e-09
-4.15896e-09
4.24671e-09
-4.61621e-09
4.22353e-09
-5.07063e-09
4.19708e-09
-5.52191e-09
4.16784e-09
-5.96975e-09
4.13599e-09
-6.41386e-09
4.10163e-09
-6.85394e-09
4.06476e-09
-7.2897e-09
4.0254e-09
-7.72088e-09
3.98355e-09
-8.14719e-09
3.93924e-09
-8.56837e-09
3.89248e-09
-8.98418e-09
3.8433e-09
-9.39436e-09
3.79172e-09
-9.79868e-09
3.73777e-09
-1.01969e-08
3.68149e-09
-1.05888e-08
3.62291e-09
-1.09741e-08
3.56207e-09
-1.13527e-08
3.49901e-09
-1.17242e-08
3.43376e-09
-1.20884e-08
3.36637e-09
-1.24451e-08
3.29689e-09
-1.2794e-08
3.22536e-09
-1.3135e-08
3.15182e-09
-1.34677e-08
3.07632e-09
-1.37921e-08
2.99891e-09
-1.41079e-08
2.91964e-09
-1.44149e-08
2.83855e-09
-1.4713e-08
2.7557e-09
-1.50021e-08
2.67115e-09
-1.52818e-08
2.58495e-09
-1.55522e-08
2.49717e-09
-1.5813e-08
2.40787e-09
-1.60641e-08
2.31712e-09
-1.63053e-08
2.22499e-09
-1.65365e-08
2.13154e-09
-1.67575e-08
2.03686e-09
-1.69681e-08
1.94101e-09
-1.71682e-08
1.84408e-09
-1.73576e-08
1.74612e-09
-1.75363e-08
1.64722e-09
-1.77041e-08
1.54746e-09
-1.78608e-08
1.4469e-09
-1.80065e-08
1.34564e-09
-1.8141e-08
1.24374e-09
-1.82643e-08
1.1413e-09
-1.83762e-08
1.03839e-09
-1.84768e-08
9.35103e-10
-1.85658e-08
8.31534e-10
-1.86433e-08
7.27771e-10
-1.87091e-08
6.23906e-10
-1.87632e-08
5.20031e-10
-1.88054e-08
4.16238e-10
-1.88356e-08
3.12615e-10
-1.88538e-08
2.09251e-10
-1.88599e-08
1.06226e-10
-1.88536e-08
3.51839e-12
-1.88347e-08
-9.87202e-11
-1.88036e-08
-2.00149e-10
-1.87604e-08
-3.00797e-10
-1.87048e-08
-4.00755e-10
-1.86367e-08
-4.99833e-10
-1.85562e-08
-5.97918e-10
-1.84632e-08
-6.9495e-10
-1.83576e-08
-7.90817e-10
-1.82393e-08
-8.85435e-10
-1.81084e-08
-9.78734e-10
-1.79649e-08
-1.0706e-09
-1.78085e-08
-1.16097e-09
-1.76394e-08
-1.24976e-09
-1.74574e-08
-1.33689e-09
-1.72626e-08
-1.42229e-09
-1.7055e-08
-1.50588e-09
-1.68344e-08
-1.5876e-09
-1.66009e-08
-1.66741e-09
-1.63545e-08
-1.74528e-09
-1.6095e-08
-1.82121e-09
-1.58225e-08
-1.89535e-09
-1.5537e-08
-1.96798e-09
-1.52384e-08
-2.03974e-09
-1.49267e-08
-2.11178e-09
-1.46021e-08
-2.18598e-09
-1.42646e-08
-2.26537e-09
-1.39143e-08
-2.35423e-09
-1.35515e-08
-2.45831e-09
-1.31764e-08
-2.58441e-09
-1.27892e-08
-2.73963e-09
-1.23905e-08
-2.93006e-09
-1.19805e-08
-3.15905e-09
-1.15599e-08
-3.42555e-09
-1.11289e-08
-3.72305e-09
-4.03987e-09
-1.06879e-08
-1.98725e-10
1.85885e-09
-5.70118e-10
3.48777e-09
-1.01736e-09
4.21826e-09
-1.49781e-09
4.54959e-09
-1.99241e-09
4.69831e-09
-2.49247e-09
4.76069e-09
-2.99393e-09
4.78064e-09
-3.49482e-09
4.7787e-09
-3.99409e-09
4.76476e-09
-4.4911e-09
4.74365e-09
-4.98542e-09
4.71776e-09
-5.47667e-09
4.68821e-09
-5.96451e-09
4.65553e-09
-6.44864e-09
4.61994e-09
-6.92874e-09
4.58152e-09
-7.4045e-09
4.5403e-09
-7.87561e-09
4.49629e-09
-8.34179e-09
4.44953e-09
-8.80273e-09
4.40001e-09
-9.25816e-09
4.34777e-09
-9.7078e-09
4.29284e-09
-1.01514e-08
4.23523e-09
-1.05886e-08
4.17499e-09
-1.10193e-08
4.11214e-09
-1.1443e-08
4.04671e-09
-1.18597e-08
3.97876e-09
-1.2269e-08
3.90831e-09
-1.26706e-08
3.83541e-09
-1.30643e-08
3.76011e-09
-1.34499e-08
3.68246e-09
-1.38271e-08
3.60252e-09
-1.41956e-08
3.52032e-09
-1.45553e-08
3.43594e-09
-1.4906e-08
3.34942e-09
-1.52473e-08
3.26083e-09
-1.55791e-08
3.17021e-09
-1.59012e-08
3.07764e-09
-1.62134e-08
2.98316e-09
-1.65154e-08
2.88685e-09
-1.68072e-08
2.78876e-09
-1.70884e-08
2.68897e-09
-1.7359e-08
2.58755e-09
-1.76186e-08
2.48456e-09
-1.78672e-08
2.38009e-09
-1.81046e-08
2.27421e-09
-1.83306e-08
2.167e-09
-1.85449e-08
2.05853e-09
-1.87476e-08
1.9489e-09
-1.89385e-08
1.83818e-09
-1.91173e-08
1.72645e-09
-1.92841e-08
1.61379e-09
-1.94386e-08
1.5003e-09
-1.95808e-08
1.38604e-09
-1.97106e-08
1.27113e-09
-1.98278e-08
1.15564e-09
-1.99323e-08
1.03966e-09
-2.0024e-08
9.23288e-10
-2.01028e-08
8.06621e-10
-2.01687e-08
6.89752e-10
-2.02214e-08
5.72777e-10
-2.0261e-08
4.5579e-10
-2.02874e-08
3.38887e-10
-2.03003e-08
2.22165e-10
-2.02999e-08
1.05726e-10
-2.02867e-08
-9.82258e-12
-2.02599e-08
-1.25715e-10
-2.02193e-08
-2.40891e-10
-2.0165e-08
-3.5529e-10
-2.0097e-08
-4.68936e-10
-2.00153e-08
-5.81719e-10
-1.99198e-08
-6.93588e-10
-1.98106e-08
-8.04381e-10
-1.96875e-08
-9.1408e-10
-1.95506e-08
-1.02253e-09
-1.93998e-08
-1.12968e-09
-1.92352e-08
-1.23542e-09
-1.90567e-08
-1.33966e-09
-1.88643e-08
-1.44235e-09
-1.8658e-08
-1.54338e-09
-1.84379e-08
-1.64267e-09
-1.82039e-08
-1.74016e-09
-1.79561e-08
-1.83576e-09
-1.76943e-08
-1.92942e-09
-1.74187e-08
-2.02111e-09
-1.71292e-08
-2.11083e-09
-1.6826e-08
-2.19872e-09
-1.6509e-08
-2.28506e-09
-1.61785e-08
-2.37045e-09
-1.58343e-08
-2.456e-09
-1.54768e-08
-2.54361e-09
-1.51061e-08
-2.63621e-09
-1.47223e-08
-2.73806e-09
-1.43258e-08
-2.85482e-09
-1.39169e-08
-2.9932e-09
-1.34962e-08
-3.16024e-09
-1.30643e-08
-3.36194e-09
-1.26217e-08
-3.60159e-09
-1.21692e-08
-3.87816e-09
-1.17073e-08
-4.18515e-09
-4.51084e-09
-1.12366e-08
-2.16808e-10
2.07562e-09
-6.20662e-10
3.89178e-09
-1.10629e-09
4.70404e-09
-1.62747e-09
5.07089e-09
-2.16358e-09
5.23449e-09
-2.7053e-09
5.30243e-09
-3.24833e-09
5.32363e-09
-3.79063e-09
5.32089e-09
-4.3311e-09
5.30509e-09
-4.86912e-09
5.2815e-09
-5.4042e-09
5.25267e-09
-5.93597e-09
5.21983e-09
-6.46406e-09
5.18352e-09
-6.98812e-09
5.14397e-09
-7.50781e-09
5.10126e-09
-8.02281e-09
5.05542e-09
-8.53281e-09
5.00647e-09
-9.0375e-09
4.95443e-09
-9.53658e-09
4.89931e-09
-1.00297e-08
4.84114e-09
-1.05167e-08
4.77995e-09
-1.09972e-08
4.71577e-09
-1.14709e-08
4.64865e-09
-1.19375e-08
4.57863e-09
-1.23967e-08
4.50574e-09
-1.28482e-08
4.43005e-09
-1.32917e-08
4.35158e-09
-1.37269e-08
4.2704e-09
-1.41535e-08
4.18656e-09
-1.45713e-08
4.10009e-09
-1.49799e-08
4.01107e-09
-1.53791e-08
3.91954e-09
-1.57686e-08
3.82555e-09
-1.61483e-08
3.72917e-09
-1.65179e-08
3.63046e-09
-1.68771e-08
3.52948e-09
-1.72258e-08
3.42629e-09
-1.75636e-08
3.32097e-09
-1.78905e-08
3.21359e-09
-1.82061e-08
3.10422e-09
-1.85101e-08
2.99293e-09
-1.88025e-08
2.8798e-09
-1.90829e-08
2.76492e-09
-1.93512e-08
2.64836e-09
-1.96072e-08
2.5302e-09
-1.98506e-08
2.41052e-09
-2.00814e-08
2.28942e-09
-2.02993e-08
2.16698e-09
-2.05042e-08
2.04327e-09
-2.06959e-08
1.9184e-09
-2.08744e-08
1.79245e-09
-2.10395e-08
1.66551e-09
-2.1191e-08
1.53767e-09
-2.13288e-08
1.40904e-09
-2.14528e-08
1.2797e-09
-2.15628e-08
1.14975e-09
-2.16587e-08
1.0193e-09
-2.17404e-08
8.88447e-10
-2.18079e-08
7.57288e-10
-2.18609e-08
6.25925e-10
-2.18995e-08
4.94461e-10
-2.19235e-08
3.62996e-10
-2.1933e-08
2.31631e-10
-2.19278e-08
1.00464e-10
-2.19071e-08
-3.06109e-11
-2.1872e-08
-1.61062e-10
-2.1822e-08
-2.91018e-10
-2.17572e-08
-4.20305e-10
-2.16774e-08
-5.48924e-10
-2.15824e-08
-6.76734e-10
-2.14724e-08
-8.03626e-10
-2.13473e-08
-9.29496e-10
-2.12071e-08
-1.05425e-09
-2.10518e-08
-1.1778e-09
-2.08814e-08
-1.30004e-09
-2.0696e-08
-1.42087e-09
-2.04956e-08
-1.54021e-09
-2.02801e-08
-1.65796e-09
-2.00496e-08
-1.77402e-09
-1.98041e-08
-1.8883e-09
-1.95437e-08
-2.00073e-09
-1.92684e-08
-2.1112e-09
-1.89781e-08
-2.21967e-09
-1.86731e-08
-2.3261e-09
-1.83534e-08
-2.4305e-09
-1.80191e-08
-2.53297e-09
-1.76702e-08
-2.6338e-09
-1.7307e-08
-2.73356e-09
-1.69296e-08
-2.83333e-09
-1.65382e-08
-2.93497e-09
-1.6133e-08
-3.04135e-09
-1.57142e-08
-3.15667e-09
-1.52824e-08
-3.28647e-09
-1.48382e-08
-3.43735e-09
-1.4382e-08
-3.61625e-09
-1.39149e-08
-3.82906e-09
-1.34374e-08
-4.07901e-09
-1.29505e-08
-4.36505e-09
-1.24548e-08
-4.68076e-09
-5.01475e-09
-1.19508e-08
-2.34609e-10
2.31002e-09
-6.72443e-10
4.32952e-09
-1.19938e-09
5.23093e-09
-1.7651e-09
5.63658e-09
-2.34712e-09
5.8165e-09
-2.93527e-09
5.89057e-09
-3.52485e-09
5.9132e-09
-4.11362e-09
5.90963e-09
-4.7004e-09
5.89183e-09
-5.28449e-09
5.86553e-09
-5.8654e-09
5.83351e-09
-6.44271e-09
5.79706e-09
-7.01605e-09
5.75677e-09
-7.58505e-09
5.71288e-09
-8.14935e-09
5.66548e-09
-8.70861e-09
5.61461e-09
-9.26248e-09
5.56027e-09
-9.81063e-09
5.5025e-09
-1.03527e-08
5.44131e-09
-1.08884e-08
5.37673e-09
-1.14174e-08
5.3088e-09
-1.19393e-08
5.23756e-09
-1.24539e-08
5.16304e-09
-1.29607e-08
5.08529e-09
-1.34595e-08
5.00436e-09
-1.39499e-08
4.92029e-09
-1.44316e-08
4.83315e-09
-1.49043e-08
4.74298e-09
-1.53677e-08
4.64983e-09
-1.58214e-08
4.55377e-09
-1.62653e-08
4.45485e-09
-1.66989e-08
4.35312e-09
-1.71221e-08
4.24865e-09
-1.75346e-08
4.1415e-09
-1.7936e-08
4.03175e-09
-1.83262e-08
3.91946e-09
-1.87049e-08
3.8047e-09
-1.90717e-08
3.68755e-09
-1.94265e-08
3.5681e-09
-1.9769e-08
3.44642e-09
-2.00989e-08
3.32259e-09
-2.04159e-08
3.19671e-09
-2.07199e-08
3.06884e-09
-2.10106e-08
2.93907e-09
-2.12878e-08
2.8075e-09
-2.15513e-08
2.67419e-09
-2.18009e-08
2.53924e-09
-2.20365e-08
2.40274e-09
-2.22578e-08
2.26479e-09
-2.24647e-08
2.12547e-09
-2.26571e-08
1.9849e-09
-2.28347e-08
1.84318e-09
-2.29974e-08
1.7004e-09
-2.31451e-08
1.55669e-09
-2.32775e-08
1.41213e-09
-2.33946e-08
1.26684e-09
-2.34961e-08
1.12092e-09
-2.35821e-08
9.74464e-10
-2.36523e-08
8.27588e-10
-2.37066e-08
6.80393e-10
-2.3745e-08
5.32986e-10
-2.37675e-08
3.85479e-10
-2.37738e-08
2.37987e-10
-2.37641e-08
9.06293e-11
-2.37385e-08
-5.63134e-11
-2.36965e-08
-2.03213e-10
-2.36382e-08
-3.49553e-10
-2.35633e-08
-4.95302e-10
-2.3472e-08
-6.40324e-10
-2.33642e-08
-7.8459e-10
-2.324e-08
-9.27958e-10
-2.30992e-08
-1.07031e-09
-2.2942e-08
-1.21156e-09
-2.27684e-08
-1.35158e-09
-2.25783e-08
-1.49028e-09
-2.23719e-08
-1.62754e-09
-2.21491e-08
-1.76327e-09
-2.191e-08
-1.89734e-09
-2.16545e-08
-2.02967e-09
-2.13828e-08
-2.16015e-09
-2.1095e-08
-2.28869e-09
-2.0791e-08
-2.41521e-09
-2.04711e-08
-2.53963e-09
-2.01354e-08
-2.66191e-09
-1.97839e-08
-2.78205e-09
-1.94168e-08
-2.90013e-09
-1.90343e-08
-3.01642e-09
-1.86365e-08
-3.13149e-09
-1.82235e-08
-3.24638e-09
-1.77957e-08
-3.36289e-09
-1.73532e-08
-3.48386e-09
-1.68967e-08
-3.61339e-09
-1.64265e-08
-3.75689e-09
-1.59433e-08
-3.92086e-09
-1.54478e-08
-4.11206e-09
-1.4941e-08
-4.33625e-09
-1.44238e-08
-4.59659e-09
-1.38971e-08
-4.89202e-09
-1.33619e-08
-5.21623e-09
-5.55796e-09
-1.28187e-08
-2.55683e-10
2.56588e-09
-7.32719e-10
4.80666e-09
-1.30642e-09
5.80468e-09
-1.92203e-09
6.25218e-09
-2.55513e-09
6.44957e-09
-3.19473e-09
6.5301e-09
-3.83578e-09
6.55415e-09
-4.47586e-09
6.5496e-09
-5.11374e-09
6.52959e-09
-5.74867e-09
6.50037e-09
-6.38015e-09
6.46491e-09
-7.00772e-09
6.42459e-09
-7.63101e-09
6.38003e-09
-8.24961e-09
6.33149e-09
-8.86316e-09
6.27905e-09
-9.47128e-09
6.22275e-09
-1.00736e-08
6.16261e-09
-1.06698e-08
6.09866e-09
-1.12594e-08
6.03091e-09
-1.18422e-08
5.95941e-09
-1.24176e-08
5.88418e-09
-1.29854e-08
5.80528e-09
-1.35452e-08
5.72274e-09
-1.40967e-08
5.63661e-09
-1.46393e-08
5.54695e-09
-1.51729e-08
5.45381e-09
-1.56971e-08
5.35724e-09
-1.62114e-08
5.2573e-09
-1.67157e-08
5.15405e-09
-1.72096e-08
5.04756e-09
-1.76927e-08
4.93788e-09
-1.81648e-08
4.82508e-09
-1.86255e-08
4.70923e-09
-1.90745e-08
4.5904e-09
-1.95116e-08
4.46866e-09
-1.99363e-08
4.34409e-09
-2.03484e-08
4.21675e-09
-2.07476e-08
4.08674e-09
-2.11336e-08
3.95414e-09
-2.15061e-08
3.81903e-09
-2.18649e-08
3.68149e-09
-2.22097e-08
3.54162e-09
-2.25403e-08
3.3995e-09
-2.28564e-08
3.25524e-09
-2.31578e-08
3.10892e-09
-2.34443e-08
2.96065e-09
-2.37157e-08
2.81053e-09
-2.39716e-08
2.65865e-09
-2.4212e-08
2.50512e-09
-2.44365e-08
2.35004e-09
-2.4645e-08
2.19351e-09
-2.48374e-08
2.03565e-09
-2.50133e-08
1.87655e-09
-2.51727e-08
1.71634e-09
-2.53155e-08
1.55511e-09
-2.54414e-08
1.39299e-09
-2.55504e-08
1.23008e-09
-2.56423e-08
1.0665e-09
-2.5717e-08
9.02375e-10
-2.57744e-08
7.37816e-10
-2.58143e-08
5.72945e-10
-2.58367e-08
4.07883e-10
-2.58414e-08
2.4275e-10
-2.58285e-08
7.76687e-11
-2.57975e-08
-8.72963e-11
-2.57488e-08
-2.51901e-10
-2.56823e-08
-4.16112e-10
-2.55978e-08
-5.79793e-10
-2.54954e-08
-7.42817e-10
-2.53751e-08
-9.05069e-10
-2.52368e-08
-1.06643e-09
-2.50805e-08
-1.22678e-09
-2.49062e-08
-1.386e-09
-2.4714e-08
-1.54398e-09
-2.45039e-08
-1.70057e-09
-2.42759e-08
-1.85568e-09
-2.40301e-08
-2.00917e-09
-2.37665e-08
-2.16094e-09
-2.34852e-08
-2.31087e-09
-2.31864e-08
-2.45887e-09
-2.28702e-08
-2.60482e-09
-2.25366e-08
-2.74864e-09
-2.21859e-08
-2.89023e-09
-2.18181e-08
-3.02953e-09
-2.14335e-08
-3.16654e-09
-2.10323e-08
-3.30131e-09
-2.06145e-08
-3.4341e-09
-2.01804e-08
-3.56545e-09
-1.97303e-08
-3.69638e-09
-1.92644e-08
-3.82864e-09
-1.87832e-08
-3.96501e-09
-1.8287e-08
-4.10947e-09
-1.77766e-08
-4.26736e-09
-1.72524e-08
-4.445e-09
-1.67155e-08
-4.64901e-09
-1.61667e-08
-4.88503e-09
-1.56071e-08
-5.15613e-09
-1.50379e-08
-5.46125e-09
-1.446e-08
-5.79417e-09
-6.14396e-09
-1.38741e-08
-2.78057e-10
2.84403e-09
-7.97342e-10
5.32593e-09
-1.42207e-09
6.42938e-09
-2.0925e-09
6.92257e-09
-2.78198e-09
7.13902e-09
-3.47854e-09
7.22664e-09
-4.17666e-09
7.25229e-09
-4.87372e-09
7.24673e-09
-5.56839e-09
7.22436e-09
-6.25986e-09
7.19199e-09
-6.94758e-09
7.15282e-09
-7.63108e-09
7.10831e-09
-8.30994e-09
7.05912e-09
-8.98375e-09
7.00551e-09
-9.65211e-09
6.94758e-09
-1.03146e-08
6.88537e-09
-1.09709e-08
6.81892e-09
-1.16205e-08
6.74824e-09
-1.2263e-08
6.67337e-09
-1.28981e-08
6.59435e-09
-1.35253e-08
6.51121e-09
-1.41441e-08
6.42402e-09
-1.47543e-08
6.3328e-09
-1.53554e-08
6.23762e-09
-1.59469e-08
6.13853e-09
-1.65286e-08
6.03557e-09
-1.71001e-08
5.9288e-09
-1.76609e-08
5.81828e-09
-1.82108e-08
5.70408e-09
-1.87494e-08
5.58624e-09
-1.92763e-08
5.46486e-09
-1.97912e-08
5.33998e-09
-2.02938e-08
5.21171e-09
-2.07837e-08
5.08011e-09
-2.12605e-08
4.94527e-09
-2.17239e-08
4.80727e-09
-2.21736e-08
4.6662e-09
-2.26092e-08
4.52215e-09
-2.30305e-08
4.37521e-09
-2.3437e-08
4.22547e-09
-2.38285e-08
4.07301e-09
-2.42048e-08
3.91793e-09
-2.45655e-08
3.76032e-09
-2.49104e-08
3.60029e-09
-2.52393e-08
3.43792e-09
-2.55518e-08
3.27333e-09
-2.58477e-08
3.10663e-09
-2.61269e-08
2.93792e-09
-2.63889e-08
2.76732e-09
-2.66337e-08
2.59495e-09
-2.6861e-08
2.42091e-09
-2.70706e-08
2.24533e-09
-2.72623e-08
2.06832e-09
-2.74359e-08
1.89e-09
-2.75912e-08
1.7105e-09
-2.77281e-08
1.52993e-09
-2.78464e-08
1.34841e-09
-2.7946e-08
1.16608e-09
-2.80267e-08
9.83065e-10
-2.80885e-08
7.99489e-10
-2.8131e-08
6.15486e-10
-2.81543e-08
4.31188e-10
-2.81583e-08
2.46727e-10
-2.81429e-08
6.22434e-11
-2.81081e-08
-1.22072e-10
-2.80536e-08
-3.06359e-10
-2.79796e-08
-4.9018e-10
-2.7886e-08
-6.73508e-10
-2.77728e-08
-8.56211e-10
-2.764e-08
-1.03815e-09
-2.74875e-08
-1.2192e-09
-2.73154e-08
-1.39921e-09
-2.71236e-08
-1.57806e-09
-2.69121e-08
-1.7556e-09
-2.66811e-08
-1.93171e-09
-2.64305e-08
-2.10625e-09
-2.61605e-08
-2.27911e-09
-2.58712e-08
-2.45015e-09
-2.55627e-08
-2.61925e-09
-2.52351e-08
-2.7863e-09
-2.48887e-08
-2.95116e-09
-2.45236e-08
-3.11373e-09
-2.41399e-08
-3.2739e-09
-2.37378e-08
-3.4316e-09
-2.33175e-08
-3.5868e-09
-2.28793e-08
-3.73954e-09
-2.24234e-08
-3.89006e-09
-2.195e-08
-4.03888e-09
-2.14596e-08
-4.18697e-09
-2.09524e-08
-4.33604e-09
-2.04289e-08
-4.48878e-09
-1.98895e-08
-4.64911e-09
-1.93348e-08
-4.82222e-09
-1.87656e-08
-5.01433e-09
-1.81828e-08
-5.23191e-09
-1.75872e-08
-5.4805e-09
-1.69802e-08
-5.7631e-09
-1.63628e-08
-6.07864e-09
-1.57361e-08
-6.42102e-09
-6.77949e-09
-1.51009e-08
-3.03385e-10
3.14737e-09
-8.69844e-10
5.89223e-09
-1.55113e-09
7.11052e-09
-2.28211e-09
7.65342e-09
-3.03378e-09
7.89058e-09
-3.7931e-09
7.98586e-09
-4.55412e-09
8.0132e-09
-5.31401e-09
8.00652e-09
-6.07132e-09
7.9816e-09
-6.82522e-09
7.94582e-09
-7.57508e-09
7.90263e-09
-8.3204e-09
7.8536e-09
-9.06072e-09
7.79943e-09
-9.79558e-09
7.74038e-09
-1.05245e-08
7.67657e-09
-1.12471e-08
7.60804e-09
-1.19629e-08
7.53481e-09
-1.26715e-08
7.4569e-09
-1.33724e-08
7.37436e-09
-1.40652e-08
7.28721e-09
-1.47494e-08
7.19551e-09
-1.54246e-08
7.09931e-09
-1.60904e-08
6.99865e-09
-1.67465e-08
6.8936e-09
-1.73922e-08
6.78421e-09
-1.80274e-08
6.67054e-09
-1.86514e-08
6.55266e-09
-1.92641e-08
6.43063e-09
-1.98648e-08
6.30452e-09
-2.04533e-08
6.1744e-09
-2.1029e-08
6.04033e-09
-2.15917e-08
5.90241e-09
-2.21409e-08
5.7607e-09
-2.26763e-08
5.61529e-09
-2.31973e-08
5.46627e-09
-2.37038e-08
5.31371e-09
-2.41953e-08
5.15772e-09
-2.46715e-08
4.99839e-09
-2.51321e-08
4.83581e-09
-2.55767e-08
4.67008e-09
-2.6005e-08
4.5013e-09
-2.64167e-08
4.32959e-09
-2.68115e-08
4.15504e-09
-2.71891e-08
3.97776e-09
-2.75491e-08
3.79787e-09
-2.78913e-08
3.61547e-09
-2.82153e-08
3.43069e-09
-2.8521e-08
3.24363e-09
-2.8808e-08
3.05442e-09
-2.90761e-08
2.86318e-09
-2.9325e-08
2.67002e-09
-2.95546e-08
2.47508e-09
-2.97646e-08
2.27848e-09
-2.99549e-08
2.08036e-09
-3.01251e-08
1.88084e-09
-3.02753e-08
1.68006e-09
-3.0405e-08
1.47816e-09
-3.05143e-08
1.27528e-09
-3.06028e-08
1.07156e-09
-3.06706e-08
8.67145e-10
-3.07173e-08
6.62172e-10
-3.0743e-08
4.56786e-10
-3.07474e-08
2.51131e-10
-3.07307e-08
4.53593e-11
-3.06925e-08
-1.60425e-10
-3.06331e-08
-3.66048e-10
-3.05522e-08
-5.71353e-10
-3.04499e-08
-7.76197e-10
-3.0326e-08
-9.8043e-10
-3.01806e-08
-1.18391e-09
-3.00136e-08
-1.38646e-09
-2.98251e-08
-1.58796e-09
-2.9615e-08
-1.78825e-09
-2.93835e-08
-1.98718e-09
-2.91305e-08
-2.18461e-09
-2.88563e-08
-2.38039e-09
-2.85609e-08
-2.57439e-09
-2.82444e-08
-2.76647e-09
-2.7907e-08
-2.95647e-09
-2.75489e-08
-3.14427e-09
-2.71703e-08
-3.32971e-09
-2.67713e-08
-3.51266e-09
-2.63521e-08
-3.693e-09
-2.59129e-08
-3.87064e-09
-2.54541e-08
-4.04553e-09
-2.49759e-08
-4.2177e-09
-2.44786e-08
-4.38735e-09
-2.39625e-08
-4.55496e-09
-2.34281e-08
-4.72149e-09
-2.28756e-08
-4.88857e-09
-2.23056e-08
-5.05884e-09
-2.17186e-08
-5.23612e-09
-2.11154e-08
-5.42549e-09
-2.04966e-08
-5.63305e-09
-1.98634e-08
-5.86515e-09
-1.92167e-08
-6.1272e-09
-1.85578e-08
-6.42214e-09
-1.78876e-08
-6.74891e-09
-1.72071e-08
-7.10151e-09
-7.46951e-09
-1.65172e-08
-3.30829e-10
3.47806e-09
-9.48891e-10
6.51e-09
-1.69236e-09
7.85375e-09
-2.49005e-09
8.45093e-09
-3.3103e-09
8.71073e-09
-4.13887e-09
8.81441e-09
-4.96928e-09
8.84367e-09
-5.79847e-09
8.83583e-09
-6.62487e-09
8.80817e-09
-7.44757e-09
8.76872e-09
-8.26593e-09
8.7212e-09
-9.07941e-09
8.66728e-09
-9.88751e-09
8.60769e-09
-1.06897e-08
8.54273e-09
-1.14856e-08
8.47252e-09
-1.22746e-08
8.39711e-09
-1.30563e-08
8.31652e-09
-1.38302e-08
8.23078e-09
-1.45957e-08
8.13994e-09
-1.53525e-08
8.04403e-09
-1.61e-08
7.94309e-09
-1.68377e-08
7.83718e-09
-1.75653e-08
7.72635e-09
-1.82822e-08
7.61065e-09
-1.8988e-08
7.49014e-09
-1.96823e-08
7.36489e-09
-2.03646e-08
7.23496e-09
-2.10345e-08
7.10044e-09
-2.16916e-08
6.96139e-09
-2.23353e-08
6.8179e-09
-2.29653e-08
6.67004e-09
-2.35811e-08
6.51791e-09
-2.41822e-08
6.36158e-09
-2.47683e-08
6.20115e-09
-2.53389e-08
6.03671e-09
-2.58936e-08
5.86833e-09
-2.64321e-08
5.69613e-09
-2.69538e-08
5.5202e-09
-2.74585e-08
5.34063e-09
-2.79459e-08
5.15753e-09
-2.84154e-08
4.97102e-09
-2.88669e-08
4.78121e-09
-2.93e-08
4.58821e-09
-2.97142e-08
4.39214e-09
-3.01094e-08
4.19313e-09
-3.0485e-08
3.99129e-09
-3.0841e-08
3.78674e-09
-3.11768e-08
3.57961e-09
-3.14923e-08
3.37003e-09
-3.17872e-08
3.15813e-09
-3.20612e-08
2.94404e-09
-3.2314e-08
2.7279e-09
-3.25454e-08
2.50985e-09
-3.27552e-08
2.29004e-09
-3.29432e-08
2.06861e-09
-3.3109e-08
1.84573e-09
-3.32525e-08
1.62153e-09
-3.33735e-08
1.39618e-09
-3.34718e-08
1.16981e-09
-3.35473e-08
9.42587e-10
-3.35998e-08
7.14654e-10
-3.36293e-08
4.86168e-10
-3.36355e-08
2.57289e-10
-3.36185e-08
2.8222e-11
-3.35782e-08
-2.00996e-10
-3.35144e-08
-4.30151e-10
-3.3427e-08
-6.58993e-10
-3.33161e-08
-8.87402e-10
-3.31816e-08
-1.11521e-09
-3.30234e-08
-1.34227e-09
-3.28415e-08
-1.5684e-09
-3.2636e-08
-1.79344e-09
-3.24069e-08
-2.01724e-09
-3.21543e-08
-2.23964e-09
-3.18783e-08
-2.46046e-09
-3.1579e-08
-2.67954e-09
-3.12565e-08
-2.89673e-09
-3.0911e-08
-3.11184e-09
-3.05426e-08
-3.32473e-09
-3.01514e-08
-3.53523e-09
-2.97377e-08
-3.74317e-09
-2.93017e-08
-3.94841e-09
-2.88437e-08
-4.15081e-09
-2.8364e-08
-4.35025e-09
-2.78628e-08
-4.54665e-09
-2.73404e-08
-4.74001e-09
-2.67973e-08
-4.93052e-09
-2.62336e-08
-5.1186e-09
-2.56499e-08
-5.30516e-09
-2.50466e-08
-5.4918e-09
-2.44242e-08
-5.68107e-09
-2.37835e-08
-5.87671e-09
-2.31251e-08
-6.08371e-09
-2.245e-08
-6.308e-09
-2.17593e-08
-6.5558e-09
-2.10542e-08
-6.8324e-09
-2.03358e-08
-7.14066e-09
-1.96054e-08
-7.47952e-09
-1.88638e-08
-7.84311e-09
-8.22129e-09
-1.81121e-08
-3.61255e-10
3.83923e-09
-1.03585e-09
7.18477e-09
-1.8475e-09
8.66557e-09
-2.71844e-09
9.32203e-09
-3.61407e-09
9.60648e-09
-4.51883e-09
9.71927e-09
-5.42565e-09
9.75055e-09
-6.33118e-09
9.74141e-09
-7.23374e-09
9.71076e-09
-8.13231e-09
9.66734e-09
-9.0262e-09
9.61515e-09
-9.91481e-09
9.55598e-09
-1.07976e-08
9.49059e-09
-1.1674e-08
9.4193e-09
-1.25435e-08
9.34222e-09
-1.34056e-08
9.2594e-09
-1.42598e-08
9.17087e-09
-1.51055e-08
9.07667e-09
-1.59423e-08
8.97683e-09
-1.67696e-08
8.8714e-09
-1.75869e-08
8.76043e-09
-1.83938e-08
8.64399e-09
-1.91897e-08
8.52211e-09
-1.9974e-08
8.39488e-09
-2.07464e-08
8.26235e-09
-2.15063e-08
8.1246e-09
-2.22532e-08
7.98169e-09
-2.29866e-08
7.83369e-09
-2.3706e-08
7.68069e-09
-2.4411e-08
7.52277e-09
-2.5101e-08
7.36e-09
-2.57756e-08
7.19248e-09
-2.64344e-08
7.0203e-09
-2.70768e-08
6.84354e-09
-2.77025e-08
6.66232e-09
-2.83109e-08
6.47673e-09
-2.89018e-08
6.28687e-09
-2.94745e-08
6.09286e-09
-3.00287e-08
5.89479e-09
-3.05639e-08
5.69279e-09
-3.10798e-08
5.48697e-09
-3.1576e-08
5.27745e-09
-3.20521e-08
5.06436e-09
-3.25077e-08
4.84781e-09
-3.29425e-08
4.62794e-09
-3.33561e-08
4.40489e-09
-3.37482e-08
4.17877e-09
-3.41185e-08
3.94974e-09
-3.44666e-08
3.71793e-09
-3.47921e-08
3.48349e-09
-3.50949e-08
3.24656e-09
-3.53744e-08
3.00729e-09
-3.56306e-08
2.76583e-09
-3.58629e-08
2.52234e-09
-3.60714e-08
2.27698e-09
-3.62556e-08
2.02992e-09
-3.64153e-08
1.7813e-09
-3.65505e-08
1.53131e-09
-3.66609e-08
1.28011e-09
-3.67463e-08
1.02787e-09
-3.68066e-08
7.74758e-10
-3.68415e-08
5.20948e-10
-3.68511e-08
2.66623e-10
-3.68352e-08
1.20843e-11
-3.67934e-08
-2.42938e-10
-3.67259e-08
-4.97816e-10
-3.66325e-08
-7.52478e-10
-3.65132e-08
-1.00675e-09
-3.6368e-08
-1.26047e-09
-3.61968e-08
-1.51344e-09
-3.59997e-08
-1.76549e-09
-3.57767e-08
-2.01644e-09
-3.55278e-08
-2.2661e-09
-3.52532e-08
-2.5143e-09
-3.49528e-08
-2.76084e-09
-3.46268e-08
-3.00553e-09
-3.42753e-08
-3.2482e-09
-3.38985e-08
-3.48864e-09
-3.34965e-08
-3.72668e-09
-3.30695e-08
-3.96214e-09
-3.26177e-08
-4.19482e-09
-3.21415e-08
-4.42457e-09
-3.1641e-08
-4.65122e-09
-3.11167e-08
-4.87463e-09
-3.05687e-08
-5.09468e-09
-2.99975e-08
-5.31136e-09
-2.94033e-08
-5.5248e-09
-2.87867e-08
-5.73539e-09
-2.81479e-08
-5.944e-09
-2.74876e-08
-6.15215e-09
-2.68064e-08
-6.36232e-09
-2.61051e-08
-6.57813e-09
-2.53845e-08
-6.8044e-09
-2.46457e-08
-7.04693e-09
-2.38898e-08
-7.31174e-09
-2.31183e-08
-7.604e-09
-2.23325e-08
-7.92646e-09
-2.15339e-08
-8.27812e-09
-2.07239e-08
-8.65325e-09
-9.04206e-09
-1.99033e-08
-3.94257e-10
4.23335e-09
-1.13091e-09
7.92159e-09
-2.01743e-09
9.55229e-09
-2.96881e-09
1.02736e-08
-3.9472e-09
1.0585e-08
-4.93559e-09
1.07078e-08
-5.92626e-09
1.07413e-08
-6.91558e-09
1.07308e-08
-7.90171e-09
1.06969e-08
-8.88358e-09
1.06492e-08
-9.86043e-09
1.05919e-08
-1.08316e-08
1.05271e-08
-1.17966e-08
1.04554e-08
-1.27547e-08
1.03773e-08
-1.37053e-08
1.02928e-08
-1.4648e-08
1.0202e-08
-1.55822e-08
1.0105e-08
-1.65072e-08
1.00017e-08
-1.74225e-08
9.89223e-09
-1.83276e-08
9.77659e-09
-1.92219e-08
9.65484e-09
-2.01049e-08
9.52705e-09
-2.0976e-08
9.39328e-09
-2.18348e-08
9.2536e-09
-2.26805e-08
9.10807e-09
-2.35128e-08
8.95678e-09
-2.4331e-08
8.7998e-09
-2.51347e-08
8.63722e-09
-2.59232e-08
8.4691e-09
-2.66961e-08
8.29555e-09
-2.74528e-08
8.11664e-09
-2.81929e-08
7.93246e-09
-2.89158e-08
7.74312e-09
-2.9621e-08
7.54871e-09
-3.0308e-08
7.34932e-09
-3.09763e-08
7.14508e-09
-3.16254e-08
6.93608e-09
-3.2255e-08
6.72244e-09
-3.28644e-08
6.50429e-09
-3.34532e-08
6.28175e-09
-3.4021e-08
6.05493e-09
-3.45674e-08
5.82398e-09
-3.50919e-08
5.58901e-09
-3.55941e-08
5.35016e-09
-3.60736e-08
5.10758e-09
-3.65301e-08
4.8614e-09
-3.69631e-08
4.61176e-09
-3.73723e-08
4.35883e-09
-3.77574e-08
4.10275e-09
-3.81178e-08
3.84369e-09
-3.84534e-08
3.5818e-09
-3.87636e-08
3.31726e-09
-3.90481e-08
3.05023e-09
-3.93068e-08
2.78086e-09
-3.95391e-08
2.50934e-09
-3.9745e-08
2.23583e-09
-3.9924e-08
1.96051e-09
-4.00762e-08
1.68355e-09
-4.02011e-08
1.40514e-09
-4.02987e-08
1.12547e-09
-4.03688e-08
8.4473e-10
-4.0411e-08
5.63113e-10
-4.04253e-08
2.80825e-10
-4.04122e-08
-1.09165e-12
-4.03702e-08
-2.85005e-10
-4.02998e-08
-5.68154e-10
-4.02011e-08
-8.51176e-10
-4.00738e-08
-1.13389e-09
-3.99182e-08
-1.4161e-09
-3.9734e-08
-1.6976e-09
-3.95214e-08
-1.97819e-09
-3.92804e-08
-2.25765e-09
-3.90109e-08
-2.53579e-09
-3.8713e-08
-2.81238e-09
-3.83867e-08
-3.08722e-09
-3.80322e-08
-3.3601e-09
-3.76495e-08
-3.63081e-09
-3.72388e-08
-3.89916e-09
-3.68005e-08
-4.16492e-09
-3.63346e-08
-4.42791e-09
-3.58414e-08
-4.68791e-09
-3.53212e-08
-4.94472e-09
-3.47743e-08
-5.19815e-09
-3.42009e-08
-5.44802e-09
-3.36014e-08
-5.69421e-09
-3.2976e-08
-5.93665e-09
-3.23252e-08
-6.17547e-09
-3.16494e-08
-6.41101e-09
-3.09492e-08
-6.64409e-09
-3.02251e-08
-6.87614e-09
-2.94778e-08
-7.10952e-09
-2.87082e-08
-7.3477e-09
-2.79172e-08
-7.59532e-09
-2.71061e-08
-7.85793e-09
-2.62762e-08
-8.14136e-09
-2.54293e-08
-8.45057e-09
-2.45672e-08
-8.78822e-09
-2.36916e-08
-9.15335e-09
-2.28042e-08
-9.54041e-09
-9.94003e-09
-2.19062e-08
-4.30048e-10
4.66364e-09
-1.23451e-09
8.72643e-09
-2.203e-09
1.05211e-08
-3.24252e-09
1.13134e-08
-4.31165e-09
1.16543e-08
-5.39179e-09
1.17881e-08
-6.47448e-09
1.18241e-08
-7.55575e-09
1.18121e-08
-8.63359e-09
1.17747e-08
-9.70684e-09
1.17224e-08
-1.07747e-08
1.16597e-08
-1.18364e-08
1.15888e-08
-1.28915e-08
1.15104e-08
-1.39392e-08
1.14249e-08
-1.49789e-08
1.13325e-08
-1.60101e-08
1.12331e-08
-1.70322e-08
1.11269e-08
-1.80444e-08
1.10138e-08
-1.90462e-08
1.08939e-08
-2.0037e-08
1.07672e-08
-2.10162e-08
1.06339e-08
-2.19832e-08
1.04939e-08
-2.29373e-08
1.03474e-08
-2.3878e-08
1.01943e-08
-2.48047e-08
1.00348e-08
-2.57168e-08
9.86896e-09
-2.66138e-08
9.69683e-09
-2.7495e-08
9.51851e-09
-2.83599e-08
9.33407e-09
-2.9208e-08
9.14362e-09
-3.00386e-08
8.94723e-09
-3.08512e-08
8.74501e-09
-3.16452e-08
8.53706e-09
-3.24202e-08
8.32349e-09
-3.31754e-08
8.1044e-09
-3.39104e-08
7.87991e-09
-3.46246e-08
7.65015e-09
-3.53175e-08
7.41523e-09
-3.59886e-08
7.17527e-09
-3.66373e-08
6.93042e-09
-3.72632e-08
6.6808e-09
-3.78659e-08
6.42656e-09
-3.84447e-08
6.16782e-09
-3.89994e-08
5.90473e-09
-3.95294e-08
5.63745e-09
-4.00343e-08
5.36612e-09
-4.05136e-08
5.09091e-09
-4.09669e-08
4.81198e-09
-4.13938e-08
4.52949e-09
-4.17938e-08
4.24361e-09
-4.21666e-08
3.95451e-09
-4.25118e-08
3.66238e-09
-4.2829e-08
3.36739e-09
-4.31178e-08
3.06972e-09
-4.3378e-08
2.76956e-09
-4.36093e-08
2.46709e-09
-4.38113e-08
2.16251e-09
-4.39838e-08
1.85601e-09
-4.41264e-08
1.54781e-09
-4.4239e-08
1.23809e-09
-4.43213e-08
9.27083e-10
-4.43731e-08
6.14996e-10
-4.43942e-08
3.02056e-10
-4.43844e-08
-1.07657e-11
-4.43436e-08
-3.25627e-10
-4.42717e-08
-6.39914e-10
-4.41687e-08
-9.54182e-10
-4.40343e-08
-1.26823e-09
-4.38687e-08
-1.58182e-09
-4.36717e-08
-1.89475e-09
-4.34433e-08
-2.20678e-09
-4.31835e-08
-2.51767e-09
-4.28923e-08
-2.82718e-09
-4.25698e-08
-3.13509e-09
-4.2216e-08
-3.44116e-09
-4.1831e-08
-3.74515e-09
-4.1415e-08
-4.04685e-09
-4.09682e-08
-4.34602e-09
-4.04907e-08
-4.64243e-09
-3.99827e-08
-4.93585e-09
-3.94446e-08
-5.22606e-09
-3.88766e-08
-5.51282e-09
-3.82789e-08
-5.79591e-09
-3.76518e-08
-6.07512e-09
-3.69957e-08
-6.35031e-09
-3.63109e-08
-6.62139e-09
-3.55979e-08
-6.88844e-09
-3.48572e-08
-7.15177e-09
-3.40892e-08
-7.41211e-09
-3.32946e-08
-7.67081e-09
-3.24741e-08
-7.93008e-09
-3.16286e-08
-8.1932e-09
-3.07592e-08
-8.46457e-09
-2.98676e-08
-8.74947e-09
-2.89554e-08
-9.05342e-09
-2.80248e-08
-9.3811e-09
-2.7078e-08
-9.73506e-09
-2.6117e-08
-1.01143e-08
-2.51437e-08
-1.05136e-08
-1.09241e-08
-2.41596e-08
-4.6917e-10
5.13308e-09
-1.3477e-09
9.60525e-09
-2.40569e-09
1.15793e-08
-3.5415e-09
1.24493e-08
-4.70981e-09
1.28227e-08
-5.89026e-09
1.29685e-08
-7.0736e-09
1.30074e-08
-8.25549e-09
1.29939e-08
-9.43373e-09
1.29529e-08
-1.06071e-08
1.28956e-08
-1.17747e-08
1.28271e-08
-1.29357e-08
1.27497e-08
-1.40896e-08
1.26641e-08
-1.52356e-08
1.25707e-08
-1.63731e-08
1.24698e-08
-1.75014e-08
1.23612e-08
-1.86198e-08
1.22451e-08
-1.97277e-08
1.21215e-08
-2.08245e-08
1.19905e-08
-2.19094e-08
1.1852e-08
-2.29818e-08
1.17062e-08
-2.4041e-08
1.15532e-08
-2.50865e-08
1.13928e-08
-2.61175e-08
1.12254e-08
-2.71334e-08
1.10508e-08
-2.81337e-08
1.08693e-08
-2.91176e-08
1.06808e-08
-3.00846e-08
1.04855e-08
-3.10341e-08
1.02834e-08
-3.19654e-08
1.00747e-08
-3.28778e-08
9.85948e-09
-3.37709e-08
9.63779e-09
-3.46438e-08
9.40977e-09
-3.54961e-08
9.17554e-09
-3.63271e-08
8.9352e-09
-3.71362e-08
8.68887e-09
-3.79228e-08
8.43668e-09
-3.86862e-08
8.17876e-09
-3.94261e-08
7.91522e-09
-4.01417e-08
7.64621e-09
-4.08326e-08
7.37187e-09
-4.14982e-08
7.09233e-09
-4.2138e-08
6.80776e-09
-4.27515e-08
6.51831e-09
-4.33382e-08
6.22415e-09
-4.38976e-08
5.92545e-09
-4.44292e-08
5.62238e-09
-4.49324e-08
5.31511e-09
-4.54067e-08
5.00383e-09
-4.58518e-08
4.68871e-09
-4.62672e-08
4.36993e-09
-4.66525e-08
4.04768e-09
-4.70072e-08
3.72215e-09
-4.7331e-08
3.39354e-09
-4.76235e-08
3.06205e-09
-4.78844e-08
2.72789e-09
-4.81132e-08
2.39127e-09
-4.83097e-08
2.05242e-09
-4.84734e-08
1.71156e-09
-4.86041e-08
1.36892e-09
-4.87016e-08
1.02472e-09
-4.87655e-08
6.79186e-10
-4.87957e-08
3.32578e-10
-4.87918e-08
-1.43723e-11
-4.8754e-08
-3.63132e-10
-4.86821e-08
-7.11706e-10
-4.85759e-08
-1.06039e-09
-4.84353e-08
-1.40895e-09
-4.82602e-08
-1.75713e-09
-4.80505e-08
-2.10468e-09
-4.78061e-08
-2.45135e-09
-4.7527e-08
-2.79688e-09
-4.72132e-08
-3.14101e-09
-4.68648e-08
-3.48349e-09
-4.64819e-08
-3.82406e-09
-4.60646e-08
-4.16247e-09
-4.56131e-08
-4.49845e-09
-4.51275e-08
-4.83175e-09
-4.4608e-08
-5.16209e-09
-4.40548e-08
-5.48922e-09
-4.34681e-08
-5.81288e-09
-4.28481e-08
-6.13282e-09
-4.21952e-08
-6.44879e-09
-4.15098e-08
-6.76058e-09
-4.07921e-08
-7.068e-09
-4.00427e-08
-7.37093e-09
-3.92619e-08
-7.6694e-09
-3.84503e-08
-7.96367e-09
-3.76082e-08
-8.25438e-09
-3.67364e-08
-8.54277e-09
-3.58357e-08
-8.8309e-09
-3.4907e-08
-9.12181e-09
-3.39519e-08
-9.41963e-09
-3.29719e-08
-9.72929e-09
-3.19693e-08
-1.00559e-08
-3.09465e-08
-1.04039e-08
-2.9906e-08
-1.07756e-08
-2.88504e-08
-1.11701e-08
-2.77818e-08
-1.15823e-08
-1.20039e-08
-2.67019e-08
-5.11799e-10
5.64504e-09
-1.47108e-09
1.05646e-08
-2.6267e-09
1.27349e-08
-3.86757e-09
1.36902e-08
-5.14412e-09
1.40992e-08
-6.43407e-09
1.42584e-08
-7.72732e-09
1.43006e-08
-9.01911e-09
1.42856e-08
-1.03071e-08
1.42408e-08
-1.15899e-08
1.41783e-08
-1.28665e-08
1.41037e-08
-1.41362e-08
1.40193e-08
-1.53982e-08
1.3926e-08
-1.66518e-08
1.38242e-08
-1.78962e-08
1.37141e-08
-1.91309e-08
1.35957e-08
-2.0355e-08
1.34691e-08
-2.15678e-08
1.33342e-08
-2.27687e-08
1.31912e-08
-2.39568e-08
1.30401e-08
-2.51316e-08
1.28809e-08
-2.62922e-08
1.27137e-08
-2.74381e-08
1.25387e-08
-2.85685e-08
1.23557e-08
-2.96828e-08
1.2165e-08
-3.07802e-08
1.19666e-08
-3.18601e-08
1.17606e-08
-3.29218e-08
1.1547e-08
-3.39645e-08
1.13261e-08
-3.49877e-08
1.10978e-08
-3.59906e-08
1.08622e-08
-3.69725e-08
1.06195e-08
-3.79327e-08
1.03699e-08
-3.88707e-08
1.01133e-08
-3.97856e-08
9.84999e-09
-4.0677e-08
9.58003e-09
-4.1544e-08
9.30356e-09
-4.23862e-08
9.02073e-09
-4.32029e-08
8.73166e-09
-4.39933e-08
8.4365e-09
-4.4757e-08
8.1354e-09
-4.54933e-08
7.82851e-09
-4.62015e-08
7.51599e-09
-4.68811e-08
7.19799e-09
-4.75316e-08
6.87471e-09
-4.81522e-08
6.5463e-09
-4.87426e-08
6.21295e-09
-4.93021e-08
5.87486e-09
-4.98303e-08
5.5322e-09
-5.03266e-08
5.18518e-09
-5.07907e-08
4.83399e-09
-5.12219e-08
4.47885e-09
-5.16198e-08
4.11995e-09
-5.1984e-08
3.75752e-09
-5.23139e-08
3.39177e-09
-5.26091e-08
3.02294e-09
-5.28693e-08
2.65127e-09
-5.30939e-08
2.27698e-09
-5.32826e-08
1.90032e-09
-5.34352e-08
1.52154e-09
-5.35512e-08
1.14089e-09
-5.36305e-08
7.58625e-10
-5.36728e-08
3.75018e-10
-5.3678e-08
-9.09901e-12
-5.36455e-08
-3.95463e-10
-5.35754e-08
-7.81735e-10
-5.34675e-08
-1.16828e-09
-5.33216e-08
-1.55483e-09
-5.31376e-08
-1.94111e-09
-5.29154e-08
-2.32684e-09
-5.26549e-08
-2.71174e-09
-5.23562e-08
-3.09553e-09
-5.20192e-08
-3.47792e-09
-5.1644e-08
-3.85862e-09
-5.12307e-08
-4.23736e-09
-5.07793e-08
-4.61384e-09
-5.029e-08
-4.98777e-09
-4.9763e-08
-5.35885e-09
-4.91984e-08
-5.72678e-09
-4.85964e-08
-6.09127e-09
-4.79573e-08
-6.45203e-09
-4.72813e-08
-6.80878e-09
-4.65689e-08
-7.16125e-09
-4.58204e-08
-7.5092e-09
-4.50362e-08
-7.85239e-09
-4.42167e-08
-8.19069e-09
-4.33623e-08
-8.52405e-09
-4.24735e-08
-8.85267e-09
-4.1551e-08
-9.17713e-09
-4.05953e-08
-9.49853e-09
-3.96076e-08
-9.81875e-09
-3.85889e-08
-1.01406e-08
-3.75409e-08
-1.04679e-08
-3.64653e-08
-1.0805e-08
-3.53646e-08
-1.11569e-08
-3.42413e-08
-1.15274e-08
-3.30982e-08
-1.19187e-08
-3.19385e-08
-1.23299e-08
-3.07645e-08
-1.27563e-08
-1.31901e-08
-2.95784e-08
-5.5806e-10
6.20312e-09
-1.60512e-09
1.16114e-08
-2.867e-09
1.39966e-08
-4.2223e-09
1.50453e-08
-5.61679e-09
1.54936e-08
-7.02612e-09
1.56677e-08
-8.43922e-09
1.57136e-08
-9.85091e-09
1.56973e-08
-1.12586e-08
1.56484e-08
-1.26608e-08
1.55805e-08
-1.40565e-08
1.54993e-08
-1.54448e-08
1.54074e-08
-1.6825e-08
1.53059e-08
-1.81962e-08
1.51952e-08
-1.95577e-08
1.50754e-08
-2.09087e-08
1.49465e-08
-2.22484e-08
1.48086e-08
-2.35761e-08
1.46618e-08
-2.48909e-08
1.4506e-08
-2.61922e-08
1.43414e-08
-2.74791e-08
1.41679e-08
-2.8751e-08
1.39857e-08
-3.00071e-08
1.37948e-08
-3.12466e-08
1.35953e-08
-3.24689e-08
1.33872e-08
-3.36732e-08
1.31707e-08
-3.48588e-08
1.29458e-08
-3.60248e-08
1.27127e-08
-3.71705e-08
1.24714e-08
-3.82952e-08
1.2222e-08
-3.9398e-08
1.19647e-08
-4.04783e-08
1.16995e-08
-4.15352e-08
1.14266e-08
-4.2568e-08
1.11461e-08
-4.35761e-08
1.08581e-08
-4.45588e-08
1.05627e-08
-4.55152e-08
1.02601e-08
-4.64449e-08
9.95041e-09
-4.73469e-08
9.63375e-09
-4.82208e-08
9.31031e-09
-4.90657e-08
8.98023e-09
-4.9881e-08
8.64368e-09
-5.06659e-08
8.30083e-09
-5.14198e-08
7.95187e-09
-5.2142e-08
7.59696e-09
-5.28319e-08
7.2363e-09
-5.34889e-08
6.87007e-09
-5.41123e-08
6.49846e-09
-5.47017e-08
6.12169e-09
-5.52565e-08
5.73995e-09
-5.5776e-08
5.35347e-09
-5.62598e-08
4.96248e-09
-5.67073e-08
4.56719e-09
-5.71178e-08
4.16786e-09
-5.7491e-08
3.76472e-09
-5.78261e-08
3.35802e-09
-5.81228e-08
2.948e-09
-5.83806e-08
2.53492e-09
-5.8599e-08
2.11903e-09
-5.87778e-08
1.7006e-09
-5.89166e-08
1.27991e-09
-5.90151e-08
8.5723e-10
-5.90728e-08
4.32886e-10
-5.90904e-08
8.52025e-12
-5.9066e-08
-4.19902e-10
-5.9e-08
-8.47663e-10
-5.88922e-08
-1.2759e-09
-5.87425e-08
-1.70433e-09
-5.85508e-08
-2.13266e-09
-5.83168e-08
-2.56056e-09
-5.80406e-08
-2.98774e-09
-5.77222e-08
-3.41386e-09
-5.73616e-08
-3.8386e-09
-5.69588e-08
-4.26164e-09
-5.65137e-08
-4.68264e-09
-5.60265e-08
-5.10128e-09
-5.54971e-08
-5.51723e-09
-5.49259e-08
-5.93015e-09
-5.4313e-08
-6.33973e-09
-5.36587e-08
-6.74563e-09
-5.29632e-08
-7.14754e-09
-5.2227e-08
-7.54513e-09
-5.14503e-08
-7.93809e-09
-5.06336e-08
-8.32613e-09
-4.97773e-08
-8.70898e-09
-4.88817e-08
-9.08644e-09
-4.79474e-08
-9.45845e-09
-4.69749e-08
-9.82513e-09
-4.59651e-08
-1.0187e-08
-4.49187e-08
-1.05449e-08
-4.38368e-08
-1.09007e-08
-4.27206e-08
-1.12569e-08
-4.15719e-08
-1.16168e-08
-4.03927e-08
-1.19845e-08
-3.91852e-08
-1.23644e-08
-3.79525e-08
-1.27601e-08
-3.66974e-08
-1.31736e-08
-3.54232e-08
-1.36038e-08
-3.41328e-08
-1.40465e-08
-1.44942e-08
-3.28284e-08
-6.08218e-10
6.81126e-09
-1.75041e-09
1.27534e-08
-3.12766e-09
1.53737e-08
-4.60732e-09
1.65248e-08
-6.13013e-09
1.70163e-08
-7.66942e-09
1.72069e-08
-9.21307e-09
1.72573e-08
-1.07554e-08
1.72396e-08
-1.22936e-08
1.71867e-08
-1.3826e-08
1.71129e-08
-1.53515e-08
1.70248e-08
-1.68691e-08
1.69251e-08
-1.83781e-08
1.68149e-08
-1.98775e-08
1.66947e-08
-2.13666e-08
1.65645e-08
-2.28445e-08
1.64244e-08
-2.43105e-08
1.62746e-08
-2.57636e-08
1.6115e-08
-2.72032e-08
1.59456e-08
-2.86283e-08
1.57665e-08
-3.00382e-08
1.55778e-08
-3.14322e-08
1.53796e-08
-3.28092e-08
1.51718e-08
-3.41687e-08
1.49546e-08
-3.55096e-08
1.47281e-08
-3.68313e-08
1.44923e-08
-3.81329e-08
1.42473e-08
-3.94135e-08
1.39933e-08
-4.06724e-08
1.37302e-08
-4.19087e-08
1.34583e-08
-4.31216e-08
1.31776e-08
-4.43104e-08
1.28882e-08
-4.54742e-08
1.25903e-08
-4.66122e-08
1.2284e-08
-4.77237e-08
1.19695e-08
-4.88078e-08
1.16467e-08
-4.98639e-08
1.1316e-08
-5.0891e-08
1.09773e-08
-5.18884e-08
1.0631e-08
-5.28554e-08
1.02771e-08
-5.3791e-08
9.91577e-09
-5.46946e-08
9.54723e-09
-5.55653e-08
9.17165e-09
-5.64026e-08
8.7892e-09
-5.72055e-08
8.40007e-09
-5.79735e-08
8.00445e-09
-5.87058e-08
7.60254e-09
-5.94017e-08
7.19455e-09
-6.00607e-08
6.7807e-09
-6.06819e-08
6.36122e-09
-6.12648e-08
5.93633e-09
-6.18086e-08
5.50629e-09
-6.23128e-08
5.07133e-09
-6.27767e-08
4.63172e-09
-6.31997e-08
4.18772e-09
-6.35813e-08
3.73959e-09
-6.39209e-08
3.2876e-09
-6.42179e-08
2.83203e-09
-6.4472e-08
2.37315e-09
-6.46826e-08
1.91125e-09
-6.48492e-08
1.44663e-09
-6.49715e-08
9.79615e-10
-6.50491e-08
5.10549e-10
-6.50815e-08
4.10065e-11
-6.50684e-08
-4.32836e-10
-6.50095e-08
-9.06394e-10
-6.49046e-08
-1.38068e-09
-6.47533e-08
-1.8554e-09
-6.45556e-08
-2.3302e-09
-6.43113e-08
-2.80476e-09
-6.40203e-08
-3.2787e-09
-6.36825e-08
-3.75169e-09
-6.32979e-08
-4.22334e-09
-6.28665e-08
-4.69328e-09
-6.23882e-08
-5.16114e-09
-6.18631e-08
-5.62654e-09
-6.12914e-08
-6.08912e-09
-6.06732e-08
-6.5485e-09
-6.00088e-08
-7.00433e-09
-5.92983e-08
-7.45622e-09
-5.85422e-08
-7.90382e-09
-5.77409e-08
-8.34675e-09
-5.68945e-08
-8.78465e-09
-5.60037e-08
-9.21718e-09
-5.50688e-08
-9.64401e-09
-5.40904e-08
-1.00649e-08
-5.30691e-08
-1.04798e-08
-5.20057e-08
-1.08886e-08
-5.09009e-08
-1.12918e-08
-4.97557e-08
-1.16902e-08
-4.85712e-08
-1.20853e-08
-4.73488e-08
-1.24794e-08
-4.60901e-08
-1.28754e-08
-4.47974e-08
-1.32771e-08
-4.34733e-08
-1.36884e-08
-4.21207e-08
-1.41126e-08
-4.07429e-08
-1.45513e-08
-3.9343e-08
-1.50036e-08
-3.79238e-08
-1.54654e-08
-1.59294e-08
-3.64883e-08
-6.62368e-10
7.47344e-09
-1.90754e-09
1.39983e-08
-3.40984e-09
1.68758e-08
-5.02445e-09
1.81393e-08
-6.68654e-09
1.86783e-08
-8.36697e-09
1.88873e-08
-1.00524e-08
1.89427e-08
-1.17368e-08
1.89239e-08
-1.34168e-08
1.88666e-08
-1.50908e-08
1.87868e-08
-1.67575e-08
1.86914e-08
-1.8416e-08
1.85834e-08
-2.00652e-08
1.8464e-08
-2.17043e-08
1.83337e-08
-2.33325e-08
1.81926e-08
-2.49488e-08
1.80408e-08
-2.65524e-08
1.78783e-08
-2.81424e-08
1.77051e-08
-2.97181e-08
1.75213e-08
-3.12785e-08
1.7327e-08
-3.28228e-08
1.71221e-08
-3.43501e-08
1.69068e-08
-3.58596e-08
1.66811e-08
-3.73503e-08
1.64451e-08
-3.88214e-08
1.61989e-08
-4.0272e-08
1.59425e-08
-4.17011e-08
1.56761e-08
-4.31078e-08
1.53998e-08
-4.44913e-08
1.51136e-08
-4.58507e-08
1.48176e-08
-4.71851e-08
1.4512e-08
-4.84937e-08
1.41969e-08
-4.97755e-08
1.38723e-08
-5.10299e-08
1.35384e-08
-5.22558e-08
1.31953e-08
-5.34525e-08
1.28432e-08
-5.46189e-08
1.24822e-08
-5.57544e-08
1.21125e-08
-5.68579e-08
1.17342e-08
-5.79286e-08
1.13475e-08
-5.89656e-08
1.09525e-08
-5.99681e-08
1.05495e-08
-6.09352e-08
1.01386e-08
-6.18661e-08
9.71997e-09
-6.276e-08
9.29383e-09
-6.36161e-08
8.8604e-09
-6.44337e-08
8.41987e-09
-6.52118e-08
7.97248e-09
-6.59497e-08
7.51846e-09
-6.66467e-08
7.05803e-09
-6.73018e-08
6.59146e-09
-6.79145e-08
6.11899e-09
-6.84838e-08
5.64088e-09
-6.90093e-08
5.15739e-09
-6.94901e-08
4.66881e-09
-6.99257e-08
4.17542e-09
-7.03155e-08
3.6775e-09
-7.06589e-08
3.17538e-09
-7.09552e-08
2.66935e-09
-7.12038e-08
2.15974e-09
-7.14043e-08
1.6469e-09
-7.15559e-08
1.13115e-09
-7.16583e-08
6.12905e-10
-7.17107e-08
9.34811e-11
-7.17132e-08
-4.30225e-10
-7.16651e-08
-9.54299e-10
-7.15662e-08
-1.47944e-09
-7.14162e-08
-2.00531e-09
-7.12149e-08
-2.53153e-09
-7.09621e-08
-3.05772e-09
-7.06574e-08
-3.58346e-09
-7.03008e-08
-4.10836e-09
-6.98922e-08
-4.632e-09
-6.94315e-08
-5.15397e-09
-6.89187e-08
-5.67386e-09
-6.83539e-08
-6.19124e-09
-6.77373e-08
-6.70569e-09
-6.70692e-08
-7.21679e-09
-6.63496e-08
-7.7241e-09
-6.55789e-08
-8.2272e-09
-6.47573e-08
-8.72566e-09
-6.38852e-08
-9.21905e-09
-6.2963e-08
-9.70695e-09
-6.19912e-08
-1.0189e-08
-6.09704e-08
-1.06647e-08
-5.99013e-08
-1.1134e-08
-5.87846e-08
-1.15964e-08
-5.76212e-08
-1.20521e-08
-5.6412e-08
-1.25012e-08
-5.5158e-08
-1.29445e-08
-5.38603e-08
-1.33832e-08
-5.25207e-08
-1.38193e-08
-5.11408e-08
-1.42555e-08
-4.97229e-08
-1.46951e-08
-4.82698e-08
-1.51417e-08
-4.67846e-08
-1.55981e-08
-4.52704e-08
-1.60659e-08
-4.37306e-08
-1.65441e-08
-4.2168e-08
-1.70286e-08
-1.75115e-08
-4.05864e-08
-7.20542e-10
8.19382e-09
-2.07696e-09
1.53545e-08
-3.7146e-09
1.85133e-08
-5.4754e-09
1.99e-08
-7.2885e-09
2.04913e-08
-9.12197e-09
2.07207e-08
-1.09613e-08
2.07818e-08
-1.27996e-08
2.0762e-08
-1.46335e-08
2.07004e-08
-1.6461e-08
2.06142e-08
-1.8281e-08
2.05112e-08
-2.00922e-08
2.03946e-08
-2.18937e-08
2.02655e-08
-2.36846e-08
2.01246e-08
-2.5464e-08
1.9972e-08
-2.7231e-08
1.98078e-08
-2.89846e-08
1.96319e-08
-3.0724e-08
1.94445e-08
-3.24482e-08
1.92455e-08
-3.41562e-08
1.9035e-08
-3.58473e-08
1.88131e-08
-3.75203e-08
1.85798e-08
-3.91745e-08
1.83351e-08
-4.08087e-08
1.80793e-08
-4.24221e-08
1.78122e-08
-4.40136e-08
1.75341e-08
-4.55824e-08
1.7245e-08
-4.71276e-08
1.69449e-08
-4.8648e-08
1.66341e-08
-5.01429e-08
1.63125e-08
-5.16113e-08
1.59803e-08
-5.30522e-08
1.56376e-08
-5.44647e-08
1.52846e-08
-5.58478e-08
1.49213e-08
-5.72005e-08
1.45478e-08
-5.85219e-08
1.41644e-08
-5.9811e-08
1.37711e-08
-6.10668e-08
1.33681e-08
-6.22883e-08
1.29556e-08
-6.34747e-08
1.25338e-08
-6.46249e-08
1.21027e-08
-6.57381e-08
1.16626e-08
-6.68132e-08
1.12137e-08
-6.78494e-08
1.07561e-08
-6.88457e-08
1.02901e-08
-6.98012e-08
9.81582e-09
-7.0715e-08
9.33356e-09
-7.15862e-08
8.84352e-09
-7.24138e-08
8.34596e-09
-7.31969e-08
7.84113e-09
-7.39347e-08
7.32928e-09
-7.46263e-08
6.81068e-09
-7.52709e-08
6.2856e-09
-7.58678e-08
5.75434e-09
-7.6416e-08
5.21717e-09
-7.69149e-08
4.6744e-09
-7.73637e-08
4.12635e-09
-7.77616e-08
3.57333e-09
-7.8108e-08
3.01571e-09
-7.84021e-08
2.45381e-09
-7.86432e-08
1.88802e-09
-7.88308e-08
1.31871e-09
-7.89642e-08
7.46312e-10
-7.90429e-08
1.722e-10
-7.90664e-08
-4.06771e-10
-7.9034e-08
-9.86627e-10
-7.89455e-08
-1.56796e-09
-7.88004e-08
-2.15042e-09
-7.85985e-08
-2.73358e-09
-7.83393e-08
-3.317e-09
-7.80227e-08
-3.90022e-09
-7.76483e-08
-4.48279e-09
-7.72161e-08
-5.06424e-09
-7.6726e-08
-5.64412e-09
-7.6178e-08
-6.22194e-09
-7.55721e-08
-6.79723e-09
-7.49084e-08
-7.36952e-09
-7.41872e-08
-7.93831e-09
-7.34085e-08
-8.50308e-09
-7.25726e-08
-9.06336e-09
-7.16799e-08
-9.61862e-09
-7.07307e-08
-1.01684e-08
-6.97256e-08
-1.07122e-08
-6.86651e-08
-1.12495e-08
-6.75499e-08
-1.17799e-08
-6.63809e-08
-1.23031e-08
-6.51588e-08
-1.28186e-08
-6.38846e-08
-1.33265e-08
-6.25592e-08
-1.38267e-08
-6.11838e-08
-1.43199e-08
-5.97599e-08
-1.48071e-08
-5.82892e-08
-1.52899e-08
-5.67738e-08
-1.57709e-08
-5.5216e-08
-1.6253e-08
-5.36188e-08
-1.67392e-08
-5.19849e-08
-1.72321e-08
-5.03177e-08
-1.77331e-08
-4.86205e-08
-1.82413e-08
-4.68969e-08
-1.87523e-08
-1.92567e-08
-4.51517e-08
-7.83113e-10
8.97688e-09
-2.25928e-09
1.68308e-08
-4.0429e-09
2.0297e-08
-5.96155e-09
2.18187e-08
-7.93783e-09
2.24676e-08
-9.93679e-09
2.27196e-08
-1.19425e-08
2.27874e-08
-1.39475e-08
2.27669e-08
-1.5948e-08
2.27008e-08
-1.79419e-08
2.26081e-08
-1.99278e-08
2.24971e-08
-2.19046e-08
2.23714e-08
-2.38713e-08
2.22323e-08
-2.58269e-08
2.20803e-08
-2.77704e-08
2.19156e-08
-2.97009e-08
2.17384e-08
-3.16175e-08
2.15485e-08
-3.35192e-08
2.1346e-08
-3.54049e-08
2.11311e-08
-3.72738e-08
2.09036e-08
-3.91248e-08
2.06637e-08
-4.09568e-08
2.04114e-08
-4.27689e-08
2.01469e-08
-4.456e-08
1.98701e-08
-4.6329e-08
1.95811e-08
-4.8075e-08
1.928e-08
-4.9797e-08
1.89669e-08
-5.14939e-08
1.86419e-08
-5.31648e-08
1.8305e-08
-5.48087e-08
1.79563e-08
-5.64244e-08
1.7596e-08
-5.80111e-08
1.72242e-08
-5.95675e-08
1.68409e-08
-6.10928e-08
1.64463e-08
-6.25857e-08
1.60405e-08
-6.40452e-08
1.56237e-08
-6.54703e-08
1.5196e-08
-6.68598e-08
1.47575e-08
-6.82128e-08
1.43085e-08
-6.95282e-08
1.3849e-08
-7.0805e-08
1.33792e-08
-7.20421e-08
1.28994e-08
-7.32385e-08
1.24097e-08
-7.43931e-08
1.19103e-08
-7.55049e-08
1.14014e-08
-7.65727e-08
1.08832e-08
-7.75954e-08
1.0356e-08
-7.85721e-08
9.82005e-09
-7.95016e-08
9.2755e-09
-8.03831e-08
8.72266e-09
-8.12154e-08
8.16178e-09
-8.19977e-08
7.59315e-09
-8.27291e-08
7.01706e-09
-8.34085e-08
6.4338e-09
-8.40352e-08
5.8437e-09
-8.4608e-08
5.24709e-09
-8.51262e-08
4.64431e-09
-8.55887e-08
4.0357e-09
-8.59948e-08
3.42163e-09
-8.63435e-08
2.80248e-09
-8.66341e-08
2.17862e-09
-8.68659e-08
1.55047e-09
-8.70382e-08
9.18508e-10
-8.71502e-08
2.84144e-10
-8.72014e-08
-3.5574e-10
-8.71911e-08
-9.97223e-10
-8.71185e-08
-1.64067e-09
-8.69832e-08
-2.28574e-09
-8.67848e-08
-2.93198e-09
-8.65227e-08
-3.57888e-09
-8.61967e-08
-4.22597e-09
-8.58065e-08
-4.87272e-09
-8.53519e-08
-5.51861e-09
-8.48329e-08
-6.16311e-09
-8.42493e-08
-6.80567e-09
-8.3601e-08
-7.44574e-09
-8.28881e-08
-8.08274e-09
-8.21106e-08
-8.71613e-09
-8.12686e-08
-9.34531e-09
-8.03624e-08
-9.96971e-09
-7.93925e-08
-1.05887e-08
-7.83592e-08
-1.12018e-08
-7.72632e-08
-1.18084e-08
-7.61051e-08
-1.24079e-08
-7.48856e-08
-1.29998e-08
-7.36055e-08
-1.35835e-08
-7.22657e-08
-1.41587e-08
-7.08673e-08
-1.47251e-08
-6.94115e-08
-1.52827e-08
-6.78998e-08
-1.58318e-08
-6.63336e-08
-1.63733e-08
-6.47151e-08
-1.69086e-08
-6.30465e-08
-1.74398e-08
-6.13304e-08
-1.79695e-08
-5.95696e-08
-1.85004e-08
-5.77674e-08
-1.90347e-08
-5.59271e-08
-1.95737e-08
-5.40522e-08
-2.01162e-08
-5.2147e-08
-2.06575e-08
-2.11851e-08
-5.02187e-08
-8.50044e-10
9.82685e-09
-2.45499e-09
1.84358e-08
-4.39577e-09
2.22378e-08
-6.48452e-09
2.39074e-08
-8.63671e-09
2.46198e-08
-1.08141e-08
2.48969e-08
-1.29993e-08
2.49726e-08
-1.51841e-08
2.49516e-08
-1.73645e-08
2.4881e-08
-1.95381e-08
2.47816e-08
-2.17035e-08
2.46625e-08
-2.38594e-08
2.45273e-08
-2.60049e-08
2.43777e-08
-2.81388e-08
2.42142e-08
-3.02602e-08
2.4037e-08
-3.23682e-08
2.38461e-08
-3.44616e-08
2.36417e-08
-3.65394e-08
2.34236e-08
-3.86006e-08
2.3192e-08
-4.06441e-08
2.29468e-08
-4.26688e-08
2.26882e-08
-4.46737e-08
2.24162e-08
-4.66577e-08
2.21307e-08
-4.86197e-08
2.1832e-08
-5.05587e-08
2.152e-08
-5.24735e-08
2.11948e-08
-5.43631e-08
2.08565e-08
-5.62265e-08
2.05051e-08
-5.80624e-08
2.01408e-08
-5.98699e-08
1.97636e-08
-6.16478e-08
1.93736e-08
-6.33949e-08
1.8971e-08
-6.51101e-08
1.85558e-08
-6.67923e-08
1.81282e-08
-6.84402e-08
1.76882e-08
-7.00527e-08
1.72361e-08
-7.16286e-08
1.67718e-08
-7.31668e-08
1.62957e-08
-7.46662e-08
1.58078e-08
-7.61255e-08
1.53083e-08
-7.75437e-08
1.47973e-08
-7.89195e-08
1.42751e-08
-8.02518e-08
1.37417e-08
-8.15393e-08
1.31975e-08
-8.27809e-08
1.26426e-08
-8.39754e-08
1.20773e-08
-8.51215e-08
1.15018e-08
-8.62181e-08
1.09163e-08
-8.72639e-08
1.03212e-08
-8.82579e-08
9.7165e-09
-8.91989e-08
9.10267e-09
-9.00858e-08
8.47994e-09
-9.09174e-08
7.84861e-09
-9.16926e-08
7.209e-09
-9.24104e-08
6.56143e-09
-9.30697e-08
5.90627e-09
-9.36693e-08
5.24386e-09
-9.42083e-08
4.57458e-09
-9.46855e-08
3.89882e-09
-9.51001e-08
3.21697e-09
-9.5451e-08
2.52946e-09
-9.57373e-08
1.83672e-09
-9.59581e-08
1.13928e-09
-9.61126e-08
4.38536e-10
-9.62e-08
-2.68383e-10
-9.62193e-08
-9.78026e-10
-9.61697e-08
-1.69023e-09
-9.60506e-08
-2.40471e-09
-9.58614e-08
-3.12097e-09
-9.56016e-08
-3.83847e-09
-9.52706e-08
-4.55667e-09
-9.4868e-08
-5.27498e-09
-9.43937e-08
-5.99283e-09
-9.38472e-08
-6.70959e-09
-9.32283e-08
-7.42464e-09
-9.2537e-08
-8.13733e-09
-9.17729e-08
-8.847e-09
-9.09363e-08
-9.553e-09
-9.0027e-08
-1.02547e-08
-8.90455e-08
-1.09513e-08
-8.79921e-08
-1.16423e-08
-8.68672e-08
-1.23269e-08
-8.56714e-08
-1.30044e-08
-8.44054e-08
-1.36741e-08
-8.30699e-08
-1.43355e-08
-8.16657e-08
-1.49878e-08
-8.01939e-08
-1.56304e-08
-7.86558e-08
-1.62631e-08
-7.70528e-08
-1.68856e-08
-7.53866e-08
-1.7498e-08
-7.3659e-08
-1.81009e-08
-7.18724e-08
-1.86954e-08
-7.0029e-08
-1.92833e-08
-6.81318e-08
-1.98668e-08
-6.61841e-08
-2.0448e-08
-6.41897e-08
-2.10291e-08
-6.21524e-08
-2.16109e-08
-6.00763e-08
-2.21923e-08
-5.79664e-08
-2.27672e-08
-2.33181e-08
-5.58332e-08
-9.21427e-10
1.07484e-08
-2.66432e-09
2.0179e-08
-4.77379e-09
2.43475e-08
-7.04529e-09
2.61791e-08
-9.38662e-09
2.69612e-08
-1.1756e-08
2.72664e-08
-1.41344e-08
2.7351e-08
-1.65129e-08
2.73302e-08
-1.8887e-08
2.72552e-08
-2.12543e-08
2.7149e-08
-2.36131e-08
2.70214e-08
-2.59623e-08
2.68766e-08
-2.83007e-08
2.67161e-08
-3.06273e-08
2.65407e-08
-3.2941e-08
2.63505e-08
-3.52407e-08
2.61456e-08
-3.75253e-08
2.5926e-08
-3.97938e-08
2.56918e-08
-4.20451e-08
2.54429e-08
-4.4278e-08
2.51794e-08
-4.64913e-08
2.49013e-08
-4.86841e-08
2.46087e-08
-5.08552e-08
2.43016e-08
-5.30034e-08
2.398e-08
-5.51276e-08
2.36441e-08
-5.72267e-08
2.32937e-08
-5.92995e-08
2.29291e-08
-6.13448e-08
2.25503e-08
-6.33615e-08
2.21574e-08
-6.53483e-08
2.17503e-08
-6.73041e-08
2.13293e-08
-6.92275e-08
2.08944e-08
-7.11174e-08
2.04456e-08
-7.29725e-08
1.99832e-08
-7.47916e-08
1.95072e-08
-7.65733e-08
1.90178e-08
-7.83166e-08
1.8515e-08
-8.002e-08
1.7999e-08
-8.16824e-08
1.74699e-08
-8.33024e-08
1.69279e-08
-8.48787e-08
1.63732e-08
-8.64099e-08
1.58059e-08
-8.78947e-08
1.52262e-08
-8.93318e-08
1.46344e-08
-9.07198e-08
1.40305e-08
-9.20573e-08
1.34148e-08
-9.33431e-08
1.27876e-08
-9.45758e-08
1.21491e-08
-9.57541e-08
1.14995e-08
-9.68768e-08
1.08391e-08
-9.79424e-08
1.01682e-08
-9.89497e-08
9.4871e-09
-9.98973e-08
8.79608e-09
-1.00784e-07
8.09548e-09
-1.01608e-07
7.38563e-09
-1.02369e-07
6.6669e-09
-1.03064e-07
5.93964e-09
-1.03694e-07
5.20426e-09
-1.04256e-07
4.46115e-09
-1.0475e-07
3.71075e-09
-1.05175e-07
2.95351e-09
-1.05528e-07
2.18991e-09
-1.0581e-07
1.42053e-09
-1.06018e-07
6.4669e-10
-1.06153e-07
-1.33698e-10
-1.06212e-07
-9.189e-10
-1.06194e-07
-1.70722e-09
-1.061e-07
-2.49869e-09
-1.05928e-07
-3.29277e-09
-1.05677e-07
-4.08887e-09
-1.05348e-07
-4.88638e-09
-1.04938e-07
-5.68464e-09
-1.04448e-07
-6.48297e-09
-1.03877e-07
-7.2807e-09
-1.03225e-07
-8.0771e-09
-1.02491e-07
-8.87145e-09
-1.01675e-07
-9.66299e-09
-1.00777e-07
-1.0451e-08
-9.97972e-08
-1.12346e-08
-9.87356e-08
-1.20131e-08
-9.75924e-08
-1.27857e-08
-9.63681e-08
-1.35515e-08
-9.5063e-08
-1.43097e-08
-9.36778e-08
-1.50595e-08
-9.22133e-08
-1.58e-08
-9.06704e-08
-1.65305e-08
-8.90505e-08
-1.72503e-08
-8.73548e-08
-1.79586e-08
-8.5585e-08
-1.86553e-08
-8.3743e-08
-1.934e-08
-8.1831e-08
-2.0013e-08
-7.98515e-08
-2.06751e-08
-7.78074e-08
-2.13276e-08
-7.57022e-08
-2.1972e-08
-7.35399e-08
-2.26102e-08
-7.13251e-08
-2.32439e-08
-6.90626e-08
-2.38736e-08
-6.67573e-08
-2.44978e-08
-6.44162e-08
-2.51087e-08
-2.56807e-08
-6.20538e-08
-9.97235e-10
1.17458e-08
-2.88756e-09
2.20692e-08
-5.1776e-09
2.66374e-08
-7.64493e-09
2.86463e-08
-1.01891e-08
2.95053e-08
-1.27644e-08
2.98417e-08
-1.53502e-08
2.99368e-08
-1.79366e-08
2.99166e-08
-2.05188e-08
2.98375e-08
-2.30943e-08
2.97245e-08
-2.56612e-08
2.95884e-08
-2.82184e-08
2.94337e-08
-3.07645e-08
2.92622e-08
-3.32986e-08
2.90746e-08
-3.58194e-08
2.88712e-08
-3.83259e-08
2.86519e-08
-4.08169e-08
2.84168e-08
-4.32913e-08
2.8166e-08
-4.57479e-08
2.78994e-08
-4.81857e-08
2.7617e-08
-5.06033e-08
2.73189e-08
-5.29997e-08
2.70051e-08
-5.53737e-08
2.66756e-08
-5.77242e-08
2.63304e-08
-6.00499e-08
2.59697e-08
-6.23497e-08
2.55933e-08
-6.46222e-08
2.52015e-08
-6.68663e-08
2.47941e-08
-6.90806e-08
2.43714e-08
-7.12639e-08
2.39333e-08
-7.34147e-08
2.34799e-08
-7.55319e-08
2.30114e-08
-7.7614e-08
2.25277e-08
-7.96598e-08
2.2029e-08
-8.16678e-08
2.15153e-08
-8.36368e-08
2.09868e-08
-8.55653e-08
2.04435e-08
-8.7452e-08
1.98857e-08
-8.92955e-08
1.93133e-08
-9.10943e-08
1.87266e-08
-9.2847e-08
1.81257e-08
-9.45521e-08
1.75107e-08
-9.6208e-08
1.68819e-08
-9.78133e-08
1.62394e-08
-9.93665e-08
1.55835e-08
-1.00866e-07
1.49143e-08
-1.0231e-07
1.42319e-08
-1.03698e-07
1.35368e-08
-1.05028e-07
1.28291e-08
-1.06298e-07
1.2109e-08
-1.07506e-07
1.13769e-08
-1.08652e-07
1.0633e-08
-1.09734e-07
9.87774e-09
-1.1075e-07
9.11134e-09
-1.11699e-07
8.33418e-09
-1.12578e-07
7.54662e-09
-1.13388e-07
6.74903e-09
-1.14126e-07
5.94181e-09
-1.1479e-07
5.12539e-09
-1.1538e-07
4.30021e-09
-1.15893e-07
3.46675e-09
-1.16329e-07
2.62552e-09
-1.16686e-07
1.77713e-09
-1.16962e-07
9.22707e-10
-1.17159e-07
6.38823e-11
-1.17271e-07
-8.07082e-10
-1.17299e-07
-1.6795e-09
-1.17241e-07
-2.55621e-09
-1.17097e-07
-3.43666e-09
-1.16865e-07
-4.32021e-09
-1.16546e-07
-5.20615e-09
-1.16137e-07
-6.09376e-09
-1.15637e-07
-6.98226e-09
-1.15047e-07
-7.87089e-09
-1.14365e-07
-8.75884e-09
-1.13591e-07
-9.64529e-09
-1.12725e-07
-1.05294e-08
-1.11765e-07
-1.14103e-08
-1.10713e-07
-1.2287e-08
-1.09567e-07
-1.31587e-08
-1.08329e-07
-1.40243e-08
-1.06997e-07
-1.4883e-08
-1.05573e-07
-1.57336e-08
-1.04057e-07
-1.65753e-08
-1.0245e-07
-1.74069e-08
-1.00753e-07
-1.82275e-08
-9.89669e-08
-1.90362e-08
-9.70935e-08
-1.98321e-08
-9.51344e-08
-2.06145e-08
-9.30917e-08
-2.13827e-08
-9.09679e-08
-2.21368e-08
-8.87663e-08
-2.28767e-08
-8.64905e-08
-2.36032e-08
-8.41452e-08
-2.43172e-08
-8.17355e-08
-2.502e-08
-7.9267e-08
-2.57125e-08
-7.67457e-08
-2.63949e-08
-7.41785e-08
-2.7065e-08
-7.15749e-08
-2.77122e-08
-2.83002e-08
-6.89556e-08
-1.07768e-09
1.28236e-08
-3.12481e-09
2.41163e-08
-5.60735e-09
2.91199e-08
-8.28375e-09
3.13227e-08
-1.10446e-08
3.22661e-08
-1.38402e-08
3.26373e-08
-1.66479e-08
3.27445e-08
-1.94569e-08
3.27257e-08
-2.22622e-08
3.26428e-08
-2.50608e-08
3.25231e-08
-2.78509e-08
3.23785e-08
-3.06311e-08
3.22138e-08
-3.34002e-08
3.20312e-08
-3.6157e-08
3.18313e-08
-3.89003e-08
3.16144e-08
-4.16291e-08
3.13806e-08
-4.43422e-08
3.11298e-08
-4.70383e-08
3.08621e-08
-4.97164e-08
3.05774e-08
-5.23753e-08
3.02758e-08
-5.50137e-08
2.99573e-08
-5.76305e-08
2.96218e-08
-6.02244e-08
2.92694e-08
-6.27943e-08
2.89002e-08
-6.53388e-08
2.8514e-08
-6.78566e-08
2.8111e-08
-7.03464e-08
2.76911e-08
-7.28069e-08
2.72545e-08
-7.52367e-08
2.68011e-08
-7.76345e-08
2.6331e-08
-7.99988e-08
2.58442e-08
-8.23282e-08
2.53408e-08
-8.46215e-08
2.48209e-08
-8.68771e-08
2.42844e-08
-8.90935e-08
2.37316e-08
-9.12694e-08
2.31624e-08
-9.34032e-08
2.2577e-08
-9.54933e-08
2.19755e-08
-9.75381e-08
2.13579e-08
-9.95361e-08
2.07244e-08
-1.01486e-07
2.00751e-08
-1.03385e-07
1.94101e-08
-1.05233e-07
1.87296e-08
-1.07027e-07
1.80338e-08
-1.08767e-07
1.73229e-08
-1.10449e-07
1.65969e-08
-1.12074e-07
1.58562e-08
-1.13638e-07
1.51009e-08
-1.1514e-07
1.43314e-08
-1.16579e-07
1.35477e-08
-1.17952e-07
1.27503e-08
-1.19258e-07
1.19393e-08
-1.20496e-07
1.11151e-08
-1.21662e-07
1.0278e-08
-1.22756e-07
9.42841e-09
-1.23776e-07
8.5666e-09
-1.2472e-07
7.693e-09
-1.25587e-07
6.80801e-09
-1.26374e-07
5.91207e-09
-1.27079e-07
5.00563e-09
-1.27701e-07
4.08918e-09
-1.28239e-07
3.16325e-09
-1.2869e-07
2.22844e-09
-1.29053e-07
1.28587e-09
-1.29327e-07
3.38712e-10
-1.29509e-07
-6.24742e-10
-1.29598e-07
-1.59031e-09
-1.29593e-07
-2.56154e-09
-1.29492e-07
-3.53794e-09
-1.29293e-07
-4.51882e-09
-1.28996e-07
-5.50343e-09
-1.28599e-07
-6.49097e-09
-1.281e-07
-7.48061e-09
-1.275e-07
-8.47148e-09
-1.26796e-07
-9.46269e-09
-1.25988e-07
-1.04533e-08
-1.25075e-07
-1.14424e-08
-1.24057e-07
-1.24288e-08
-1.22932e-07
-1.34117e-08
-1.21701e-07
-1.43899e-08
-1.20363e-07
-1.53622e-08
-1.18919e-07
-1.63276e-08
-1.17367e-07
-1.72848e-08
-1.1571e-07
-1.82327e-08
-1.13946e-07
-1.917e-08
-1.12078e-07
-2.00955e-08
-1.10107e-07
-2.10079e-08
-1.08033e-07
-2.19061e-08
-1.05859e-07
-2.27887e-08
-1.03587e-07
-2.36548e-08
-1.0122e-07
-2.45036e-08
-9.87619e-08
-2.53344e-08
-9.6218e-08
-2.6147e-08
-9.3594e-08
-2.69412e-08
-9.08968e-08
-2.77172e-08
-8.81342e-08
-2.84751e-08
-8.53145e-08
-2.92145e-08
-8.24472e-08
-2.99321e-08
-7.95459e-08
-3.06131e-08
-3.12068e-08
-7.66389e-08
-1.16257e-09
1.3986e-08
-3.376e-09
2.63294e-08
-6.06317e-09
3.18068e-08
-8.96207e-09
3.42214e-08
-1.19537e-08
3.52576e-08
-1.49841e-08
3.56676e-08
-1.80283e-08
3.57887e-08
-2.10749e-08
3.57722e-08
-2.41181e-08
3.5686e-08
-2.71549e-08
3.55598e-08
-3.01834e-08
3.54068e-08
-3.32021e-08
3.52323e-08
-3.62097e-08
3.50386e-08
-3.9205e-08
3.48264e-08
-4.21868e-08
3.45961e-08
-4.5154e-08
3.43477e-08
-4.81053e-08
3.40811e-08
-5.10397e-08
3.37964e-08
-5.39558e-08
3.34936e-08
-5.68527e-08
3.31727e-08
-5.97289e-08
3.28335e-08
-6.25834e-08
3.24762e-08
-6.54148e-08
3.21006e-08
-6.82218e-08
3.17069e-08
-7.10032e-08
3.1295e-08
-7.37575e-08
3.08649e-08
-7.64833e-08
3.04166e-08
-7.91792e-08
2.99502e-08
-8.18438e-08
2.94656e-08
-8.44756e-08
2.89628e-08
-8.70732e-08
2.84419e-08
-8.96351e-08
2.79029e-08
-9.21598e-08
2.73458e-08
-9.46459e-08
2.67706e-08
-9.70916e-08
2.61774e-08
-9.94955e-08
2.55663e-08
-1.01856e-07
2.49373e-08
-1.04171e-07
2.42905e-08
-1.06439e-07
2.36259e-08
-1.08659e-07
2.29438e-08
-1.10828e-07
2.2244e-08
-1.12945e-07
2.15269e-08
-1.15008e-07
2.07925e-08
-1.17015e-07
2.00408e-08
-1.18964e-07
1.92722e-08
-1.20854e-07
1.84866e-08
-1.22683e-07
1.76844e-08
-1.24447e-07
1.68657e-08
-1.26147e-07
1.60307e-08
-1.27779e-07
1.51797e-08
-1.29342e-07
1.43129e-08
-1.30833e-07
1.34305e-08
-1.32251e-07
1.25329e-08
-1.33593e-07
1.16203e-08
-1.34857e-07
1.06931e-08
-1.36042e-07
9.75166e-09
-1.37146e-07
8.79631e-09
-1.38165e-07
7.82748e-09
-1.39099e-07
6.84561e-09
-1.39944e-07
5.85116e-09
-1.407e-07
4.84462e-09
-1.41363e-07
3.82654e-09
-1.41932e-07
2.79753e-09
-1.42404e-07
1.75866e-09
-1.42777e-07
7.11249e-10
-1.43052e-07
-3.49872e-10
-1.43224e-07
-1.41856e-09
-1.43291e-07
-2.49437e-09
-1.43252e-07
-3.57713e-09
-1.43105e-07
-4.66617e-09
-1.42848e-07
-5.76071e-09
-1.42479e-07
-6.8599e-09
-1.41996e-07
-7.96286e-09
-1.41399e-07
-9.06866e-09
-1.40685e-07
-1.01763e-08
-1.39854e-07
-1.12848e-08
-1.38904e-07
-1.23929e-08
-1.37833e-07
-1.34997e-08
-1.36641e-07
-1.46038e-08
-1.35327e-07
-1.57041e-08
-1.33889e-07
-1.67993e-08
-1.32329e-07
-1.7888e-08
-1.30645e-07
-1.8969e-08
-1.28837e-07
-2.00406e-08
-1.26906e-07
-2.11015e-08
-1.24851e-07
-2.215e-08
-1.22675e-07
-2.31846e-08
-1.20377e-07
-2.42035e-08
-1.17961e-07
-2.52051e-08
-1.15428e-07
-2.61876e-08
-1.12783e-07
-2.7149e-08
-1.10029e-07
-2.80877e-08
-1.07175e-07
-2.90017e-08
-1.04227e-07
-2.98893e-08
-1.01195e-07
-3.07492e-08
-9.80903e-08
-3.15799e-08
-9.49251e-08
-3.238e-08
-9.1713e-08
-3.31443e-08
-8.84737e-08
-3.38528e-08
-3.44352e-08
-8.52455e-08
-1.2516e-09
1.52374e-08
-3.64038e-09
2.87179e-08
-6.54406e-09
3.47103e-08
-9.67884e-09
3.7356e-08
-1.29155e-08
3.84942e-08
-1.61951e-08
3.89472e-08
-1.94908e-08
3.90843e-08
-2.27899e-08
3.90713e-08
-2.60862e-08
3.89823e-08
-2.93765e-08
3.88501e-08
-3.26588e-08
3.8689e-08
-3.59314e-08
3.85049e-08
-3.91931e-08
3.83003e-08
-4.24428e-08
3.8076e-08
-4.56791e-08
3.78324e-08
-4.8901e-08
3.75696e-08
-5.21073e-08
3.72874e-08
-5.52968e-08
3.6986e-08
-5.84683e-08
3.66652e-08
-6.16206e-08
3.6325e-08
-6.47525e-08
3.59654e-08
-6.78626e-08
3.55863e-08
-7.09497e-08
3.51877e-08
-7.40124e-08
3.47696e-08
-7.70493e-08
3.43319e-08
-8.0059e-08
3.38747e-08
-8.30402e-08
3.33978e-08
-8.59913e-08
3.29013e-08
-8.89109e-08
3.23852e-08
-9.17975e-08
3.18494e-08
-9.46496e-08
3.12939e-08
-9.74655e-08
3.07187e-08
-1.00244e-07
3.01239e-08
-1.02983e-07
2.95093e-08
-1.0568e-07
2.88751e-08
-1.08335e-07
2.82212e-08
-1.10946e-07
2.75476e-08
-1.1351e-07
2.68544e-08
-1.16026e-07
2.61417e-08
-1.18491e-07
2.54094e-08
-1.20905e-07
2.46577e-08
-1.23265e-07
2.38866e-08
-1.25569e-07
2.30962e-08
-1.27815e-07
2.22866e-08
-1.30001e-07
2.14579e-08
-1.32124e-07
2.06103e-08
-1.34184e-07
1.97438e-08
-1.36177e-07
1.88587e-08
-1.38101e-07
1.79551e-08
-1.39955e-07
1.70332e-08
-1.41735e-07
1.60932e-08
-1.4344e-07
1.51353e-08
-1.45067e-07
1.41599e-08
-1.46614e-07
1.31672e-08
-1.48078e-07
1.21575e-08
-1.49458e-07
1.1131e-08
-1.50749e-07
1.00883e-08
-1.51951e-07
9.02963e-09
-1.53061e-07
7.95541e-09
-1.54075e-07
6.8661e-09
-1.54992e-07
5.76217e-09
-1.5581e-07
4.64415e-09
-1.56525e-07
3.51266e-09
-1.57135e-07
2.36848e-09
-1.57636e-07
1.21312e-09
-1.58035e-07
4.83954e-11
-1.58315e-07
-1.13803e-09
-1.58481e-07
-2.32866e-09
-1.58529e-07
-3.52865e-09
-1.58458e-07
-4.73735e-09
-1.58265e-07
-5.95395e-09
-1.57947e-07
-7.17755e-09
-1.57503e-07
-8.4072e-09
-1.5693e-07
-9.6419e-09
-1.56226e-07
-1.08806e-08
-1.55388e-07
-1.21221e-08
-1.54416e-07
-1.33654e-08
-1.53306e-07
-1.4609e-08
-1.52058e-07
-1.58518e-08
-1.50669e-07
-1.70924e-08
-1.49139e-07
-1.83292e-08
-1.47466e-07
-1.95609e-08
-1.4565e-07
-2.07858e-08
-1.43688e-07
-2.20022e-08
-1.41581e-07
-2.32084e-08
-1.39329e-07
-2.44024e-08
-1.36931e-07
-2.55821e-08
-1.34389e-07
-2.67454e-08
-1.31704e-07
-2.78897e-08
-1.2888e-07
-2.90121e-08
-1.25919e-07
-3.01095e-08
-1.22829e-07
-3.1178e-08
-1.19617e-07
-3.22136e-08
-1.16294e-07
-3.32118e-08
-1.12875e-07
-3.41686e-08
-1.09374e-07
-3.50805e-08
-1.0581e-07
-3.5944e-08
-1.02203e-07
-3.67518e-08
-9.85801e-08
-3.7476e-08
-3.80216e-08
-9.4994e-08
-1.34452e-09
1.65818e-08
-3.91744e-09
3.12908e-08
-7.0492e-09
3.78421e-08
-1.04329e-08
4.07397e-08
-1.39284e-08
4.19896e-08
-1.74716e-08
4.24904e-08
-2.10332e-08
4.26459e-08
-2.45996e-08
4.26375e-08
-2.8164e-08
4.25465e-08
-3.1723e-08
4.24089e-08
-3.52743e-08
4.22401e-08
-3.88165e-08
4.20469e-08
-4.23481e-08
4.18318e-08
-4.5868e-08
4.15959e-08
-4.9375e-08
4.13396e-08
-5.28681e-08
4.10627e-08
-5.6346e-08
4.07654e-08
-5.98076e-08
4.04477e-08
-6.32518e-08
4.01093e-08
-6.66772e-08
3.97503e-08
-7.00827e-08
3.93707e-08
-7.34669e-08
3.89703e-08
-7.68285e-08
3.85491e-08
-8.0166e-08
3.8107e-08
-8.34782e-08
3.7644e-08
-8.67635e-08
3.716e-08
-9.00204e-08
3.66549e-08
-9.32476e-08
3.61287e-08
-9.64436e-08
3.55814e-08
-9.96066e-08
3.50127e-08
-1.02735e-07
3.44228e-08
-1.05828e-07
3.38114e-08
-1.08883e-07
3.31787e-08
-1.11898e-07
3.25246e-08
-1.14872e-07
3.1849e-08
-1.17803e-07
3.11518e-08
-1.20689e-07
3.04332e-08
-1.23528e-07
2.9693e-08
-1.26317e-07
2.89313e-08
-1.29056e-07
2.81481e-08
-1.31742e-07
2.73433e-08
-1.34372e-07
2.6517e-08
-1.36946e-07
2.56693e-08
-1.39459e-07
2.48001e-08
-1.41911e-07
2.39096e-08
-1.44299e-07
2.29978e-08
-1.4662e-07
2.20648e-08
-1.48872e-07
2.11108e-08
-1.51053e-07
2.01357e-08
-1.5316e-07
1.91399e-08
-1.5519e-07
1.81235e-08
-1.57141e-07
1.70865e-08
-1.59011e-07
1.60293e-08
-1.60796e-07
1.49522e-08
-1.62493e-07
1.38552e-08
-1.64101e-07
1.27388e-08
-1.65616e-07
1.16032e-08
-1.67035e-07
1.04489e-08
-1.68356e-07
9.27611e-09
-1.69575e-07
8.0853e-09
-1.70689e-07
6.8769e-09
-1.71696e-07
5.65142e-09
-1.72593e-07
4.40944e-09
-1.73376e-07
3.15176e-09
-1.74044e-07
1.88021e-09
-1.74592e-07
5.96232e-10
-1.75017e-07
-7.12499e-10
-1.75317e-07
-2.02948e-09
-1.75487e-07
-3.35846e-09
-1.75525e-07
-4.69913e-09
-1.75428e-07
-6.05073e-09
-1.75193e-07
-7.41236e-09
-1.74818e-07
-8.78305e-09
-1.74298e-07
-1.01618e-08
-1.73631e-07
-1.15474e-08
-1.72815e-07
-1.29387e-08
-1.71845e-07
-1.43346e-08
-1.7072e-07
-1.57337e-08
-1.69437e-07
-1.71346e-08
-1.67994e-07
-1.85358e-08
-1.66387e-07
-1.99358e-08
-1.64615e-07
-2.13329e-08
-1.62676e-07
-2.27254e-08
-1.60567e-07
-2.41113e-08
-1.58287e-07
-2.54886e-08
-1.55834e-07
-2.6855e-08
-1.53208e-07
-2.8208e-08
-1.50408e-07
-2.95447e-08
-1.47437e-07
-3.08615e-08
-1.44295e-07
-3.2154e-08
-1.40987e-07
-3.34169e-08
-1.37522e-07
-3.46436e-08
-1.33909e-07
-3.58265e-08
-1.30163e-07
-3.69572e-08
-1.26304e-07
-3.80276e-08
-1.22354e-07
-3.90305e-08
-1.18338e-07
-3.99597e-08
-1.14286e-07
-4.08044e-08
-1.10234e-07
-4.15271e-08
-4.2002e-08
-1.06254e-07
-1.44061e-09
1.80223e-08
-4.20597e-09
3.40562e-08
-7.57695e-09
4.12131e-08
-1.12222e-08
4.4385e-08
-1.49899e-08
4.57574e-08
-1.88106e-08
4.6311e-08
-2.26523e-08
4.64875e-08
-2.65002e-08
4.64853e-08
-3.03472e-08
4.63934e-08
-3.41894e-08
4.6251e-08
-3.80247e-08
4.60753e-08
-4.18515e-08
4.58735e-08
-4.56684e-08
4.56487e-08
-4.94744e-08
4.54018e-08
-5.32683e-08
4.51334e-08
-5.70489e-08
4.48434e-08
-6.08153e-08
4.45318e-08
-6.45661e-08
4.41985e-08
-6.83003e-08
4.38435e-08
-7.20166e-08
4.34666e-08
-7.57138e-08
4.30679e-08
-7.93905e-08
4.2647e-08
-8.30454e-08
4.22041e-08
-8.66772e-08
4.17389e-08
-9.02845e-08
4.12514e-08
-9.38658e-08
4.07414e-08
-9.74198e-08
4.02089e-08
-1.00945e-07
3.96538e-08
-1.04439e-07
3.90759e-08
-1.07902e-07
3.84751e-08
-1.11331e-07
3.78514e-08
-1.14724e-07
3.72046e-08
-1.1808e-07
3.65347e-08
-1.21397e-07
3.58414e-08
-1.24673e-07
3.51249e-08
-1.27906e-07
3.43849e-08
-1.31094e-07
3.36214e-08
-1.34235e-07
3.28343e-08
-1.37327e-07
3.20236e-08
-1.40368e-07
3.11891e-08
-1.43356e-07
3.03309e-08
-1.46288e-07
2.94489e-08
-1.49162e-07
2.85431e-08
-1.51975e-07
2.76134e-08
-1.54725e-07
2.66599e-08
-1.5741e-07
2.56826e-08
-1.60027e-07
2.46815e-08
-1.62573e-07
2.36566e-08
-1.65045e-07
2.26081e-08
-1.67441e-07
2.15359e-08
-1.69758e-07
2.04403e-08
-1.71993e-07
1.93212e-08
-1.74143e-07
1.8179e-08
-1.76204e-07
1.70136e-08
-1.78174e-07
1.58254e-08
-1.8005e-07
1.46145e-08
-1.81828e-07
1.33812e-08
-1.83505e-07
1.21259e-08
-1.85078e-07
1.08487e-08
-1.86543e-07
9.55013e-09
-1.87896e-07
8.23053e-09
-1.89136e-07
6.89035e-09
-1.90257e-07
5.53015e-09
-1.91256e-07
4.15066e-09
-1.92129e-07
2.75321e-09
-1.92871e-07
1.33868e-09
-1.93486e-07
-9.78024e-11
-1.93961e-07
-1.55402e-09
-1.94296e-07
-3.02377e-09
-1.94486e-07
-4.50884e-09
-1.94529e-07
-6.00861e-09
-1.94419e-07
-7.52224e-09
-1.94153e-07
-9.04878e-09
-1.93727e-07
-1.05872e-08
-1.93138e-07
-1.21365e-08
-1.92381e-07
-1.36953e-08
-1.91453e-07
-1.52626e-08
-1.9035e-07
-1.6837e-08
-1.89067e-07
-1.8417e-08
-1.87602e-07
-2.00012e-08
-1.8595e-07
-2.15879e-08
-1.84108e-07
-2.31754e-08
-1.82071e-07
-2.47618e-08
-1.79837e-07
-2.63452e-08
-1.77402e-07
-2.79233e-08
-1.74763e-07
-2.94935e-08
-1.71918e-07
-3.10528e-08
-1.68866e-07
-3.25973e-08
-1.65605e-07
-3.41224e-08
-1.62138e-07
-3.56215e-08
-1.58469e-07
-3.70863e-08
-1.54606e-07
-3.85063e-08
-1.50564e-07
-3.98688e-08
-1.46361e-07
-4.11594e-08
-1.42025e-07
-4.2364e-08
-1.37585e-07
-4.34701e-08
-1.33077e-07
-4.44672e-08
-1.28542e-07
-4.534e-08
-1.24029e-07
-4.60394e-08
-4.64048e-08
-1.19626e-07
-1.53946e-09
1.95618e-08
-4.50457e-09
3.70215e-08
-8.12488e-09
4.48336e-08
-1.20434e-08
4.83037e-08
-1.60959e-08
4.98099e-08
-2.02071e-08
5.04222e-08
-2.43423e-08
5.06227e-08
-2.84854e-08
5.06284e-08
-3.26288e-08
5.05367e-08
-3.67683e-08
5.03906e-08
-4.09019e-08
5.02089e-08
-4.50278e-08
4.99996e-08
-4.91449e-08
4.97659e-08
-5.3252e-08
4.95091e-08
-5.73481e-08
4.92296e-08
-6.14323e-08
4.89275e-08
-6.55033e-08
4.86027e-08
-6.956e-08
4.82552e-08
-7.36014e-08
4.78848e-08
-7.76263e-08
4.74913e-08
-8.16333e-08
4.70748e-08
-8.56212e-08
4.66349e-08
-8.95887e-08
4.61717e-08
-9.35345e-08
4.56849e-08
-9.74572e-08
4.51743e-08
-1.01355e-07
4.46399e-08
-1.05228e-07
4.40815e-08
-1.09073e-07
4.34988e-08
-1.12889e-07
4.28918e-08
-1.16674e-07
4.22604e-08
-1.20427e-07
4.16042e-08
-1.24146e-07
4.09232e-08
-1.27828e-07
4.02173e-08
-1.31473e-07
3.94862e-08
-1.35079e-07
3.87299e-08
-1.38642e-07
3.79481e-08
-1.42161e-07
3.71407e-08
-1.45634e-07
3.63075e-08
-1.49059e-07
3.54485e-08
-1.52434e-07
3.45635e-08
-1.55756e-07
3.36524e-08
-1.59022e-07
3.2715e-08
-1.6223e-07
3.17513e-08
-1.65378e-07
3.07612e-08
-1.68462e-07
2.97445e-08
-1.71481e-07
2.87012e-08
-1.74431e-07
2.76313e-08
-1.77309e-07
2.65347e-08
-1.80112e-07
2.54114e-08
-1.82838e-07
2.42614e-08
-1.85482e-07
2.30848e-08
-1.88043e-07
2.18814e-08
-1.90515e-07
2.06516e-08
-1.92897e-07
1.93952e-08
-1.95184e-07
1.81124e-08
-1.97373e-07
1.68035e-08
-1.99461e-07
1.54684e-08
-2.01442e-07
1.41075e-08
-2.03315e-07
1.2721e-08
-2.05074e-07
1.13091e-08
-2.06716e-07
9.87226e-09
-2.08236e-07
8.41075e-09
-2.09631e-07
6.92507e-09
-2.10897e-07
5.41581e-09
-2.12027e-07
3.88408e-09
-2.13019e-07
2.33061e-09
-2.13876e-07
7.59126e-10
-2.14581e-07
-8.48421e-10
-2.15134e-07
-2.47115e-09
-2.1553e-07
-4.11295e-09
-2.15765e-07
-5.77388e-09
-2.15834e-07
-7.45331e-09
-2.15732e-07
-9.15042e-09
-2.15455e-07
-1.08643e-08
-2.14997e-07
-1.25939e-08
-2.14355e-07
-1.43381e-08
-2.13521e-07
-1.60958e-08
-2.12493e-07
-1.78657e-08
-2.11263e-07
-1.96465e-08
-2.09828e-07
-2.14367e-08
-2.08181e-07
-2.32346e-08
-2.06318e-07
-2.50388e-08
-2.04233e-07
-2.68473e-08
-2.0192e-07
-2.8658e-08
-1.99374e-07
-3.04688e-08
-1.96591e-07
-3.22769e-08
-1.93565e-07
-3.40786e-08
-1.90294e-07
-3.58694e-08
-1.86773e-07
-3.76427e-08
-1.83005e-07
-3.93898e-08
-1.78992e-07
-4.10984e-08
-1.74746e-07
-4.27524e-08
-1.70283e-07
-4.43321e-08
-1.65627e-07
-4.58151e-08
-1.60812e-07
-4.7179e-08
-1.55878e-07
-4.8404e-08
-1.50871e-07
-4.94738e-08
-1.45844e-07
-5.03672e-08
-1.40861e-07
-5.10221e-08
-5.12454e-08
-1.3602e-07
-1.64035e-09
2.12023e-08
-4.81146e-09
4.01928e-08
-8.69006e-09
4.87123e-08
-1.28923e-08
5.2506e-08
-1.72409e-08
5.41585e-08
-2.16543e-08
5.48356e-08
-2.60951e-08
5.50634e-08
-3.05458e-08
5.50791e-08
-3.49983e-08
5.49891e-08
-3.94483e-08
5.48405e-08
-4.38934e-08
5.4654e-08
-4.83322e-08
5.44384e-08
-5.27635e-08
5.41973e-08
-5.71863e-08
5.39319e-08
-6.15995e-08
5.36429e-08
-6.60022e-08
5.33303e-08
-7.03934e-08
5.29939e-08
-7.4772e-08
5.26338e-08
-7.9137e-08
5.22498e-08
-8.34873e-08
5.18416e-08
-8.78216e-08
5.14091e-08
-9.21389e-08
5.09522e-08
-9.64379e-08
5.04707e-08
-1.00717e-07
4.99642e-08
-1.04976e-07
4.94328e-08
-1.09212e-07
4.8876e-08
-1.13424e-07
4.82938e-08
-1.17612e-07
4.76859e-08
-1.21772e-07
4.70521e-08
-1.25904e-07
4.63922e-08
-1.30006e-07
4.57059e-08
-1.34075e-07
4.4993e-08
-1.38111e-07
4.42533e-08
-1.42112e-07
4.34865e-08
-1.46074e-07
4.26925e-08
-1.49997e-07
4.18709e-08
-1.53878e-07
4.10216e-08
-1.57714e-07
4.01443e-08
-1.61505e-07
3.92388e-08
-1.65246e-07
3.83049e-08
-1.68936e-07
3.73424e-08
-1.72572e-07
3.6351e-08
-1.76151e-07
3.53306e-08
-1.79671e-07
3.4281e-08
-1.83129e-07
3.3202e-08
-1.86521e-07
3.20935e-08
-1.89845e-07
3.09552e-08
-1.93098e-07
2.97871e-08
-1.96275e-07
2.8589e-08
-1.99375e-07
2.73609e-08
-2.02393e-07
2.61026e-08
-2.05326e-07
2.4814e-08
-2.08169e-07
2.34952e-08
-2.1092e-07
2.21461e-08
-2.13575e-07
2.07667e-08
-2.16129e-07
1.93571e-08
-2.18578e-07
1.79173e-08
-2.20918e-07
1.64475e-08
-2.23145e-07
1.49477e-08
-2.25254e-07
1.34181e-08
-2.27241e-07
1.1859e-08
-2.29101e-07
1.02705e-08
-2.30829e-07
8.65307e-09
-2.3242e-07
7.00709e-09
-2.33869e-07
5.33336e-09
-2.35171e-07
3.63257e-09
-2.36321e-07
1.909e-09
-2.37339e-07
1.69194e-10
-2.38172e-07
-1.63837e-09
-2.38838e-07
-3.44721e-09
-2.39331e-07
-5.28071e-09
-2.39646e-07
-7.13847e-09
-2.39777e-07
-9.01976e-09
-2.39717e-07
-1.09238e-08
-2.39462e-07
-1.28495e-08
-2.39004e-07
-1.47961e-08
-2.38337e-07
-1.67624e-08
-2.37456e-07
-1.87472e-08
-2.36353e-07
-2.07495e-08
-2.35021e-07
-2.27679e-08
-2.33455e-07
-2.48009e-08
-2.31646e-07
-2.68472e-08
-2.29588e-07
-2.89051e-08
-2.27274e-07
-3.09728e-08
-2.24695e-07
-3.30479e-08
-2.21844e-07
-3.51276e-08
-2.18715e-07
-3.72081e-08
-2.15301e-07
-3.92837e-08
-2.11598e-07
-4.13463e-08
-2.07604e-07
-4.33838e-08
-2.03323e-07
-4.53793e-08
-1.98765e-07
-4.73099e-08
-1.9395e-07
-4.91472e-08
-1.88906e-07
-5.0859e-08
-1.83673e-07
-5.24124e-08
-1.78298e-07
-5.37787e-08
-1.72838e-07
-5.49346e-08
-1.67353e-07
-5.58514e-08
-1.61921e-07
-5.64543e-08
-5.6528e-08
-1.56639e-07
-1.74228e-09
2.29447e-08
-5.12404e-09
4.35748e-08
-9.2682e-09
5.28566e-08
-1.3763e-08
5.70009e-08
-1.84174e-08
5.8813e-08
-2.31434e-08
5.95616e-08
-2.79004e-08
5.98205e-08
-3.26697e-08
5.98486e-08
-3.74425e-08
5.97621e-08
-4.22145e-08
5.96127e-08
-4.69831e-08
5.94229e-08
-5.17471e-08
5.92026e-08
-5.65053e-08
5.89555e-08
-6.12567e-08
5.86834e-08
-6.60005e-08
5.83867e-08
-7.07358e-08
5.80655e-08
-7.54617e-08
5.77198e-08
-8.01773e-08
5.73493e-08
-8.48815e-08
5.6954e-08
-8.95734e-08
5.65335e-08
-9.42519e-08
5.60877e-08
-9.8916e-08
5.56164e-08
-1.03564e-07
5.51193e-08
-1.08196e-07
5.45961e-08
-1.1281e-07
5.40466e-08
-1.17404e-07
5.34705e-08
-1.21978e-07
5.28676e-08
-1.2653e-07
5.22375e-08
-1.31058e-07
5.15799e-08
-1.3556e-07
5.08947e-08
-1.40036e-07
5.01814e-08
-1.44483e-07
4.94398e-08
-1.48899e-07
4.86695e-08
-1.53282e-07
4.78702e-08
-1.57632e-07
4.70417e-08
-1.61944e-07
4.61835e-08
-1.66218e-07
4.52954e-08
-1.70451e-07
4.4377e-08
-1.7464e-07
4.34281e-08
-1.78784e-07
4.24482e-08
-1.82878e-07
4.14371e-08
-1.86922e-07
4.03945e-08
-1.90911e-07
3.932e-08
-1.94843e-07
3.82134e-08
-1.98716e-07
3.70744e-08
-2.02525e-07
3.59026e-08
-2.06267e-07
3.46978e-08
-2.0994e-07
3.34598e-08
-2.1354e-07
3.21883e-08
-2.17062e-07
3.08831e-08
-2.20504e-07
2.9544e-08
-2.2386e-07
2.81707e-08
-2.27128e-07
2.67631e-08
-2.30304e-07
2.53211e-08
-2.33381e-07
2.38445e-08
-2.36358e-07
2.23333e-08
-2.39228e-07
2.07873e-08
-2.41987e-07
1.92066e-08
-2.44631e-07
1.75911e-08
-2.47154e-07
1.5941e-08
-2.49551e-07
1.42562e-08
-2.51818e-07
1.25369e-08
-2.53948e-07
1.07833e-08
-2.55937e-07
8.99584e-09
-2.57778e-07
7.17487e-09
-2.59467e-07
5.32133e-09
-2.60995e-07
3.43705e-09
-2.6235e-07
1.52386e-09
-2.63551e-07
-4.37749e-10
-2.6457e-07
-2.42768e-09
-2.65405e-07
-4.44592e-09
-2.66049e-07
-6.49435e-09
-2.66496e-07
-8.57269e-09
-2.6674e-07
-1.06804e-08
-2.66773e-07
-1.28167e-08
-2.66588e-07
-1.49808e-08
-2.66179e-07
-1.71719e-08
-2.65537e-07
-1.93891e-08
-2.64655e-07
-2.16313e-08
-2.63525e-07
-2.38975e-08
-2.6214e-07
-2.61866e-08
-2.6049e-07
-2.84974e-08
-2.58566e-07
-3.08286e-08
-2.56361e-07
-3.31785e-08
-2.53863e-07
-3.55452e-08
-2.51065e-07
-3.79258e-08
-2.47957e-07
-4.03163e-08
-2.44531e-07
-4.27101e-08
-2.4078e-07
-4.50971e-08
-2.36702e-07
-4.7462e-08
-2.32299e-07
-4.97826e-08
-2.27581e-07
-5.20286e-08
-2.22566e-07
-5.41622e-08
-2.17284e-07
-5.61405e-08
-2.11776e-07
-5.792e-08
-2.06093e-07
-5.94627e-08
-2.0029e-07
-6.07374e-08
-1.94434e-07
-6.1707e-08
-1.88604e-07
-6.22846e-08
-6.22511e-08
-1.8288e-07
-1.84406e-09
2.47888e-08
-5.43923e-09
4.71701e-08
-9.85414e-09
5.72716e-08
-1.46482e-08
6.17951e-08
-1.96161e-08
6.3781e-08
-2.46629e-08
6.46085e-08
-2.97448e-08
6.49026e-08
-3.48418e-08
6.49457e-08
-3.99444e-08
6.48649e-08
-4.50481e-08
6.47166e-08
-5.01505e-08
6.45255e-08
-5.52501e-08
6.43024e-08
-6.03461e-08
6.40516e-08
-6.54375e-08
6.37749e-08
-7.05236e-08
6.34728e-08
-7.56037e-08
6.31456e-08
-8.06771e-08
6.27931e-08
-8.57429e-08
6.24151e-08
-9.08004e-08
6.20115e-08
-9.58487e-08
6.15818e-08
-1.00887e-07
6.1126e-08
-1.05914e-07
6.06436e-08
-1.10929e-07
6.01344e-08
-1.15931e-07
5.95981e-08
-1.20919e-07
5.90343e-08
-1.25891e-07
5.84428e-08
-1.30847e-07
5.7823e-08
-1.35784e-07
5.71748e-08
-1.40702e-07
5.64978e-08
-1.45599e-07
5.57914e-08
-1.50473e-07
5.50555e-08
-1.55323e-07
5.42895e-08
-1.60146e-07
5.3493e-08
-1.64942e-07
5.26657e-08
-1.69707e-07
5.18071e-08
-1.7444e-07
5.09168e-08
-1.79139e-07
4.99944e-08
-1.83802e-07
4.90394e-08
-1.88425e-07
4.80513e-08
-1.93007e-07
4.70299e-08
-1.97545e-07
4.59745e-08
-2.02035e-07
4.48849e-08
-2.06476e-07
4.37605e-08
-2.10863e-07
4.26009e-08
-2.15195e-07
4.14057e-08
-2.19467e-07
4.01745e-08
-2.23676e-07
3.89068e-08
-2.27818e-07
3.76022e-08
-2.3189e-07
3.62604e-08
-2.35888e-07
3.4881e-08
-2.39808e-07
3.34636e-08
-2.43645e-07
3.20079e-08
-2.47396e-07
3.05135e-08
-2.51055e-07
2.89802e-08
-2.54619e-07
2.74076e-08
-2.58081e-07
2.57956e-08
-2.61438e-07
2.41438e-08
-2.64683e-07
2.24521e-08
-2.67813e-07
2.07204e-08
-2.7082e-07
1.89484e-08
-2.737e-07
1.71362e-08
-2.76447e-07
1.52837e-08
-2.79055e-07
1.3391e-08
-2.81517e-07
1.14581e-08
-2.83827e-07
9.48529e-09
-2.85979e-07
7.47322e-09
-2.87965e-07
5.42269e-09
-2.89777e-07
3.33521e-09
-2.91436e-07
1.22146e-09
-2.92894e-07
-9.69544e-10
-2.94158e-07
-3.18166e-09
-2.95223e-07
-5.42972e-09
-2.96081e-07
-7.71486e-09
-2.96724e-07
-1.00368e-08
-2.97146e-07
-1.23952e-08
-2.97337e-07
-1.47892e-08
-2.97291e-07
-1.72184e-08
-2.96998e-07
-1.96818e-08
-2.96451e-07
-2.21787e-08
-2.9564e-07
-2.47083e-08
-2.94557e-07
-2.72697e-08
-2.93192e-07
-2.98621e-08
-2.91537e-07
-3.24842e-08
-2.89581e-07
-3.51349e-08
-2.87314e-07
-3.78124e-08
-2.84726e-07
-4.0514e-08
-2.81807e-07
-4.32353e-08
-2.78547e-07
-4.59691e-08
-2.74941e-07
-4.87035e-08
-2.70983e-07
-5.14203e-08
-2.66673e-07
-5.40923e-08
-2.62019e-07
-5.66829e-08
-2.57036e-07
-5.91461e-08
-2.51746e-07
-6.14303e-08
-2.46182e-07
-6.34837e-08
-2.40384e-07
-6.52607e-08
-2.34399e-07
-6.67227e-08
-2.28283e-07
-6.78227e-08
-2.22104e-07
-6.84624e-08
-6.84401e-08
-2.15915e-07
-1.94414e-09
2.67331e-08
-5.75323e-09
5.09792e-08
-1.04416e-08
6.19601e-08
-1.55392e-08
6.68928e-08
-2.08257e-08
6.90676e-08
-2.6199e-08
6.99819e-08
-3.16121e-08
7.03158e-08
-3.70433e-08
7.03772e-08
-4.24828e-08
7.03045e-08
-4.79256e-08
7.01595e-08
-5.33694e-08
6.99694e-08
-5.88129e-08
6.97459e-08
-6.42551e-08
6.94939e-08
-6.96956e-08
6.92153e-08
-7.51336e-08
6.89109e-08
-8.05687e-08
6.85807e-08
-8.60003e-08
6.82248e-08
-9.14277e-08
6.78427e-08
-9.68505e-08
6.74344e-08
-1.02268e-07
6.69994e-08
-1.07679e-07
6.65375e-08
-1.13084e-07
6.60483e-08
-1.18481e-07
6.55314e-08
-1.23869e-07
6.49865e-08
-1.29248e-07
6.44132e-08
-1.34617e-07
6.3811e-08
-1.39973e-07
6.31795e-08
-1.45317e-07
6.25184e-08
-1.50646e-07
6.1827e-08
-1.5596e-07
6.11051e-08
-1.61256e-07
6.0352e-08
-1.66534e-07
5.95673e-08
-1.71791e-07
5.87504e-08
-1.77027e-07
5.79009e-08
-1.82238e-07
5.70182e-08
-1.87423e-07
5.61018e-08
-1.92579e-07
5.51511e-08
-1.97706e-07
5.41655e-08
-2.02799e-07
5.31445e-08
-2.07856e-07
5.20876e-08
-2.12876e-07
5.0994e-08
-2.17854e-07
4.98634e-08
-2.22789e-07
4.8695e-08
-2.27676e-07
4.74883e-08
-2.32513e-07
4.62427e-08
-2.37297e-07
4.49577e-08
-2.42023e-07
4.36326e-08
-2.46687e-07
4.22668e-08
-2.51287e-07
4.08599e-08
-2.55817e-07
3.94113e-08
-2.60274e-07
3.79204e-08
-2.64653e-07
3.63867e-08
-2.68949e-07
3.48096e-08
-2.73158e-07
3.31887e-08
-2.77274e-07
3.15236e-08
-2.81293e-07
2.98138e-08
-2.85208e-07
2.80588e-08
-2.89014e-07
2.62583e-08
-2.92706e-07
2.44119e-08
-2.96277e-07
2.25193e-08
-2.99721e-07
2.05803e-08
-3.03032e-07
1.85946e-08
-3.06203e-07
1.6562e-08
-3.09227e-07
1.44825e-08
-3.12098e-07
1.23562e-08
-3.14808e-07
1.01833e-08
-3.1735e-07
7.96446e-09
-3.19716e-07
5.70122e-09
-3.21888e-07
3.39332e-09
-3.23912e-07
1.05485e-09
-3.25711e-07
-1.38241e-09
-3.27302e-07
-3.83846e-09
-3.28679e-07
-6.33836e-09
-3.29833e-07
-8.88314e-09
-3.30755e-07
-1.14726e-08
-3.31438e-07
-1.41063e-08
-3.31872e-07
-1.67836e-08
-3.3205e-07
-1.9504e-08
-3.31962e-07
-2.22667e-08
-3.31599e-07
-2.5071e-08
-3.30953e-07
-2.79161e-08
-3.30014e-07
-3.08012e-08
-3.28773e-07
-3.37253e-08
-3.2722e-07
-3.66873e-08
-3.25348e-07
-3.96853e-08
-3.23145e-07
-4.27167e-08
-3.20604e-07
-4.57769e-08
-3.17716e-07
-4.88579e-08
-3.14472e-07
-5.19468e-08
-3.10869e-07
-5.50235e-08
-3.06903e-07
-5.80582e-08
-3.02575e-07
-6.10112e-08
-2.97889e-07
-6.38328e-08
-2.92852e-07
-6.64678e-08
-2.87474e-07
-6.88615e-08
-2.81769e-07
-7.09651e-08
-2.75758e-07
-7.27334e-08
-2.69474e-07
-7.41071e-08
-2.6296e-07
-7.49768e-08
-7.51745e-08
-2.56225e-07
-2.04111e-09
2.87743e-08
-6.06184e-09
5.50001e-08
-1.10233e-08
6.69217e-08
-1.64256e-08
7.22952e-08
-2.20328e-08
7.46749e-08
-2.77353e-08
7.56846e-08
-3.34827e-08
7.60634e-08
-3.92519e-08
7.61465e-08
-4.50321e-08
7.60848e-08
-5.08184e-08
7.59459e-08
-5.66084e-08
7.57594e-08
-6.24009e-08
7.55383e-08
-6.81951e-08
7.5288e-08
-7.39908e-08
7.50108e-08
-7.97874e-08
7.47074e-08
-8.55847e-08
7.4378e-08
-9.13825e-08
7.40224e-08
-9.71803e-08
7.36405e-08
-1.02978e-07
7.32319e-08
-1.08775e-07
7.27963e-08
-1.1457e-07
7.23332e-08
-1.20365e-07
7.18423e-08
-1.26156e-07
7.13231e-08
-1.31945e-07
7.07752e-08
-1.3773e-07
7.01981e-08
-1.4351e-07
6.95913e-08
-1.49285e-07
6.89543e-08
-1.55053e-07
6.82866e-08
-1.60814e-07
6.75877e-08
-1.66565e-07
6.68568e-08
-1.72306e-07
6.60936e-08
-1.78036e-07
6.52972e-08
-1.83753e-07
6.44672e-08
-1.89455e-07
6.36029e-08
-1.9514e-07
6.27036e-08
-2.00807e-07
6.17687e-08
-2.06453e-07
6.07975e-08
-2.12077e-07
5.97892e-08
-2.17676e-07
5.87432e-08
-2.23247e-07
5.76588e-08
-2.28788e-07
5.65351e-08
-2.34296e-07
5.53715e-08
-2.39768e-07
5.41673e-08
-2.45202e-07
5.29216e-08
-2.50592e-07
5.16336e-08
-2.55938e-07
5.03027e-08
-2.61233e-07
4.89281e-08
-2.66475e-07
4.75089e-08
-2.7166e-07
4.60445e-08
-2.76783e-07
4.45341e-08
-2.8184e-07
4.29769e-08
-2.86826e-07
4.13721e-08
-2.91735e-07
3.97192e-08
-2.96564e-07
3.80172e-08
-3.01306e-07
3.62656e-08
-3.05957e-07
3.44637e-08
-3.10509e-07
3.26109e-08
-3.14957e-07
3.07064e-08
-3.19295e-07
2.87497e-08
-3.23516e-07
2.67404e-08
-3.27614e-07
2.46778e-08
-3.31581e-07
2.25615e-08
-3.3541e-07
2.03912e-08
-3.39094e-07
1.81665e-08
-3.42625e-07
1.58873e-08
-3.45995e-07
1.35534e-08
-3.49196e-07
1.11654e-08
-3.52217e-07
8.7231e-09
-3.55053e-07
6.22865e-09
-3.57683e-07
3.68544e-09
-3.6015e-07
1.08484e-09
-3.62388e-07
-1.60145e-09
-3.64402e-07
-4.32462e-09
-3.66185e-07
-7.09988e-09
-3.67729e-07
-9.92842e-09
-3.69026e-07
-1.28101e-08
-3.70065e-07
-1.57444e-08
-3.70838e-07
-1.87308e-08
-3.71336e-07
-2.17685e-08
-3.71551e-07
-2.48567e-08
-3.71473e-07
-2.79943e-08
-3.71094e-07
-3.11803e-08
-3.70405e-07
-3.44136e-08
-3.694e-07
-3.76926e-08
-3.6807e-07
-4.10153e-08
-3.66408e-07
-4.43785e-08
-3.64408e-07
-4.77772e-08
-3.62063e-07
-5.12032e-08
-3.59367e-07
-5.46436e-08
-3.56312e-07
-5.80785e-08
-3.52891e-07
-6.14795e-08
-3.49093e-07
-6.48089e-08
-3.44904e-07
-6.80208e-08
-3.40307e-07
-7.10648e-08
-3.35278e-07
-7.38903e-08
-3.29793e-07
-7.64499e-08
-3.23835e-07
-7.86917e-08
-3.17402e-07
-8.054e-08
-3.10506e-07
-8.18723e-08
-8.25617e-08
-3.03119e-07
-2.13296e-09
3.09072e-08
-6.36008e-09
5.92271e-08
-1.1591e-08
7.21526e-08
-1.72955e-08
7.79997e-08
-2.32219e-08
8.06015e-08
-2.92529e-08
8.17157e-08
-3.53343e-08
8.2145e-08
-4.14413e-08
8.22536e-08
-4.75626e-08
8.22063e-08
-5.36931e-08
8.20765e-08
-5.98304e-08
8.18968e-08
-6.59734e-08
8.16814e-08
-7.21218e-08
8.14364e-08
-7.82752e-08
8.11642e-08
-8.44336e-08
8.08659e-08
-9.0597e-08
8.05415e-08
-9.67655e-08
8.0191e-08
-1.02939e-07
7.9814e-08
-1.09117e-07
7.94103e-08
-1.15301e-07
7.89794e-08
-1.21488e-07
7.85209e-08
-1.27681e-07
7.80343e-08
-1.33877e-07
7.75191e-08
-1.40077e-07
7.69748e-08
-1.4628e-07
7.64008e-08
-1.52485e-07
7.57966e-08
-1.58692e-07
7.51616e-08
-1.64901e-07
7.4495e-08
-1.71109e-07
7.37964e-08
-1.77317e-07
7.30649e-08
-1.83524e-07
7.22999e-08
-1.89727e-07
7.15007e-08
-1.95927e-07
7.06666e-08
-2.0212e-07
6.97966e-08
-2.08307e-07
6.88902e-08
-2.14484e-07
6.79463e-08
-2.20651e-07
6.69643e-08
-2.26805e-07
6.59433e-08
-2.32944e-07
6.48823e-08
-2.39066e-07
6.37806e-08
-2.45168e-07
6.26371e-08
-2.51247e-07
6.14511e-08
-2.57301e-07
6.02214e-08
-2.63327e-07
5.89472e-08
-2.69321e-07
5.76276e-08
-2.7528e-07
5.62614e-08
-2.81199e-07
5.48479e-08
-2.87076e-07
5.33859e-08
-2.92906e-07
5.18744e-08
-2.98685e-07
5.03125e-08
-3.04407e-07
4.86993e-08
-3.10069e-07
4.70336e-08
-3.15664e-07
4.53145e-08
-3.21188e-07
4.3541e-08
-3.26635e-07
4.17122e-08
-3.31998e-07
3.98272e-08
-3.37272e-07
3.78849e-08
-3.4245e-07
3.58845e-08
-3.47525e-07
3.38251e-08
-3.52491e-07
3.1706e-08
-3.57339e-07
2.95262e-08
-3.62063e-07
2.72851e-08
-3.66654e-07
2.4982e-08
-3.71103e-07
2.26163e-08
-3.75404e-07
2.01875e-08
-3.79545e-07
1.76953e-08
-3.83519e-07
1.51395e-08
-3.87316e-07
1.25202e-08
-3.90925e-07
9.83758e-09
-3.94334e-07
7.09375e-09
-3.97538e-07
4.2891e-09
-4.00567e-07
1.42802e-09
-4.03346e-07
-1.54628e-09
-4.05885e-07
-4.56033e-09
-4.08178e-07
-7.63553e-09
-4.10215e-07
-1.07735e-08
-4.11986e-07
-1.39741e-08
-4.1348e-07
-1.72366e-08
-4.14689e-07
-2.056e-08
-4.15602e-07
-2.39433e-08
-4.16211e-07
-2.73851e-08
-4.16508e-07
-3.08837e-08
-4.16484e-07
-3.44374e-08
-4.16133e-07
-3.80438e-08
-4.15449e-07
-4.17001e-08
-4.14425e-07
-4.54025e-08
-4.13056e-07
-4.91456e-08
-4.11338e-07
-5.29215e-08
-4.09263e-07
-5.67184e-08
-4.06822e-07
-6.05197e-08
-4.03999e-07
-6.43026e-08
-4.00771e-07
-6.80376e-08
-3.97101e-07
-7.16902e-08
-3.92944e-07
-7.52221e-08
-3.8824e-07
-7.85939e-08
-3.82928e-07
-8.17617e-08
-3.76954e-07
-8.46658e-08
-3.70284e-07
-8.72098e-08
-3.62898e-07
-8.92585e-08
-9.07266e-08
-3.54733e-07
-2.21758e-09
3.31248e-08
-6.64206e-09
6.36516e-08
-1.21345e-08
7.76451e-08
-1.81346e-08
8.39999e-08
-2.43747e-08
8.68415e-08
-3.0729e-08
8.80701e-08
-3.71398e-08
8.85557e-08
-4.35805e-08
8.86943e-08
-5.00391e-08
8.86649e-08
-5.65104e-08
8.85477e-08
-6.2992e-08
8.83783e-08
-6.9483e-08
8.81723e-08
-7.59832e-08
8.79366e-08
-8.24928e-08
8.76738e-08
-8.90121e-08
8.73851e-08
-9.55414e-08
8.70707e-08
-1.02081e-07
8.67305e-08
-1.08631e-07
8.63643e-08
-1.15193e-07
8.59715e-08
-1.21765e-07
8.55517e-08
-1.28349e-07
8.51046e-08
-1.34944e-07
8.46294e-08
-1.4155e-07
8.41256e-08
-1.48168e-07
8.35927e-08
-1.54797e-07
8.30299e-08
-1.61437e-07
8.24367e-08
-1.68087e-07
8.18124e-08
-1.74748e-07
8.11561e-08
-1.81418e-07
8.04672e-08
-1.88098e-07
7.97448e-08
-1.94786e-07
7.89882e-08
-2.01482e-07
7.81965e-08
-2.08184e-07
7.73688e-08
-2.14892e-07
7.65042e-08
-2.21604e-07
7.56019e-08
-2.28318e-07
7.46607e-08
-2.35034e-07
7.36798e-08
-2.41748e-07
7.26582e-08
-2.48461e-07
7.15947e-08
-2.55168e-07
7.04883e-08
-2.61869e-07
6.93379e-08
-2.6856e-07
6.81424e-08
-2.7524e-07
6.69006e-08
-2.81904e-07
6.56113e-08
-2.8855e-07
6.42734e-08
-2.95174e-07
6.28857e-08
-3.01773e-07
6.14469e-08
-3.08343e-07
5.99558e-08
-3.1488e-07
5.84112e-08
-3.21379e-07
5.68116e-08
-3.27836e-07
5.5156e-08
-3.34245e-07
5.3443e-08
-3.40602e-07
5.16713e-08
-3.469e-07
4.98396e-08
-3.53135e-07
4.79466e-08
-3.59299e-07
4.59911e-08
-3.65385e-07
4.39718e-08
-3.71388e-07
4.18875e-08
-3.773e-07
3.97369e-08
-3.83113e-07
3.75189e-08
-3.88819e-07
3.52323e-08
-3.9441e-07
3.2876e-08
-3.99877e-07
3.0449e-08
-4.05211e-07
2.79503e-08
-4.10402e-07
2.5379e-08
-4.15441e-07
2.27345e-08
-4.20318e-07
2.00161e-08
-4.25021e-07
1.72233e-08
-4.2954e-07
1.43565e-08
-4.33861e-07
1.14148e-08
-4.37971e-07
8.39946e-09
-4.41859e-07
5.31621e-09
-4.45579e-07
2.17323e-09
-4.4902e-07
-1.1193e-09
-4.52202e-07
-4.45288e-09
-4.55118e-07
-7.85761e-09
-4.57756e-07
-1.13365e-08
-4.60103e-07
-1.48893e-08
-4.62148e-07
-1.85149e-08
-4.6388e-07
-2.22117e-08
-4.65287e-07
-2.59782e-08
-4.66359e-07
-2.98119e-08
-4.67086e-07
-3.37105e-08
-4.6746e-07
-3.76706e-08
-4.67471e-07
-4.16887e-08
-4.67114e-07
-4.57602e-08
-4.66381e-07
-4.98794e-08
-4.65263e-07
-5.40392e-08
-4.63751e-07
-5.82304e-08
-4.61829e-07
-6.24414e-08
-4.59474e-07
-6.66576e-08
-4.5665e-07
-7.08618e-08
-4.53306e-07
-7.50339e-08
-4.49377e-07
-7.91514e-08
-4.44785e-07
-8.31868e-08
-4.39447e-07
-8.70991e-08
-4.33296e-07
-9.08171e-08
-4.26282e-07
-9.42239e-08
-4.18363e-07
-9.71772e-08
-9.9633e-08
-4.09457e-07
-2.29277e-09
3.54175e-08
-6.90178e-09
6.82606e-08
-1.26434e-08
8.33867e-08
-1.89279e-08
9.02845e-08
-2.5471e-08
9.33847e-08
-3.21389e-08
9.4738e-08
-3.88696e-08
9.52864e-08
-4.56348e-08
9.54595e-08
-5.2422e-08
9.5452e-08
-5.92256e-08
9.53512e-08
-6.60434e-08
9.5196e-08
-7.28748e-08
9.50037e-08
-7.97199e-08
9.47817e-08
-8.65792e-08
9.45331e-08
-9.34534e-08
9.42593e-08
-1.00343e-07
9.39605e-08
-1.07249e-07
9.36366e-08
-1.14173e-07
9.32874e-08
-1.21114e-07
9.29124e-08
-1.28073e-07
9.2511e-08
-1.35052e-07
9.20827e-08
-1.42049e-07
9.1627e-08
-1.49067e-07
9.11432e-08
-1.56105e-07
9.06305e-08
-1.63163e-07
9.00883e-08
-1.70242e-07
8.95159e-08
-1.77342e-07
8.89124e-08
-1.84463e-07
8.8277e-08
-1.91604e-07
8.76088e-08
-1.98766e-07
8.6907e-08
-2.05948e-07
8.61706e-08
-2.1315e-07
8.53986e-08
-2.20371e-07
8.45901e-08
-2.27611e-07
8.37439e-08
-2.34868e-07
8.28591e-08
-2.42142e-07
8.19345e-08
-2.49431e-07
8.09689e-08
-2.56733e-07
7.99612e-08
-2.64049e-07
7.891e-08
-2.71375e-07
7.78143e-08
-2.78709e-07
7.66725e-08
-2.86051e-07
7.54835e-08
-2.93396e-07
7.42458e-08
-3.00743e-07
7.2958e-08
-3.08088e-07
7.16188e-08
-3.15429e-07
7.02265e-08
-3.22762e-07
6.87798e-08
-3.30083e-07
6.7277e-08
-3.37389e-07
6.57167e-08
-3.44674e-07
6.40973e-08
-3.51935e-07
6.24171e-08
-3.59167e-07
6.06746e-08
-3.66364e-07
5.8868e-08
-3.7352e-07
5.69958e-08
-3.80629e-07
5.50563e-08
-3.87686e-07
5.30478e-08
-3.94683e-07
5.09687e-08
-4.01612e-07
4.88173e-08
-4.08467e-07
4.65919e-08
-4.15239e-07
4.4291e-08
-4.2192e-07
4.19129e-08
-4.285e-07
3.9456e-08
-4.3497e-07
3.6919e-08
-4.4132e-07
3.43003e-08
-4.47539e-07
3.15985e-08
-4.53617e-07
2.88125e-08
-4.59542e-07
2.59412e-08
-4.65303e-07
2.29835e-08
-4.70885e-07
1.99387e-08
-4.76277e-07
1.68066e-08
-4.81465e-07
1.35873e-08
-4.8643e-07
1.02817e-08
-4.91143e-07
6.88528e-09
-4.95668e-07
3.40643e-09
-4.99926e-07
-1.95637e-10
-5.03894e-07
-3.88959e-09
-5.07565e-07
-7.66479e-09
-5.10927e-07
-1.15276e-08
-5.13963e-07
-1.54784e-08
-5.16659e-07
-1.95161e-08
-5.18998e-07
-2.3639e-08
-5.20965e-07
-2.78449e-08
-5.22545e-07
-3.21309e-08
-5.23721e-07
-3.64937e-08
-5.24481e-07
-4.0929e-08
-5.24809e-07
-4.54321e-08
-5.24691e-07
-4.99978e-08
-5.2411e-07
-5.46199e-08
-5.23049e-07
-5.92922e-08
-5.21482e-07
-6.40079e-08
-5.19379e-07
-6.87602e-08
-5.16698e-07
-7.35422e-08
-5.13385e-07
-7.83461e-08
-5.09376e-07
-8.31609e-08
-5.04598e-07
-8.79659e-08
-4.98979e-07
-9.27181e-08
-4.92462e-07
-9.7334e-08
-4.85003e-07
-1.01682e-07
-4.76549e-07
-1.05631e-07
-1.09179e-07
-4.67003e-07
-2.35583e-09
3.77734e-08
-7.13207e-09
7.30368e-08
-1.31055e-08
8.93601e-08
-1.96579e-08
9.68368e-08
-2.64884e-08
1.00215e-07
-3.34546e-08
1.01704e-07
-4.04903e-08
1.02322e-07
-4.75655e-08
1.02535e-07
-5.46668e-08
1.02553e-07
-6.17887e-08
1.02473e-07
-6.89291e-08
1.02337e-07
-7.60877e-08
1.02163e-07
-8.32649e-08
1.01959e-07
-9.04616e-08
1.0173e-07
-9.76791e-08
1.01477e-07
-1.04918e-07
1.012e-07
-1.12181e-07
1.00899e-07
-1.19467e-07
1.00574e-07
-1.26779e-07
1.00224e-07
-1.34118e-07
9.98495e-08
-1.41484e-07
9.94487e-08
-1.48878e-07
9.90215e-08
-1.56302e-07
9.85671e-08
-1.63756e-07
9.80847e-08
-1.71241e-07
9.75736e-08
-1.78758e-07
9.70328e-08
-1.86308e-07
9.64617e-08
-1.9389e-07
9.58591e-08
-2.01506e-07
9.52242e-08
-2.09155e-07
9.4556e-08
-2.16838e-07
9.38533e-08
-2.24555e-07
9.31152e-08
-2.32305e-07
9.23405e-08
-2.40089e-07
9.15279e-08
-2.47906e-07
9.06763e-08
-2.55756e-07
8.97844e-08
-2.63638e-07
8.88508e-08
-2.71551e-07
8.78742e-08
-2.79494e-07
8.68531e-08
-2.87466e-07
8.57862e-08
-2.95465e-07
8.46718e-08
-3.0349e-07
8.35084e-08
-3.11539e-07
8.22944e-08
-3.19609e-07
8.10281e-08
-3.27698e-07
7.97079e-08
-3.35803e-07
7.8332e-08
-3.43922e-07
7.68985e-08
-3.5205e-07
7.54058e-08
-3.60185e-07
7.38518e-08
-3.68322e-07
7.22346e-08
-3.76457e-07
7.05523e-08
-3.84586e-07
6.8803e-08
-3.92702e-07
6.69844e-08
-4.00801e-07
6.50947e-08
-4.08876e-07
6.31317e-08
-4.16921e-07
6.10932e-08
-4.2493e-07
5.89772e-08
-4.32894e-07
5.67815e-08
-4.40806e-07
5.45039e-08
-4.48657e-07
5.21423e-08
-4.56439e-07
4.96945e-08
-4.64141e-07
4.71584e-08
-4.71754e-07
4.45318e-08
-4.79267e-07
4.18127e-08
-4.86667e-07
3.89992e-08
-4.93944e-07
3.60891e-08
-5.01084e-07
3.30808e-08
-5.08073e-07
2.99725e-08
-5.14897e-07
2.67626e-08
-5.2154e-07
2.34499e-08
-5.27986e-07
2.00325e-08
-5.34214e-07
1.65104e-08
-5.40214e-07
1.28857e-08
-5.45964e-07
9.15629e-09
-5.51477e-07
5.31725e-09
-5.56777e-07
1.40969e-09
-5.61691e-07
-2.75131e-09
-5.66277e-07
-6.94097e-09
-5.70517e-07
-1.12388e-08
-5.74387e-07
-1.56461e-08
-5.77864e-07
-2.01619e-08
-5.80924e-07
-2.47846e-08
-5.83544e-07
-2.95119e-08
-5.85697e-07
-3.43409e-08
-5.87357e-07
-3.92682e-08
-5.885e-07
-4.42897e-08
-5.89096e-07
-4.94011e-08
-5.89119e-07
-5.45978e-08
-5.88535e-07
-5.98753e-08
-5.87314e-07
-6.52299e-08
-5.85416e-07
-7.06584e-08
-5.828e-07
-7.61581e-08
-5.79421e-07
-8.17252e-08
-5.75231e-07
-8.73507e-08
-5.70185e-07
-9.30112e-08
-5.64248e-07
-9.86548e-08
-5.57397e-07
-1.04186e-07
-5.49607e-07
-1.09473e-07
-5.40825e-07
-1.14413e-07
-1.19064e-07
-5.30941e-07
-2.40424e-09
4.01776e-08
-7.32544e-09
7.79579e-08
-1.35076e-08
9.55422e-08
-2.03054e-08
1.03635e-07
-2.74014e-08
1.07311e-07
-3.46446e-08
1.08947e-07
-4.19644e-08
1.09642e-07
-4.93288e-08
1.09899e-07
-5.6724e-08
1.09949e-07
-6.4144e-08
1.09893e-07
-7.15871e-08
1.0978e-07
-7.90534e-08
1.09629e-07
-8.65436e-08
1.0945e-07
-9.40592e-08
1.09246e-07
-1.01602e-07
1.0902e-07
-1.09173e-07
1.08771e-07
-1.16775e-07
1.08501e-07
-1.24409e-07
1.08208e-07
-1.32076e-07
1.07892e-07
-1.39779e-07
1.07552e-07
-1.47519e-07
1.07189e-07
-1.55297e-07
1.068e-07
-1.63115e-07
1.06385e-07
-1.70975e-07
1.05945e-07
-1.78878e-07
1.05476e-07
-1.86824e-07
1.0498e-07
-1.94816e-07
1.04454e-07
-2.02854e-07
1.03897e-07
-2.1094e-07
1.0331e-07
-2.19074e-07
1.0269e-07
-2.27257e-07
1.02036e-07
-2.35489e-07
1.01348e-07
-2.43772e-07
1.00624e-07
-2.52106e-07
9.98618e-08
-2.60491e-07
9.90612e-08
-2.68927e-07
9.82204e-08
-2.77414e-07
9.7338e-08
-2.85952e-07
9.64123e-08
-2.94541e-07
9.54418e-08
-3.0318e-07
9.44247e-08
-3.11868e-07
9.33594e-08
-3.20604e-07
9.22441e-08
-3.29386e-07
9.10769e-08
-3.38214e-07
8.98559e-08
-3.47085e-07
8.85791e-08
-3.55998e-07
8.72445e-08
-3.6495e-07
8.585e-08
-3.73937e-07
8.43934e-08
-3.82958e-07
8.28725e-08
-3.92008e-07
8.12849e-08
-4.01085e-07
7.96284e-08
-4.10182e-07
7.79005e-08
-4.19296e-07
7.60988e-08
-4.28422e-07
7.42206e-08
-4.37554e-07
7.22636e-08
-4.46685e-07
7.02249e-08
-4.5581e-07
6.8102e-08
-4.64921e-07
6.58921e-08
-4.74009e-07
6.35924e-08
-4.83067e-07
6.12002e-08
-4.92085e-07
5.87126e-08
-5.01053e-07
5.61269e-08
-5.09962e-07
5.344e-08
-5.18798e-07
5.06493e-08
-5.27551e-07
4.77519e-08
-5.36207e-07
4.4745e-08
-5.44752e-07
4.16259e-08
-5.53172e-07
3.8392e-08
-5.6145e-07
3.50407e-08
-5.6957e-07
3.15695e-08
-5.77513e-07
2.79759e-08
-5.85261e-07
2.4258e-08
-5.9279e-07
2.04149e-08
-6.00076e-07
1.64427e-08
-6.07109e-07
1.23497e-08
-6.13829e-07
8.13002e-09
-6.20336e-07
3.75564e-09
-6.26481e-07
-7.96402e-10
-6.32251e-07
-5.4689e-09
-6.37625e-07
-1.02719e-08
-6.42575e-07
-1.52123e-08
-6.47068e-07
-2.02914e-08
-6.51071e-07
-2.5509e-08
-6.54548e-07
-3.08642e-08
-6.57461e-07
-3.63553e-08
-6.59771e-07
-4.19802e-08
-6.61435e-07
-4.77363e-08
-6.62412e-07
-5.36207e-08
-6.62657e-07
-5.96299e-08
-6.62126e-07
-6.57604e-08
-6.60777e-07
-7.20084e-08
-6.58566e-07
-7.83687e-08
-6.55459e-07
-8.48331e-08
-6.51425e-07
-9.13847e-08
-6.46447e-07
-9.79885e-08
-6.40523e-07
-1.04578e-07
-6.33659e-07
-1.1105e-07
-6.25844e-07
-1.17288e-07
-6.17016e-07
-1.23241e-07
-1.29033e-07
-6.07047e-07
-2.43513e-09
4.26126e-08
-7.4741e-09
8.29967e-08
-1.3836e-08
1.01904e-07
-2.08504e-08
1.10649e-07
-2.81838e-08
1.14644e-07
-3.56761e-08
1.16439e-07
-4.32523e-08
1.17218e-07
-5.08785e-08
1.17525e-07
-5.85401e-08
1.1761e-07
-6.62313e-08
1.17585e-07
-7.39503e-08
1.17499e-07
-8.16977e-08
1.17376e-07
-8.94748e-08
1.17227e-07
-9.72836e-08
1.17055e-07
-1.05126e-07
1.16862e-07
-1.13004e-07
1.1665e-07
-1.20921e-07
1.16417e-07
-1.28878e-07
1.16165e-07
-1.36878e-07
1.15892e-07
-1.44923e-07
1.15597e-07
-1.53015e-07
1.15281e-07
-1.61156e-07
1.14941e-07
-1.69349e-07
1.14578e-07
-1.77596e-07
1.14191e-07
-1.85898e-07
1.13778e-07
-1.94257e-07
1.13339e-07
-2.02677e-07
1.12872e-07
-2.11157e-07
1.12377e-07
-2.197e-07
1.11853e-07
-2.28307e-07
1.11297e-07
-2.36981e-07
1.1071e-07
-2.45722e-07
1.10089e-07
-2.54532e-07
1.09433e-07
-2.63411e-07
1.08742e-07
-2.72362e-07
1.08012e-07
-2.81385e-07
1.07244e-07
-2.90481e-07
1.06434e-07
-2.9965e-07
1.05582e-07
-3.08894e-07
1.04685e-07
-3.18211e-07
1.03742e-07
-3.27602e-07
1.02751e-07
-3.37068e-07
1.01709e-07
-3.46606e-07
1.00616e-07
-3.56218e-07
9.94675e-08
-3.65901e-07
9.82626e-08
-3.75655e-07
9.69987e-08
-3.85479e-07
9.56733e-08
-3.9537e-07
9.42839e-08
-4.05325e-07
9.2828e-08
-4.15343e-07
9.13029e-08
-4.25421e-07
8.97057e-08
-4.35554e-07
8.80338e-08
-4.4574e-07
8.6284e-08
-4.55972e-07
8.44535e-08
-4.66248e-07
8.25391e-08
-4.76561e-07
8.05377e-08
-4.86905e-07
7.84458e-08
-4.97273e-07
7.62603e-08
-5.07658e-07
7.39776e-08
-5.18052e-07
7.15942e-08
-5.28446e-07
6.91066e-08
-5.3883e-07
6.65112e-08
-5.49195e-07
6.38042e-08
-5.59527e-07
6.09818e-08
-5.69816e-07
5.80404e-08
-5.80048e-07
5.49762e-08
-5.90207e-07
5.17852e-08
-6.00279e-07
4.84638e-08
-6.10247e-07
4.50081e-08
-6.20092e-07
4.14143e-08
-6.29795e-07
3.76786e-08
-6.39334e-07
3.37971e-08
-6.48686e-07
2.97665e-08
-6.57826e-07
2.55831e-08
-6.66721e-07
2.12441e-08
-6.75341e-07
1.67502e-08
-6.83676e-07
1.20904e-08
-6.91766e-07
7.29368e-09
-6.99534e-07
2.29903e-09
-7.06847e-07
-2.95909e-09
-7.13733e-07
-8.32684e-09
-7.20147e-07
-1.38775e-08
-7.26049e-07
-1.96068e-08
-7.31396e-07
-2.55177e-08
-7.36139e-07
-3.16119e-08
-7.4023e-07
-3.789e-08
-7.43614e-07
-4.4352e-08
-7.46238e-07
-5.09965e-08
-7.48047e-07
-5.78211e-08
-7.48986e-07
-6.48215e-08
-7.49003e-07
-7.19912e-08
-7.48051e-07
-7.93201e-08
-7.46093e-07
-8.67917e-08
-7.43101e-07
-9.43772e-08
-7.39063e-07
-1.02026e-07
-7.33984e-07
-1.09658e-07
-7.27865e-07
-1.17169e-07
-7.20682e-07
-1.24471e-07
-7.12344e-07
-1.31579e-07
-1.38684e-07
-7.02693e-07
-2.44575e-09
4.50583e-08
-7.56954e-09
8.81206e-08
-1.40756e-08
1.0841e-07
-2.12711e-08
1.17844e-07
-2.88068e-08
1.2218e-07
-3.65134e-08
1.24146e-07
-4.43114e-08
1.25016e-07
-5.21648e-08
1.25379e-07
-6.00584e-08
1.25504e-07
-6.79861e-08
1.25513e-07
-7.59467e-08
1.2546e-07
-8.39412e-08
1.25371e-07
-9.19713e-08
1.25257e-07
-1.0004e-07
1.25123e-07
-1.08149e-07
1.24971e-07
-1.16301e-07
1.24802e-07
-1.245e-07
1.24616e-07
-1.32749e-07
1.24413e-07
-1.4105e-07
1.24192e-07
-1.49406e-07
1.23953e-07
-1.5782e-07
1.23695e-07
-1.66295e-07
1.23416e-07
-1.74834e-07
1.23117e-07
-1.83439e-07
1.22796e-07
-1.92113e-07
1.22452e-07
-2.0086e-07
1.22085e-07
-2.09681e-07
1.21693e-07
-2.18579e-07
1.21275e-07
-2.27556e-07
1.2083e-07
-2.36616e-07
1.20357e-07
-2.4576e-07
1.19854e-07
-2.54991e-07
1.1932e-07
-2.64311e-07
1.18754e-07
-2.73722e-07
1.18153e-07
-2.83227e-07
1.17517e-07
-2.92826e-07
1.16843e-07
-3.02522e-07
1.1613e-07
-3.12317e-07
1.15376e-07
-3.22212e-07
1.14579e-07
-3.32207e-07
1.13737e-07
-3.42305e-07
1.12849e-07
-3.52506e-07
1.1191e-07
-3.6281e-07
1.1092e-07
-3.73219e-07
1.09877e-07
-3.83733e-07
1.08776e-07
-3.94351e-07
1.07617e-07
-4.05073e-07
1.06396e-07
-4.15899e-07
1.0511e-07
-4.26827e-07
1.03756e-07
-4.37856e-07
1.02332e-07
-4.48984e-07
1.00834e-07
-4.60209e-07
9.92589e-08
-4.71529e-07
9.76034e-08
-4.82939e-07
9.5864e-08
-4.94437e-07
9.40369e-08
-5.06017e-07
9.21184e-08
-5.17676e-07
9.01047e-08
-5.29407e-07
8.79916e-08
-5.41205e-07
8.5775e-08
-5.53061e-07
8.34507e-08
-5.64969e-07
8.10143e-08
-5.76919e-07
7.84613e-08
-5.88901e-07
7.57869e-08
-6.00906e-07
7.29865e-08
-6.12921e-07
7.00552e-08
-6.24933e-07
6.69881e-08
-6.36928e-07
6.37801e-08
-6.48891e-07
6.04262e-08
-6.60804e-07
5.69212e-08
-6.72649e-07
5.32596e-08
-6.84406e-07
4.9436e-08
-6.96054e-07
4.54452e-08
-7.07569e-07
4.12815e-08
-7.18925e-07
3.69388e-08
-7.30095e-07
3.24134e-08
-7.41045e-07
2.76999e-08
-7.51749e-07
2.27942e-08
-7.62143e-07
1.7688e-08
-7.72236e-07
1.23921e-08
-7.82052e-07
6.85669e-09
-7.91591e-07
1.21141e-09
-8.00525e-07
-4.94341e-09
-8.08975e-07
-1.11571e-08
-8.16889e-07
-1.76046e-08
-8.24211e-07
-2.42894e-08
-8.30886e-07
-3.12156e-08
-8.36852e-07
-3.8386e-08
-8.42047e-07
-4.58016e-08
-8.46407e-07
-5.34617e-08
-8.49865e-07
-6.13633e-08
-8.52357e-07
-6.94996e-08
-8.53818e-07
-7.78585e-08
-8.54191e-07
-8.64183e-08
-8.53426e-07
-9.51415e-08
-8.51487e-07
-1.03966e-07
-8.48343e-07
-1.12803e-07
-8.43954e-07
-1.21557e-07
-8.38244e-07
-1.30181e-07
-8.31069e-07
-1.38753e-07
-1.47519e-07
-8.22233e-07
-2.43295e-09
4.74912e-08
-7.60336e-09
9.32911e-08
-1.42114e-08
1.15018e-07
-2.15455e-08
1.25179e-07
-2.92411e-08
1.29876e-07
-3.71199e-08
1.32025e-07
-4.50976e-08
1.32994e-07
-5.31362e-08
1.33418e-07
-6.12195e-08
1.33587e-07
-6.93417e-08
1.33635e-07
-7.75017e-08
1.3362e-07
-8.5701e-08
1.3357e-07
-9.39421e-08
1.33498e-07
-1.02228e-07
1.33409e-07
-1.10562e-07
1.33305e-07
-1.18947e-07
1.33188e-07
-1.27387e-07
1.33057e-07
-1.35886e-07
1.32912e-07
-1.44447e-07
1.32753e-07
-1.53074e-07
1.3258e-07
-1.61771e-07
1.32391e-07
-1.7054e-07
1.32185e-07
-1.79385e-07
1.31962e-07
-1.88311e-07
1.31721e-07
-1.9732e-07
1.31461e-07
-2.06416e-07
1.31181e-07
-2.15603e-07
1.3088e-07
-2.24884e-07
1.30556e-07
-2.34262e-07
1.30208e-07
-2.43741e-07
1.29836e-07
-2.53323e-07
1.29437e-07
-2.63013e-07
1.2901e-07
-2.72814e-07
1.28554e-07
-2.82729e-07
1.28067e-07
-2.9276e-07
1.27548e-07
-3.02912e-07
1.26994e-07
-3.13186e-07
1.26404e-07
-3.23586e-07
1.25776e-07
-3.34114e-07
1.25107e-07
-3.44773e-07
1.24396e-07
-3.55564e-07
1.2364e-07
-3.66492e-07
1.22837e-07
-3.77556e-07
1.21985e-07
-3.8876e-07
1.21081e-07
-4.00105e-07
1.20121e-07
-4.11593e-07
1.19104e-07
-4.23224e-07
1.18027e-07
-4.35e-07
1.16885e-07
-4.46921e-07
1.15677e-07
-4.58987e-07
1.14398e-07
-4.71198e-07
1.13045e-07
-4.83554e-07
1.11615e-07
-4.96053e-07
1.10103e-07
-5.08695e-07
1.08505e-07
-5.21476e-07
1.06819e-07
-5.34396e-07
1.05038e-07
-5.47449e-07
1.03159e-07
-5.60634e-07
1.01176e-07
-5.73945e-07
9.90858e-08
-5.87376e-07
9.68824e-08
-6.00923e-07
9.45608e-08
-6.14577e-07
9.21154e-08
-6.28331e-07
8.95408e-08
-6.42176e-07
8.6831e-08
-6.56101e-07
8.39802e-08
-6.70095e-07
8.09822e-08
-6.84146e-07
7.78307e-08
-6.98239e-07
7.4519e-08
-7.12359e-07
7.10406e-08
-7.26488e-07
6.73884e-08
-7.40607e-07
6.35553e-08
-7.54696e-07
5.95339e-08
-7.68731e-07
5.53167e-08
-7.82689e-07
5.08961e-08
-7.9654e-07
4.62644e-08
-8.10254e-07
4.14145e-08
-8.23799e-07
3.63388e-08
-8.37138e-07
3.10269e-08
-8.50229e-07
2.54828e-08
-8.63045e-07
1.96721e-08
-8.7545e-07
1.36163e-08
-8.8769e-07
7.29685e-09
-8.99505e-07
6.57055e-10
-9.10786e-07
-6.32256e-09
-9.21537e-07
-1.35391e-08
-9.31692e-07
-2.10608e-08
-9.41189e-07
-2.88886e-08
-9.49961e-07
-3.70296e-08
-9.57935e-07
-4.54885e-08
-9.6503e-07
-5.42676e-08
-9.71164e-07
-6.33659e-08
-9.76247e-07
-7.27755e-08
-9.80189e-07
-8.24769e-08
-9.829e-07
-9.24306e-08
-9.84295e-07
-1.02571e-07
-9.84286e-07
-1.12811e-07
-9.82767e-07
-1.23076e-07
-9.79585e-07
-1.33363e-07
-9.74537e-07
-1.43802e-07
-1.54665e-07
-9.67392e-07
-2.39392e-09
4.98853e-08
-7.56701e-09
9.84644e-08
-1.42282e-08
1.2168e-07
-2.1651e-08
1.32602e-07
-2.94566e-08
1.37682e-07
-3.74577e-08
1.40026e-07
-4.55652e-08
1.41101e-07
-5.37389e-08
1.41591e-07
-6.19617e-08
1.4181e-07
-7.0228e-08
1.41901e-07
-7.85371e-08
1.41929e-07
-8.68909e-08
1.41924e-07
-9.52924e-08
1.41899e-07
-1.03745e-07
1.41861e-07
-1.12253e-07
1.41813e-07
-1.20821e-07
1.41755e-07
-1.29452e-07
1.41688e-07
-1.38151e-07
1.41611e-07
-1.46922e-07
1.41524e-07
-1.55769e-07
1.41427e-07
-1.64698e-07
1.41319e-07
-1.73711e-07
1.41198e-07
-1.82814e-07
1.41065e-07
-1.9201e-07
1.40918e-07
-2.01305e-07
1.40756e-07
-2.10702e-07
1.40578e-07
-2.20207e-07
1.40384e-07
-2.29822e-07
1.40171e-07
-2.39553e-07
1.39939e-07
-2.49404e-07
1.39687e-07
-2.59379e-07
1.39412e-07
-2.69484e-07
1.39115e-07
-2.79721e-07
1.38792e-07
-2.90096e-07
1.38442e-07
-3.00613e-07
1.38065e-07
-3.11276e-07
1.37657e-07
-3.22089e-07
1.37217e-07
-3.33057e-07
1.36743e-07
-3.44183e-07
1.36233e-07
-3.55471e-07
1.35684e-07
-3.66926e-07
1.35095e-07
-3.78551e-07
1.34462e-07
-3.9035e-07
1.33784e-07
-4.02326e-07
1.33057e-07
-4.14484e-07
1.32279e-07
-4.26825e-07
1.31446e-07
-4.39354e-07
1.30555e-07
-4.52073e-07
1.29604e-07
-4.64984e-07
1.28588e-07
-4.7809e-07
1.27504e-07
-4.91393e-07
1.26348e-07
-5.04895e-07
1.25116e-07
-5.18596e-07
1.23804e-07
-5.32498e-07
1.22408e-07
-5.46602e-07
1.20922e-07
-5.60906e-07
1.19342e-07
-5.75411e-07
1.17663e-07
-5.90114e-07
1.1588e-07
-6.05015e-07
1.13987e-07
-6.20111e-07
1.11978e-07
-6.35398e-07
1.09848e-07
-6.50873e-07
1.0759e-07
-6.66529e-07
1.05197e-07
-6.8236e-07
1.02662e-07
-6.9836e-07
9.99797e-08
-7.14519e-07
9.71412e-08
-7.30828e-07
9.41392e-08
-7.47274e-07
9.09658e-08
-7.63846e-07
8.76126e-08
-7.80529e-07
8.4071e-08
-7.97306e-07
8.0332e-08
-8.14159e-07
7.63862e-08
-8.31066e-07
7.22239e-08
-8.48005e-07
6.78352e-08
-8.6495e-07
6.32096e-08
-8.81872e-07
5.83366e-08
-8.98738e-07
5.32057e-08
-9.15517e-07
4.78061e-08
-9.32161e-07
4.21256e-08
-9.48651e-07
3.6162e-08
-9.64915e-07
2.98799e-08
-9.80912e-07
2.32932e-08
-9.9668e-07
1.64248e-08
-1.01215e-06
9.14472e-09
-1.02727e-06
1.58806e-09
-1.04178e-06
-6.55854e-09
-1.05573e-06
-1.49376e-08
-1.06905e-06
-2.37106e-08
-1.08165e-06
-3.28865e-08
-1.09344e-06
-4.24777e-08
-1.10431e-06
-5.24931e-08
-1.11415e-06
-6.29345e-08
-1.12284e-06
-7.3789e-08
-1.13025e-06
-8.50211e-08
-1.13625e-06
-9.657e-08
-1.1407e-06
-1.08363e-07
-1.14342e-06
-1.20358e-07
-1.14418e-06
-1.32597e-07
-1.14273e-06
-1.45259e-07
-1.586e-07
-1.13879e-06
-2.32666e-09
5.22122e-08
-7.45291e-09
1.03591e-07
-1.41114e-08
1.28338e-07
-2.15654e-08
1.40056e-07
-2.94236e-08
1.4554e-07
-3.74895e-08
1.48092e-07
-4.56692e-08
1.49282e-07
-5.39201e-08
1.49843e-07
-6.22244e-08
1.50115e-07
-7.05762e-08
1.50253e-07
-7.89755e-08
1.50328e-07
-8.74247e-08
1.50373e-07
-9.59273e-08
1.50402e-07
-1.04488e-07
1.50422e-07
-1.13111e-07
1.50436e-07
-1.21801e-07
1.50445e-07
-1.30562e-07
1.50449e-07
-1.39401e-07
1.5045e-07
-1.48322e-07
1.50445e-07
-1.57329e-07
1.50435e-07
-1.66429e-07
1.50418e-07
-1.75625e-07
1.50395e-07
-1.84924e-07
1.50364e-07
-1.9433e-07
1.50324e-07
-2.03849e-07
1.50275e-07
-2.13486e-07
1.50215e-07
-2.23246e-07
1.50144e-07
-2.33134e-07
1.5006e-07
-2.43157e-07
1.49962e-07
-2.53319e-07
1.49849e-07
-2.63626e-07
1.49719e-07
-2.74083e-07
1.49572e-07
-2.84697e-07
1.49405e-07
-2.95472e-07
1.49217e-07
-3.06415e-07
1.49007e-07
-3.1753e-07
1.48772e-07
-3.28824e-07
1.48511e-07
-3.40302e-07
1.48221e-07
-3.5197e-07
1.47901e-07
-3.63833e-07
1.47548e-07
-3.75898e-07
1.47159e-07
-3.88169e-07
1.46734e-07
-4.00653e-07
1.46268e-07
-4.13354e-07
1.45758e-07
-4.26279e-07
1.45203e-07
-4.39432e-07
1.44599e-07
-4.5282e-07
1.43943e-07
-4.66446e-07
1.4323e-07
-4.80316e-07
1.42458e-07
-4.94435e-07
1.41623e-07
-5.08808e-07
1.40721e-07
-5.23438e-07
1.39747e-07
-5.38331e-07
1.38697e-07
-5.53489e-07
1.37566e-07
-5.68916e-07
1.36349e-07
-5.84616e-07
1.35042e-07
-6.0059e-07
1.33638e-07
-6.16842e-07
1.32132e-07
-6.33372e-07
1.30518e-07
-6.50182e-07
1.28789e-07
-6.67273e-07
1.26938e-07
-6.84643e-07
1.2496e-07
-7.02291e-07
1.22845e-07
-7.20216e-07
1.20587e-07
-7.38413e-07
1.18177e-07
-7.56879e-07
1.15607e-07
-7.75608e-07
1.12868e-07
-7.94593e-07
1.09951e-07
-8.13825e-07
1.06845e-07
-8.33295e-07
1.03541e-07
-8.5299e-07
1.00027e-07
-8.72897e-07
9.62927e-08
-8.92999e-07
9.23257e-08
-9.13277e-07
8.81137e-08
-9.33711e-07
8.36437e-08
-9.54277e-07
7.89022e-08
-9.74947e-07
7.38756e-08
-9.95689e-07
6.85483e-08
-1.01647e-06
6.29079e-08
-1.03724e-06
5.69354e-08
-1.05799e-06
5.0621e-08
-1.07863e-06
4.39425e-08
-1.09912e-06
3.69066e-08
-1.11941e-06
2.94414e-08
-1.13941e-06
2.15837e-08
-1.15928e-06
1.33162e-08
-1.17882e-06
4.59528e-09
-1.19772e-06
-4.80563e-09
-1.21604e-06
-1.45707e-08
-1.23366e-06
-2.48557e-08
-1.25047e-06
-3.56829e-08
-1.26634e-06
-4.70623e-08
-1.28114e-06
-5.89891e-08
-1.29473e-06
-7.14358e-08
-1.30694e-06
-8.43554e-08
-1.3176e-06
-9.77041e-08
-1.32647e-06
-1.11485e-07
-1.33328e-06
-1.25795e-07
-1.33769e-06
-1.4085e-07
-1.5687e-07
-1.33942e-06
-2.22822e-09
5.44404e-08
-7.25329e-09
1.08616e-07
-1.38467e-08
1.34932e-07
-2.12676e-08
1.47477e-07
-2.91135e-08
1.53386e-07
-3.71792e-08
1.56158e-07
-4.53659e-08
1.57468e-07
-5.36284e-08
1.58105e-07
-6.19482e-08
1.58434e-07
-7.03195e-08
1.58624e-07
-7.87423e-08
1.58751e-07
-8.72197e-08
1.5885e-07
-9.57559e-08
1.58938e-07
-1.04356e-07
1.59022e-07
-1.13025e-07
1.59104e-07
-1.21768e-07
1.59188e-07
-1.30591e-07
1.59273e-07
-1.39499e-07
1.59358e-07
-1.48499e-07
1.59444e-07
-1.57595e-07
1.59531e-07
-1.66794e-07
1.59617e-07
-1.76101e-07
1.59702e-07
-1.85523e-07
1.59785e-07
-1.95065e-07
1.59866e-07
-2.04734e-07
1.59943e-07
-2.14536e-07
1.60016e-07
-2.24476e-07
1.60084e-07
-2.34562e-07
1.60145e-07
-2.44799e-07
1.60199e-07
-2.55195e-07
1.60245e-07
-2.65756e-07
1.6028e-07
-2.76488e-07
1.60304e-07
-2.87399e-07
1.60316e-07
-2.98496e-07
1.60314e-07
-3.09785e-07
1.60296e-07
-3.21274e-07
1.6026e-07
-3.32969e-07
1.60206e-07
-3.44878e-07
1.6013e-07
-3.57009e-07
1.60031e-07
-3.69368e-07
1.59907e-07
-3.81964e-07
1.59755e-07
-3.94803e-07
1.59573e-07
-4.07895e-07
1.59359e-07
-4.21245e-07
1.59109e-07
-4.34863e-07
1.58821e-07
-4.48755e-07
1.58491e-07
-4.62929e-07
1.58117e-07
-4.77394e-07
1.57695e-07
-4.92157e-07
1.57221e-07
-5.07226e-07
1.56692e-07
-5.22608e-07
1.56103e-07
-5.38311e-07
1.5545e-07
-5.54343e-07
1.54728e-07
-5.7071e-07
1.53933e-07
-5.87421e-07
1.5306e-07
-6.04481e-07
1.52102e-07
-6.21898e-07
1.51055e-07
-6.39678e-07
1.49912e-07
-6.57828e-07
1.48667e-07
-6.76352e-07
1.47313e-07
-6.95256e-07
1.45842e-07
-7.14545e-07
1.44248e-07
-7.34222e-07
1.42522e-07
-7.54291e-07
1.40655e-07
-7.74753e-07
1.3864e-07
-7.95612e-07
1.36465e-07
-8.16866e-07
1.34123e-07
-8.38517e-07
1.31601e-07
-8.60561e-07
1.28889e-07
-8.82995e-07
1.25975e-07
-9.05814e-07
1.22846e-07
-9.29011e-07
1.1949e-07
-9.52576e-07
1.15891e-07
-9.76499e-07
1.12037e-07
-1.00077e-06
1.07911e-07
-1.02536e-06
1.03496e-07
-1.05026e-06
9.87759e-08
-1.07545e-06
9.3733e-08
-1.10089e-06
8.83471e-08
-1.12655e-06
8.26002e-08
-1.1524e-06
7.64714e-08
-1.17839e-06
6.99375e-08
-1.20447e-06
6.29808e-08
-1.23059e-06
5.55648e-08
-1.2567e-06
4.76954e-08
-1.28272e-06
3.9329e-08
-1.30851e-06
3.03913e-08
-1.33424e-06
2.0921e-08
-1.3598e-06
1.09889e-08
-1.38473e-06
7.50341e-11
-1.40904e-06
-1.1369e-08
-1.43267e-06
-2.34345e-08
-1.45548e-06
-3.61829e-08
-1.47732e-06
-4.95917e-08
-1.49804e-06
-6.36401e-08
-1.51741e-06
-7.83319e-08
-1.53516e-06
-9.37357e-08
-1.55094e-06
-1.10015e-07
-1.56438e-06
-1.27413e-07
-1.46092e-07
-1.57515e-06
-2.09729e-09
5.6538e-08
-6.96179e-09
1.13481e-07
-1.34215e-08
1.41392e-07
-2.0738e-08
1.54793e-07
-2.84994e-08
1.61147e-07
-3.64926e-08
1.64151e-07
-4.46137e-08
1.65589e-07
-5.2815e-08
1.66306e-07
-6.10771e-08
1.66696e-07
-6.93939e-08
1.66941e-07
-7.77659e-08
1.67123e-07
-8.61967e-08
1.67281e-07
-9.4691e-08
1.67432e-07
-1.03254e-07
1.67585e-07
-1.11892e-07
1.67742e-07
-1.20611e-07
1.67907e-07
-1.29417e-07
1.68078e-07
-1.38315e-07
1.68257e-07
-1.47313e-07
1.68442e-07
-1.56416e-07
1.68635e-07
-1.65632e-07
1.68833e-07
-1.74967e-07
1.69037e-07
-1.84427e-07
1.69245e-07
-1.94019e-07
1.69458e-07
-2.0375e-07
1.69675e-07
-2.13628e-07
1.69894e-07
-2.23659e-07
1.70115e-07
-2.33851e-07
1.70337e-07
-2.44212e-07
1.7056e-07
-2.54748e-07
1.70781e-07
-2.65468e-07
1.71e-07
-2.7638e-07
1.71216e-07
-2.87491e-07
1.71427e-07
-2.9881e-07
1.71633e-07
-3.10346e-07
1.71831e-07
-3.22106e-07
1.72021e-07
-3.34101e-07
1.722e-07
-3.46337e-07
1.72367e-07
-3.58826e-07
1.7252e-07
-3.71576e-07
1.72657e-07
-3.84597e-07
1.72776e-07
-3.97898e-07
1.72874e-07
-4.11489e-07
1.7295e-07
-4.2538e-07
1.73e-07
-4.39581e-07
1.73022e-07
-4.54103e-07
1.73013e-07
-4.68955e-07
1.7297e-07
-4.8415e-07
1.7289e-07
-4.99697e-07
1.72769e-07
-5.15609e-07
1.72603e-07
-5.31894e-07
1.72389e-07
-5.48566e-07
1.72121e-07
-5.65635e-07
1.71797e-07
-5.83112e-07
1.71411e-07
-6.01009e-07
1.70957e-07
-6.19338e-07
1.70431e-07
-6.38109e-07
1.69826e-07
-6.57335e-07
1.69138e-07
-6.77026e-07
1.68358e-07
-6.97194e-07
1.6748e-07
-7.17849e-07
1.66497e-07
-7.39003e-07
1.65401e-07
-7.60666e-07
1.64184e-07
-7.82847e-07
1.62837e-07
-8.05558e-07
1.6135e-07
-8.28806e-07
1.59713e-07
-8.526e-07
1.57917e-07
-8.76948e-07
1.55949e-07
-9.01857e-07
1.53797e-07
-9.27333e-07
1.5145e-07
-9.53379e-07
1.48892e-07
-9.79999e-07
1.4611e-07
-1.00719e-06
1.43087e-07
-1.03497e-06
1.39808e-07
-1.06331e-06
1.36255e-07
-1.09222e-06
1.32408e-07
-1.12169e-06
1.28248e-07
-1.15171e-06
1.23754e-07
-1.18227e-06
1.18903e-07
-1.21334e-06
1.13671e-07
-1.2449e-06
1.08035e-07
-1.27693e-06
1.01965e-07
-1.30938e-06
9.54325e-08
-1.34223e-06
8.84139e-08
-1.3754e-06
8.08642e-08
-1.40884e-06
7.27699e-08
-1.44253e-06
6.40774e-08
-1.47634e-06
5.47387e-08
-1.51007e-06
4.47143e-08
-1.54399e-06
3.39929e-08
-1.57804e-06
2.26819e-08
-1.61189e-06
1.04164e-08
-1.6452e-06
-2.87489e-09
-1.67803e-06
-1.67643e-08
-1.71023e-06
-3.14363e-08
-1.74157e-06
-4.69957e-08
-1.77171e-06
-6.35887e-08
-1.80029e-06
-8.14422e-08
-1.82688e-06
-1.00821e-07
-1.21832e-07
-1.85114e-06
-1.93295e-09
5.84709e-08
-6.57384e-09
1.18122e-07
-1.28259e-08
1.47644e-07
-1.99604e-08
1.61928e-07
-2.75591e-08
1.68746e-07
-3.54013e-08
1.71994e-07
-4.33779e-08
1.73566e-07
-5.14387e-08
1.74367e-07
-5.95631e-08
1.74821e-07
-6.77449e-08
1.75123e-07
-7.59848e-08
1.75363e-07
-8.42868e-08
1.75583e-07
-9.26561e-08
1.75801e-07
-1.01099e-07
1.76027e-07
-1.09621e-07
1.76264e-07
-1.18229e-07
1.76515e-07
-1.2693e-07
1.76779e-07
-1.3573e-07
1.77057e-07
-1.44637e-07
1.77349e-07
-1.53656e-07
1.77654e-07
-1.62796e-07
1.77973e-07
-1.72064e-07
1.78304e-07
-1.81466e-07
1.78648e-07
-1.9101e-07
1.79003e-07
-2.00705e-07
1.7937e-07
-2.10558e-07
1.79747e-07
-2.20576e-07
1.80134e-07
-2.30769e-07
1.8053e-07
-2.41145e-07
1.80935e-07
-2.51712e-07
1.81348e-07
-2.62479e-07
1.81767e-07
-2.73456e-07
1.82192e-07
-2.84651e-07
1.82622e-07
-2.96074e-07
1.83056e-07
-3.07736e-07
1.83493e-07
-3.19645e-07
1.8393e-07
-3.31812e-07
1.84368e-07
-3.44248e-07
1.84803e-07
-3.56964e-07
1.85236e-07
-3.69971e-07
1.85664e-07
-3.83281e-07
1.86085e-07
-3.96905e-07
1.86498e-07
-4.10855e-07
1.86899e-07
-4.25143e-07
1.87288e-07
-4.39783e-07
1.87662e-07
-4.54787e-07
1.88017e-07
-4.70168e-07
1.88352e-07
-4.85942e-07
1.88663e-07
-5.0212e-07
1.88947e-07
-5.18719e-07
1.89201e-07
-5.35752e-07
1.89422e-07
-5.53235e-07
1.89604e-07
-5.71183e-07
1.89745e-07
-5.89611e-07
1.89839e-07
-6.08537e-07
1.89882e-07
-6.27975e-07
1.89869e-07
-6.47944e-07
1.89795e-07
-6.68459e-07
1.89653e-07
-6.89539e-07
1.89437e-07
-7.11201e-07
1.89141e-07
-7.33461e-07
1.88758e-07
-7.56339e-07
1.88279e-07
-7.79852e-07
1.87697e-07
-8.04018e-07
1.87003e-07
-8.28856e-07
1.86188e-07
-8.54384e-07
1.85241e-07
-8.8062e-07
1.84153e-07
-9.07582e-07
1.82911e-07
-9.35288e-07
1.81503e-07
-9.63755e-07
1.79916e-07
-9.93e-07
1.78137e-07
-1.02304e-06
1.76149e-07
-1.05389e-06
1.73936e-07
-1.08556e-06
1.71482e-07
-1.11807e-06
1.68766e-07
-1.15143e-06
1.65769e-07
-1.18565e-06
1.62469e-07
-1.22074e-06
1.58844e-07
-1.25671e-06
1.54868e-07
-1.29355e-06
1.50515e-07
-1.33127e-06
1.45755e-07
-1.36987e-06
1.40559e-07
-1.40933e-06
1.34893e-07
-1.44964e-06
1.2872e-07
-1.49077e-06
1.22004e-07
-1.53271e-06
1.14705e-07
-1.57542e-06
1.06786e-07
-1.61886e-06
9.81833e-08
-1.663e-06
8.88504e-08
-1.7078e-06
7.87944e-08
-1.75299e-06
6.78729e-08
-1.79871e-06
5.61387e-08
-1.84516e-06
4.3577e-08
-1.89207e-06
3.0138e-08
-1.93914e-06
1.56386e-08
-1.98602e-06
-1.17462e-10
-2.03244e-06
-1.71745e-08
-2.0781e-06
-3.57794e-08
-2.12264e-06
-5.62737e-08
-7.87756e-08
-2.1657e-06
-1.73418e-09
6.02049e-08
-6.08585e-09
1.22473e-07
-1.20521e-08
1.5361e-07
-1.89223e-08
1.68798e-07
-2.62745e-08
1.76099e-07
-3.38815e-08
1.79601e-07
-4.16293e-08
1.81314e-07
-4.9465e-08
1.82203e-07
-5.73665e-08
1.82722e-07
-6.53274e-08
1.83084e-07
-7.33484e-08
1.83384e-07
-8.14338e-08
1.83668e-07
-8.95891e-08
1.83957e-07
-9.78207e-08
1.84259e-07
-1.06135e-07
1.84579e-07
-1.1454e-07
1.8492e-07
-1.23041e-07
1.85281e-07
-1.31647e-07
1.85663e-07
-1.40364e-07
1.86066e-07
-1.49199e-07
1.8649e-07
-1.58161e-07
1.86935e-07
-1.67257e-07
1.874e-07
-1.76496e-07
1.87886e-07
-1.85884e-07
1.88392e-07
-1.95431e-07
1.88917e-07
-2.05145e-07
1.89461e-07
-2.15035e-07
1.90024e-07
-2.2511e-07
1.90605e-07
-2.35379e-07
1.91204e-07
-2.45852e-07
1.91821e-07
-2.56538e-07
1.92454e-07
-2.67448e-07
1.93102e-07
-2.78593e-07
1.93767e-07
-2.89982e-07
1.94445e-07
-3.01626e-07
1.95137e-07
-3.13538e-07
1.95842e-07
-3.25729e-07
1.96559e-07
-3.38211e-07
1.97286e-07
-3.50998e-07
1.98022e-07
-3.641e-07
1.98767e-07
-3.77533e-07
1.99518e-07
-3.91309e-07
2.00274e-07
-4.05443e-07
2.01034e-07
-4.1995e-07
2.01795e-07
-4.34844e-07
2.02556e-07
-4.50142e-07
2.03315e-07
-4.65859e-07
2.04069e-07
-4.82013e-07
2.04817e-07
-4.9862e-07
2.05555e-07
-5.15699e-07
2.0628e-07
-5.33267e-07
2.0699e-07
-5.51345e-07
2.07681e-07
-5.6995e-07
2.0835e-07
-5.89104e-07
2.08993e-07
-6.08828e-07
2.09606e-07
-6.29142e-07
2.10184e-07
-6.5007e-07
2.10722e-07
-6.71634e-07
2.11216e-07
-6.93857e-07
2.1166e-07
-7.16764e-07
2.12048e-07
-7.40379e-07
2.12373e-07
-7.64729e-07
2.12629e-07
-7.89839e-07
2.12807e-07
-8.15736e-07
2.12901e-07
-8.42449e-07
2.129e-07
-8.70005e-07
2.12797e-07
-8.98434e-07
2.12581e-07
-9.27765e-07
2.12241e-07
-9.58028e-07
2.11766e-07
-9.89254e-07
2.11143e-07
-1.02147e-06
2.10358e-07
-1.05472e-06
2.09396e-07
-1.08903e-06
2.08242e-07
-1.12443e-06
2.06879e-07
-1.16095e-06
2.05287e-07
-1.19863e-06
2.03448e-07
-1.23749e-06
2.01339e-07
-1.27759e-06
1.98937e-07
-1.31894e-06
1.96217e-07
-1.36157e-06
1.93152e-07
-1.40553e-06
1.89713e-07
-1.45084e-06
1.85868e-07
-1.49753e-06
1.81583e-07
-1.54563e-06
1.7682e-07
-1.59517e-06
1.71538e-07
-1.64615e-06
1.65692e-07
-1.69861e-06
1.59239e-07
-1.75254e-06
1.52118e-07
-1.80798e-06
1.44289e-07
-1.8649e-06
1.35715e-07
-1.92334e-06
1.26312e-07
-1.98329e-06
1.1609e-07
-2.0447e-06
1.04983e-07
-2.10748e-06
9.29209e-08
-2.17161e-06
7.97665e-08
-2.23707e-06
6.53383e-08
-2.30357e-06
4.93256e-08
-2.37082e-06
3.14693e-08
-2.43877e-06
1.16772e-08
-1.11497e-08
-2.50639e-06
-1.5017e-09
6.17067e-08
-5.497e-09
1.26469e-07
-1.10965e-08
1.59209e-07
-1.76163e-08
1.75318e-07
-2.46345e-08
1.83117e-07
-3.19183e-08
1.86885e-07
-3.93489e-08
1.88745e-07
-4.68704e-08
1.89725e-07
-5.44595e-08
1.90312e-07
-6.2109e-08
1.90733e-07
-6.98198e-08
1.91095e-07
-7.75959e-08
1.91444e-07
-8.54435e-08
1.91804e-07
-9.33689e-08
1.92184e-07
-1.01379e-07
1.9259e-07
-1.09481e-07
1.93022e-07
-1.17683e-07
1.93482e-07
-1.25991e-07
1.93971e-07
-1.34414e-07
1.94489e-07
-1.42958e-07
1.95035e-07
-1.51633e-07
1.9561e-07
-1.60446e-07
1.96213e-07
-1.69405e-07
1.96845e-07
-1.78519e-07
1.97506e-07
-1.87797e-07
1.98195e-07
-1.97248e-07
1.98912e-07
-2.06882e-07
1.99658e-07
-2.16708e-07
2.00431e-07
-2.26735e-07
2.01232e-07
-2.36975e-07
2.02061e-07
-2.47438e-07
2.02916e-07
-2.58135e-07
2.03799e-07
-2.69076e-07
2.04708e-07
-2.80275e-07
2.05644e-07
-2.91742e-07
2.06605e-07
-3.03491e-07
2.07591e-07
-3.15534e-07
2.08602e-07
-3.27885e-07
2.09637e-07
-3.40559e-07
2.10695e-07
-3.53568e-07
2.11776e-07
-3.6693e-07
2.12879e-07
-3.80658e-07
2.14002e-07
-3.94769e-07
2.15145e-07
-4.09279e-07
2.16306e-07
-4.24207e-07
2.17484e-07
-4.39571e-07
2.18678e-07
-4.55388e-07
2.19887e-07
-4.71679e-07
2.21108e-07
-4.88464e-07
2.2234e-07
-5.05764e-07
2.2358e-07
-5.23601e-07
2.24827e-07
-5.41997e-07
2.26078e-07
-5.60977e-07
2.2733e-07
-5.80563e-07
2.2858e-07
-6.00784e-07
2.29826e-07
-6.21664e-07
2.31064e-07
-6.43231e-07
2.3229e-07
-6.65514e-07
2.33499e-07
-6.88543e-07
2.34689e-07
-7.12348e-07
2.35853e-07
-7.36961e-07
2.36987e-07
-7.62417e-07
2.38084e-07
-7.88749e-07
2.39139e-07
-8.15994e-07
2.40146e-07
-8.44189e-07
2.41095e-07
-8.73373e-07
2.41981e-07
-9.03585e-07
2.42794e-07
-9.34868e-07
2.43524e-07
-9.67265e-07
2.44163e-07
-1.00082e-06
2.44698e-07
-1.03558e-06
2.45118e-07
-1.0716e-06
2.45411e-07
-1.10891e-06
2.4556e-07
-1.14759e-06
2.45553e-07
-1.18767e-06
2.45371e-07
-1.22922e-06
2.44997e-07
-1.27229e-06
2.44411e-07
-1.31695e-06
2.43593e-07
-1.36325e-06
2.4252e-07
-1.41127e-06
2.41166e-07
-1.46106e-06
2.39506e-07
-1.5127e-06
2.3751e-07
-1.56626e-06
2.35146e-07
-1.62182e-06
2.32379e-07
-1.67946e-06
2.29171e-07
-1.73924e-06
2.25479e-07
-1.80126e-06
2.21258e-07
-1.8656e-06
2.16457e-07
-1.93234e-06
2.1103e-07
-2.00157e-06
2.04942e-07
-2.07341e-06
1.9815e-07
-2.14795e-06
1.90631e-07
-2.22529e-06
1.82323e-07
-2.30551e-06
1.73141e-07
-2.38861e-06
1.62866e-07
-2.47458e-06
1.51309e-07
-2.5635e-06
1.38242e-07
-2.65517e-06
1.23141e-07
-2.74939e-06
1.05903e-07
8.64772e-08
-2.84702e-06
-1.23731e-09
6.29441e-08
-4.80934e-09
1.30041e-07
-9.95979e-09
1.6436e-07
-1.60413e-08
1.814e-07
-2.26357e-08
1.89711e-07
-2.95059e-08
1.93755e-07
-3.65286e-08
1.95768e-07
-4.36449e-08
1.96841e-07
-5.08298e-08
1.97497e-07
-5.80752e-08
1.97979e-07
-6.53817e-08
1.98401e-07
-7.27533e-08
1.98816e-07
-8.0196e-08
1.99247e-07
-8.77166e-08
1.99705e-07
-9.53219e-08
2.00195e-07
-1.03019e-07
2.00719e-07
-1.10816e-07
2.01279e-07
-1.1872e-07
2.01875e-07
-1.26739e-07
2.02507e-07
-1.3488e-07
2.03176e-07
-1.43152e-07
2.03882e-07
-1.51563e-07
2.04624e-07
-1.60122e-07
2.05404e-07
-1.68837e-07
2.06221e-07
-1.77718e-07
2.07076e-07
-1.86774e-07
2.07968e-07
-1.96015e-07
2.08898e-07
-2.0545e-07
2.09867e-07
-2.15091e-07
2.10873e-07
-2.24948e-07
2.11917e-07
-2.35032e-07
2.13e-07
-2.45355e-07
2.14122e-07
-2.55928e-07
2.15282e-07
-2.66764e-07
2.1648e-07
-2.77877e-07
2.17717e-07
-2.89278e-07
2.18993e-07
-3.00984e-07
2.20307e-07
-3.13007e-07
2.2166e-07
-3.25362e-07
2.23051e-07
-3.38067e-07
2.2448e-07
-3.51136e-07
2.25948e-07
-3.64587e-07
2.27453e-07
-3.78437e-07
2.28995e-07
-3.92706e-07
2.30574e-07
-4.07412e-07
2.3219e-07
-4.22575e-07
2.33842e-07
-4.38217e-07
2.35529e-07
-4.54359e-07
2.3725e-07
-4.71024e-07
2.39005e-07
-4.88236e-07
2.40792e-07
-5.06019e-07
2.4261e-07
-5.244e-07
2.44459e-07
-5.43406e-07
2.46336e-07
-5.63065e-07
2.4824e-07
-5.83408e-07
2.50168e-07
-6.04464e-07
2.5212e-07
-6.26266e-07
2.54092e-07
-6.48849e-07
2.56082e-07
-6.72247e-07
2.58087e-07
-6.96497e-07
2.60104e-07
-7.21639e-07
2.62129e-07
-7.47712e-07
2.64158e-07
-7.74759e-07
2.66187e-07
-8.02826e-07
2.68212e-07
-8.31957e-07
2.70226e-07
-8.62201e-07
2.72225e-07
-8.93609e-07
2.74202e-07
-9.26235e-07
2.7615e-07
-9.60133e-07
2.78061e-07
-9.95362e-07
2.79928e-07
-1.03198e-06
2.8174e-07
-1.07006e-06
2.83488e-07
-1.10966e-06
2.85161e-07
-1.15086e-06
2.86747e-07
-1.19372e-06
2.88233e-07
-1.23833e-06
2.89604e-07
-1.28476e-06
2.90845e-07
-1.33311e-06
2.9194e-07
-1.38346e-06
2.92871e-07
-1.43591e-06
2.93617e-07
-1.49056e-06
2.94158e-07
-1.54752e-06
2.9447e-07
-1.6069e-06
2.94528e-07
-1.66883e-06
2.94303e-07
-1.73342e-06
2.93763e-07
-1.80081e-06
2.92874e-07
-1.87116e-06
2.916e-07
-1.9446e-06
2.89905e-07
-2.02133e-06
2.87761e-07
-2.10154e-06
2.8515e-07
-2.18546e-06
2.82064e-07
-2.27331e-06
2.7848e-07
-2.36533e-06
2.74348e-07
-2.46175e-06
2.69562e-07
-2.56282e-06
2.6393e-07
-2.66871e-06
2.57208e-07
-2.77964e-06
2.49169e-07
-2.89602e-06
2.39515e-07
-3.01793e-06
2.27818e-07
2.13962e-07
-3.14542e-06
-9.43329e-10
6.38873e-08
-4.02767e-09
1.33125e-07
-8.64807e-09
1.68981e-07
-1.42035e-08
1.86956e-07
-2.02839e-08
1.95792e-07
-2.66496e-08
2.00121e-07
-3.31732e-08
2.02291e-07
-3.97925e-08
2.03461e-07
-4.64807e-08
2.04185e-07
-5.32286e-08
2.04727e-07
-6.00362e-08
2.05209e-07
-6.69073e-08
2.05687e-07
-7.38475e-08
2.06188e-07
-8.08636e-08
2.06721e-07
-8.79623e-08
2.07294e-07
-9.51509e-08
2.07908e-07
-1.02437e-07
2.08565e-07
-1.09827e-07
2.09265e-07
-1.1733e-07
2.1001e-07
-1.24953e-07
2.10799e-07
-1.32704e-07
2.11633e-07
-1.40592e-07
2.12512e-07
-1.48625e-07
2.13437e-07
-1.56811e-07
2.14408e-07
-1.65162e-07
2.15426e-07
-1.73685e-07
2.16491e-07
-1.8239e-07
2.17604e-07
-1.91289e-07
2.18765e-07
-2.00391e-07
2.19975e-07
-2.09707e-07
2.21234e-07
-2.19248e-07
2.22542e-07
-2.29028e-07
2.23901e-07
-2.39057e-07
2.25311e-07
-2.49348e-07
2.26772e-07
-2.59915e-07
2.28285e-07
-2.70772e-07
2.2985e-07
-2.81934e-07
2.31469e-07
-2.93415e-07
2.33141e-07
-3.05231e-07
2.34867e-07
-3.17398e-07
2.36648e-07
-3.29935e-07
2.38484e-07
-3.42858e-07
2.40376e-07
-3.56186e-07
2.42324e-07
-3.6994e-07
2.44328e-07
-3.84139e-07
2.4639e-07
-3.98805e-07
2.48508e-07
-4.13962e-07
2.50685e-07
-4.29632e-07
2.5292e-07
-4.45839e-07
2.55212e-07
-4.62611e-07
2.57563e-07
-4.79973e-07
2.59973e-07
-4.97956e-07
2.62441e-07
-5.16587e-07
2.64968e-07
-5.359e-07
2.67553e-07
-5.55927e-07
2.70195e-07
-5.76703e-07
2.72895e-07
-5.98263e-07
2.75652e-07
-6.20645e-07
2.78465e-07
-6.43891e-07
2.81333e-07
-6.68041e-07
2.84254e-07
-6.9314e-07
2.87228e-07
-7.19236e-07
2.90253e-07
-7.46375e-07
2.93327e-07
-7.74611e-07
2.96447e-07
-8.03996e-07
2.99611e-07
-8.34587e-07
3.02816e-07
-8.66444e-07
3.06059e-07
-8.9963e-07
3.09335e-07
-9.3421e-07
3.12641e-07
-9.70254e-07
3.15972e-07
-1.00784e-06
3.19321e-07
-1.04703e-06
3.22684e-07
-1.08792e-06
3.26052e-07
-1.1306e-06
3.29419e-07
-1.17514e-06
3.32776e-07
-1.22165e-06
3.36114e-07
-1.27023e-06
3.39423e-07
-1.32098e-06
3.42692e-07
-1.37402e-06
3.4591e-07
-1.42946e-06
3.49063e-07
-1.48744e-06
3.52138e-07
-1.54809e-06
3.55119e-07
-1.61155e-06
3.5799e-07
-1.67798e-06
3.60733e-07
-1.74755e-06
3.63325e-07
-1.82042e-06
3.65748e-07
-1.8968e-06
3.67982e-07
-1.97692e-06
3.70017e-07
-2.06101e-06
3.71856e-07
-2.14937e-06
3.73515e-07
-2.24233e-06
3.75017e-07
-2.34021e-06
3.76359e-07
-2.44335e-06
3.77493e-07
-2.5521e-06
3.78306e-07
-2.6668e-06
3.78634e-07
-2.78786e-06
3.78272e-07
-2.91571e-06
3.77011e-07
-3.05076e-06
3.74572e-07
-3.19359e-06
3.70649e-07
3.65268e-07
-3.3449e-06
-6.22901e-10
6.45103e-08
-3.15906e-09
1.35662e-07
-7.17164e-09
1.72993e-07
-1.21159e-08
1.919e-07
-1.75945e-08
2.01271e-07
-2.33668e-08
2.05893e-07
-2.93018e-08
2.08226e-07
-3.53342e-08
2.09493e-07
-4.14348e-08
2.10286e-07
-4.75934e-08
2.10886e-07
-5.38088e-08
2.11425e-07
-6.00845e-08
2.11963e-07
-6.64258e-08
2.12529e-07
-7.28388e-08
2.13135e-07
-7.93303e-08
2.13786e-07
-8.5907e-08
2.14485e-07
-9.2576e-08
2.15234e-07
-9.93444e-08
2.16034e-07
-1.0622e-07
2.16885e-07
-1.13209e-07
2.17788e-07
-1.20321e-07
2.18745e-07
-1.27564e-07
2.19754e-07
-1.34945e-07
2.20818e-07
-1.42473e-07
2.21937e-07
-1.50158e-07
2.23111e-07
-1.58009e-07
2.24342e-07
-1.66035e-07
2.2563e-07
-1.74247e-07
2.26977e-07
-1.82654e-07
2.28382e-07
-1.91268e-07
2.29848e-07
-2.001e-07
2.31374e-07
-2.09161e-07
2.32962e-07
-2.18464e-07
2.34614e-07
-2.28021e-07
2.3633e-07
-2.37847e-07
2.38111e-07
-2.47954e-07
2.39958e-07
-2.58357e-07
2.41873e-07
-2.69073e-07
2.43856e-07
-2.80115e-07
2.4591e-07
-2.91502e-07
2.48035e-07
-3.0325e-07
2.50233e-07
-3.15378e-07
2.52504e-07
-3.27906e-07
2.54851e-07
-3.40852e-07
2.57275e-07
-3.5424e-07
2.59777e-07
-3.68089e-07
2.62358e-07
-3.82425e-07
2.65021e-07
-3.97271e-07
2.67766e-07
-4.12654e-07
2.70595e-07
-4.28599e-07
2.73509e-07
-4.45136e-07
2.76511e-07
-4.62296e-07
2.79601e-07
-4.80108e-07
2.82781e-07
-4.98608e-07
2.86052e-07
-5.17829e-07
2.89416e-07
-5.37808e-07
2.92875e-07
-5.58585e-07
2.96429e-07
-5.80201e-07
3.0008e-07
-6.02698e-07
3.0383e-07
-6.26122e-07
3.07679e-07
-6.50521e-07
3.11628e-07
-6.75946e-07
3.15678e-07
-7.0245e-07
3.19831e-07
-7.3009e-07
3.24087e-07
-7.58924e-07
3.28446e-07
-7.89017e-07
3.32908e-07
-8.20432e-07
3.37475e-07
-8.53242e-07
3.42145e-07
-8.87519e-07
3.46918e-07
-9.2334e-07
3.51794e-07
-9.60789e-07
3.5677e-07
-9.99951e-07
3.61846e-07
-1.04092e-06
3.6702e-07
-1.08379e-06
3.72289e-07
-1.12866e-06
3.7765e-07
-1.17565e-06
3.83099e-07
-1.22486e-06
3.88634e-07
-1.27642e-06
3.94249e-07
-1.33045e-06
3.9994e-07
-1.38708e-06
4.05702e-07
-1.44647e-06
4.11528e-07
-1.50877e-06
4.17412e-07
-1.57412e-06
4.23346e-07
-1.64271e-06
4.29321e-07
-1.71472e-06
4.35331e-07
-1.79034e-06
4.4137e-07
-1.8698e-06
4.47441e-07
-1.95334e-06
4.53561e-07
-2.04125e-06
4.59766e-07
-2.13384e-06
4.66103e-07
-2.23143e-06
4.72611e-07
-2.33436e-06
4.79291e-07
-2.44296e-06
4.86084e-07
-2.55753e-06
4.92876e-07
-2.67841e-06
4.99513e-07
-2.80596e-06
5.05823e-07
-2.94053e-06
5.11585e-07
-3.08249e-06
5.16531e-07
-3.23233e-06
5.20494e-07
5.23711e-07
-3.39078e-06
-2.81304e-10
6.47919e-08
-2.21506e-09
1.37596e-07
-5.54727e-09
1.76326e-07
-9.7996e-09
1.96153e-07
-1.45926e-08
2.06064e-07
-1.96866e-08
2.10987e-07
-2.49476e-08
2.13487e-07
-3.03071e-08
2.14852e-07
-3.57335e-08
2.15712e-07
-4.12149e-08
2.16367e-07
-4.67492e-08
2.16959e-07
-5.23388e-08
2.17553e-07
-5.79884e-08
2.18179e-07
-6.37037e-08
2.1885e-07
-6.94909e-08
2.19573e-07
-7.53562e-08
2.2035e-07
-8.13062e-08
2.21184e-07
-8.73476e-08
2.22075e-07
-9.34873e-08
2.23025e-07
-9.97323e-08
2.24033e-07
-1.0609e-07
2.25103e-07
-1.12568e-07
2.26233e-07
-1.19175e-07
2.27425e-07
-1.25917e-07
2.2868e-07
-1.32805e-07
2.29999e-07
-1.39847e-07
2.31384e-07
-1.47051e-07
2.32835e-07
-1.54428e-07
2.34354e-07
-1.61988e-07
2.35941e-07
-1.69739e-07
2.37599e-07
-1.77694e-07
2.39329e-07
-1.85864e-07
2.41132e-07
-1.94259e-07
2.4301e-07
-2.02894e-07
2.44964e-07
-2.11779e-07
2.46996e-07
-2.2093e-07
2.49108e-07
-2.30359e-07
2.51302e-07
-2.40082e-07
2.53579e-07
-2.50114e-07
2.55942e-07
-2.60472e-07
2.58393e-07
-2.71172e-07
2.60933e-07
-2.82232e-07
2.63565e-07
-2.93672e-07
2.66291e-07
-3.05511e-07
2.69114e-07
-3.17771e-07
2.72036e-07
-3.30472e-07
2.7506e-07
-3.43639e-07
2.78188e-07
-3.57296e-07
2.81422e-07
-3.71468e-07
2.84767e-07
-3.86183e-07
2.88224e-07
-4.01469e-07
2.91797e-07
-4.17356e-07
2.95489e-07
-4.33878e-07
2.99302e-07
-4.51067e-07
3.03241e-07
-4.68959e-07
3.07308e-07
-4.87592e-07
3.11508e-07
-5.07006e-07
3.15842e-07
-5.27241e-07
3.20316e-07
-5.48344e-07
3.24933e-07
-5.70362e-07
3.29696e-07
-5.93343e-07
3.34609e-07
-6.17342e-07
3.39677e-07
-6.42413e-07
3.44902e-07
-6.68615e-07
3.50289e-07
-6.96011e-07
3.55841e-07
-7.24666e-07
3.61564e-07
-7.54651e-07
3.6746e-07
-7.86039e-07
3.73533e-07
-8.18908e-07
3.79787e-07
-8.53342e-07
3.86227e-07
-8.89427e-07
3.92855e-07
-9.27255e-07
3.99675e-07
-9.66925e-07
4.0669e-07
-1.00854e-06
4.13903e-07
-1.05221e-06
4.21317e-07
-1.09804e-06
4.28936e-07
-1.14617e-06
4.3676e-07
-1.19671e-06
4.44794e-07
-1.24981e-06
4.53039e-07
-1.30561e-06
4.61496e-07
-1.36425e-06
4.70168e-07
-1.42589e-06
4.79055e-07
-1.4907e-06
4.88157e-07
-1.55886e-06
4.97475e-07
-1.63054e-06
5.0701e-07
-1.70594e-06
5.1677e-07
-1.78527e-06
5.26774e-07
-1.86877e-06
5.37057e-07
-1.95667e-06
5.47672e-07
-2.04924e-06
5.58672e-07
-2.14671e-06
5.70082e-07
-2.2493e-06
5.81876e-07
-2.35717e-06
5.93958e-07
-2.47048e-06
6.06183e-07
-2.58933e-06
6.18363e-07
-2.71377e-06
6.30263e-07
-2.84377e-06
6.41586e-07
-2.97928e-06
6.52037e-07
-3.12033e-06
6.61544e-07
6.70491e-07
-3.26711e-06
7.22927e-11
6.47196e-08
-1.21192e-09
1.3888e-07
-3.79858e-09
1.78913e-07
-7.28532e-09
1.99639e-07
-1.13154e-08
2.10094e-07
-1.56525e-08
2.15324e-07
-2.01601e-08
2.17995e-07
-2.47666e-08
2.19459e-07
-2.94381e-08
2.20384e-07
-3.41606e-08
2.2109e-07
-3.89307e-08
2.21729e-07
-4.37497e-08
2.22372e-07
-4.86216e-08
2.23051e-07
-5.3551e-08
2.23779e-07
-5.85434e-08
2.24565e-07
-6.36045e-08
2.25411e-07
-6.874e-08
2.26319e-07
-7.3956e-08
2.27291e-07
-7.92587e-08
2.28327e-07
-8.46545e-08
2.29429e-07
-9.015e-08
2.30598e-07
-9.57521e-08
2.31835e-07
-1.01468e-07
2.33141e-07
-1.07305e-07
2.34517e-07
-1.13271e-07
2.35965e-07
-1.19374e-07
2.37487e-07
-1.25622e-07
2.39083e-07
-1.32023e-07
2.40755e-07
-1.38587e-07
2.42506e-07
-1.45324e-07
2.44336e-07
-1.52242e-07
2.46248e-07
-1.59352e-07
2.48243e-07
-1.66666e-07
2.50324e-07
-1.74194e-07
2.52492e-07
-1.81949e-07
2.54751e-07
-1.89942e-07
2.57102e-07
-1.98186e-07
2.59547e-07
-2.06697e-07
2.6209e-07
-2.15487e-07
2.64733e-07
-2.24572e-07
2.67478e-07
-2.33968e-07
2.70329e-07
-2.43692e-07
2.73289e-07
-2.53762e-07
2.76361e-07
-2.64196e-07
2.79548e-07
-2.75014e-07
2.82854e-07
-2.86237e-07
2.86283e-07
-2.97887e-07
2.89837e-07
-3.09987e-07
2.93522e-07
-3.22562e-07
2.97342e-07
-3.35637e-07
3.013e-07
-3.49241e-07
3.05401e-07
-3.63403e-07
3.0965e-07
-3.78153e-07
3.14052e-07
-3.93524e-07
3.18612e-07
-4.09551e-07
3.23335e-07
-4.26271e-07
3.28227e-07
-4.43721e-07
3.33293e-07
-4.61945e-07
3.3854e-07
-4.80984e-07
3.43973e-07
-5.00886e-07
3.49599e-07
-5.21701e-07
3.55424e-07
-5.4348e-07
3.61456e-07
-5.66279e-07
3.67701e-07
-5.90156e-07
3.74166e-07
-6.15174e-07
3.8086e-07
-6.414e-07
3.87789e-07
-6.68903e-07
3.94963e-07
-6.97758e-07
4.02388e-07
-7.28044e-07
4.10074e-07
-7.59845e-07
4.18028e-07
-7.93251e-07
4.2626e-07
-8.28355e-07
4.34779e-07
-8.65257e-07
4.43592e-07
-9.04063e-07
4.52709e-07
-9.44885e-07
4.62139e-07
-9.8784e-07
4.71891e-07
-1.03305e-06
4.81974e-07
-1.08066e-06
4.92398e-07
-1.13079e-06
5.0317e-07
-1.18359e-06
5.14301e-07
-1.23922e-06
5.25798e-07
-1.29784e-06
5.37669e-07
-1.3596e-06
5.49921e-07
-1.42469e-06
5.6256e-07
-1.49327e-06
5.75593e-07
-1.56554e-06
5.89038e-07
-1.64168e-06
6.0292e-07
-1.72191e-06
6.17285e-07
-1.80642e-06
6.32182e-07
-1.8954e-06
6.47652e-07
-1.98901e-06
6.63692e-07
-2.08737e-06
6.80233e-07
-2.19055e-06
6.97141e-07
-2.29859e-06
7.14224e-07
-2.41146e-06
7.31227e-07
-2.52902e-06
7.47822e-07
-2.65106e-06
7.63632e-07
-2.77739e-06
7.78364e-07
-2.90785e-06
7.92007e-07
8.04997e-07
-3.04236e-06
4.4172e-10
6.4278e-08
-1.58636e-10
1.39481e-07
-1.94697e-09
1.80701e-07
-4.6055e-09
2.02298e-07
-7.80571e-09
2.13294e-07
-1.13169e-08
2.18836e-07
-1.50012e-08
2.21679e-07
-1.87841e-08
2.23242e-07
-2.26289e-08
2.24229e-07
-2.65198e-08
2.24981e-07
-3.04516e-08
2.25662e-07
-3.44244e-08
2.26346e-07
-3.84411e-08
2.27068e-07
-4.25055e-08
2.27844e-07
-4.66221e-08
2.28682e-07
-5.07955e-08
2.29585e-07
-5.50308e-08
2.30555e-07
-5.9333e-08
2.31593e-07
-6.37074e-08
2.32702e-07
-6.81594e-08
2.33881e-07
-7.26949e-08
2.35134e-07
-7.73197e-08
2.3646e-07
-8.20399e-08
2.37861e-07
-8.68619e-08
2.39339e-07
-9.17922e-08
2.40895e-07
-9.68378e-08
2.42532e-07
-1.02006e-07
2.4425e-07
-1.07303e-07
2.46052e-07
-1.12738e-07
2.4794e-07
-1.18319e-07
2.49916e-07
-1.24054e-07
2.51982e-07
-1.29952e-07
2.54141e-07
-1.36023e-07
2.56394e-07
-1.42276e-07
2.58745e-07
-1.48722e-07
2.61197e-07
-1.55371e-07
2.63751e-07
-1.62236e-07
2.66412e-07
-1.69327e-07
2.69181e-07
-1.76659e-07
2.72064e-07
-1.84243e-07
2.75063e-07
-1.92095e-07
2.78181e-07
-2.0023e-07
2.81423e-07
-2.08662e-07
2.84793e-07
-2.17409e-07
2.88295e-07
-2.26489e-07
2.91934e-07
-2.3592e-07
2.95713e-07
-2.45721e-07
2.99639e-07
-2.55914e-07
3.03715e-07
-2.6652e-07
3.07949e-07
-2.77565e-07
3.12344e-07
-2.89072e-07
3.16908e-07
-3.01068e-07
3.21646e-07
-3.13581e-07
3.26565e-07
-3.26641e-07
3.31672e-07
-3.4028e-07
3.36974e-07
-3.54532e-07
3.42479e-07
-3.69432e-07
3.48194e-07
-3.8502e-07
3.54127e-07
-4.01335e-07
3.60288e-07
-4.18421e-07
3.66685e-07
-4.36325e-07
3.73328e-07
-4.55095e-07
3.80226e-07
-4.74784e-07
3.87389e-07
-4.95447e-07
3.94829e-07
-5.17144e-07
4.02557e-07
-5.39938e-07
4.10583e-07
-5.63896e-07
4.18921e-07
-5.89091e-07
4.27583e-07
-6.15599e-07
4.36581e-07
-6.43501e-07
4.4593e-07
-6.72884e-07
4.55644e-07
-7.03841e-07
4.65736e-07
-7.3647e-07
4.76221e-07
-7.70875e-07
4.87115e-07
-8.07169e-07
4.98433e-07
-8.4547e-07
5.10191e-07
-8.85902e-07
5.22406e-07
-9.28599e-07
5.35094e-07
-9.73701e-07
5.48272e-07
-1.02136e-06
5.61957e-07
-1.07172e-06
5.76164e-07
-1.12496e-06
5.90909e-07
-1.18124e-06
6.06205e-07
-1.24075e-06
6.22065e-07
-1.30366e-06
6.38504e-07
-1.37017e-06
6.55545e-07
-1.44047e-06
6.73219e-07
-1.51476e-06
6.91573e-07
-1.59323e-06
7.10653e-07
-1.67606e-06
7.30483e-07
-1.7634e-06
7.51037e-07
-1.85539e-06
7.72223e-07
-1.95214e-06
7.93882e-07
-2.0537e-06
8.15785e-07
-2.16009e-06
8.37617e-07
-2.27124e-06
8.58979e-07
-2.38708e-06
8.79471e-07
-2.50757e-06
8.98848e-07
-2.6327e-06
9.17142e-07
9.34756e-07
-2.76246e-06
8.09436e-10
6.34689e-08
9.2038e-10
1.3937e-07
-2.69536e-11
1.81649e-07
-1.80514e-09
2.04076e-07
-4.11866e-09
2.15608e-07
-6.74528e-09
2.21462e-07
-9.54665e-09
2.24481e-07
-1.24457e-08
2.26141e-07
-1.54029e-08
2.27186e-07
-1.84003e-08
2.27978e-07
-2.1431e-08
2.28692e-07
-2.44935e-08
2.29408e-07
-2.75894e-08
2.30164e-07
-3.07214e-08
2.30976e-07
-3.38928e-08
2.31853e-07
-3.71075e-08
2.32799e-07
-4.03692e-08
2.33816e-07
-4.3682e-08
2.34906e-07
-4.70501e-08
2.3607e-07
-5.04778e-08
2.37309e-07
-5.39697e-08
2.38625e-07
-5.75303e-08
2.4002e-07
-6.11646e-08
2.41495e-07
-6.48775e-08
2.43052e-07
-6.86743e-08
2.44692e-07
-7.25605e-08
2.46418e-07
-7.65417e-08
2.48231e-07
-8.06239e-08
2.50135e-07
-8.48132e-08
2.5213e-07
-8.91164e-08
2.54219e-07
-9.35401e-08
2.56406e-07
-9.80917e-08
2.58692e-07
-1.02779e-07
2.61081e-07
-1.07609e-07
2.63576e-07
-1.12591e-07
2.66178e-07
-1.17733e-07
2.68893e-07
-1.23045e-07
2.71724e-07
-1.28537e-07
2.74673e-07
-1.34218e-07
2.77746e-07
-1.40101e-07
2.80945e-07
-1.46195e-07
2.84276e-07
-1.52514e-07
2.87743e-07
-1.59071e-07
2.9135e-07
-1.6588e-07
2.95104e-07
-1.72954e-07
2.99008e-07
-1.8031e-07
3.03069e-07
-1.87963e-07
3.07292e-07
-1.95932e-07
3.11684e-07
-2.04234e-07
3.16251e-07
-2.1289e-07
3.21e-07
-2.21921e-07
3.25939e-07
-2.31349e-07
3.31074e-07
-2.41198e-07
3.36414e-07
-2.51493e-07
3.41967e-07
-2.62261e-07
3.47743e-07
-2.73532e-07
3.5375e-07
-2.85336e-07
3.59998e-07
-2.97707e-07
3.66498e-07
-3.10679e-07
3.7326e-07
-3.2429e-07
3.80296e-07
-3.38581e-07
3.87619e-07
-3.53595e-07
3.95239e-07
-3.69378e-07
4.03172e-07
-3.85979e-07
4.1143e-07
-4.03451e-07
4.20029e-07
-4.21852e-07
4.28984e-07
-4.41241e-07
4.3831e-07
-4.61684e-07
4.48026e-07
-4.8325e-07
4.58148e-07
-5.06016e-07
4.68696e-07
-5.30061e-07
4.79688e-07
-5.55471e-07
4.91145e-07
-5.82339e-07
5.03088e-07
-6.10764e-07
5.1554e-07
-6.40853e-07
5.28522e-07
-6.72719e-07
5.42058e-07
-7.06486e-07
5.56173e-07
-7.42285e-07
5.70893e-07
-7.80256e-07
5.86243e-07
-8.20549e-07
6.0225e-07
-8.63325e-07
6.1894e-07
-9.08754e-07
6.36338e-07
-9.57018e-07
6.54469e-07
-1.00831e-06
6.73355e-07
-1.06283e-06
6.93024e-07
-1.12079e-06
7.13506e-07
-1.18242e-06
7.34847e-07
-1.24795e-06
7.571e-07
-1.31761e-06
7.80317e-07
-1.39165e-06
8.04523e-07
-1.47031e-06
8.29698e-07
-1.55385e-06
8.55759e-07
-1.64252e-06
8.82555e-07
-1.73658e-06
9.09851e-07
-1.83628e-06
9.37312e-07
-1.94184e-06
9.64538e-07
-2.05355e-06
9.91185e-07
-2.17181e-06
1.01711e-06
-2.29708e-06
1.04241e-06
1.06746e-06
-2.42979e-06
1.17013e-09
6.22988e-08
2.00283e-09
1.38538e-07
1.92589e-09
1.81726e-07
1.0668e-09
2.04936e-07
-3.16588e-10
2.16991e-07
-2.01284e-09
2.23159e-07
-3.88436e-09
2.26352e-07
-5.85178e-09
2.28109e-07
-7.87309e-09
2.29207e-07
-9.92788e-09
2.30033e-07
-1.20073e-08
2.30772e-07
-1.41085e-08
2.31509e-07
-1.62315e-08
2.32287e-07
-1.83778e-08
2.33122e-07
-2.05496e-08
2.34025e-07
-2.27492e-08
2.34999e-07
-2.49793e-08
2.36046e-07
-2.72428e-08
2.37169e-07
-2.95425e-08
2.38369e-07
-3.18815e-08
2.39648e-07
-3.4263e-08
2.41007e-07
-3.66902e-08
2.42447e-07
-3.91665e-08
2.43971e-07
-4.16954e-08
2.4558e-07
-4.42806e-08
2.47277e-07
-4.69259e-08
2.49063e-07
-4.96352e-08
2.50941e-07
-5.24127e-08
2.52912e-07
-5.52628e-08
2.5498e-07
-5.81902e-08
2.57147e-07
-6.11998e-08
2.59416e-07
-6.42966e-08
2.61789e-07
-6.7486e-08
2.6427e-07
-7.07736e-08
2.66863e-07
-7.41654e-08
2.6957e-07
-7.76676e-08
2.72395e-07
-8.12867e-08
2.75343e-07
-8.50298e-08
2.78416e-07
-8.89045e-08
2.8162e-07
-9.29185e-08
2.84959e-07
-9.70805e-08
2.88438e-07
-1.01399e-07
2.92061e-07
-1.05884e-07
2.95835e-07
-1.10545e-07
2.99764e-07
-1.15392e-07
3.03855e-07
-1.20438e-07
3.08114e-07
-1.25694e-07
3.12548e-07
-1.31172e-07
3.17163e-07
-1.36888e-07
3.21967e-07
-1.42855e-07
3.26967e-07
-1.4909e-07
3.32173e-07
-1.55608e-07
3.37592e-07
-1.62429e-07
3.43234e-07
-1.69571e-07
3.49109e-07
-1.77054e-07
3.55226e-07
-1.84902e-07
3.61597e-07
-1.93137e-07
3.68233e-07
-2.01786e-07
3.75146e-07
-2.10875e-07
3.82349e-07
-2.20435e-07
3.89856e-07
-2.30496e-07
3.9768e-07
-2.41093e-07
4.05836e-07
-2.52262e-07
4.14341e-07
-2.64043e-07
4.23212e-07
-2.7648e-07
4.32465e-07
-2.89616e-07
4.42121e-07
-3.03504e-07
4.52198e-07
-3.18197e-07
4.62718e-07
-3.33752e-07
4.73703e-07
-3.50232e-07
4.85176e-07
-3.67707e-07
4.97163e-07
-3.8625e-07
5.09689e-07
-4.05942e-07
5.22781e-07
-4.26871e-07
5.36468e-07
-4.49131e-07
5.50781e-07
-4.72825e-07
5.65752e-07
-4.98066e-07
5.81414e-07
-5.24976e-07
5.97802e-07
-5.53688e-07
6.14954e-07
-5.84346e-07
6.32908e-07
-6.17108e-07
6.51701e-07
-6.52145e-07
6.71375e-07
-6.89643e-07
6.91966e-07
-7.29805e-07
7.13517e-07
-7.72849e-07
7.36068e-07
-8.19013e-07
7.59671e-07
-8.68555e-07
7.84389e-07
-9.21751e-07
8.10296e-07
-9.78898e-07
8.37464e-07
-1.04032e-06
8.65942e-07
-1.10636e-06
8.95741e-07
-1.17742e-06
9.26813e-07
-1.2539e-06
9.59043e-07
-1.33627e-06
9.92219e-07
-1.425e-06
1.02604e-06
-1.5206e-06
1.06014e-06
-1.62372e-06
1.0943e-06
-1.73508e-06
1.12847e-06
-1.85554e-06
1.16286e-06
1.1978e-06
-1.98588e-06
1.51837e-09
6.07806e-08
3.07122e-09
1.36985e-07
3.87797e-09
1.80919e-07
3.96118e-09
2.04852e-07
3.53616e-09
2.17417e-07
2.80106e-09
2.23894e-07
1.89152e-09
2.27262e-07
8.88607e-10
2.29111e-07
-1.63194e-10
2.30259e-07
-1.24115e-09
2.31111e-07
-2.33449e-09
2.31865e-07
-3.43867e-09
2.32613e-07
-4.55229e-09
2.334e-07
-5.67542e-09
2.34245e-07
-6.80891e-09
2.35158e-07
-7.95389e-09
2.36144e-07
-9.11171e-09
2.37204e-07
-1.02838e-08
2.38341e-07
-1.14717e-08
2.39557e-07
-1.2677e-08
2.40853e-07
-1.39013e-08
2.42231e-07
-1.51464e-08
2.43692e-07
-1.6414e-08
2.45239e-07
-1.7706e-08
2.46872e-07
-1.90244e-08
2.48595e-07
-2.0371e-08
2.5041e-07
-2.17481e-08
2.52318e-07
-2.31579e-08
2.54322e-07
-2.46027e-08
2.56425e-07
-2.60848e-08
2.58629e-07
-2.76068e-08
2.60937e-07
-2.91717e-08
2.63354e-07
-3.07822e-08
2.65881e-07
-3.24414e-08
2.68522e-07
-3.41524e-08
2.71281e-07
-3.59186e-08
2.74161e-07
-3.77436e-08
2.77168e-07
-3.96313e-08
2.80304e-07
-4.15858e-08
2.83575e-07
-4.36114e-08
2.86985e-07
-4.57129e-08
2.90539e-07
-4.78952e-08
2.94244e-07
-5.01637e-08
2.98103e-07
-5.25239e-08
3.02124e-07
-5.4982e-08
3.06313e-07
-5.75443e-08
3.10676e-07
-6.02177e-08
3.15221e-07
-6.30089e-08
3.19954e-07
-6.59259e-08
3.24884e-07
-6.8978e-08
3.30019e-07
-7.21746e-08
3.35369e-07
-7.55255e-08
3.40943e-07
-7.90414e-08
3.4675e-07
-8.27338e-08
3.52801e-07
-8.66151e-08
3.59107e-07
-9.06987e-08
3.65681e-07
-9.49993e-08
3.72534e-07
-9.95327e-08
3.7968e-07
-1.04316e-07
3.87133e-07
-1.09368e-07
3.94908e-07
-1.14709e-07
4.03021e-07
-1.20361e-07
4.11488e-07
-1.26348e-07
4.20328e-07
-1.32696e-07
4.29559e-07
-1.39433e-07
4.39202e-07
-1.46591e-07
4.49279e-07
-1.54203e-07
4.59811e-07
-1.62308e-07
4.70823e-07
-1.70946e-07
4.82341e-07
-1.80163e-07
4.94392e-07
-1.90006e-07
5.07006e-07
-2.00532e-07
5.20214e-07
-2.118e-07
5.34049e-07
-2.23877e-07
5.48545e-07
-2.36836e-07
5.63741e-07
-2.50759e-07
5.79675e-07
-2.65736e-07
5.96391e-07
-2.81866e-07
6.13933e-07
-2.9926e-07
6.32348e-07
-3.18041e-07
6.51688e-07
-3.38345e-07
6.72005e-07
-3.60323e-07
6.93353e-07
-3.84146e-07
7.1579e-07
-4.10003e-07
7.39374e-07
-4.38105e-07
7.64169e-07
-4.68684e-07
7.9025e-07
-5.02e-07
8.17705e-07
-5.38337e-07
8.46634e-07
-5.78015e-07
8.77142e-07
-6.21389e-07
9.09316e-07
-6.68858e-07
9.43209e-07
-7.20871e-07
9.78826e-07
-7.7793e-07
1.0161e-06
-8.40581e-07
1.05487e-06
-9.09421e-07
1.09488e-06
-9.85121e-07
1.13584e-06
-1.06844e-06
1.17762e-06
-1.16023e-06
1.22027e-06
-1.26144e-06
1.26407e-06
1.30936e-06
-1.37301e-06
1.84636e-09
5.89343e-08
4.10407e-09
1.34727e-07
5.79155e-09
1.79232e-07
6.82417e-09
2.0382e-07
7.37028e-09
2.1687e-07
7.61174e-09
2.23652e-07
7.68088e-09
2.27193e-07
7.65995e-09
2.29132e-07
7.59564e-09
2.30323e-07
7.51287e-09
2.31194e-07
7.42432e-09
2.31953e-07
7.33622e-09
2.32702e-07
7.25148e-09
2.33485e-07
7.17143e-09
2.34325e-07
7.09665e-09
2.35233e-07
7.02733e-09
2.36213e-07
6.96355e-09
2.37268e-07
6.90527e-09
2.384e-07
6.85242e-09
2.3961e-07
6.80491e-09
2.40901e-07
6.76266e-09
2.42273e-07
6.72562e-09
2.43729e-07
6.69357e-09
2.45271e-07
6.66657e-09
2.46899e-07
6.64456e-09
2.48617e-07
6.62746e-09
2.50427e-07
6.61516e-09
2.5233e-07
6.60753e-09
2.54329e-07
6.60446e-09
2.56428e-07
6.60553e-09
2.58628e-07
6.61057e-09
2.60933e-07
6.61953e-09
2.63345e-07
6.63225e-09
2.65868e-07
6.64851e-09
2.68506e-07
6.66806e-09
2.71261e-07
6.69061e-09
2.74139e-07
6.7158e-09
2.77143e-07
6.7432e-09
2.80277e-07
6.77233e-09
2.83546e-07
6.80265e-09
2.86955e-07
6.83359e-09
2.90508e-07
6.86454e-09
2.94213e-07
6.89483e-09
2.98073e-07
6.92371e-09
3.02096e-07
6.95025e-09
3.06287e-07
6.97344e-09
3.10653e-07
6.99316e-09
3.15201e-07
7.00569e-09
3.19941e-07
7.00912e-09
3.2488e-07
7.00343e-09
3.30025e-07
6.98692e-09
3.35386e-07
6.9575e-09
3.40972e-07
6.91282e-09
3.46795e-07
6.85017e-09
3.52864e-07
6.76644e-09
3.59192e-07
6.6581e-09
3.6579e-07
6.52115e-09
3.72671e-07
6.35114e-09
3.7985e-07
6.14306e-09
3.87341e-07
5.89127e-09
3.9516e-07
5.58935e-09
4.03323e-07
5.23001e-09
4.11848e-07
4.80494e-09
4.20753e-07
4.30465e-09
4.3006e-07
3.71834e-09
4.39789e-07
3.03378e-09
4.49963e-07
2.23707e-09
4.60607e-07
1.31235e-09
4.71747e-07
2.41279e-10
4.83412e-07
-9.96968e-10
4.95631e-07
-2.41979e-09
5.08429e-07
-4.06002e-09
5.21854e-07
-5.94858e-09
5.35937e-07
-8.12025e-09
5.50717e-07
-1.06152e-08
5.66236e-07
-1.34795e-08
5.82539e-07
-1.6766e-08
5.99677e-07
-2.05354e-08
6.17702e-07
-2.48574e-08
6.36671e-07
-2.98126e-08
6.56644e-07
-3.54928e-08
6.77685e-07
-4.19977e-08
6.99858e-07
-4.94566e-08
7.23248e-07
-5.80096e-08
7.47926e-07
-6.78184e-08
7.73978e-07
-7.90691e-08
8.01501e-07
-9.19745e-08
8.3061e-07
-1.06764e-07
8.61424e-07
-1.23728e-07
8.94106e-07
-1.4319e-07
9.28778e-07
-1.65531e-07
9.65549e-07
-1.91165e-07
1.00446e-06
-2.20637e-07
1.04557e-06
-2.54536e-07
1.08877e-06
-2.93531e-07
1.13387e-06
-3.38403e-07
1.18072e-06
-3.90032e-07
1.22925e-06
-4.49411e-07
1.27965e-06
-5.17682e-07
1.33235e-06
1.38767e-06
-5.95984e-07
2.1469e-09
5.67876e-08
5.08017e-09
1.31794e-07
7.62991e-09
1.76682e-07
9.60271e-09
2.01847e-07
1.11163e-08
2.15357e-07
1.23335e-08
2.22435e-07
1.33817e-08
2.26144e-07
1.43437e-08
2.2817e-07
1.52681e-08
2.29399e-07
1.61818e-08
2.3028e-07
1.70994e-08
2.31036e-07
1.80287e-08
2.31772e-07
1.89742e-08
2.32539e-07
1.99385e-08
2.33361e-07
2.09237e-08
2.34248e-07
2.19313e-08
2.35205e-07
2.29627e-08
2.36236e-07
2.40193e-08
2.37343e-07
2.51026e-08
2.38527e-07
2.62141e-08
2.39789e-07
2.73551e-08
2.41132e-07
2.85271e-08
2.42557e-07
2.9732e-08
2.44066e-07
3.09714e-08
2.4566e-07
3.22471e-08
2.47341e-07
3.35609e-08
2.49113e-07
3.49148e-08
2.50976e-07
3.63107e-08
2.52933e-07
3.77507e-08
2.54988e-07
3.9237e-08
2.57141e-07
4.0772e-08
2.59397e-07
4.2358e-08
2.61759e-07
4.39975e-08
2.64228e-07
4.5693e-08
2.6681e-07
4.74474e-08
2.69507e-07
4.92636e-08
2.72323e-07
5.11444e-08
2.75262e-07
5.30932e-08
2.78328e-07
5.51131e-08
2.81526e-07
5.72075e-08
2.8486e-07
5.93801e-08
2.88336e-07
6.16346e-08
2.91958e-07
6.39752e-08
2.95732e-07
6.6406e-08
2.99664e-07
6.89316e-08
3.03761e-07
7.15565e-08
3.08028e-07
7.42835e-08
3.12474e-07
7.71201e-08
3.17105e-07
8.00721e-08
3.21928e-07
8.31442e-08
3.26953e-07
8.63422e-08
3.32188e-07
8.96723e-08
3.37642e-07
9.31409e-08
3.43326e-07
9.67554e-08
3.4925e-07
1.00523e-07
3.55424e-07
1.0445e-07
3.61863e-07
1.08545e-07
3.68577e-07
1.12815e-07
3.7558e-07
1.17269e-07
3.82887e-07
1.21916e-07
3.90513e-07
1.26764e-07
3.98474e-07
1.31823e-07
4.06788e-07
1.37103e-07
4.15473e-07
1.42613e-07
4.2455e-07
1.48363e-07
4.34039e-07
1.54363e-07
4.43963e-07
1.60622e-07
4.54347e-07
1.67152e-07
4.65217e-07
1.73962e-07
4.76601e-07
1.81061e-07
4.8853e-07
1.88447e-07
5.01043e-07
1.96139e-07
5.14162e-07
2.04145e-07
5.27932e-07
2.1247e-07
5.42393e-07
2.21116e-07
5.57589e-07
2.30088e-07
5.73568e-07
2.39382e-07
5.90383e-07
2.48994e-07
6.0809e-07
2.58916e-07
6.26748e-07
2.69135e-07
6.46425e-07
2.7963e-07
6.67192e-07
2.90357e-07
6.89131e-07
3.01292e-07
7.12313e-07
3.12385e-07
7.36833e-07
3.23572e-07
7.62791e-07
3.34771e-07
7.90302e-07
3.45882e-07
8.19499e-07
3.56759e-07
8.50546e-07
3.67278e-07
8.83588e-07
3.77257e-07
9.18799e-07
3.86446e-07
9.5636e-07
3.94484e-07
9.96422e-07
4.01045e-07
1.03901e-06
4.05651e-07
1.08416e-06
4.07704e-07
1.13182e-06
4.0653e-07
1.18189e-06
4.01349e-07
1.23443e-06
3.91274e-07
1.28972e-06
3.75299e-07
1.34832e-06
1.4108e-06
3.52164e-07
2.41375e-09
5.43738e-08
5.98035e-09
1.28228e-07
9.35789e-09
1.73305e-07
1.22451e-08
1.9896e-07
1.47061e-08
2.12896e-07
1.68821e-08
2.20259e-07
1.8894e-08
2.24133e-07
2.08239e-08
2.2624e-07
2.27217e-08
2.27501e-07
2.46165e-08
2.28385e-07
2.65244e-08
2.29128e-07
2.8455e-08
2.29841e-07
3.04139e-08
2.3058e-07
3.24053e-08
2.31369e-07
3.44325e-08
2.3222e-07
3.64984e-08
2.33139e-07
3.86058e-08
2.34129e-07
4.07574e-08
2.35191e-07
4.2956e-08
2.36328e-07
4.52046e-08
2.37541e-07
4.75062e-08
2.38831e-07
4.98641e-08
2.40199e-07
5.22815e-08
2.41648e-07
5.47618e-08
2.43179e-07
5.73086e-08
2.44794e-07
5.99258e-08
2.46496e-07
6.2617e-08
2.48285e-07
6.53865e-08
2.50164e-07
6.82386e-08
2.52136e-07
7.11775e-08
2.54202e-07
7.42079e-08
2.56367e-07
7.73343e-08
2.58632e-07
8.05623e-08
2.61e-07
8.38971e-08
2.63475e-07
8.73445e-08
2.66059e-07
9.09104e-08
2.68757e-07
9.46011e-08
2.71571e-07
9.8423e-08
2.74506e-07
1.02383e-07
2.77566e-07
1.06489e-07
2.80754e-07
1.10748e-07
2.84077e-07
1.15168e-07
2.87538e-07
1.19758e-07
2.91142e-07
1.24527e-07
2.94895e-07
1.29485e-07
2.98803e-07
1.34641e-07
3.02872e-07
1.40008e-07
3.07107e-07
1.45596e-07
3.11517e-07
1.51417e-07
3.16107e-07
1.57484e-07
3.20886e-07
1.63811e-07
3.25862e-07
1.70411e-07
3.31042e-07
1.773e-07
3.36437e-07
1.84493e-07
3.42056e-07
1.92008e-07
3.47909e-07
1.99864e-07
3.54007e-07
2.08079e-07
3.60361e-07
2.16675e-07
3.66984e-07
2.25674e-07
3.73889e-07
2.35097e-07
3.81089e-07
2.44971e-07
3.88601e-07
2.5532e-07
3.96438e-07
2.66174e-07
4.0462e-07
2.77561e-07
4.13163e-07
2.89512e-07
4.22087e-07
3.02061e-07
4.31414e-07
3.15243e-07
4.41165e-07
3.29095e-07
4.51365e-07
3.43657e-07
4.6204e-07
3.5897e-07
4.73217e-07
3.75086e-07
4.84927e-07
3.92045e-07
4.97203e-07
4.09899e-07
5.10077e-07
4.28699e-07
5.23592e-07
4.48499e-07
5.37788e-07
4.69357e-07
5.52709e-07
4.91336e-07
5.68403e-07
5.14502e-07
5.84924e-07
5.38922e-07
6.02329e-07
5.64664e-07
6.20683e-07
5.91801e-07
6.40053e-07
6.20416e-07
6.60516e-07
6.50576e-07
6.82152e-07
6.82356e-07
7.05052e-07
7.15832e-07
7.29315e-07
7.5108e-07
7.55054e-07
7.88177e-07
7.82402e-07
8.27209e-07
8.11515e-07
8.68229e-07
8.42567e-07
9.11278e-07
8.7575e-07
9.56401e-07
9.11238e-07
1.00362e-06
9.49207e-07
1.05283e-06
9.89796e-07
1.10391e-06
1.03308e-06
1.15665e-06
1.07909e-06
1.21073e-06
1.12781e-06
1.26581e-06
1.17935e-06
1.32151e-06
1.23402e-06
1.37739e-06
1.29244e-06
1.35535e-06
1.43284e-06
2.64298e-09
5.17307e-08
6.78876e-09
1.24082e-07
1.09446e-08
1.69149e-07
1.47044e-08
1.952e-07
1.80767e-08
2.09523e-07
2.11784e-08
2.17157e-07
2.41221e-08
2.21189e-07
2.69885e-08
2.23374e-07
2.98286e-08
2.24661e-07
3.26728e-08
2.25541e-07
3.55387e-08
2.26262e-07
3.84373e-08
2.26943e-07
4.13756e-08
2.27642e-07
4.43589e-08
2.28386e-07
4.73918e-08
2.29187e-07
5.04783e-08
2.30052e-07
5.36226e-08
2.30984e-07
5.68288e-08
2.31985e-07
6.01009e-08
2.33056e-07
6.34434e-08
2.34198e-07
6.68606e-08
2.35413e-07
7.03572e-08
2.36702e-07
7.3938e-08
2.38067e-07
7.76081e-08
2.39509e-07
8.13728e-08
2.4103e-07
8.52374e-08
2.42631e-07
8.92079e-08
2.44314e-07
9.32899e-08
2.46082e-07
9.74897e-08
2.47936e-07
1.01814e-07
2.49878e-07
1.06269e-07
2.51912e-07
1.10863e-07
2.54038e-07
1.15603e-07
2.56261e-07
1.20496e-07
2.58582e-07
1.25551e-07
2.61004e-07
1.30778e-07
2.6353e-07
1.36184e-07
2.66165e-07
1.4178e-07
2.6891e-07
1.47576e-07
2.7177e-07
1.53583e-07
2.74748e-07
1.59813e-07
2.77847e-07
1.66276e-07
2.81074e-07
1.72987e-07
2.84431e-07
1.79958e-07
2.87924e-07
1.87205e-07
2.91557e-07
1.94741e-07
2.95335e-07
2.02584e-07
2.99265e-07
2.1075e-07
3.03351e-07
2.19257e-07
3.076e-07
2.28125e-07
3.12018e-07
2.37375e-07
3.16612e-07
2.47027e-07
3.2139e-07
2.57106e-07
3.26358e-07
2.67636e-07
3.31526e-07
2.78644e-07
3.36902e-07
2.90157e-07
3.42494e-07
3.02206e-07
3.48313e-07
3.14821e-07
3.54368e-07
3.28039e-07
3.60671e-07
3.41894e-07
3.67234e-07
3.56427e-07
3.74068e-07
3.71678e-07
3.81187e-07
3.87694e-07
3.88604e-07
4.04521e-07
3.96336e-07
4.22211e-07
4.04397e-07
4.40819e-07
4.12806e-07
4.60405e-07
4.21579e-07
4.81031e-07
4.30738e-07
5.02766e-07
4.40304e-07
5.25685e-07
4.50298e-07
5.49865e-07
4.60746e-07
5.75393e-07
4.71675e-07
6.02357e-07
4.83114e-07
6.30859e-07
4.9509e-07
6.61007e-07
5.07641e-07
6.92915e-07
5.20801e-07
7.26708e-07
5.34609e-07
7.62522e-07
5.49109e-07
8.00503e-07
5.64348e-07
8.40811e-07
5.80375e-07
8.83617e-07
5.97247e-07
9.29108e-07
6.15025e-07
9.77486e-07
6.33774e-07
1.02897e-06
6.53565e-07
1.08381e-06
6.74479e-07
1.14225e-06
6.9661e-07
1.20459e-06
7.20065e-07
1.27113e-06
7.4497e-07
1.34223e-06
7.71467e-07
1.41827e-06
7.99714e-07
1.49963e-06
8.29872e-07
1.58675e-06
8.62091e-07
1.68005e-06
8.96492e-07
1.77999e-06
9.33152e-07
1.88698e-06
9.72091e-07
2.0015e-06
1.01329e-06
2.1241e-06
1.05675e-06
2.25551e-06
1.10261e-06
2.39669e-06
1.15126e-06
1.20336e-06
2.54869e-06
2.83025e-09
4.89008e-08
7.49151e-09
1.19421e-07
1.23631e-08
1.64277e-07
1.69394e-08
1.90624e-07
2.11722e-08
2.05291e-07
2.51518e-08
2.13178e-07
2.89809e-08
2.1736e-07
3.27375e-08
2.19617e-07
3.6473e-08
2.20925e-07
4.0219e-08
2.21795e-07
4.39946e-08
2.22486e-07
4.78117e-08
2.23126e-07
5.16787e-08
2.23775e-07
5.56019e-08
2.24463e-07
5.9587e-08
2.25203e-07
6.36391e-08
2.26001e-07
6.77634e-08
2.2686e-07
7.19651e-08
2.27784e-07
7.62495e-08
2.28772e-07
8.06221e-08
2.29825e-07
8.50888e-08
2.30946e-07
8.96554e-08
2.32136e-07
9.43281e-08
2.33394e-07
9.91135e-08
2.34723e-07
1.04018e-07
2.36125e-07
1.09049e-07
2.376e-07
1.14213e-07
2.39149e-07
1.19519e-07
2.40776e-07
1.24974e-07
2.42481e-07
1.30586e-07
2.44266e-07
1.36364e-07
2.46134e-07
1.42317e-07
2.48085e-07
1.48455e-07
2.50123e-07
1.54788e-07
2.52249e-07
1.61326e-07
2.54465e-07
1.68081e-07
2.56775e-07
1.75064e-07
2.59181e-07
1.82288e-07
2.61686e-07
1.89766e-07
2.64292e-07
1.97511e-07
2.67002e-07
2.05538e-07
2.69821e-07
2.13862e-07
2.7275e-07
2.225e-07
2.75793e-07
2.31469e-07
2.78955e-07
2.40786e-07
2.82239e-07
2.50473e-07
2.85649e-07
2.60548e-07
2.89189e-07
2.71035e-07
2.92864e-07
2.81955e-07
2.96679e-07
2.93333e-07
3.00639e-07
3.05197e-07
3.04749e-07
3.17572e-07
3.09014e-07
3.30491e-07
3.1344e-07
3.43983e-07
3.18034e-07
3.58082e-07
3.22802e-07
3.72826e-07
3.2775e-07
3.88252e-07
3.32887e-07
4.04401e-07
3.38219e-07
4.21318e-07
3.43754e-07
4.3905e-07
3.49502e-07
4.57648e-07
3.5547e-07
4.77165e-07
3.61669e-07
4.97661e-07
3.68108e-07
5.19198e-07
3.74799e-07
5.41843e-07
3.81752e-07
5.65669e-07
3.88979e-07
5.90754e-07
3.96494e-07
6.17183e-07
4.04309e-07
6.45047e-07
4.12439e-07
6.74444e-07
4.20901e-07
7.05482e-07
4.29709e-07
7.38275e-07
4.38881e-07
7.72952e-07
4.48437e-07
8.09644e-07
4.58397e-07
8.48502e-07
4.68782e-07
8.89687e-07
4.79615e-07
9.33376e-07
4.9092e-07
9.79761e-07
5.02724e-07
1.02905e-06
5.15056e-07
1.08148e-06
5.27946e-07
1.1373e-06
5.41427e-07
1.19679e-06
5.55534e-07
1.26026e-06
5.70304e-07
1.32805e-06
5.85779e-07
1.40052e-06
6.02003e-07
1.47811e-06
6.19026e-07
1.56126e-06
6.36908e-07
1.65052e-06
6.55719e-07
1.74644e-06
6.75541e-07
1.84969e-06
6.96464e-07
1.96099e-06
7.18574e-07
2.08114e-06
7.41945e-07
2.21101e-06
7.66621e-07
2.35155e-06
7.92604e-07
2.50381e-06
8.1983e-07
2.66893e-06
8.48173e-07
2.84821e-06
8.77464e-07
3.04326e-06
9.07558e-07
3.2561e-06
9.38425e-07
9.70424e-07
3.48903e-06
2.97314e-09
4.59275e-08
8.07775e-09
1.14316e-07
1.35908e-08
1.58764e-07
1.89145e-08
1.853e-07
2.39436e-08
2.00262e-07
2.87401e-08
2.08381e-07
3.33949e-08
2.12705e-07
3.79823e-08
2.1503e-07
4.25534e-08
2.16354e-07
4.71403e-08
2.17208e-07
5.17632e-08
2.17863e-07
5.64352e-08
2.18453e-07
6.11653e-08
2.19044e-07
6.59611e-08
2.19667e-07
7.08289e-08
2.20334e-07
7.57751e-08
2.21054e-07
8.08056e-08
2.2183e-07
8.59267e-08
2.22662e-07
9.11446e-08
2.23554e-07
9.64661e-08
2.24504e-07
1.01898e-07
2.25515e-07
1.07446e-07
2.26587e-07
1.1312e-07
2.27721e-07
1.18925e-07
2.28918e-07
1.24871e-07
2.30179e-07
1.30964e-07
2.31506e-07
1.37214e-07
2.32899e-07
1.4363e-07
2.3436e-07
1.50221e-07
2.3589e-07
1.56997e-07
2.37491e-07
1.63967e-07
2.39163e-07
1.71143e-07
2.40909e-07
1.78535e-07
2.4273e-07
1.86156e-07
2.44627e-07
1.94018e-07
2.46603e-07
2.02134e-07
2.4866e-07
2.10517e-07
2.50798e-07
2.19183e-07
2.53021e-07
2.28145e-07
2.5533e-07
2.3742e-07
2.57727e-07
2.47025e-07
2.60215e-07
2.56978e-07
2.62797e-07
2.67297e-07
2.65474e-07
2.78003e-07
2.68249e-07
2.89117e-07
2.71125e-07
3.0066e-07
2.74105e-07
3.12657e-07
2.77192e-07
3.25133e-07
2.80389e-07
3.38114e-07
2.83699e-07
3.51629e-07
2.87124e-07
3.65708e-07
2.9067e-07
3.80382e-07
2.94339e-07
3.95687e-07
2.98136e-07
4.11659e-07
3.02063e-07
4.28336e-07
3.06125e-07
4.45759e-07
3.10327e-07
4.63974e-07
3.14672e-07
4.83027e-07
3.19166e-07
5.02968e-07
3.23813e-07
5.23852e-07
3.28617e-07
5.45738e-07
3.33584e-07
5.68687e-07
3.3872e-07
5.92766e-07
3.44029e-07
6.18048e-07
3.49518e-07
6.44609e-07
3.55191e-07
6.72532e-07
3.61056e-07
7.01907e-07
3.67118e-07
7.32831e-07
3.73385e-07
7.65408e-07
3.79862e-07
7.99752e-07
3.86556e-07
8.35985e-07
3.93475e-07
8.7424e-07
4.00627e-07
9.1466e-07
4.08017e-07
9.57402e-07
4.15655e-07
1.00264e-06
4.23547e-07
1.05055e-06
4.31701e-07
1.10135e-06
4.40125e-07
1.15524e-06
4.48826e-07
1.21249e-06
4.57812e-07
1.27335e-06
4.6709e-07
1.33811e-06
4.76665e-07
1.4071e-06
4.86543e-07
1.48067e-06
4.9673e-07
1.55922e-06
5.07229e-07
1.64318e-06
5.18041e-07
1.73304e-06
5.29169e-07
1.82933e-06
5.40617e-07
1.93266e-06
5.52391e-07
2.0437e-06
5.64501e-07
2.16321e-06
5.76956e-07
2.29202e-06
5.89757e-07
2.43108e-06
6.02887e-07
2.58141e-06
6.16296e-07
2.74412e-06
6.29889e-07
2.92045e-06
6.43504e-07
3.11172e-06
6.56904e-07
3.31941e-06
6.69774e-07
3.54523e-06
6.81739e-07
3.79123e-06
6.92425e-07
7.01715e-07
4.05994e-06
3.07154e-09
4.28559e-08
8.54168e-09
1.08846e-07
1.46128e-08
1.52693e-07
2.06036e-08
1.79309e-07
2.63531e-08
1.94512e-07
3.18935e-08
2.02841e-07
3.73022e-08
2.07296e-07
4.26489e-08
2.09683e-07
4.79834e-08
2.1102e-07
5.33383e-08
2.11854e-07
5.87343e-08
2.12467e-07
6.41851e-08
2.13003e-07
6.97009e-08
2.13529e-07
7.52895e-08
2.14078e-07
8.09583e-08
2.14666e-07
8.67141e-08
2.15299e-07
9.25638e-08
2.1598e-07
9.85142e-08
2.16712e-07
1.04573e-07
2.17495e-07
1.10746e-07
2.1833e-07
1.17043e-07
2.19218e-07
1.2347e-07
2.20159e-07
1.30036e-07
2.21155e-07
1.36749e-07
2.22205e-07
1.43618e-07
2.2331e-07
1.50653e-07
2.24472e-07
1.57861e-07
2.2569e-07
1.65255e-07
2.26967e-07
1.72843e-07
2.28302e-07
1.80636e-07
2.29697e-07
1.88646e-07
2.31153e-07
1.96885e-07
2.3267e-07
2.05364e-07
2.3425e-07
2.14097e-07
2.35894e-07
2.23098e-07
2.37603e-07
2.32379e-07
2.39378e-07
2.41957e-07
2.4122e-07
2.51847e-07
2.43131e-07
2.62065e-07
2.45111e-07
2.7263e-07
2.47163e-07
2.83558e-07
2.49287e-07
2.9487e-07
2.51485e-07
3.06585e-07
2.53758e-07
3.18726e-07
2.56108e-07
3.31315e-07
2.58536e-07
3.44377e-07
2.61044e-07
3.57935e-07
2.63634e-07
3.72019e-07
2.66306e-07
3.86655e-07
2.69062e-07
4.01875e-07
2.71905e-07
4.1771e-07
2.74835e-07
4.34194e-07
2.77855e-07
4.51365e-07
2.80965e-07
4.6926e-07
2.84168e-07
4.8792e-07
2.87465e-07
5.07389e-07
2.90858e-07
5.27715e-07
2.94348e-07
5.48945e-07
2.97936e-07
5.71134e-07
3.01624e-07
5.94337e-07
3.05414e-07
6.18616e-07
3.09305e-07
6.44036e-07
3.133e-07
6.70666e-07
3.174e-07
6.98579e-07
3.21604e-07
7.27857e-07
3.25914e-07
7.58583e-07
3.30329e-07
7.90852e-07
3.3485e-07
8.24761e-07
3.39476e-07
8.60417e-07
3.44205e-07
8.97936e-07
3.49038e-07
9.37441e-07
3.53971e-07
9.79065e-07
3.59002e-07
1.02295e-06
3.64128e-07
1.06926e-06
3.69344e-07
1.11817e-06
3.74645e-07
1.16984e-06
3.80024e-07
1.22449e-06
3.85473e-07
1.28234e-06
3.90982e-07
1.34361e-06
3.96538e-07
1.40857e-06
4.02128e-07
1.4775e-06
4.07735e-07
1.55071e-06
4.13338e-07
1.62852e-06
4.18914e-07
1.71132e-06
4.24433e-07
1.7995e-06
4.29862e-07
1.8935e-06
4.35165e-07
1.99382e-06
4.40298e-07
2.101e-06
4.45217e-07
2.21562e-06
4.49874e-07
2.33837e-06
4.54215e-07
2.46994e-06
4.58178e-07
2.61115e-06
4.61679e-07
2.76284e-06
4.64607e-07
2.92592e-06
4.66806e-07
3.10137e-06
4.68062e-07
3.29018e-06
4.68092e-07
3.49342e-06
4.6653e-07
3.71223e-06
4.62931e-07
3.94787e-06
4.56786e-07
4.47602e-07
4.20198e-06
3.12555e-09
3.97305e-08
8.88009e-09
1.03092e-07
1.54191e-08
1.46154e-07
2.19885e-08
1.7274e-07
2.83736e-08
1.88127e-07
3.45757e-08
1.96639e-07
4.06576e-08
2.01215e-07
4.66828e-08
2.03658e-07
5.26992e-08
2.05004e-07
5.87392e-08
2.05814e-07
6.48238e-08
2.06383e-07
7.09675e-08
2.06859e-07
7.71807e-08
2.07316e-07
8.3472e-08
2.07787e-07
8.98491e-08
2.08289e-07
9.63196e-08
2.08829e-07
1.02891e-07
2.09409e-07
1.0957e-07
2.10033e-07
1.16365e-07
2.10701e-07
1.23283e-07
2.11412e-07
1.30333e-07
2.12168e-07
1.37523e-07
2.1297e-07
1.44861e-07
2.13816e-07
1.52358e-07
2.14708e-07
1.60021e-07
2.15647e-07
1.67861e-07
2.16632e-07
1.75888e-07
2.17664e-07
1.84111e-07
2.18743e-07
1.92543e-07
2.19871e-07
2.01194e-07
2.21046e-07
2.10076e-07
2.22271e-07
2.19202e-07
2.23545e-07
2.28584e-07
2.24869e-07
2.38235e-07
2.26243e-07
2.48171e-07
2.27668e-07
2.58405e-07
2.29144e-07
2.68954e-07
2.30672e-07
2.79832e-07
2.32252e-07
2.91059e-07
2.33885e-07
3.0265e-07
2.35572e-07
3.14625e-07
2.37312e-07
3.27005e-07
2.39106e-07
3.39809e-07
2.40954e-07
3.53059e-07
2.42857e-07
3.6678e-07
2.44816e-07
3.80995e-07
2.46829e-07
3.9573e-07
2.48899e-07
4.11012e-07
2.51024e-07
4.2687e-07
2.53204e-07
4.43334e-07
2.55441e-07
4.60436e-07
2.57733e-07
4.78211e-07
2.6008e-07
4.96694e-07
2.62482e-07
5.15924e-07
2.64938e-07
5.35941e-07
2.67448e-07
5.56789e-07
2.70011e-07
5.78511e-07
2.72625e-07
6.01158e-07
2.75289e-07
6.2478e-07
2.78002e-07
6.49432e-07
2.80761e-07
6.75173e-07
2.83564e-07
7.02065e-07
2.86409e-07
7.30174e-07
2.89291e-07
7.5957e-07
2.92208e-07
7.90329e-07
2.95155e-07
8.22531e-07
2.98127e-07
8.56261e-07
3.01119e-07
8.91612e-07
3.04124e-07
9.28683e-07
3.07135e-07
9.67577e-07
3.10143e-07
1.00841e-06
3.1314e-07
1.0513e-06
3.16114e-07
1.09637e-06
3.19054e-07
1.14377e-06
3.21945e-07
1.19364e-06
3.24771e-07
1.24615e-06
3.27516e-07
1.30146e-06
3.30159e-07
1.35977e-06
3.32677e-07
1.42126e-06
3.35045e-07
1.48616e-06
3.37233e-07
1.55469e-06
3.39207e-07
1.62709e-06
3.40931e-07
1.70365e-06
3.42362e-07
1.78463e-06
3.4345e-07
1.87035e-06
3.44142e-07
1.96114e-06
3.44376e-07
2.05735e-06
3.44084e-07
2.15938e-06
3.43192e-07
2.26763e-06
3.41621e-07
2.38256e-06
3.39284e-07
2.50465e-06
3.36085e-07
2.63442e-06
3.31915e-07
2.77238e-06
3.26642e-07
2.91909e-06
3.20101e-07
3.07506e-06
3.12086e-07
3.24082e-06
3.02334e-07
3.41683e-06
2.90523e-07
3.6035e-06
2.76256e-07
3.80121e-06
2.59079e-07
2.38372e-07
4.01044e-06
3.13689e-09
3.65936e-08
9.09364e-09
9.7135e-08
1.60062e-08
1.39242e-07
2.30597e-08
1.65687e-07
2.99885e-08
1.81198e-07
3.67631e-08
1.89864e-07
4.343e-08
1.94548e-07
5.00458e-08
1.97043e-07
5.66556e-08
1.98394e-07
6.3291e-08
1.99178e-07
6.99732e-08
1.997e-07
7.67166e-08
2.00116e-07
8.35322e-08
2.005e-07
9.04289e-08
2.0089e-07
9.74146e-08
2.01303e-07
1.04497e-07
2.01746e-07
1.11684e-07
2.02222e-07
1.18983e-07
2.02734e-07
1.26403e-07
2.03281e-07
1.3395e-07
2.03865e-07
1.41634e-07
2.04484e-07
1.49464e-07
2.0514e-07
1.57447e-07
2.05833e-07
1.65594e-07
2.06561e-07
1.73914e-07
2.07327e-07
1.82417e-07
2.08129e-07
1.91112e-07
2.08968e-07
2.00012e-07
2.09844e-07
2.09126e-07
2.10757e-07
2.18466e-07
2.11706e-07
2.28044e-07
2.12693e-07
2.37873e-07
2.13716e-07
2.47965e-07
2.14777e-07
2.58333e-07
2.15874e-07
2.68993e-07
2.17008e-07
2.79959e-07
2.18178e-07
2.91246e-07
2.19385e-07
3.0287e-07
2.20629e-07
3.14848e-07
2.21908e-07
3.27197e-07
2.23223e-07
3.39937e-07
2.24572e-07
3.53086e-07
2.25957e-07
3.66664e-07
2.27376e-07
3.80694e-07
2.28828e-07
3.95197e-07
2.30313e-07
4.10197e-07
2.3183e-07
4.25718e-07
2.33377e-07
4.41788e-07
2.34954e-07
4.58432e-07
2.3656e-07
4.75681e-07
2.38193e-07
4.93563e-07
2.3985e-07
5.12112e-07
2.41531e-07
5.31361e-07
2.43233e-07
5.51345e-07
2.44954e-07
5.72103e-07
2.46691e-07
5.93673e-07
2.48441e-07
6.16097e-07
2.50201e-07
6.3942e-07
2.51967e-07
6.63689e-07
2.53734e-07
6.88951e-07
2.55499e-07
7.15261e-07
2.57255e-07
7.42672e-07
2.58997e-07
7.71244e-07
2.6072e-07
8.01037e-07
2.62414e-07
8.32118e-07
2.64074e-07
8.64556e-07
2.6569e-07
8.98423e-07
2.67252e-07
9.33798e-07
2.68749e-07
9.70763e-07
2.7017e-07
1.0094e-06
2.71502e-07
1.04981e-06
2.7273e-07
1.09209e-06
2.73838e-07
1.13634e-06
2.74807e-07
1.18266e-06
2.75619e-07
1.23118e-06
2.7625e-07
1.28202e-06
2.76678e-07
1.33531e-06
2.76874e-07
1.39118e-06
2.76809e-07
1.44977e-06
2.76449e-07
1.51125e-06
2.75758e-07
1.57576e-06
2.74694e-07
1.64348e-06
2.73213e-07
1.71458e-06
2.71264e-07
1.78924e-06
2.6879e-07
1.86765e-06
2.6573e-07
1.95001e-06
2.62015e-07
2.03652e-06
2.57569e-07
2.1274e-06
2.52312e-07
2.22287e-06
2.46154e-07
2.32315e-06
2.39002e-07
2.42848e-06
2.30755e-07
2.53909e-06
2.21303e-07
2.65522e-06
2.10522e-07
2.77705e-06
1.98271e-07
2.90475e-06
1.8438e-07
3.03844e-06
1.68649e-07
3.17813e-06
1.50835e-07
3.32373e-06
1.30647e-07
3.47506e-06
1.07755e-07
8.16201e-08
3.63181e-06
3.10878e-09
3.34848e-08
9.18671e-09
9.10569e-08
1.6377e-08
1.32051e-07
2.38163e-08
1.58247e-07
3.11927e-08
1.73822e-07
3.84455e-08
1.82612e-07
4.56046e-08
1.87389e-07
5.27183e-08
1.89929e-07
5.98282e-08
1.91284e-07
6.69648e-08
1.92042e-07
7.41487e-08
1.92517e-07
8.13946e-08
1.9287e-07
8.87133e-08
1.93182e-07
9.61138e-08
1.9349e-07
1.03604e-07
1.93813e-07
1.11193e-07
1.94158e-07
1.18886e-07
1.94529e-07
1.26693e-07
1.94927e-07
1.34622e-07
1.95353e-07
1.42679e-07
1.95807e-07
1.50875e-07
1.96289e-07
1.59216e-07
1.96798e-07
1.67714e-07
1.97335e-07
1.76375e-07
1.979e-07
1.85211e-07
1.98491e-07
1.9423e-07
1.9911e-07
2.03444e-07
1.99755e-07
2.12862e-07
2.00426e-07
2.22495e-07
2.01124e-07
2.32354e-07
2.01847e-07
2.42451e-07
2.02596e-07
2.52798e-07
2.03369e-07
2.63407e-07
2.04167e-07
2.74292e-07
2.04989e-07
2.85467e-07
2.05834e-07
2.96944e-07
2.06701e-07
3.0874e-07
2.0759e-07
3.20869e-07
2.085e-07
3.33347e-07
2.0943e-07
3.4619e-07
2.10379e-07
3.59417e-07
2.11346e-07
3.73045e-07
2.12329e-07
3.87093e-07
2.13327e-07
4.01582e-07
2.14339e-07
4.16531e-07
2.15364e-07
4.31963e-07
2.16398e-07
4.479e-07
2.17441e-07
4.64365e-07
2.18489e-07
4.81384e-07
2.19541e-07
4.98983e-07
2.20594e-07
5.17188e-07
2.21645e-07
5.36028e-07
2.22691e-07
5.55534e-07
2.23728e-07
5.75736e-07
2.24753e-07
5.96667e-07
2.2576e-07
6.18361e-07
2.26747e-07
6.40855e-07
2.27707e-07
6.64186e-07
2.28636e-07
6.88393e-07
2.29526e-07
7.13519e-07
2.30373e-07
7.39606e-07
2.31168e-07
7.66701e-07
2.31903e-07
7.94851e-07
2.3257e-07
8.24105e-07
2.33161e-07
8.54515e-07
2.33663e-07
8.86137e-07
2.34067e-07
9.19028e-07
2.34361e-07
9.53247e-07
2.3453e-07
9.88856e-07
2.34561e-07
1.02592e-06
2.34437e-07
1.06451e-06
2.34141e-07
1.10469e-06
2.33655e-07
1.14654e-06
2.32957e-07
1.19013e-06
2.32026e-07
1.23555e-06
2.30836e-07
1.28287e-06
2.29361e-07
1.33217e-06
2.27571e-07
1.38354e-06
2.25434e-07
1.43708e-06
2.22916e-07
1.49286e-06
2.19977e-07
1.55098e-06
2.16576e-07
1.61152e-06
2.12668e-07
1.67458e-06
2.08203e-07
1.74025e-06
2.03126e-07
1.8086e-06
1.97379e-07
1.87971e-06
1.90898e-07
1.95367e-06
1.83611e-07
2.03054e-06
1.75446e-07
2.11037e-06
1.66319e-07
2.19323e-06
1.56148e-07
2.27914e-06
1.4484e-07
2.36815e-06
1.32301e-07
2.46024e-06
1.1843e-07
2.5554e-06
1.03113e-07
2.65355e-06
8.62266e-08
2.75457e-06
6.76276e-08
2.85821e-06
4.71995e-08
2.96414e-06
2.47131e-08
3.07208e-06
-1.83322e-10
-2.77533e-08
3.18145e-06
3.04458e-09
3.04403e-08
9.16646e-09
8.49353e-08
1.654e-08
1.24678e-07
2.42666e-08
1.50521e-07
3.19927e-08
1.66096e-07
3.96277e-08
1.74977e-07
4.71838e-08
1.79833e-07
5.47003e-08
1.82413e-07
6.22149e-08
1.83769e-07
6.97561e-08
1.84501e-07
7.73441e-08
1.84929e-07
8.4993e-08
1.85221e-07
9.27136e-08
1.85461e-07
1.00515e-07
1.85689e-07
1.08405e-07
1.85923e-07
1.16391e-07
1.86172e-07
1.24481e-07
1.86439e-07
1.32682e-07
1.86726e-07
1.41003e-07
1.87033e-07
1.49452e-07
1.87359e-07
1.58036e-07
1.87705e-07
1.66764e-07
1.8807e-07
1.75645e-07
1.88455e-07
1.84687e-07
1.88858e-07
1.93899e-07
1.89278e-07
2.03292e-07
1.89717e-07
2.12875e-07
1.90172e-07
2.22657e-07
1.90644e-07
2.32649e-07
1.91132e-07
2.42861e-07
1.91635e-07
2.53305e-07
1.92152e-07
2.63992e-07
1.92682e-07
2.74933e-07
1.93226e-07
2.86142e-07
1.93781e-07
2.97629e-07
1.94346e-07
3.09409e-07
1.94921e-07
3.21495e-07
1.95504e-07
3.33901e-07
1.96094e-07
3.46642e-07
1.96689e-07
3.59732e-07
1.97289e-07
3.73187e-07
1.9789e-07
3.87024e-07
1.98492e-07
4.0126e-07
1.99091e-07
4.15912e-07
1.99687e-07
4.30999e-07
2.00277e-07
4.46539e-07
2.00858e-07
4.62553e-07
2.01427e-07
4.79061e-07
2.01981e-07
4.96084e-07
2.02518e-07
5.13645e-07
2.03034e-07
5.31766e-07
2.03524e-07
5.50472e-07
2.03985e-07
5.69788e-07
2.04412e-07
5.8974e-07
2.04801e-07
6.10354e-07
2.05146e-07
6.31659e-07
2.05442e-07
6.53684e-07
2.05683e-07
6.76458e-07
2.05861e-07
7.00014e-07
2.05971e-07
7.24383e-07
2.06004e-07
7.49599e-07
2.05952e-07
7.75696e-07
2.05805e-07
8.02711e-07
2.05556e-07
8.3068e-07
2.05191e-07
8.59642e-07
2.04702e-07
8.89635e-07
2.04075e-07
9.20699e-07
2.03296e-07
9.52876e-07
2.02353e-07
9.86208e-07
2.01229e-07
1.02074e-06
1.99907e-07
1.05651e-06
1.98371e-07
1.09356e-06
1.966e-07
1.13195e-06
1.94573e-07
1.1717e-06
1.92269e-07
1.21288e-06
1.89662e-07
1.25551e-06
1.86726e-07
1.29965e-06
1.83433e-07
1.34533e-06
1.79753e-07
1.3926e-06
1.75653e-07
1.44148e-06
1.71097e-07
1.492e-06
1.66048e-07
1.54421e-06
1.60465e-07
1.59811e-06
1.54304e-07
1.65371e-06
1.47519e-07
1.71103e-06
1.40059e-07
1.77006e-06
1.31872e-07
1.83077e-06
1.229e-07
1.89313e-06
1.13083e-07
1.9571e-06
1.02356e-07
2.02259e-06
9.06535e-08
2.08953e-06
7.79042e-08
2.15779e-06
6.40357e-08
2.22725e-06
4.89733e-08
2.29771e-06
3.26473e-08
2.36898e-06
1.49638e-08
2.44147e-06
-4.86092e-09
2.5138e-06
-2.51386e-08
2.58589e-06
-4.73743e-08
2.65719e-06
-7.14797e-08
-9.74066e-08
2.72684e-06
2.94922e-09
2.74909e-08
9.04246e-09
7.88418e-08
1.65078e-08
1.17213e-07
2.44245e-08
1.42604e-07
3.24029e-08
1.58118e-07
4.0324e-08
1.67056e-07
4.81821e-08
1.71975e-07
5.6007e-08
1.74588e-07
6.38313e-08
1.75945e-07
7.16814e-08
1.76651e-07
7.95763e-08
1.77034e-07
8.75296e-08
1.77268e-07
9.55519e-08
1.77439e-07
1.03652e-07
1.77589e-07
1.11837e-07
1.77738e-07
1.20115e-07
1.77894e-07
1.28493e-07
1.78061e-07
1.36978e-07
1.7824e-07
1.45579e-07
1.78432e-07
1.54302e-07
1.78636e-07
1.63155e-07
1.78852e-07
1.72147e-07
1.79079e-07
1.81285e-07
1.79317e-07
1.90578e-07
1.79565e-07
2.00034e-07
1.79822e-07
2.09663e-07
1.80088e-07
2.19473e-07
1.80363e-07
2.29473e-07
1.80644e-07
2.39673e-07
1.80932e-07
2.50083e-07
1.81225e-07
2.60712e-07
1.81522e-07
2.71571e-07
1.81823e-07
2.82672e-07
1.82125e-07
2.94024e-07
1.82429e-07
3.05639e-07
1.82731e-07
3.17529e-07
1.83031e-07
3.29706e-07
1.83327e-07
3.42182e-07
1.83618e-07
3.5497e-07
1.83902e-07
3.68083e-07
1.84175e-07
3.81535e-07
1.84438e-07
3.9534e-07
1.84686e-07
4.09513e-07
1.84919e-07
4.24068e-07
1.85132e-07
4.39022e-07
1.85324e-07
4.54389e-07
1.8549e-07
4.70188e-07
1.85629e-07
4.86434e-07
1.85736e-07
5.03145e-07
1.85807e-07
5.20339e-07
1.8584e-07
5.38034e-07
1.85828e-07
5.56251e-07
1.85768e-07
5.75009e-07
1.85655e-07
5.94328e-07
1.85483e-07
6.14229e-07
1.85246e-07
6.34732e-07
1.84939e-07
6.5586e-07
1.84555e-07
6.77635e-07
1.84086e-07
7.0008e-07
1.83526e-07
7.23219e-07
1.82866e-07
7.47073e-07
1.82097e-07
7.71669e-07
1.8121e-07
7.97029e-07
1.80196e-07
8.23178e-07
1.79043e-07
8.50141e-07
1.7774e-07
8.77941e-07
1.76274e-07
9.06604e-07
1.74634e-07
9.36153e-07
1.72804e-07
9.66612e-07
1.7077e-07
9.98004e-07
1.68516e-07
1.03035e-06
1.66024e-07
1.06367e-06
1.63278e-07
1.09799e-06
1.60256e-07
1.13332e-06
1.56939e-07
1.16968e-06
1.53303e-07
1.20708e-06
1.49327e-07
1.24553e-06
1.44984e-07
1.28503e-06
1.40248e-07
1.32559e-06
1.35091e-07
1.36721e-06
1.29483e-07
1.40986e-06
1.23392e-07
1.45354e-06
1.16786e-07
1.49822e-06
1.09628e-07
1.54386e-06
1.01881e-07
1.59041e-06
9.35083e-08
1.63781e-06
8.44676e-08
1.686e-06
7.47168e-08
1.73487e-06
6.42114e-08
1.78432e-06
5.29048e-08
1.83422e-06
4.07486e-08
1.88443e-06
2.76933e-08
1.93477e-06
1.36959e-08
1.9852e-06
-1.45049e-09
2.0354e-06
-1.75517e-08
2.08502e-06
-3.46631e-08
2.13307e-06
-5.29094e-08
2.18027e-06
-7.23347e-08
2.2259e-06
-9.30099e-08
2.26942e-06
-1.1499e-07
-1.38388e-07
2.3104e-06
2.82761e-09
2.46635e-08
8.82707e-09
7.28425e-08
1.62987e-08
1.09741e-07
2.43124e-08
1.34591e-07
3.24485e-08
1.49982e-07
4.05617e-08
1.58943e-07
4.86286e-08
1.63908e-07
5.66689e-08
1.66548e-07
6.47098e-08
1.67905e-07
7.27752e-08
1.68586e-07
8.08825e-08
1.68927e-07
8.90446e-08
1.69106e-07
9.72716e-08
1.69212e-07
1.05572e-07
1.69289e-07
1.13952e-07
1.69358e-07
1.2242e-07
1.69427e-07
1.30982e-07
1.69499e-07
1.39646e-07
1.69577e-07
1.48417e-07
1.69661e-07
1.57305e-07
1.69749e-07
1.66314e-07
1.69842e-07
1.75454e-07
1.69939e-07
1.84731e-07
1.7004e-07
1.94154e-07
1.70142e-07
2.03729e-07
1.70247e-07
2.13466e-07
1.70352e-07
2.23371e-07
1.70457e-07
2.33455e-07
1.70561e-07
2.43724e-07
1.70663e-07
2.54188e-07
1.70761e-07
2.64856e-07
1.70855e-07
2.75737e-07
1.70942e-07
2.8684e-07
1.71022e-07
2.98175e-07
1.71093e-07
3.09752e-07
1.71154e-07
3.21581e-07
1.71202e-07
3.33672e-07
1.71236e-07
3.46036e-07
1.71254e-07
3.58684e-07
1.71254e-07
3.71627e-07
1.71233e-07
3.84876e-07
1.71189e-07
3.98443e-07
1.7112e-07
4.1234e-07
1.71022e-07
4.26579e-07
1.70893e-07
4.41172e-07
1.7073e-07
4.56134e-07
1.70529e-07
4.71476e-07
1.70287e-07
4.87211e-07
1.7e-07
5.03355e-07
1.69664e-07
5.19919e-07
1.69275e-07
5.36919e-07
1.68828e-07
5.54369e-07
1.68318e-07
5.72283e-07
1.67741e-07
5.90676e-07
1.6709e-07
6.09562e-07
1.6636e-07
6.28957e-07
1.65544e-07
6.48875e-07
1.64637e-07
6.69331e-07
1.6363e-07
6.9034e-07
1.62517e-07
7.11916e-07
1.61289e-07
7.34075e-07
1.59938e-07
7.5683e-07
1.58455e-07
7.80196e-07
1.5683e-07
8.04184e-07
1.55054e-07
8.28809e-07
1.53114e-07
8.54082e-07
1.51001e-07
8.80013e-07
1.48702e-07
9.06614e-07
1.46203e-07
9.33891e-07
1.43492e-07
9.61853e-07
1.40554e-07
9.90504e-07
1.37374e-07
1.01985e-06
1.33935e-07
1.04988e-06
1.30222e-07
1.0806e-06
1.26215e-07
1.11201e-06
1.21896e-07
1.14409e-06
1.17245e-07
1.17684e-06
1.12242e-07
1.21022e-06
1.06864e-07
1.24422e-06
1.0109e-07
1.27881e-06
9.48945e-08
1.31395e-06
8.82539e-08
1.34959e-06
8.11424e-08
1.38569e-06
7.35335e-08
1.42217e-06
6.54002e-08
1.45896e-06
5.67145e-08
1.49598e-06
4.7448e-08
1.53313e-06
3.75714e-08
1.57028e-06
2.70539e-08
1.60732e-06
1.5867e-08
1.64412e-06
3.95337e-09
1.68075e-06
-8.93665e-09
1.71662e-06
-2.2177e-08
1.75148e-06
-3.63112e-08
1.78515e-06
-5.12228e-08
1.81751e-06
-6.70205e-08
1.84829e-06
-8.36914e-08
1.87719e-06
-1.01239e-07
1.90388e-06
-1.19696e-07
1.92796e-06
-1.39072e-07
-1.59433e-07
1.94901e-06
2.68427e-09
2.19792e-08
8.53217e-09
6.69951e-08
1.59318e-08
1.02342e-07
2.39554e-08
1.26567e-07
3.21598e-08
1.41778e-07
4.03756e-08
1.50727e-07
4.85625e-08
1.55721e-07
5.67295e-08
1.58381e-07
6.48983e-08
1.59736e-07
7.30894e-08
1.60395e-07
8.1319e-08
1.60698e-07
8.95989e-08
1.60826e-07
9.79385e-08
1.60873e-07
1.06345e-07
1.60882e-07
1.14827e-07
1.60877e-07
1.23389e-07
1.60865e-07
1.32038e-07
1.6085e-07
1.4078e-07
1.60835e-07
1.49623e-07
1.60818e-07
1.58571e-07
1.60801e-07
1.67633e-07
1.60781e-07
1.76814e-07
1.60758e-07
1.86122e-07
1.60732e-07
1.95563e-07
1.60702e-07
2.05144e-07
1.60666e-07
2.14873e-07
1.60624e-07
2.24756e-07
1.60574e-07
2.34801e-07
1.60516e-07
2.45016e-07
1.60448e-07
2.55407e-07
1.60369e-07
2.65984e-07
1.60278e-07
2.76753e-07
1.60173e-07
2.87722e-07
1.60053e-07
2.98901e-07
1.59915e-07
3.10297e-07
1.59758e-07
3.21918e-07
1.59581e-07
3.33774e-07
1.59381e-07
3.45873e-07
1.59156e-07
3.58223e-07
1.58904e-07
3.70834e-07
1.58622e-07
3.83714e-07
1.58308e-07
3.96874e-07
1.5796e-07
4.10322e-07
1.57574e-07
4.24068e-07
1.57147e-07
4.38122e-07
1.56676e-07
4.52494e-07
1.56158e-07
4.67192e-07
1.55589e-07
4.82227e-07
1.54965e-07
4.97608e-07
1.54283e-07
5.13346e-07
1.53537e-07
5.2945e-07
1.52724e-07
5.4593e-07
1.51838e-07
5.62795e-07
1.50875e-07
5.80056e-07
1.49829e-07
5.97721e-07
1.48695e-07
6.158e-07
1.47466e-07
6.343e-07
1.46136e-07
6.53231e-07
1.44699e-07
6.72601e-07
1.43147e-07
6.92416e-07
1.41473e-07
7.12685e-07
1.3967e-07
7.33412e-07
1.37728e-07
7.54604e-07
1.35639e-07
7.76263e-07
1.33394e-07
7.98394e-07
1.30984e-07
8.20998e-07
1.28397e-07
8.44076e-07
1.25624e-07
8.67626e-07
1.22653e-07
8.91646e-07
1.19473e-07
9.1613e-07
1.1607e-07
9.4107e-07
1.12433e-07
9.66458e-07
1.08548e-07
9.92279e-07
1.04401e-07
1.01852e-06
9.99767e-08
1.04515e-06
9.52605e-08
1.07216e-06
9.02364e-08
1.09951e-06
8.48882e-08
1.12718e-06
7.9199e-08
1.15512e-06
7.31514e-08
1.18329e-06
6.67277e-08
1.21163e-06
5.99095e-08
1.24009e-06
5.26783e-08
1.26861e-06
4.50151e-08
1.29711e-06
3.6901e-08
1.32551e-06
2.83162e-08
1.35372e-06
1.92398e-08
1.38162e-06
9.66475e-09
1.4092e-06
-5.20338e-10
1.43628e-06
-1.12109e-08
1.46259e-06
-2.236e-08
1.48778e-06
-3.41257e-08
1.51202e-06
-4.64151e-08
1.53505e-06
-5.93438e-08
1.5567e-06
-7.28733e-08
1.57672e-06
-8.70359e-08
1.59484e-06
-1.01816e-07
1.61083e-06
-1.17225e-07
1.62439e-06
-1.33262e-07
1.63524e-06
-1.49919e-07
-1.67219e-07
1.64302e-06
2.52553e-09
1.94536e-08
8.17222e-09
6.1348e-08
1.54293e-08
9.50846e-08
2.33825e-08
1.18614e-07
3.15715e-08
1.33589e-07
3.9806e-08
1.42493e-07
4.80292e-08
1.47498e-07
5.62398e-08
1.50171e-07
6.44532e-08
1.51523e-07
7.26868e-08
1.52161e-07
8.09547e-08
1.5243e-07
8.92678e-08
1.52513e-07
9.76346e-08
1.52506e-07
1.06062e-07
1.52455e-07
1.14557e-07
1.52382e-07
1.23125e-07
1.52297e-07
1.31771e-07
1.52204e-07
1.40502e-07
1.52104e-07
1.49323e-07
1.51997e-07
1.58241e-07
1.51883e-07
1.6726e-07
1.51762e-07
1.76387e-07
1.51631e-07
1.85627e-07
1.51491e-07
1.94988e-07
1.51341e-07
2.04474e-07
1.51179e-07
2.14093e-07
1.51005e-07
2.23849e-07
1.50817e-07
2.33751e-07
1.50615e-07
2.43803e-07
1.50396e-07
2.54013e-07
1.5016e-07
2.64387e-07
1.49905e-07
2.74931e-07
1.49629e-07
2.85652e-07
1.49331e-07
2.96557e-07
1.4901e-07
3.07653e-07
1.48663e-07
3.18946e-07
1.48288e-07
3.30443e-07
1.47884e-07
3.42151e-07
1.47448e-07
3.54077e-07
1.46978e-07
3.66228e-07
1.46471e-07
3.7861e-07
1.45926e-07
3.91231e-07
1.45339e-07
4.04098e-07
1.44707e-07
4.17218e-07
1.44027e-07
4.30597e-07
1.43297e-07
4.44242e-07
1.42513e-07
4.5816e-07
1.41671e-07
4.72357e-07
1.40768e-07
4.8684e-07
1.398e-07
5.01616e-07
1.38762e-07
5.16689e-07
1.37651e-07
5.32066e-07
1.36462e-07
5.47752e-07
1.35189e-07
5.63752e-07
1.33829e-07
5.80071e-07
1.32376e-07
5.96714e-07
1.30824e-07
6.13683e-07
1.29167e-07
6.30981e-07
1.274e-07
6.48612e-07
1.25517e-07
6.66577e-07
1.23509e-07
6.84876e-07
1.21371e-07
7.03509e-07
1.19095e-07
7.22474e-07
1.16674e-07
7.41769e-07
1.14099e-07
7.6139e-07
1.11362e-07
7.81332e-07
1.08455e-07
8.01587e-07
1.05369e-07
8.22146e-07
1.02094e-07
8.42999e-07
9.86203e-08
8.64131e-07
9.49381e-08
8.85528e-07
9.1037e-08
9.0717e-07
8.69061e-08
9.29037e-07
8.25343e-08
9.51103e-07
7.79103e-08
9.73341e-07
7.30224e-08
9.95719e-07
6.78587e-08
1.0182e-06
6.24069e-08
1.04074e-06
5.66547e-08
1.06331e-06
5.05896e-08
1.08584e-06
4.41989e-08
1.10827e-06
3.74701e-08
1.13056e-06
3.03904e-08
1.15263e-06
2.29468e-08
1.17441e-06
1.51256e-08
1.1958e-06
6.92328e-09
1.21698e-06
-1.9391e-09
1.23743e-06
-1.07906e-08
1.25712e-06
-2.02096e-08
1.27592e-06
-3.00092e-08
1.29383e-06
-4.02648e-08
1.31066e-06
-5.09573e-08
1.32633e-06
-6.2085e-08
1.34063e-06
-7.36518e-08
1.35343e-06
-8.56666e-08
1.3645e-06
-9.81123e-08
1.37368e-06
-1.10992e-07
1.38075e-06
-1.24293e-07
1.38549e-06
-1.38001e-07
1.38766e-06
-1.52097e-07
-1.66575e-07
1.38702e-06
2.35553e-09
1.70985e-08
7.76105e-09
5.59424e-08
1.4815e-08
8.80305e-08
2.26262e-08
1.10803e-07
3.07239e-08
1.25491e-07
3.88998e-08
1.34317e-07
4.70821e-08
1.39316e-07
5.52591e-08
1.41994e-07
6.34403e-08
1.43341e-07
7.16394e-08
1.43962e-07
7.98685e-08
1.44201e-07
8.81374e-08
1.44244e-07
9.64537e-08
1.4419e-07
1.04824e-07
1.44085e-07
1.13253e-07
1.43953e-07
1.21747e-07
1.43803e-07
1.30311e-07
1.4364e-07
1.38949e-07
1.43466e-07
1.47668e-07
1.43279e-07
1.56471e-07
1.4308e-07
1.65364e-07
1.42868e-07
1.74352e-07
1.42643e-07
1.83441e-07
1.42403e-07
1.92635e-07
1.42147e-07
2.0194e-07
1.41875e-07
2.1136e-07
1.41585e-07
2.20902e-07
1.41276e-07
2.3057e-07
1.40947e-07
2.4037e-07
1.40597e-07
2.50306e-07
1.40224e-07
2.60385e-07
1.39826e-07
2.70611e-07
1.39403e-07
2.8099e-07
1.38953e-07
2.91526e-07
1.38474e-07
3.02226e-07
1.37963e-07
3.13095e-07
1.3742e-07
3.24137e-07
1.36842e-07
3.35358e-07
1.36227e-07
3.46763e-07
1.35573e-07
3.58356e-07
1.34878e-07
3.70144e-07
1.34138e-07
3.8213e-07
1.33352e-07
3.9432e-07
1.32517e-07
4.06717e-07
1.3163e-07
4.19328e-07
1.30687e-07
4.32155e-07
1.29686e-07
4.45202e-07
1.28624e-07
4.58474e-07
1.27496e-07
4.71973e-07
1.263e-07
4.85704e-07
1.25032e-07
4.99668e-07
1.23687e-07
5.13868e-07
1.22261e-07
5.28307e-07
1.20751e-07
5.42986e-07
1.19151e-07
5.57904e-07
1.17457e-07
5.73064e-07
1.15664e-07
5.88464e-07
1.13767e-07
6.04103e-07
1.11761e-07
6.1998e-07
1.0964e-07
6.36091e-07
1.07398e-07
6.52432e-07
1.05029e-07
6.68999e-07
1.02528e-07
6.85786e-07
9.98871e-08
7.02785e-07
9.71003e-08
7.19986e-07
9.41607e-08
7.3738e-07
9.10612e-08
7.54955e-07
8.77944e-08
7.72696e-07
8.43529e-08
7.90587e-07
8.07289e-08
8.08611e-07
7.69145e-08
8.26746e-07
7.29015e-08
8.4497e-07
6.86819e-08
8.63258e-07
6.4247e-08
8.8158e-07
5.95885e-08
8.99905e-07
5.46978e-08
9.18198e-07
4.95663e-08
9.36419e-07
4.41854e-08
9.54528e-07
3.85466e-08
9.72476e-07
3.26415e-08
9.90213e-07
2.64616e-08
1.00768e-06
1.99988e-08
1.02483e-06
1.32442e-08
1.04159e-06
6.18818e-09
1.0581e-06
-1.38764e-09
1.07398e-06
-8.95519e-09
1.08895e-06
-1.69097e-08
1.10332e-06
-2.51564e-08
1.11688e-06
-3.37685e-08
1.12955e-06
-4.26828e-08
1.14122e-06
-5.19336e-08
1.15177e-06
-6.1508e-08
1.16109e-06
-7.14017e-08
1.16904e-06
-8.16094e-08
1.1755e-06
-9.21206e-08
1.18032e-06
-1.02928e-07
1.18334e-06
-1.14017e-07
1.18442e-06
-1.25372e-07
1.18339e-06
-1.36974e-07
1.1801e-06
-1.48799e-07
-1.60816e-07
1.17434e-06
2.17805e-09
1.49203e-08
7.31068e-09
5.08101e-08
1.41104e-08
8.12311e-08
2.17175e-08
1.03196e-07
2.96566e-08
1.17552e-07
3.77048e-08
1.26269e-07
4.57768e-08
1.31244e-07
5.3851e-08
1.3392e-07
6.19308e-08
1.35262e-07
7.00262e-08
1.35867e-07
7.81473e-08
1.36079e-07
8.63024e-08
1.36089e-07
9.44982e-08
1.35994e-07
1.02741e-07
1.35843e-07
1.11034e-07
1.35659e-07
1.19384e-07
1.35454e-07
1.27794e-07
1.3523e-07
1.36269e-07
1.34991e-07
1.44813e-07
1.34735e-07
1.53431e-07
1.34463e-07
1.62126e-07
1.34173e-07
1.70904e-07
1.33865e-07
1.79768e-07
1.33539e-07
1.88723e-07
1.33192e-07
1.97773e-07
1.32825e-07
2.06923e-07
1.32435e-07
2.16176e-07
1.32023e-07
2.25537e-07
1.31586e-07
2.3501e-07
1.31124e-07
2.44599e-07
1.30634e-07
2.54309e-07
1.30117e-07
2.64143e-07
1.29569e-07
2.74105e-07
1.2899e-07
2.842e-07
1.28378e-07
2.94431e-07
1.27732e-07
3.04803e-07
1.27048e-07
3.15319e-07
1.26327e-07
3.25982e-07
1.25564e-07
3.36796e-07
1.24759e-07
3.47765e-07
1.2391e-07
3.5889e-07
1.23013e-07
3.70177e-07
1.22066e-07
3.81626e-07
1.21068e-07
3.93242e-07
1.20014e-07
4.05025e-07
1.18904e-07
4.16979e-07
1.17732e-07
4.29106e-07
1.16498e-07
4.41405e-07
1.15197e-07
4.53879e-07
1.13826e-07
4.66528e-07
1.12383e-07
4.79353e-07
1.10862e-07
4.92353e-07
1.09262e-07
5.05527e-07
1.07577e-07
5.18875e-07
1.05804e-07
5.32394e-07
1.03939e-07
5.46081e-07
1.01978e-07
5.59933e-07
9.99156e-08
5.73946e-07
9.77484e-08
5.88115e-07
9.54713e-08
6.02434e-07
9.30795e-08
6.16895e-07
9.0568e-08
6.31491e-07
8.79318e-08
6.46213e-07
8.51655e-08
6.61049e-07
8.22639e-08
6.75988e-07
7.92215e-08
6.91017e-07
7.60325e-08
7.0612e-07
7.26914e-08
7.21282e-07
6.91922e-08
7.36482e-07
6.5529e-08
7.51701e-07
6.16958e-08
7.66916e-07
5.76866e-08
7.82103e-07
5.34953e-08
7.97234e-07
4.91159e-08
8.1228e-07
4.45424e-08
8.27209e-07
3.97686e-08
8.41987e-07
3.47888e-08
8.56576e-07
2.95972e-08
8.70935e-07
2.41879e-08
8.85021e-07
1.85554e-08
8.98789e-07
1.26935e-08
9.12193e-07
6.5947e-09
9.25215e-07
2.22688e-10
9.37782e-07
-6.3796e-09
9.49582e-07
-1.31871e-08
9.60831e-07
-2.02041e-08
9.71394e-07
-2.74719e-08
9.81226e-07
-3.49888e-08
9.90208e-07
-4.275e-08
9.98286e-07
-5.07605e-08
1.00536e-06
-5.90081e-08
1.01134e-06
-6.74872e-08
1.01613e-06
-7.61908e-08
1.01963e-06
-8.51092e-08
1.02174e-06
-9.42314e-08
1.02236e-06
-1.03545e-07
1.02137e-06
-1.13032e-07
1.01867e-06
-1.22675e-07
1.01415e-06
-1.32454e-07
1.00769e-06
-1.42337e-07
-1.52272e-07
9.99148e-07
1.99898e-09
1.29208e-08
6.8349e-09
4.59735e-08
1.33382e-08
7.47272e-08
2.06877e-08
9.58462e-08
2.84092e-08
1.0983e-07
3.62686e-08
1.18409e-07
4.41685e-08
1.23344e-07
5.20784e-08
1.2601e-07
5.99955e-08
1.27345e-07
6.79261e-08
1.27936e-07
7.58781e-08
1.28127e-07
8.38586e-08
1.28108e-07
9.18732e-08
1.27979e-07
9.99269e-08
1.27789e-07
1.08024e-07
1.27562e-07
1.16168e-07
1.27309e-07
1.24364e-07
1.27034e-07
1.32614e-07
1.2674e-07
1.40924e-07
1.26426e-07
1.49295e-07
1.26091e-07
1.57732e-07
1.25736e-07
1.66239e-07
1.25359e-07
1.74818e-07
1.24959e-07
1.83474e-07
1.24537e-07
1.92209e-07
1.24089e-07
2.01028e-07
1.23617e-07
2.09933e-07
1.23118e-07
2.18929e-07
1.22591e-07
2.28017e-07
1.22036e-07
2.37201e-07
1.2145e-07
2.46485e-07
1.20833e-07
2.55872e-07
1.20183e-07
2.65363e-07
1.19499e-07
2.74963e-07
1.18779e-07
2.84673e-07
1.18021e-07
2.94497e-07
1.17225e-07
3.04436e-07
1.16387e-07
3.14494e-07
1.15507e-07
3.24671e-07
1.14582e-07
3.34971e-07
1.1361e-07
3.45394e-07
1.1259e-07
3.55942e-07
1.11518e-07
3.66617e-07
1.10393e-07
3.77419e-07
1.09213e-07
3.88349e-07
1.07974e-07
3.99407e-07
1.06675e-07
4.10593e-07
1.05312e-07
4.21908e-07
1.03883e-07
4.33349e-07
1.02385e-07
4.44916e-07
1.00816e-07
4.56607e-07
9.91711e-08
4.68421e-07
9.74484e-08
4.80353e-07
9.56445e-08
4.92401e-07
9.3756e-08
5.04561e-07
9.17793e-08
5.16827e-07
8.97111e-08
5.29196e-07
8.75475e-08
5.41659e-07
8.5285e-08
5.54211e-07
8.29197e-08
5.66843e-07
8.04476e-08
5.79546e-07
7.78649e-08
5.92311e-07
7.51674e-08
6.05126e-07
7.2351e-08
6.17978e-07
6.94116e-08
6.30855e-07
6.63447e-08
6.43742e-07
6.31462e-08
6.56622e-07
5.98117e-08
6.69477e-07
5.63369e-08
6.82289e-07
5.27174e-08
6.95036e-07
4.89489e-08
7.07695e-07
4.50271e-08
7.20243e-07
4.09476e-08
7.32653e-07
3.67065e-08
7.44896e-07
3.22995e-08
7.56942e-07
2.77227e-08
7.68759e-07
2.29722e-08
7.80312e-07
1.80442e-08
7.91566e-07
1.29348e-08
8.02482e-07
7.63917e-09
8.13025e-07
2.15051e-09
8.23194e-07
-3.57403e-09
8.3283e-07
-9.41281e-09
8.41864e-07
-1.54135e-08
8.50302e-07
-2.16258e-08
8.58123e-07
-2.80247e-08
8.65264e-07
-3.4613e-08
8.71663e-07
-4.13873e-08
8.77257e-07
-4.83447e-08
8.81973e-07
-5.54763e-08
8.85745e-07
-6.27802e-08
8.88504e-07
-7.02462e-08
8.9018e-07
-7.78664e-08
8.90701e-07
-8.56299e-08
8.89993e-07
-9.35239e-08
8.87982e-07
-1.01533e-07
8.84592e-07
-1.09642e-07
8.79747e-07
-1.1783e-07
8.73369e-07
-1.26076e-07
8.65376e-07
-1.34345e-07
-1.42562e-07
8.55667e-07
1.82103e-09
1.11002e-08
6.34518e-09
4.14493e-08
1.252e-08
6.85523e-08
1.95681e-08
8.87978e-08
2.70219e-08
1.02376e-07
3.46396e-08
1.10791e-07
4.23138e-08
1.1567e-07
5.00055e-08
1.18318e-07
5.77062e-08
1.19644e-07
6.54187e-08
1.20224e-07
7.31486e-08
1.20398e-07
8.09016e-08
1.20356e-07
8.86825e-08
1.20198e-07
9.64955e-08
1.19976e-07
1.04344e-07
1.19713e-07
1.12232e-07
1.19421e-07
1.20162e-07
1.19105e-07
1.28137e-07
1.18765e-07
1.36161e-07
1.18402e-07
1.44236e-07
1.18016e-07
1.52365e-07
1.17607e-07
1.60551e-07
1.17173e-07
1.68797e-07
1.16714e-07
1.77105e-07
1.16228e-07
1.85479e-07
1.15716e-07
1.9392e-07
1.15175e-07
2.02432e-07
1.14606e-07
2.11016e-07
1.14006e-07
2.19676e-07
1.13376e-07
2.28414e-07
1.12713e-07
2.37231e-07
1.12016e-07
2.46129e-07
1.11285e-07
2.55111e-07
1.10517e-07
2.64179e-07
1.09712e-07
2.73333e-07
1.08867e-07
2.82576e-07
1.07982e-07
2.91909e-07
1.07055e-07
3.01333e-07
1.06083e-07
3.10849e-07
1.05066e-07
3.20457e-07
1.04002e-07
3.30158e-07
1.02888e-07
3.39953e-07
1.01724e-07
3.49841e-07
1.00505e-07
3.59822e-07
9.92318e-08
3.69895e-07
9.79009e-08
3.80059e-07
9.65102e-08
3.90314e-07
9.50576e-08
4.00656e-07
9.35407e-08
4.11084e-07
9.19571e-08
4.21596e-07
9.03042e-08
4.32188e-07
8.85794e-08
4.42856e-07
8.67803e-08
4.53597e-07
8.49039e-08
4.64405e-07
8.29477e-08
4.75276e-07
8.09087e-08
4.86203e-07
7.87842e-08
4.97179e-07
7.65711e-08
5.08198e-07
7.42666e-08
5.1925e-07
7.18675e-08
5.30327e-07
6.93707e-08
5.41419e-07
6.67733e-08
5.52515e-07
6.4072e-08
5.63602e-07
6.12636e-08
5.74669e-07
5.83451e-08
5.857e-07
5.53132e-08
5.96681e-07
5.21648e-08
6.07596e-07
4.88968e-08
6.18427e-07
4.55061e-08
6.29155e-07
4.19895e-08
6.3976e-07
3.83442e-08
6.50219e-07
3.45673e-08
6.60511e-07
3.06559e-08
6.7061e-07
2.66075e-08
6.80489e-07
2.24195e-08
6.90122e-07
1.80894e-08
6.99479e-07
1.36149e-08
7.0853e-07
8.99347e-09
7.17244e-07
4.22093e-09
7.2566e-07
-7.77012e-10
7.33612e-07
-5.80078e-09
7.41046e-07
-1.10083e-08
7.47976e-07
-1.63425e-08
7.54398e-07
-2.18366e-08
7.60254e-07
-2.74817e-08
7.65496e-07
-3.3267e-08
7.7008e-07
-3.91963e-08
7.73957e-07
-4.52644e-08
7.77078e-07
-5.14666e-08
7.79398e-07
-5.77963e-08
7.80867e-07
-6.42488e-08
7.81436e-07
-7.08154e-08
7.81057e-07
-7.74876e-08
7.79682e-07
-8.42549e-08
7.77263e-07
-9.11054e-08
7.73754e-07
-9.80253e-08
7.6911e-07
-1.04998e-07
7.63286e-07
-1.12006e-07
7.56234e-07
-1.19024e-07
7.47903e-07
-1.26014e-07
-1.32858e-07
7.38199e-07
1.64626e-09
9.45376e-09
5.84998e-09
3.7246e-08
1.16728e-08
6.27298e-08
1.8385e-08
8.20858e-08
2.55301e-08
9.52308e-08
3.2862e-08
1.03459e-07
4.0265e-08
1.08267e-07
4.76929e-08
1.1089e-07
5.51317e-08
1.12205e-07
6.25808e-08
1.12774e-07
7.00437e-08
1.12935e-07
7.75248e-08
1.12874e-07
8.50278e-08
1.12695e-07
9.25562e-08
1.12447e-07
1.00113e-07
1.12156e-07
1.07701e-07
1.11833e-07
1.15323e-07
1.11482e-07
1.22982e-07
1.11106e-07
1.30679e-07
1.10705e-07
1.38417e-07
1.10278e-07
1.46198e-07
1.09826e-07
1.54025e-07
1.09346e-07
1.619e-07
1.08839e-07
1.69824e-07
1.08304e-07
1.77799e-07
1.0774e-07
1.85828e-07
1.07146e-07
1.93913e-07
1.06521e-07
2.02054e-07
1.05865e-07
2.10255e-07
1.05175e-07
2.18515e-07
1.04452e-07
2.26837e-07
1.03694e-07
2.35222e-07
1.029e-07
2.4367e-07
1.02068e-07
2.52184e-07
1.01198e-07
2.60763e-07
1.00288e-07
2.69408e-07
9.9337e-08
2.78119e-07
9.8343e-08
2.86898e-07
9.73049e-08
2.95743e-07
9.62211e-08
3.04655e-07
9.50901e-08
3.13633e-07
9.39104e-08
3.22676e-07
9.26801e-08
3.31784e-07
9.13976e-08
3.40955e-07
9.00611e-08
3.50187e-07
8.86688e-08
3.59479e-07
8.72187e-08
3.68828e-07
8.5709e-08
3.78231e-07
8.41377e-08
3.87685e-07
8.25027e-08
3.97187e-07
8.08021e-08
4.06732e-07
7.90337e-08
4.16317e-07
7.71954e-08
4.25936e-07
7.5285e-08
4.35583e-07
7.33003e-08
4.45253e-07
7.1239e-08
4.54938e-07
6.90989e-08
4.64632e-07
6.68776e-08
4.74326e-07
6.45729e-08
4.84011e-07
6.21824e-08
4.93678e-07
5.97037e-08
5.03317e-07
5.71346e-08
5.12916e-07
5.44728e-08
5.22464e-07
5.17158e-08
5.31948e-07
4.88614e-08
5.41353e-07
4.59074e-08
5.50667e-07
4.28516e-08
5.59872e-07
3.96918e-08
5.68952e-07
3.64259e-08
5.77889e-07
3.30519e-08
5.86665e-07
2.95681e-08
5.9526e-07
2.59725e-08
6.03653e-07
2.22634e-08
6.11821e-07
1.84395e-08
6.19741e-07
1.44991e-08
6.2739e-07
1.04407e-08
6.34742e-07
6.26255e-09
6.41777e-07
1.95899e-09
6.4852e-07
-2.5223e-09
6.54761e-07
-7.01782e-09
6.60609e-07
-1.16481e-08
6.65999e-07
-1.63984e-08
6.70923e-07
-2.12666e-08
6.75338e-07
-2.62517e-08
6.79206e-07
-3.13498e-08
6.82496e-07
-3.65567e-08
6.85171e-07
-4.18714e-08
6.87196e-07
-4.72892e-08
6.88534e-07
-5.28055e-08
6.89154e-07
-5.84154e-08
6.89018e-07
-6.41132e-08
6.88094e-07
-6.9892e-08
6.86351e-07
-7.57446e-08
6.83759e-07
-8.16623e-08
6.80289e-07
-8.76349e-08
6.75914e-07
-9.36506e-08
6.7061e-07
-9.9695e-08
6.64355e-07
-1.0575e-07
6.57122e-07
-1.11791e-07
6.48875e-07
-1.17766e-07
-1.23498e-07
6.39514e-07
1.47869e-09
7.97469e-09
5.35898e-09
3.33652e-08
1.08135e-08
5.72749e-08
1.71631e-08
7.57359e-08
2.39663e-08
8.84274e-08
3.09759e-08
9.64493e-08
3.807e-08
1.01173e-07
4.51959e-08
1.03764e-07
5.23349e-08
1.05066e-07
5.94831e-08
1.05626e-07
6.66421e-08
1.05776e-07
7.38146e-08
1.05702e-07
8.10037e-08
1.05505e-07
8.82121e-08
1.05238e-07
9.54423e-08
1.04925e-07
1.02696e-07
1.04578e-07
1.09977e-07
1.04202e-07
1.17285e-07
1.03798e-07
1.24623e-07
1.03367e-07
1.31993e-07
1.02908e-07
1.39396e-07
1.02422e-07
1.46834e-07
1.01908e-07
1.54309e-07
1.01364e-07
1.61821e-07
1.00792e-07
1.69373e-07
1.00188e-07
1.76965e-07
9.95537e-08
1.84599e-07
9.88872e-08
1.92276e-07
9.81879e-08
1.99997e-07
9.74548e-08
2.07762e-07
9.6687e-08
2.15573e-07
9.58836e-08
2.2343e-07
9.50435e-08
2.31333e-07
9.41656e-08
2.39282e-07
9.32489e-08
2.47278e-07
9.22922e-08
2.5532e-07
9.12944e-08
2.63409e-07
9.02542e-08
2.71544e-07
8.91704e-08
2.79723e-07
8.80416e-08
2.87947e-07
8.68666e-08
2.96214e-07
8.56439e-08
3.04522e-07
8.43721e-08
3.1287e-07
8.30498e-08
3.21255e-07
8.16755e-08
3.29676e-07
8.02477e-08
3.3813e-07
7.87649e-08
3.46613e-07
7.72254e-08
3.55123e-07
7.56277e-08
3.63655e-07
7.39701e-08
3.72207e-07
7.2251e-08
3.80772e-07
7.04686e-08
3.89346e-07
6.86214e-08
3.97924e-07
6.67074e-08
4.065e-07
6.47251e-08
4.15066e-07
6.26728e-08
4.23617e-07
6.05485e-08
4.32144e-07
5.83507e-08
4.40639e-07
5.60776e-08
4.49094e-07
5.37275e-08
4.57499e-07
5.12987e-08
4.65845e-07
4.87894e-08
4.74119e-07
4.61981e-08
4.82312e-07
4.35232e-08
4.9041e-07
4.0763e-08
4.98402e-07
3.79162e-08
5.06272e-07
3.49812e-08
5.14007e-07
3.19568e-08
5.21592e-07
2.88416e-08
5.2901e-07
2.56344e-08
5.36244e-07
2.23342e-08
5.43276e-07
1.894e-08
5.50089e-07
1.5451e-08
5.56662e-07
1.18661e-08
5.62977e-07
8.18438e-09
5.69013e-07
4.4039e-09
5.74759e-07
5.17008e-10
5.802e-07
-3.48195e-09
5.85198e-07
-7.51958e-09
5.89836e-07
-1.16562e-08
5.94076e-07
-1.58879e-08
5.97892e-07
-2.02144e-08
6.01254e-07
-2.46287e-08
6.04134e-07
-2.9132e-08
6.06505e-07
-3.372e-08
6.08338e-07
-3.83898e-08
6.09603e-07
-4.31374e-08
6.10274e-07
-4.79598e-08
6.10321e-07
-5.28528e-08
6.09717e-07
-5.78117e-08
6.08435e-07
-6.28316e-08
6.06449e-07
-6.79072e-08
6.03736e-07
-7.3032e-08
6.00273e-07
-7.81992e-08
5.96038e-07
-8.34003e-08
5.91012e-07
-8.86248e-08
5.85176e-07
-9.38592e-08
5.78511e-07
-9.90852e-08
5.70994e-07
-1.04274e-07
5.62588e-07
-1.0936e-07
-1.14101e-07
5.53191e-07
1.3195e-09
6.65557e-09
4.87951e-09
2.98053e-08
9.9571e-09
5.21973e-08
1.59253e-08
6.97676e-08
2.23611e-08
8.19914e-08
2.90192e-08
8.9791e-08
3.57735e-08
9.44181e-08
4.25662e-08
9.69714e-08
4.93744e-08
9.82579e-08
5.61912e-08
9.88096e-08
6.30161e-08
9.8951e-08
6.98506e-08
9.88674e-08
7.6697e-08
9.86593e-08
8.35573e-08
9.83782e-08
9.04333e-08
9.80494e-08
9.73268e-08
9.76847e-08
1.04239e-07
9.72891e-08
1.11173e-07
9.68646e-08
1.18128e-07
9.64116e-08
1.25106e-07
9.59301e-08
1.32109e-07
9.54196e-08
1.39137e-07
9.48798e-08
1.46192e-07
9.431e-08
1.53274e-07
9.37096e-08
1.60384e-07
9.30779e-08
1.67523e-07
9.24144e-08
1.74692e-07
9.17182e-08
1.81892e-07
9.09886e-08
1.89122e-07
9.02248e-08
1.96383e-07
8.9426e-08
2.03676e-07
8.85914e-08
2.10999e-07
8.77201e-08
2.18354e-07
8.68112e-08
2.25739e-07
8.58638e-08
2.33155e-07
8.48768e-08
2.406e-07
8.38493e-08
2.48074e-07
8.27802e-08
2.55576e-07
8.16685e-08
2.63105e-07
8.05131e-08
2.70658e-07
7.93129e-08
2.78235e-07
7.80668e-08
2.85834e-07
7.67735e-08
2.93452e-07
7.54319e-08
3.01087e-07
7.40408e-08
3.08735e-07
7.25989e-08
3.16395e-07
7.1105e-08
3.24063e-07
6.95578e-08
3.31734e-07
6.79562e-08
3.39406e-07
6.62986e-08
3.47072e-07
6.4584e-08
3.5473e-07
6.28109e-08
3.62373e-07
6.09781e-08
3.69996e-07
5.90842e-08
3.77593e-07
5.7128e-08
3.85158e-07
5.51082e-08
3.92683e-07
5.30235e-08
4.00161e-07
5.08726e-08
4.07584e-07
4.86543e-08
4.14944e-07
4.63673e-08
4.22232e-07
4.40106e-08
4.29438e-07
4.1583e-08
4.36552e-07
3.90835e-08
4.43565e-07
3.65109e-08
4.50463e-07
3.38643e-08
4.57236e-07
3.11429e-08
4.63871e-07
2.83458e-08
4.70356e-07
2.54724e-08
4.76675e-07
2.25219e-08
4.82816e-07
1.9494e-08
4.88762e-07
1.63881e-08
4.94498e-07
1.32039e-08
5.00008e-07
9.9413e-09
5.05274e-07
6.5998e-09
5.10281e-07
3.17805e-09
5.15071e-07
-3.8599e-10
5.19511e-07
-3.9234e-09
5.23582e-07
-7.55329e-09
5.27322e-07
-1.12593e-08
5.3071e-07
-1.50438e-08
5.33722e-07
-1.89003e-08
5.36332e-07
-2.28248e-08
5.3852e-07
-2.68164e-08
5.40258e-07
-3.08709e-08
5.41525e-07
-3.49865e-08
5.42295e-07
-3.916e-08
5.42545e-07
-4.33877e-08
5.42252e-07
-4.76659e-08
5.41389e-07
-5.19904e-08
5.39934e-07
-5.63568e-08
5.37863e-07
-6.076e-08
5.3515e-07
-6.51949e-08
5.31774e-07
-6.96555e-08
5.2771e-07
-7.41351e-08
5.22935e-07
-7.86256e-08
5.17427e-07
-8.31167e-08
5.11163e-07
-8.75951e-08
5.0412e-07
-9.20419e-08
4.9627e-07
-9.64247e-08
4.87571e-07
-1.00662e-07
-1.04449e-07
4.77919e-07
1.16912e-09
5.48644e-09
4.41588e-09
2.6559e-08
9.11412e-09
4.74995e-08
1.46893e-08
6.41927e-08
2.07396e-08
7.59412e-08
2.70243e-08
8.35062e-08
3.34151e-08
8.80272e-08
3.98502e-08
9.05362e-08
4.63032e-08
9.18048e-08
5.27645e-08
9.23483e-08
5.92318e-08
9.24837e-08
6.57055e-08
9.23937e-08
7.21868e-08
9.21778e-08
7.86773e-08
9.18875e-08
8.51783e-08
9.15482e-08
9.1691e-08
9.11717e-08
9.82167e-08
9.07632e-08
1.04756e-07
9.03247e-08
1.11311e-07
8.98568e-08
1.17882e-07
8.93596e-08
1.24469e-07
8.88327e-08
1.31073e-07
8.82757e-08
1.37695e-07
8.76881e-08
1.44335e-07
8.70694e-08
1.50994e-07
8.6419e-08
1.57672e-07
8.57363e-08
1.64369e-07
8.50208e-08
1.71086e-07
8.42717e-08
1.77822e-07
8.34885e-08
1.84578e-07
8.26704e-08
1.91353e-07
8.18168e-08
1.98146e-07
8.09269e-08
2.04958e-07
7.99998e-08
2.11787e-07
7.9035e-08
2.18632e-07
7.80315e-08
2.25493e-07
7.69884e-08
2.32368e-07
7.59051e-08
2.39256e-07
7.47805e-08
2.46155e-07
7.36138e-08
2.53064e-07
7.24041e-08
2.5998e-07
7.11504e-08
2.66902e-07
6.98519e-08
2.73826e-07
6.85076e-08
2.8075e-07
6.71165e-08
2.87671e-07
6.56776e-08
2.94586e-07
6.41899e-08
3.01491e-07
6.26526e-08
3.08383e-07
6.10646e-08
3.15257e-07
5.94248e-08
3.22108e-07
5.77324e-08
3.28933e-07
5.59863e-08
3.35725e-07
5.41856e-08
3.4248e-07
5.23294e-08
3.49192e-07
5.04166e-08
3.55853e-07
4.84464e-08
3.62458e-07
4.64179e-08
3.69e-07
4.43303e-08
3.75471e-07
4.21827e-08
3.81864e-07
3.99743e-08
3.8817e-07
3.77044e-08
3.94381e-07
3.53723e-08
4.00487e-07
3.29774e-08
4.06479e-07
3.05191e-08
4.12347e-07
2.79969e-08
4.18079e-07
2.54104e-08
4.23666e-07
2.27592e-08
4.29095e-07
2.00432e-08
4.34354e-07
1.72622e-08
4.39432e-07
1.44161e-08
4.44316e-07
1.1505e-08
4.48991e-07
8.52883e-09
4.53445e-07
5.4874e-09
4.57666e-07
2.37915e-09
4.61682e-07
-8.38602e-10
4.65336e-07
-4.04012e-09
4.68725e-07
-7.31267e-09
4.7182e-07
-1.0648e-08
4.74602e-07
-1.40413e-08
4.7705e-07
-1.74922e-08
4.79146e-07
-2.09959e-08
4.80871e-07
-2.45499e-08
4.82206e-07
-2.81515e-08
4.83133e-07
-3.17977e-08
4.83631e-07
-3.54852e-08
4.83681e-07
-3.92103e-08
4.83263e-07
-4.29691e-08
4.82354e-07
-4.67573e-08
4.80934e-07
-5.05701e-08
4.78979e-07
-5.44023e-08
4.76467e-07
-5.82484e-08
4.73374e-07
-6.21024e-08
4.69676e-07
-6.59573e-08
4.65346e-07
-6.98058e-08
4.60359e-07
-7.36389e-08
4.54689e-07
-7.74461e-08
4.48308e-07
-8.12144e-08
4.41192e-07
-8.49258e-08
4.33315e-07
-8.85476e-08
4.24642e-07
-9.19886e-08
-9.4906e-08
4.15099e-07
1.02992e-09
4.45629e-09
3.97315e-09
2.36156e-08
8.29397e-09
4.31785e-08
1.34698e-08
5.90167e-08
1.91223e-08
7.02886e-08
2.50177e-08
7.76106e-08
3.10274e-08
8.20175e-08
3.70867e-08
8.44769e-08
4.31663e-08
8.57254e-08
4.92542e-08
8.62606e-08
5.53464e-08
8.63917e-08
6.14423e-08
8.6298e-08
6.75423e-08
8.60778e-08
7.36474e-08
8.57823e-08
7.97584e-08
8.5437e-08
8.58763e-08
8.50536e-08
9.20019e-08
8.46374e-08
9.81358e-08
8.41907e-08
1.04279e-07
8.3714e-08
1.10431e-07
8.32074e-08
1.16593e-07
8.26707e-08
1.22765e-07
8.21036e-08
1.28947e-07
8.15056e-08
1.3514e-07
8.08764e-08
1.41343e-07
8.02153e-08
1.47557e-07
7.95221e-08
1.53782e-07
7.87961e-08
1.60017e-07
7.80368e-08
1.66262e-07
7.72436e-08
1.72516e-07
7.64161e-08
1.7878e-07
7.55535e-08
1.85051e-07
7.46554e-08
1.9133e-07
7.3721e-08
1.97615e-07
7.27497e-08
2.03906e-07
7.17409e-08
2.102e-07
7.0694e-08
2.16497e-07
6.96081e-08
2.22794e-07
6.84827e-08
2.29091e-07
6.7317e-08
2.35384e-07
6.61103e-08
2.41673e-07
6.48619e-08
2.47954e-07
6.3571e-08
2.54224e-07
6.22369e-08
2.60482e-07
6.08589e-08
2.66723e-07
5.94362e-08
2.72945e-07
5.7968e-08
2.79144e-07
5.64537e-08
2.85316e-07
5.48924e-08
2.91457e-07
5.32836e-08
2.97563e-07
5.16264e-08
3.03629e-07
4.99201e-08
3.09651e-07
4.81641e-08
3.15622e-07
4.63578e-08
3.21538e-07
4.45005e-08
3.27393e-07
4.25916e-08
3.3318e-07
4.06305e-08
3.38894e-07
3.86166e-08
3.44527e-07
3.65496e-08
3.50072e-07
3.44289e-08
3.55522e-07
3.22541e-08
3.6087e-07
3.00249e-08
3.66106e-07
2.7741e-08
3.71223e-07
2.54022e-08
3.76211e-07
2.30083e-08
3.81062e-07
2.05594e-08
3.85766e-07
1.80553e-08
3.90313e-07
1.54963e-08
3.94693e-07
1.28825e-08
3.98895e-07
1.02141e-08
4.02908e-07
7.49146e-09
4.06723e-07
4.71461e-09
4.10328e-07
1.88216e-09
4.13744e-07
-1.03656e-09
4.16847e-07
-3.94195e-09
4.19715e-07
-6.90791e-09
4.22327e-07
-9.92434e-09
4.24667e-07
-1.29881e-08
4.26722e-07
-1.60957e-08
4.28473e-07
-1.92439e-08
4.29908e-07
-2.24305e-08
4.31011e-07
-2.56532e-08
4.31769e-07
-2.89088e-08
4.32165e-07
-3.2194e-08
4.32185e-07
-3.55054e-08
4.31813e-07
-3.8839e-08
4.31034e-07
-4.21904e-08
4.29832e-07
-4.55547e-08
4.28188e-07
-4.89266e-08
4.26086e-07
-5.23002e-08
4.23507e-07
-5.5669e-08
4.2043e-07
-5.90257e-08
4.16835e-07
-6.23623e-08
4.12699e-07
-6.56697e-08
4.07999e-07
-6.89379e-08
4.02708e-07
-7.21553e-08
3.96802e-07
-7.53085e-08
3.90256e-07
-7.83801e-08
3.83045e-07
-8.13367e-08
3.75136e-07
-8.408e-08
-8.62751e-08
3.66505e-07
9.01708e-10
3.55505e-09
3.55472e-09
2.09629e-08
7.50495e-09
3.92284e-08
1.22807e-08
5.42409e-08
1.75286e-08
6.50405e-08
2.30243e-08
7.21147e-08
2.86403e-08
7.64014e-08
3.43105e-08
7.88067e-08
4.00033e-08
8.00328e-08
4.57047e-08
8.05594e-08
5.14094e-08
8.06873e-08
5.71157e-08
8.0592e-08
6.28232e-08
8.03705e-08
6.85324e-08
8.00732e-08
7.42437e-08
7.97256e-08
7.99577e-08
7.93395e-08
8.56748e-08
7.89202e-08
9.13955e-08
7.84699e-08
9.712e-08
7.79895e-08
1.02849e-07
7.7479e-08
1.08581e-07
7.69382e-08
1.14318e-07
7.6367e-08
1.20059e-07
7.57649e-08
1.25804e-07
7.51316e-08
1.31553e-07
7.44667e-08
1.37305e-07
7.37699e-08
1.4306e-07
7.30406e-08
1.48819e-07
7.22786e-08
1.54579e-07
7.14833e-08
1.60341e-07
7.06542e-08
1.66104e-07
6.9791e-08
1.71866e-07
6.88931e-08
1.77627e-07
6.79601e-08
1.83385e-07
6.69913e-08
1.8914e-07
6.59864e-08
1.94889e-07
6.49447e-08
2.00632e-07
6.38657e-08
2.06366e-07
6.2749e-08
2.12089e-07
6.15939e-08
2.17799e-07
6.03999e-08
2.23495e-07
5.91665e-08
2.29173e-07
5.7893e-08
2.34831e-07
5.6579e-08
2.40466e-07
5.52239e-08
2.46075e-07
5.38271e-08
2.51655e-07
5.23882e-08
2.57202e-07
5.09064e-08
2.62712e-07
4.93815e-08
2.68183e-07
4.78128e-08
2.73609e-07
4.61998e-08
2.78987e-07
4.45422e-08
2.84312e-07
4.28394e-08
2.89579e-07
4.10911e-08
2.94782e-07
3.92968e-08
2.99918e-07
3.74562e-08
3.04979e-07
3.55689e-08
3.0996e-07
3.36348e-08
3.14856e-07
3.16535e-08
3.1966e-07
2.96249e-08
3.24365e-07
2.75488e-08
3.28965e-07
2.54252e-08
3.33452e-07
2.32539e-08
3.37819e-07
2.10351e-08
3.42058e-07
1.87689e-08
3.46162e-07
1.64554e-08
3.50122e-07
1.40949e-08
3.53931e-07
1.16878e-08
3.57579e-07
9.23432e-09
3.61058e-07
6.73494e-09
3.64359e-07
4.18976e-09
3.67477e-07
1.59744e-09
3.70417e-07
-1.05862e-09
3.73097e-07
-3.71633e-09
3.75574e-07
-6.419e-09
3.7783e-07
-9.16395e-09
3.79851e-07
-1.19457e-08
3.81626e-07
-1.47637e-08
3.83145e-07
-1.76146e-08
3.84398e-07
-2.04965e-08
3.85374e-07
-2.34069e-08
3.86064e-07
-2.63432e-08
3.86458e-07
-2.93025e-08
3.86546e-07
-3.22818e-08
3.86318e-07
-3.52776e-08
3.85765e-07
-3.82863e-08
3.84878e-07
-4.13036e-08
3.83649e-07
-4.43251e-08
3.82068e-07
-4.73456e-08
3.80127e-07
-5.036e-08
3.77821e-07
-5.3362e-08
3.7514e-07
-5.63454e-08
3.72081e-07
-5.93032e-08
3.68639e-07
-6.22278e-08
3.64813e-07
-6.51118e-08
3.60606e-07
-6.79477e-08
3.56025e-07
-7.07282e-08
3.5109e-07
-7.34443e-08
3.45825e-07
-7.60719e-08
3.40266e-07
-7.85206e-08
-8.04667e-08
3.34458e-07
7.84194e-10
2.77091e-09
3.16163e-09
1.85857e-08
6.75141e-09
3.56387e-08
1.11307e-08
4.98615e-08
1.59723e-08
6.01988e-08
2.10628e-08
6.70241e-08
2.62778e-08
7.11864e-08
3.15505e-08
7.3534e-08
3.68478e-08
7.47356e-08
4.21543e-08
7.52532e-08
4.74633e-08
7.53785e-08
5.27722e-08
7.52833e-08
5.80802e-08
7.50626e-08
6.3387e-08
7.47664e-08
6.8693e-08
7.44196e-08
7.39982e-08
7.40341e-08
7.93029e-08
7.36154e-08
8.46072e-08
7.31656e-08
8.99111e-08
7.26856e-08
9.52147e-08
7.21755e-08
1.00518e-07
7.16353e-08
1.0582e-07
7.10647e-08
1.11121e-07
7.04636e-08
1.16421e-07
6.98315e-08
1.21719e-07
6.91683e-08
1.27015e-07
6.84736e-08
1.32308e-07
6.77471e-08
1.37599e-07
6.69884e-08
1.42885e-07
6.61971e-08
1.48166e-07
6.5373e-08
1.53442e-07
6.45156e-08
1.5871e-07
6.36246e-08
1.6397e-07
6.26996e-08
1.69221e-07
6.17403e-08
1.74461e-07
6.07461e-08
1.79688e-07
5.97168e-08
1.84902e-07
5.86519e-08
1.901e-07
5.75511e-08
1.9528e-07
5.64138e-08
2.0044e-07
5.52397e-08
2.05578e-07
5.40285e-08
2.10692e-07
5.27796e-08
2.15778e-07
5.14927e-08
2.20835e-07
5.01674e-08
2.25858e-07
4.88033e-08
2.30846e-07
4.74002e-08
2.35795e-07
4.59575e-08
2.40701e-07
4.44751e-08
2.45561e-07
4.29525e-08
2.50371e-07
4.13895e-08
2.55127e-07
3.97858e-08
2.59826e-07
3.81411e-08
2.64462e-07
3.64552e-08
2.69031e-07
3.47279e-08
2.73528e-07
3.2959e-08
2.77948e-07
3.11485e-08
2.82287e-07
2.92962e-08
2.86538e-07
2.74021e-08
2.90697e-07
2.54661e-08
2.94757e-07
2.34884e-08
2.98713e-07
2.14691e-08
3.02559e-07
1.94083e-08
3.06288e-07
1.73062e-08
3.09893e-07
1.51631e-08
3.13369e-07
1.29794e-08
3.16708e-07
1.07555e-08
3.19904e-07
8.49184e-09
3.2295e-07
6.18883e-09
3.25838e-07
3.84678e-09
3.28563e-07
1.46483e-09
3.31135e-07
-9.74964e-10
3.33485e-07
-3.40892e-09
3.35653e-07
-5.8841e-09
3.3763e-07
-8.39602e-09
3.39407e-07
-1.094e-08
3.40974e-07
-1.35129e-08
3.42324e-07
-1.6114e-08
3.4345e-07
-1.87409e-08
3.44346e-07
-2.13917e-08
3.45003e-07
-2.40644e-08
3.45417e-07
-2.67567e-08
3.45581e-07
-2.94663e-08
3.4549e-07
-3.21906e-08
3.45139e-07
-3.49267e-08
3.44524e-07
-3.76715e-08
3.43643e-07
-4.04217e-08
3.42491e-07
-4.31736e-08
3.41069e-07
-4.59233e-08
3.39376e-07
-4.86667e-08
3.37413e-07
-5.13991e-08
3.35184e-07
-5.41159e-08
3.32693e-07
-5.68122e-08
3.29948e-07
-5.9483e-08
3.26961e-07
-6.21241e-08
3.23745e-07
-6.47323e-08
3.20323e-07
-6.73059e-08
3.16721e-07
-6.98422e-08
3.12971e-07
-7.23226e-08
3.0911e-07
-7.46594e-08
-7.65704e-08
3.05214e-07
6.77903e-10
2.093e-09
2.7958e-09
1.64678e-08
6.03787e-09
3.23966e-08
1.00279e-08
4.58714e-08
1.44653e-08
5.57611e-08
1.91491e-08
6.234e-08
2.39593e-08
6.63759e-08
2.88299e-08
6.86633e-08
3.37269e-08
6.98386e-08
3.86336e-08
7.03464e-08
4.35426e-08
7.04697e-08
4.84502e-08
7.03758e-08
5.33552e-08
7.01576e-08
5.8257e-08
6.98645e-08
6.31553e-08
6.9521e-08
6.80502e-08
6.9139e-08
7.29416e-08
6.87237e-08
7.78295e-08
6.82775e-08
8.27137e-08
6.78013e-08
8.75939e-08
6.72952e-08
9.247e-08
6.67593e-08
9.73416e-08
6.61933e-08
1.02208e-07
6.55971e-08
1.07069e-07
6.49705e-08
1.11924e-07
6.43132e-08
1.16772e-07
6.3625e-08
1.21613e-07
6.29057e-08
1.26446e-07
6.2155e-08
1.31271e-07
6.13727e-08
1.36085e-07
6.05584e-08
1.40889e-07
5.97119e-08
1.4568e-07
5.8833e-08
1.50458e-07
5.79213e-08
1.55222e-07
5.69766e-08
1.5997e-07
5.59985e-08
1.647e-07
5.49868e-08
1.69411e-07
5.39411e-08
1.74101e-07
5.28613e-08
1.78767e-07
5.1747e-08
1.83409e-07
5.05979e-08
1.88023e-07
4.94138e-08
1.92608e-07
4.81944e-08
1.97161e-07
4.69395e-08
2.01679e-07
4.56488e-08
2.06161e-07
4.4322e-08
2.10602e-07
4.2959e-08
2.15e-07
4.15595e-08
2.19352e-07
4.01233e-08
2.23654e-07
3.86503e-08
2.27903e-07
3.71403e-08
2.32095e-07
3.55932e-08
2.36228e-07
3.40089e-08
2.40295e-07
3.23872e-08
2.44295e-07
3.07283e-08
2.48222e-07
2.9032e-08
2.52072e-07
2.72984e-08
2.5584e-07
2.55276e-08
2.59522e-07
2.37196e-08
2.63114e-07
2.18747e-08
2.66609e-07
1.99929e-08
2.70004e-07
1.80746e-08
2.73292e-07
1.612e-08
2.76469e-07
1.41295e-08
2.79529e-07
1.21035e-08
2.82466e-07
1.00423e-08
2.85275e-07
7.94644e-09
2.87951e-07
5.81641e-09
2.90487e-07
3.65248e-09
2.9288e-07
1.45391e-09
2.95141e-07
-7.96245e-10
2.97203e-07
-3.03742e-09
2.99112e-07
-5.3184e-09
3.00857e-07
-7.62919e-09
3.02429e-07
-9.96809e-09
3.03822e-07
-1.23322e-08
3.05029e-07
-1.47207e-08
3.06047e-07
-1.71319e-08
3.06871e-07
-1.95642e-08
3.07495e-07
-2.20162e-08
3.07917e-07
-2.44862e-08
3.08134e-07
-2.69726e-08
3.08141e-07
-2.94737e-08
3.07938e-07
-3.19874e-08
3.07523e-07
-3.45118e-08
3.06896e-07
-3.70447e-08
3.06059e-07
-3.95841e-08
3.05013e-07
-4.21277e-08
3.03763e-07
-4.46732e-08
3.02314e-07
-4.72184e-08
3.00676e-07
-4.97613e-08
2.9886e-07
-5.22999e-08
2.96881e-07
-5.48329e-08
2.94758e-07
-5.73601e-08
2.92517e-07
-5.98827e-08
2.9019e-07
-6.2405e-08
2.87818e-07
-6.49344e-08
2.85455e-07
-6.74789e-08
2.83163e-07
-7.00303e-08
2.81016e-07
-7.25125e-08
-7.46699e-08
2.79116e-07
5.82422e-10
1.51066e-09
2.45746e-09
1.45928e-08
5.36636e-09
2.94876e-08
8.97696e-09
4.22607e-08
1.30155e-08
5.17225e-08
1.72947e-08
5.80607e-08
2.17002e-08
6.19704e-08
2.61676e-08
6.4196e-08
3.06626e-08
6.53437e-08
3.51679e-08
6.58412e-08
3.96752e-08
6.59626e-08
4.41804e-08
6.58706e-08
4.86816e-08
6.56564e-08
5.31781e-08
6.5368e-08
5.76694e-08
6.50297e-08
6.21552e-08
6.46532e-08
6.66354e-08
6.42437e-08
7.11095e-08
6.38035e-08
7.55773e-08
6.33336e-08
8.00385e-08
6.28341e-08
8.44925e-08
6.23052e-08
8.89389e-08
6.17467e-08
9.33773e-08
6.11586e-08
9.7807e-08
6.05405e-08
1.02227e-07
5.98925e-08
1.06638e-07
5.92143e-08
1.11038e-07
5.85058e-08
1.15426e-07
5.77667e-08
1.19803e-07
5.69968e-08
1.24165e-07
5.6196e-08
1.28513e-07
5.53641e-08
1.32846e-07
5.45008e-08
1.37161e-07
5.3606e-08
1.41458e-07
5.26795e-08
1.45735e-07
5.17211e-08
1.49991e-07
5.07306e-08
1.54224e-07
4.97078e-08
1.58433e-07
4.86525e-08
1.62616e-07
4.75646e-08
1.6677e-07
4.64439e-08
1.70893e-07
4.52902e-08
1.74985e-07
4.41033e-08
1.79041e-07
4.28831e-08
1.8306e-07
4.16295e-08
1.8704e-07
4.03424e-08
1.90977e-07
3.90215e-08
1.9487e-07
3.7667e-08
1.98714e-07
3.62787e-08
2.02508e-07
3.48564e-08
2.06248e-07
3.34004e-08
2.0993e-07
3.19104e-08
2.13553e-07
3.03865e-08
2.17111e-07
2.88288e-08
2.20602e-07
2.72374e-08
2.24022e-07
2.56123e-08
2.27367e-07
2.39537e-08
2.30633e-07
2.22617e-08
2.33816e-07
2.05366e-08
2.36912e-07
1.87786e-08
2.39917e-07
1.6988e-08
2.42827e-07
1.51651e-08
2.45637e-07
1.33104e-08
2.48342e-07
1.14241e-08
2.50938e-07
9.50687e-09
2.53422e-07
7.55907e-09
2.55787e-07
5.58121e-09
2.58029e-07
3.57367e-09
2.60145e-07
1.53627e-09
2.62141e-07
-5.41976e-10
2.63967e-07
-2.62191e-09
2.65661e-07
-4.73161e-09
2.67211e-07
-6.86826e-09
2.68611e-07
-9.0291e-09
2.69855e-07
-1.1212e-08
2.70939e-07
-1.34162e-08
2.71859e-07
-1.56404e-08
2.7261e-07
-1.78833e-08
2.7319e-07
-2.01439e-08
2.73595e-07
-2.2421e-08
2.73822e-07
-2.47134e-08
2.73869e-07
-2.70198e-08
2.73735e-07
-2.93391e-08
2.73417e-07
-3.16697e-08
2.72917e-07
-3.40106e-08
2.72232e-07
-3.63604e-08
2.71366e-07
-3.87179e-08
2.70321e-07
-4.10821e-08
2.691e-07
-4.34519e-08
2.67708e-07
-4.58267e-08
2.66153e-07
-4.82062e-08
2.64444e-07
-5.05907e-08
2.62593e-07
-5.29817e-08
2.60615e-07
-5.53821e-08
2.5853e-07
-5.77977e-08
2.56363e-07
-6.02382e-08
2.54146e-07
-6.27179e-08
2.51919e-07
-6.52518e-08
2.49725e-07
-6.78371e-08
2.47615e-07
-7.04024e-08
-7.27383e-08
2.45683e-07
4.97013e-10
1.01376e-09
2.14638e-09
1.29438e-08
4.73818e-09
2.6896e-08
7.98134e-09
3.90175e-08
1.16288e-08
4.8075e-08
1.5508e-08
5.41815e-08
1.95112e-08
5.7967e-08
2.35766e-08
6.01305e-08
2.76705e-08
6.12499e-08
3.17752e-08
6.17367e-08
3.58819e-08
6.18562e-08
3.9986e-08
6.17667e-08
4.40854e-08
6.15571e-08
4.81789e-08
6.12746e-08
5.22657e-08
6.09428e-08
5.63456e-08
6.05732e-08
6.0418e-08
6.01711e-08
6.44827e-08
5.97387e-08
6.85393e-08
5.92769e-08
7.25872e-08
5.87861e-08
7.66261e-08
5.82663e-08
8.06554e-08
5.77175e-08
8.46744e-08
5.71396e-08
8.86826e-08
5.65324e-08
9.26792e-08
5.5896e-08
9.66635e-08
5.523e-08
1.00635e-07
5.45346e-08
1.04592e-07
5.38095e-08
1.08534e-07
5.30546e-08
1.1246e-07
5.22697e-08
1.16369e-07
5.14548e-08
1.2026e-07
5.06098e-08
1.24132e-07
4.97344e-08
1.27983e-07
4.88286e-08
1.31811e-07
4.78923e-08
1.35617e-07
4.69254e-08
1.39397e-07
4.59276e-08
1.4315e-07
4.48991e-08
1.46875e-07
4.38396e-08
1.5057e-07
4.2749e-08
1.54233e-07
4.16274e-08
1.57861e-07
4.04746e-08
1.61454e-07
3.92906e-08
1.65008e-07
3.80754e-08
1.68521e-07
3.68288e-08
1.71991e-07
3.5551e-08
1.75416e-07
3.42419e-08
1.78794e-07
3.29016e-08
1.8212e-07
3.153e-08
1.85393e-07
3.01273e-08
1.8861e-07
2.86935e-08
1.91767e-07
2.72288e-08
1.94863e-07
2.57333e-08
1.97893e-07
2.42071e-08
2.00855e-07
2.26505e-08
2.03744e-07
2.10637e-08
2.06559e-07
1.9447e-08
2.09295e-07
1.78006e-08
2.11948e-07
1.61249e-08
2.14516e-07
1.44202e-08
2.16993e-07
1.26871e-08
2.19378e-07
1.09257e-08
2.21665e-07
9.13678e-09
2.23851e-07
7.32064e-09
2.25932e-07
5.47781e-09
2.27905e-07
3.6087e-09
2.29765e-07
1.71324e-09
2.31524e-07
-2.22878e-10
2.33136e-07
-2.15436e-09
2.34628e-07
-4.11426e-09
2.35994e-07
-6.09722e-09
2.37228e-07
-8.10199e-09
2.38325e-07
-1.01265e-08
2.39282e-07
-1.21697e-08
2.40097e-07
-1.42304e-08
2.40764e-07
-1.63077e-08
2.41281e-07
-1.84007e-08
2.41646e-07
-2.05085e-08
2.41855e-07
-2.26301e-08
2.41906e-07
-2.47647e-08
2.41798e-07
-2.69113e-08
2.41527e-07
-2.9069e-08
2.41095e-07
-3.12369e-08
2.40498e-07
-3.34141e-08
2.39737e-07
-3.55999e-08
2.38813e-07
-3.77937e-08
2.37726e-07
-3.9995e-08
2.36477e-07
-4.22036e-08
2.35071e-07
-4.44198e-08
2.33509e-07
-4.66443e-08
2.31797e-07
-4.88787e-08
2.29941e-07
-5.11257e-08
2.2795e-07
-5.33903e-08
2.25832e-07
-5.56803e-08
2.23602e-07
-5.80078e-08
2.21273e-07
-6.03883e-08
2.18856e-07
-6.2835e-08
2.16355e-07
-6.53364e-08
2.1376e-07
-6.78076e-08
-7.00358e-08
2.11058e-07
4.21528e-10
5.92213e-10
1.86148e-09
1.15037e-08
4.15236e-09
2.46049e-08
7.04132e-09
3.61284e-08
1.03075e-08
4.48085e-08
1.37936e-08
5.06952e-08
1.73995e-08
5.43609e-08
2.10666e-08
5.64633e-08
2.47622e-08
5.75542e-08
2.84689e-08
5.80299e-08
3.21775e-08
5.81474e-08
3.58833e-08
5.80607e-08
3.9584e-08
5.78564e-08
4.32781e-08
5.75803e-08
4.69648e-08
5.72559e-08
5.06436e-08
5.68943e-08
5.43139e-08
5.65006e-08
5.79752e-08
5.60771e-08
6.1627e-08
5.56247e-08
6.52689e-08
5.51438e-08
6.89002e-08
5.46345e-08
7.25205e-08
5.40968e-08
7.61291e-08
5.35305e-08
7.97255e-08
5.29358e-08
8.33089e-08
5.23125e-08
8.68784e-08
5.16605e-08
9.04334e-08
5.09797e-08
9.39727e-08
5.02702e-08
9.74955e-08
4.95318e-08
1.01001e-07
4.87644e-08
1.04487e-07
4.7968e-08
1.07954e-07
4.71426e-08
1.114e-07
4.6288e-08
1.14824e-07
4.54042e-08
1.18225e-07
4.44912e-08
1.21601e-07
4.3549e-08
1.24951e-07
4.25774e-08
1.28274e-07
4.15765e-08
1.31567e-07
4.05462e-08
1.3483e-07
3.94866e-08
1.3806e-07
3.83975e-08
1.41255e-07
3.72791e-08
1.44415e-07
3.61313e-08
1.47536e-07
3.49541e-08
1.50617e-07
3.37477e-08
1.53656e-07
3.25121e-08
1.56651e-07
3.12474e-08
1.59599e-07
2.99537e-08
1.62498e-07
2.8631e-08
1.65345e-07
2.72797e-08
1.68139e-07
2.58997e-08
1.70876e-07
2.44914e-08
1.73554e-07
2.30548e-08
1.76171e-07
2.15903e-08
1.78723e-07
2.00982e-08
1.81209e-07
1.85786e-08
1.83624e-07
1.70319e-08
1.85966e-07
1.54586e-08
1.88232e-07
1.38589e-08
1.90419e-07
1.22332e-08
1.92524e-07
1.05821e-08
1.94543e-07
8.90601e-09
1.96474e-07
7.20542e-09
1.98314e-07
5.48086e-09
2.00059e-07
3.73281e-09
2.01706e-07
1.96155e-09
2.03255e-07
1.64201e-10
2.04682e-07
-1.65e-09
2.06006e-07
-3.47835e-09
2.0722e-07
-5.32801e-09
2.08319e-07
-7.19635e-09
2.093e-07
-9.08222e-09
2.10158e-07
-1.09843e-08
2.1089e-07
-1.29015e-08
2.11492e-07
-1.48329e-08
2.11962e-07
-1.67778e-08
2.12297e-07
-1.87352e-08
2.12493e-07
-2.07044e-08
2.12547e-07
-2.26844e-08
2.12457e-07
-2.46744e-08
2.12219e-07
-2.66734e-08
2.11831e-07
-2.86807e-08
2.11289e-07
-3.06953e-08
2.10591e-07
-3.27165e-08
2.09735e-07
-3.47434e-08
2.08717e-07
-3.67755e-08
2.07534e-07
-3.88122e-08
2.06183e-07
-4.08533e-08
2.04662e-07
-4.28987e-08
2.02967e-07
-4.49487e-08
2.01093e-07
-4.70045e-08
1.99034e-07
-4.90676e-08
1.96785e-07
-5.11414e-08
1.94335e-07
-5.32305e-08
1.91669e-07
-5.53415e-08
1.8876e-07
-5.74798e-08
1.85565e-07
-5.96393e-08
1.82004e-07
-6.1776e-08
1.77959e-07
-6.37625e-08
-6.53783e-08
1.73301e-07
3.54808e-10
2.3775e-10
1.60161e-09
1.02572e-08
3.60811e-09
2.25986e-08
6.15677e-09
3.35797e-08
9.0524e-09
4.19128e-08
1.21533e-08
4.75943e-08
1.5368e-08
5.11462e-08
1.86418e-08
5.31896e-08
2.19436e-08
5.42525e-08
2.52564e-08
5.47172e-08
2.85713e-08
5.48327e-08
3.18832e-08
5.47488e-08
3.51898e-08
5.45499e-08
3.84894e-08
5.42808e-08
4.17812e-08
5.39641e-08
4.50645e-08
5.3611e-08
4.83388e-08
5.32264e-08
5.16035e-08
5.28125e-08
5.48581e-08
5.23702e-08
5.8102e-08
5.19e-08
6.13348e-08
5.14019e-08
6.45557e-08
5.08759e-08
6.77642e-08
5.03222e-08
7.09596e-08
4.97406e-08
7.4141e-08
4.91311e-08
7.73079e-08
4.84937e-08
8.04592e-08
4.78285e-08
8.35941e-08
4.71353e-08
8.67117e-08
4.64141e-08
8.98111e-08
4.56649e-08
9.28913e-08
4.48877e-08
9.59513e-08
4.40825e-08
9.899e-08
4.32493e-08
1.02006e-07
4.23881e-08
1.04999e-07
4.14988e-08
1.07966e-07
4.05815e-08
1.10908e-07
3.96363e-08
1.13821e-07
3.8663e-08
1.16706e-07
3.76618e-08
1.1956e-07
3.66327e-08
1.22381e-07
3.55757e-08
1.25169e-07
3.4491e-08
1.27922e-07
3.33786e-08
1.30637e-07
3.22386e-08
1.33314e-07
3.10711e-08
1.3595e-07
2.98763e-08
1.38543e-07
2.86542e-08
1.41092e-07
2.74051e-08
1.43594e-07
2.61291e-08
1.46047e-07
2.48264e-08
1.4845e-07
2.34972e-08
1.50799e-07
2.21419e-08
1.53093e-07
2.07606e-08
1.5533e-07
1.93537e-08
1.57506e-07
1.79214e-08
1.5962e-07
1.64642e-08
1.6167e-07
1.49824e-08
1.63651e-07
1.34764e-08
1.65563e-07
1.19467e-08
1.67403e-07
1.03937e-08
1.69167e-07
8.81796e-09
1.70852e-07
7.21992e-09
1.72458e-07
5.60013e-09
1.73979e-07
3.95906e-09
1.75415e-07
2.29701e-09
1.76764e-07
6.12876e-10
1.78022e-07
-1.09438e-09
1.79177e-07
-2.80464e-09
1.80236e-07
-4.53671e-09
1.81193e-07
-6.28571e-09
1.82047e-07
-8.05021e-09
1.82794e-07
-9.8288e-09
1.8343e-07
-1.16205e-08
1.83953e-07
-1.34243e-08
1.8436e-07
-1.52395e-08
1.84647e-07
-1.70652e-08
1.84813e-07
-1.89005e-08
1.84853e-07
-2.07446e-08
1.84765e-07
-2.25966e-08
1.84546e-07
-2.44555e-08
1.84193e-07
-2.63206e-08
1.83703e-07
-2.81907e-08
1.83073e-07
-3.00649e-08
1.82299e-07
-3.19423e-08
1.81377e-07
-3.3822e-08
1.80305e-07
-3.5703e-08
1.79077e-07
-3.75845e-08
1.77689e-07
-3.94658e-08
1.76137e-07
-4.13461e-08
1.74413e-07
-4.32249e-08
1.7251e-07
-4.51017e-08
1.70418e-07
-4.6976e-08
1.68124e-07
-4.88473e-08
1.65608e-07
-5.07141e-08
1.62838e-07
-5.25722e-08
1.59767e-07
-5.44087e-08
1.56315e-07
-5.61878e-08
1.52362e-07
-5.78233e-08
1.47743e-07
-5.91431e-08
-5.99079e-08
1.42272e-07
2.96004e-10
-5.83989e-11
1.36438e-09
9.18878e-09
3.10231e-09
2.08607e-08
5.32472e-09
3.13575e-08
7.86132e-09
3.93765e-08
1.05863e-08
4.48696e-08
1.34172e-08
4.83156e-08
1.63037e-08
5.03032e-08
1.92171e-08
5.13391e-08
2.21412e-08
5.17931e-08
2.50672e-08
5.19066e-08
2.79904e-08
5.18255e-08
3.09082e-08
5.1632e-08
3.38191e-08
5.13698e-08
3.67221e-08
5.10612e-08
3.96166e-08
5.07167e-08
4.25018e-08
5.03413e-08
4.53771e-08
4.99371e-08
4.82421e-08
4.95052e-08
5.10961e-08
4.90458e-08
5.39387e-08
4.85592e-08
5.67692e-08
4.80454e-08
5.95871e-08
4.75043e-08
6.23917e-08
4.69362e-08
6.51821e-08
4.63408e-08
6.79578e-08
4.57183e-08
7.07177e-08
4.50686e-08
7.34611e-08
4.43919e-08
7.61872e-08
4.3688e-08
7.88949e-08
4.2957e-08
8.15836e-08
4.2199e-08
8.42521e-08
4.14139e-08
8.68996e-08
4.06018e-08
8.95249e-08
3.97628e-08
9.21271e-08
3.88968e-08
9.47048e-08
3.80039e-08
9.72568e-08
3.70843e-08
9.9782e-08
3.61378e-08
1.02279e-07
3.51647e-08
1.04747e-07
3.41651e-08
1.07183e-07
3.31389e-08
1.09588e-07
3.20864e-08
1.11959e-07
3.10076e-08
1.14295e-07
2.99027e-08
1.16594e-07
2.87719e-08
1.18855e-07
2.76153e-08
1.21077e-07
2.64331e-08
1.23257e-07
2.52255e-08
1.25393e-07
2.39927e-08
1.27484e-07
2.2735e-08
1.29529e-07
2.14526e-08
1.31525e-07
2.01458e-08
1.3347e-07
1.8815e-08
1.35363e-07
1.74604e-08
1.37202e-07
1.60825e-08
1.38985e-07
1.46816e-08
1.40709e-07
1.32581e-08
1.42373e-07
1.18125e-08
1.43975e-07
1.03452e-08
1.45512e-07
8.85677e-09
1.46982e-07
7.34775e-09
1.48383e-07
5.81868e-09
1.49713e-07
4.27013e-09
1.50969e-07
2.70264e-09
1.52149e-07
1.11639e-09
1.53255e-07
-4.93415e-10
1.54268e-07
-2.10734e-09
1.55202e-07
-3.73822e-09
1.5605e-07
-5.38519e-09
1.5681e-07
-7.046e-09
1.57479e-07
-8.71921e-09
1.58054e-07
-1.04037e-08
1.58532e-07
-1.20985e-08
1.5891e-07
-1.38028e-08
1.59186e-07
-1.55155e-08
1.59356e-07
-1.72359e-08
1.59418e-07
-1.8963e-08
1.5937e-07
-2.06959e-08
1.59207e-07
-2.24337e-08
1.58926e-07
-2.41753e-08
1.58526e-07
-2.59197e-08
1.58001e-07
-2.76658e-08
1.57348e-07
-2.94124e-08
1.56564e-07
-3.11584e-08
1.55645e-07
-3.29025e-08
1.54586e-07
-3.46436e-08
1.53381e-07
-3.63802e-08
1.52026e-07
-3.8111e-08
1.50515e-07
-3.98345e-08
1.48839e-07
-4.15488e-08
1.46988e-07
-4.32515e-08
1.44951e-07
-4.49391e-08
1.4271e-07
-4.66062e-08
1.40239e-07
-4.82428e-08
1.37497e-07
-4.98307e-08
1.34422e-07
-5.13342e-08
1.30919e-07
-5.26846e-08
1.26851e-07
-5.37551e-08
1.22051e-07
-5.43434e-08
-5.4229e-08
1.16372e-07
2.45739e-10
-3.04186e-10
1.1491e-09
8.28504e-09
2.63305e-09
1.93764e-08
4.54233e-09
2.9448e-08
6.7308e-09
3.71879e-08
9.08878e-09
4.25116e-08
1.15433e-08
4.58612e-08
1.40494e-08
4.77972e-08
1.65805e-08
4.88081e-08
1.91217e-08
4.92518e-08
2.16648e-08
4.93635e-08
2.42052e-08
4.92851e-08
2.67403e-08
4.90968e-08
2.92688e-08
4.88414e-08
3.17895e-08
4.85405e-08
3.43019e-08
4.82044e-08
3.68052e-08
4.78381e-08
3.92989e-08
4.74435e-08
4.17823e-08
4.70217e-08
4.4255e-08
4.6573e-08
4.67164e-08
4.60976e-08
4.9166e-08
4.55956e-08
5.16031e-08
4.50671e-08
5.40271e-08
4.4512e-08
5.64374e-08
4.39305e-08
5.88332e-08
4.33225e-08
6.12138e-08
4.26881e-08
6.35783e-08
4.20274e-08
6.5926e-08
4.13403e-08
6.8256e-08
4.0627e-08
7.05674e-08
3.98875e-08
7.28594e-08
3.91218e-08
7.51311e-08
3.83301e-08
7.73814e-08
3.75124e-08
7.96095e-08
3.66687e-08
8.18142e-08
3.57992e-08
8.39945e-08
3.4904e-08
8.61492e-08
3.39831e-08
8.82773e-08
3.30367e-08
9.03775e-08
3.20648e-08
9.24486e-08
3.10677e-08
9.44895e-08
3.00454e-08
9.64989e-08
2.89982e-08
9.84755e-08
2.79261e-08
1.00418e-07
2.68294e-08
1.02325e-07
2.57083e-08
1.04195e-07
2.45629e-08
1.06027e-07
2.33936e-08
1.07819e-07
2.22005e-08
1.0957e-07
2.0984e-08
1.11278e-07
1.97443e-08
1.12942e-07
1.84817e-08
1.1456e-07
1.71966e-08
1.16131e-07
1.58893e-08
1.17653e-07
1.45603e-08
1.19124e-07
1.32099e-08
1.20544e-07
1.18386e-08
1.2191e-07
1.04468e-08
1.23219e-07
9.03505e-09
1.24472e-07
7.60393e-09
1.25666e-07
6.15398e-09
1.26798e-07
4.68578e-09
1.27868e-07
3.19988e-09
1.28874e-07
1.69663e-09
1.29816e-07
1.73546e-10
1.30683e-07
-1.36074e-09
1.3148e-07
-2.90391e-09
1.32204e-07
-4.46274e-09
1.32853e-07
-6.03435e-09
1.33424e-07
-7.61714e-09
1.33914e-07
-9.20984e-09
1.34322e-07
-1.08115e-08
1.34644e-07
-1.2421e-08
1.34879e-07
-1.40375e-08
1.35024e-07
-1.56602e-08
1.35076e-07
-1.7288e-08
1.35033e-07
-1.89202e-08
1.34893e-07
-2.05557e-08
1.34652e-07
-2.21936e-08
1.3431e-07
-2.38329e-08
1.33863e-07
-2.54724e-08
1.33308e-07
-2.71112e-08
1.32643e-07
-2.87479e-08
1.31866e-07
-3.03815e-08
1.30974e-07
-3.20106e-08
1.29965e-07
-3.36338e-08
1.28834e-07
-3.52495e-08
1.27579e-07
-3.68561e-08
1.26196e-07
-3.84512e-08
1.2468e-07
-4.00319e-08
1.23022e-07
-4.15938e-08
1.21213e-07
-4.31302e-08
1.19237e-07
-4.46296e-08
1.17066e-07
-4.60722e-08
1.14659e-07
-4.74232e-08
1.11946e-07
-4.86217e-08
1.08826e-07
-4.95647e-08
1.05162e-07
-5.00909e-08
1.00803e-07
-4.99848e-08
-4.90652e-08
9.56395e-08
1.98634e-10
-5.02627e-10
9.50332e-10
7.53351e-09
2.19471e-09
1.81322e-08
3.80407e-09
2.78388e-08
5.65565e-09
3.53365e-08
7.65599e-09
4.05114e-08
9.74204e-09
4.37751e-08
1.18743e-08
4.56648e-08
1.40294e-08
4.66528e-08
1.61937e-08
4.70872e-08
1.83598e-08
4.71972e-08
2.05235e-08
4.71214e-08
2.26823e-08
4.69381e-08
2.48348e-08
4.66891e-08
2.698e-08
4.63956e-08
2.91171e-08
4.60675e-08
3.12455e-08
4.57097e-08
3.33647e-08
4.53243e-08
3.54741e-08
4.49121e-08
3.75733e-08
4.44736e-08
3.96617e-08
4.4009e-08
4.17389e-08
4.35183e-08
4.38044e-08
4.30016e-08
4.58575e-08
4.24591e-08
4.78976e-08
4.18906e-08
4.99239e-08
4.12964e-08
5.19357e-08
4.06765e-08
5.39322e-08
4.00308e-08
5.59129e-08
3.93597e-08
5.78768e-08
3.8663e-08
5.98233e-08
3.79409e-08
6.17517e-08
3.71935e-08
6.3661e-08
3.64208e-08
6.55505e-08
3.5623e-08
6.74191e-08
3.48002e-08
6.92661e-08
3.39524e-08
7.10903e-08
3.30798e-08
7.28909e-08
3.21825e-08
7.46668e-08
3.12607e-08
7.64171e-08
3.03145e-08
7.81407e-08
2.9344e-08
7.98367e-08
2.83494e-08
8.15039e-08
2.73309e-08
8.31414e-08
2.62887e-08
8.47479e-08
2.5223e-08
8.63223e-08
2.4134e-08
8.78636e-08
2.30219e-08
8.93705e-08
2.18869e-08
9.08418e-08
2.07294e-08
9.22765e-08
1.95496e-08
9.36732e-08
1.83478e-08
9.50308e-08
1.71242e-08
9.63482e-08
1.58794e-08
9.76241e-08
1.46135e-08
9.88576e-08
1.3327e-08
1.00047e-07
1.20203e-08
1.01192e-07
1.06938e-08
1.02291e-07
9.34808e-09
1.03342e-07
7.98363e-09
1.04345e-07
6.60102e-09
1.05298e-07
5.20086e-09
1.062e-07
3.78382e-09
1.07049e-07
2.35055e-09
1.07844e-07
9.0151e-10
1.08583e-07
-5.6549e-10
1.0926e-07
-2.03764e-09
1.0988e-07
-3.52385e-09
1.10439e-07
-5.02214e-09
1.10935e-07
-6.53071e-09
1.11367e-07
-8.04826e-09
1.1173e-07
-9.57367e-09
1.12025e-07
-1.11059e-08
1.12247e-07
-1.26439e-08
1.12396e-07
-1.41869e-08
1.1247e-07
-1.57338e-08
1.12465e-07
-1.72838e-08
1.12381e-07
-1.88361e-08
1.12215e-07
-2.03895e-08
1.11964e-07
-2.19434e-08
1.11628e-07
-2.34966e-08
1.11204e-07
-2.50482e-08
1.1069e-07
-2.65972e-08
1.10085e-07
-2.81426e-08
1.09386e-07
-2.96833e-08
1.08594e-07
-3.12181e-08
1.07706e-07
-3.27458e-08
1.06722e-07
-3.4265e-08
1.0564e-07
-3.57739e-08
1.04459e-07
-3.72702e-08
1.03177e-07
-3.87503e-08
1.01792e-07
-4.02084e-08
1.00296e-07
-4.16346e-08
9.86779e-08
-4.30116e-08
9.69141e-08
-4.43086e-08
9.49645e-08
-4.54734e-08
9.27618e-08
-4.6419e-08
9.02072e-08
-4.70102e-08
8.71733e-08
-4.70573e-08
8.35337e-08
-4.63452e-08
-4.47494e-08
7.92176e-08
1.5908e-10
-6.61917e-10
7.69319e-10
6.92314e-09
1.78565e-09
1.71159e-08
3.10602e-09
2.65186e-08
4.63047e-09
3.38124e-08
6.2818e-09
3.88604e-08
8.00713e-09
4.20501e-08
9.77283e-09
4.38993e-08
1.15586e-08
4.48672e-08
1.33524e-08
4.52933e-08
1.51477e-08
4.54017e-08
1.69406e-08
4.53283e-08
1.87289e-08
4.51496e-08
2.05115e-08
4.49066e-08
2.22873e-08
4.46198e-08
2.40559e-08
4.42992e-08
2.58165e-08
4.39494e-08
2.75686e-08
4.35724e-08
2.93117e-08
4.31691e-08
3.10454e-08
4.27399e-08
3.27692e-08
4.22851e-08
3.44826e-08
4.18048e-08
3.61852e-08
4.1299e-08
3.78763e-08
4.07679e-08
3.95555e-08
4.02115e-08
4.1222e-08
3.96299e-08
4.28753e-08
3.90233e-08
4.45147e-08
3.83916e-08
4.61395e-08
3.7735e-08
4.77491e-08
3.70536e-08
4.93427e-08
3.63474e-08
5.09197e-08
3.56167e-08
5.24793e-08
3.48614e-08
5.40206e-08
3.40818e-08
5.55429e-08
3.3278e-08
5.70453e-08
3.245e-08
5.8527e-08
3.15981e-08
5.99871e-08
3.07223e-08
6.14248e-08
2.98229e-08
6.28392e-08
2.88999e-08
6.42295e-08
2.79536e-08
6.55947e-08
2.69842e-08
6.69339e-08
2.59918e-08
6.82462e-08
2.49766e-08
6.95306e-08
2.39388e-08
7.07861e-08
2.28787e-08
7.20118e-08
2.17964e-08
7.32066e-08
2.06923e-08
7.43696e-08
1.95665e-08
7.54999e-08
1.84194e-08
7.65965e-08
1.72512e-08
7.76585e-08
1.60621e-08
7.86852e-08
1.48526e-08
7.96756e-08
1.3623e-08
8.0629e-08
1.23735e-08
8.15447e-08
1.11045e-08
8.24219e-08
9.81652e-09
8.326e-08
8.50989e-09
8.40584e-08
7.18511e-09
8.48166e-08
5.84269e-09
8.55341e-08
4.48318e-09
8.62106e-08
3.10718e-09
8.68456e-08
1.71525e-09
8.74412e-08
3.05666e-10
8.79901e-08
-1.11459e-09
8.84909e-08
-2.53873e-09
8.89434e-08
-3.97661e-09
8.93453e-08
-5.42434e-09
8.96948e-08
-6.88039e-09
8.99898e-08
-8.34348e-09
9.02283e-08
-9.81249e-09
9.04085e-08
-1.12864e-08
9.05285e-08
-1.27642e-08
9.05864e-08
-1.4245e-08
9.05802e-08
-1.57279e-08
9.05083e-08
-1.72121e-08
9.03689e-08
-1.86967e-08
9.01603e-08
-2.01811e-08
8.98811e-08
-2.16643e-08
8.95303e-08
-2.31458e-08
8.91067e-08
-2.46247e-08
8.86098e-08
-2.61004e-08
8.80391e-08
-2.75719e-08
8.73943e-08
-2.90386e-08
8.66757e-08
-3.04995e-08
8.58836e-08
-3.19538e-08
8.5019e-08
-3.34003e-08
8.40829e-08
-3.48377e-08
8.30765e-08
-3.62637e-08
8.20006e-08
-3.76744e-08
8.08552e-08
-3.90629e-08
7.9637e-08
-4.04162e-08
7.83365e-08
-4.17108e-08
7.69334e-08
-4.29055e-08
7.53904e-08
-4.39304e-08
7.36458e-08
-4.4674e-08
7.16075e-08
-4.49718e-08
6.91623e-08
-4.46121e-08
6.62041e-08
-4.33866e-08
-4.12277e-08
6.26827e-08
1.23855e-10
-7.85885e-10
6.00437e-10
6.44642e-09
1.39897e-09
1.63173e-08
2.44056e-09
2.5477e-08
3.64709e-09
3.26059e-08
4.95744e-09
3.755e-08
6.32915e-09
4.06783e-08
7.73476e-09
4.24935e-08
9.15732e-09
4.34444e-08
1.05868e-08
4.38636e-08
1.20173e-08
4.39711e-08
1.34455e-08
4.39e-08
1.48696e-08
4.37256e-08
1.62882e-08
4.3488e-08
1.77007e-08
4.32073e-08
1.91065e-08
4.28933e-08
2.05051e-08
4.25506e-08
2.18961e-08
4.21811e-08
2.32793e-08
4.17857e-08
2.46541e-08
4.1365e-08
2.60202e-08
4.09189e-08
2.73773e-08
4.04478e-08
2.87246e-08
3.99518e-08
3.00619e-08
3.94308e-08
3.13884e-08
3.88851e-08
3.27037e-08
3.83147e-08
3.40071e-08
3.77198e-08
3.52981e-08
3.71004e-08
3.65761e-08
3.64568e-08
3.78406e-08
3.57889e-08
3.9091e-08
3.50969e-08
4.03266e-08
3.4381e-08
4.15467e-08
3.36413e-08
4.27507e-08
3.28779e-08
4.39379e-08
3.20909e-08
4.51074e-08
3.12805e-08
4.62587e-08
3.04468e-08
4.73909e-08
2.95901e-08
4.85034e-08
2.87103e-08
4.95955e-08
2.78078e-08
5.06663e-08
2.68828e-08
5.17151e-08
2.59353e-08
5.27411e-08
2.49657e-08
5.37434e-08
2.39741e-08
5.47214e-08
2.29608e-08
5.56742e-08
2.19259e-08
5.66009e-08
2.08697e-08
5.75008e-08
1.97924e-08
5.83731e-08
1.86942e-08
5.92171e-08
1.75754e-08
6.0032e-08
1.64362e-08
6.08174e-08
1.52768e-08
6.15725e-08
1.40975e-08
6.22969e-08
1.28985e-08
6.29903e-08
1.168e-08
6.36524e-08
1.04423e-08
6.42832e-08
9.18569e-09
6.48825e-08
7.91041e-09
6.54508e-08
6.6168e-09
6.59882e-08
5.30519e-09
6.64953e-08
3.97596e-09
6.69728e-08
2.62959e-09
6.7421e-08
1.26695e-09
6.78286e-08
-1.01932e-10
6.82086e-08
-1.49467e-09
6.85584e-08
-2.88853e-09
6.8872e-08
-4.29033e-09
6.91471e-08
-5.69949e-09
6.93818e-08
-7.11509e-09
6.95742e-08
-8.53593e-09
6.97226e-08
-9.96088e-09
6.98251e-08
-1.13889e-08
6.988e-08
-1.28191e-08
6.98855e-08
-1.42504e-08
6.98396e-08
-1.5682e-08
6.97406e-08
-1.71131e-08
6.95867e-08
-1.85428e-08
6.93764e-08
-1.99707e-08
6.91082e-08
-2.13962e-08
6.87813e-08
-2.28189e-08
6.8395e-08
-2.42385e-08
6.79487e-08
-2.56541e-08
6.7442e-08
-2.70653e-08
6.68746e-08
-2.84713e-08
6.62462e-08
-2.98712e-08
6.55565e-08
-3.12642e-08
6.48053e-08
-3.26493e-08
6.39928e-08
-3.40253e-08
6.31188e-08
-3.53897e-08
6.21827e-08
-3.67384e-08
6.11828e-08
-3.80632e-08
6.01152e-08
-3.93486e-08
5.89708e-08
-4.05663e-08
5.7732e-08
-4.16667e-08
5.63683e-08
-4.25669e-08
5.48322e-08
-4.31379e-08
5.30566e-08
-4.31963e-08
5.09639e-08
-4.25194e-08
4.84918e-08
-4.09148e-08
-3.83712e-08
4.56356e-08
9.54386e-11
-8.81375e-10
4.51479e-10
6.0898e-09
1.04319e-09
1.57252e-08
1.81561e-09
2.47044e-08
2.71264e-09
3.17089e-08
3.68946e-09
3.65734e-08
4.71418e-09
3.96538e-08
5.76563e-09
4.14423e-08
6.83041e-09
4.23796e-08
7.90039e-09
4.27935e-08
8.97081e-09
4.29004e-08
1.00389e-08
4.28316e-08
1.11033e-08
4.2661e-08
1.21629e-08
4.24281e-08
1.32173e-08
4.21528e-08
1.4266e-08
4.18446e-08
1.53087e-08
4.1508e-08
1.6345e-08
4.11448e-08
1.73747e-08
4.07562e-08
1.83974e-08
4.03424e-08
1.94128e-08
3.99037e-08
2.04204e-08
3.94403e-08
2.14199e-08
3.89523e-08
2.24109e-08
3.84399e-08
2.33929e-08
3.79031e-08
2.43654e-08
3.73422e-08
2.53279e-08
3.67572e-08
2.628e-08
3.61484e-08
2.7221e-08
3.55157e-08
2.81505e-08
3.48594e-08
2.90679e-08
3.41796e-08
2.99726e-08
3.34765e-08
3.08639e-08
3.27501e-08
3.17413e-08
3.20005e-08
3.26042e-08
3.12281e-08
3.34519e-08
3.04328e-08
3.42837e-08
2.96149e-08
3.50992e-08
2.87745e-08
3.58976e-08
2.79118e-08
3.66783e-08
2.70271e-08
3.74407e-08
2.61205e-08
3.8184e-08
2.51922e-08
3.89074e-08
2.42424e-08
3.96102e-08
2.32715e-08
4.02915e-08
2.22796e-08
4.09505e-08
2.1267e-08
4.15864e-08
2.02338e-08
4.21983e-08
1.91805e-08
4.27854e-08
1.81071e-08
4.33468e-08
1.70139e-08
4.38818e-08
1.59011e-08
4.43897e-08
1.47688e-08
4.48699e-08
1.36172e-08
4.53218e-08
1.24465e-08
4.57452e-08
1.12565e-08
4.614e-08
1.00474e-08
4.65066e-08
8.81901e-09
4.68459e-08
7.57109e-09
4.71595e-08
6.30315e-09
4.74504e-08
5.01423e-09
4.77239e-08
3.70247e-09
4.79889e-08
2.36451e-09
4.82618e-08
9.9395e-10
4.85695e-08
-4.09738e-10
4.88413e-08
-1.76647e-09
4.90839e-08
-3.13113e-09
4.92951e-08
-4.50154e-09
4.94734e-08
-5.8777e-09
4.9617e-08
-7.25869e-09
4.97244e-08
-8.64321e-09
4.97937e-08
-1.00301e-08
4.98233e-08
-1.14185e-08
4.98119e-08
-1.28076e-08
4.97581e-08
-1.41966e-08
4.96607e-08
-1.55846e-08
4.95184e-08
-1.69707e-08
4.93299e-08
-1.83544e-08
4.90945e-08
-1.97353e-08
4.88117e-08
-2.11134e-08
4.84813e-08
-2.24885e-08
4.81032e-08
-2.38602e-08
4.7677e-08
-2.52278e-08
4.72017e-08
-2.659e-08
4.6676e-08
-2.79454e-08
4.60976e-08
-2.92926e-08
4.54636e-08
-3.06301e-08
4.47705e-08
-3.19562e-08
4.40143e-08
-3.32689e-08
4.319e-08
-3.45654e-08
4.22921e-08
-3.58403e-08
4.13133e-08
-3.70843e-08
4.02448e-08
-3.82801e-08
3.90753e-08
-3.93968e-08
3.77902e-08
-4.03813e-08
3.63705e-08
-4.1147e-08
3.47935e-08
-4.15611e-08
3.30372e-08
-4.14397e-08
3.10871e-08
-4.05691e-08
2.89572e-08
-3.8785e-08
-3.61236e-08
2.67098e-08
6.47245e-11
-9.4605e-10
2.96674e-10
5.85808e-09
6.90318e-10
1.53318e-08
1.20597e-09
2.41889e-08
1.80607e-09
3.11088e-08
2.4608e-09
3.59186e-08
3.14858e-09
3.89659e-08
3.8547e-09
4.0736e-08
4.56961e-09
4.16646e-08
5.28742e-09
4.20756e-08
6.00465e-09
4.21832e-08
6.71936e-09
4.21169e-08
7.43051e-09
4.195e-08
8.13759e-09
4.17212e-08
8.84032e-09
4.14502e-08
9.53858e-09
4.11465e-08
1.02322e-08
4.08144e-08
1.09212e-08
4.04559e-08
1.16053e-08
4.00721e-08
1.22844e-08
3.96633e-08
1.29583e-08
3.92298e-08
1.36267e-08
3.87719e-08
1.42893e-08
3.82898e-08
1.49457e-08
3.77835e-08
1.55956e-08
3.72533e-08
1.62385e-08
3.66994e-08
1.6874e-08
3.61219e-08
1.75015e-08
3.5521e-08
1.81205e-08
3.48968e-08
1.87305e-08
3.42495e-08
1.9331e-08
3.35792e-08
1.99214e-08
3.2886e-08
2.05012e-08
3.21702e-08
2.107e-08
3.14317e-08
2.16274e-08
3.06707e-08
2.21729e-08
2.98873e-08
2.27061e-08
2.90817e-08
2.32267e-08
2.8254e-08
2.37342e-08
2.74044e-08
2.42284e-08
2.65331e-08
2.47087e-08
2.56404e-08
2.51747e-08
2.47265e-08
2.56258e-08
2.37916e-08
2.60614e-08
2.28361e-08
2.64809e-08
2.18602e-08
2.68836e-08
2.08643e-08
2.72688e-08
1.98486e-08
2.76357e-08
1.88135e-08
2.79838e-08
1.7759e-08
2.83121e-08
1.66855e-08
2.86203e-08
1.5593e-08
2.89076e-08
1.44816e-08
2.91736e-08
1.33513e-08
2.94181e-08
1.2202e-08
2.96412e-08
1.10335e-08
2.98428e-08
9.84573e-09
3.00231e-08
8.63875e-09
3.01812e-08
7.41287e-09
3.03158e-08
6.16856e-09
3.04239e-08
4.90608e-09
3.05031e-08
3.62332e-09
3.05602e-08
2.30748e-09
3.06494e-08
9.04866e-10
3.07711e-08
-5.31363e-10
3.09239e-08
-1.91921e-09
3.10103e-08
-3.21754e-09
3.10467e-08
-4.53803e-09
3.10477e-08
-5.8787e-09
3.10181e-08
-7.2293e-09
3.096e-08
-8.58522e-09
3.08742e-08
-9.9445e-09
3.07619e-08
-1.13065e-08
3.06248e-08
-1.26707e-08
3.04641e-08
-1.40362e-08
3.02809e-08
-1.54016e-08
3.00754e-08
-1.67654e-08
2.98475e-08
-1.81266e-08
2.9597e-08
-1.94849e-08
2.93236e-08
-2.08401e-08
2.9027e-08
-2.2192e-08
2.87062e-08
-2.35395e-08
2.8359e-08
-2.48808e-08
2.79825e-08
-2.62135e-08
2.7572e-08
-2.75351e-08
2.71221e-08
-2.88427e-08
2.66257e-08
-3.01337e-08
2.60746e-08
-3.14051e-08
2.54593e-08
-3.26537e-08
2.47687e-08
-3.38748e-08
2.39901e-08
-3.50617e-08
2.31092e-08
-3.62032e-08
2.21102e-08
-3.7281e-08
2.09775e-08
-3.8264e-08
1.96977e-08
-3.91015e-08
1.8264e-08
-3.9713e-08
1.66814e-08
-3.99784e-08
1.49765e-08
-3.97346e-08
1.32063e-08
-3.87987e-08
1.14649e-08
-3.70434e-08
-3.45301e-08
9.87138e-09
6.57713e-11
2.40069e-10
4.83935e-10
7.78431e-10
1.10821e-09
1.46153e-09
1.82983e-09
2.20706e-09
2.58916e-09
2.97351e-09
3.35852e-09
3.74328e-09
4.12732e-09
4.51041e-09
4.89245e-09
5.27341e-09
5.65326e-09
6.03198e-09
6.40952e-09
6.78579e-09
7.1607e-09
7.53409e-09
7.90582e-09
8.27568e-09
8.64344e-09
9.00884e-09
9.37159e-09
9.73137e-09
1.00878e-08
1.04407e-08
1.07895e-08
1.1134e-08
1.14739e-08
1.18087e-08
1.21383e-08
1.24623e-08
1.27806e-08
1.30928e-08
1.33986e-08
1.36977e-08
1.39898e-08
1.42743e-08
1.45506e-08
1.4818e-08
1.50756e-08
1.53223e-08
1.55569e-08
1.57778e-08
1.59834e-08
1.61716e-08
1.63402e-08
1.64863e-08
1.66067e-08
1.66976e-08
1.67544e-08
1.67715e-08
1.67425e-08
1.66606e-08
1.65182e-08
1.63087e-08
1.60298e-08
1.56959e-08
1.5397e-08
1.51786e-08
1.48904e-08
1.45202e-08
1.41141e-08
1.37005e-08
1.32924e-08
1.28962e-08
1.25159e-08
1.21534e-08
1.18102e-08
1.14864e-08
1.11814e-08
1.0894e-08
1.0622e-08
1.03632e-08
1.01149e-08
9.87444e-09
9.63845e-09
9.40319e-09
9.1643e-09
8.91682e-09
8.65523e-09
8.37346e-09
8.06477e-09
7.72165e-09
7.33562e-09
6.8973e-09
6.39651e-09
5.82288e-09
5.16692e-09
4.4226e-09
3.59158e-09
2.68849e-09
1.7472e-09
8.28579e-10
1.58068e-11
-5.96503e-10
-9.76516e-09
-1.11302e-09
-9.57535e-09
-1.17439e-09
-9.37739e-09
-1.23442e-09
-9.17167e-09
-1.29227e-09
-8.95867e-09
-1.34713e-09
-8.73895e-09
-1.39832e-09
-8.51314e-09
-1.44533e-09
-8.28188e-09
-1.48782e-09
-8.04586e-09
-1.5256e-09
-7.80572e-09
-1.55866e-09
-7.5621e-09
-1.58709e-09
-7.31557e-09
-1.61112e-09
-7.06665e-09
-1.63107e-09
-6.81582e-09
-1.64732e-09
-6.5635e-09
-1.66027e-09
-6.31003e-09
-1.67036e-09
-6.0557e-09
-1.67802e-09
-5.80076e-09
-1.68364e-09
-5.54537e-09
-1.68759e-09
-5.28968e-09
-1.69021e-09
-5.03379e-09
-1.69178e-09
-4.77776e-09
-1.69254e-09
-4.52166e-09
-1.6927e-09
-4.26552e-09
-1.69243e-09
-4.00935e-09
-1.69184e-09
-3.75316e-09
-1.69103e-09
-3.49692e-09
-1.69008e-09
-3.24063e-09
-1.68904e-09
-2.98425e-09
-1.68795e-09
-2.72778e-09
-1.68683e-09
-2.47124e-09
-1.6857e-09
-2.21462e-09
-1.68456e-09
-1.95795e-09
-1.68342e-09
-1.70123e-09
-1.68228e-09
-1.44444e-09
-1.68114e-09
-1.18756e-09
-1.68e-09
-9.30573e-10
-1.67887e-09
-6.73456e-10
-1.67774e-09
-4.16214e-10
-1.67662e-09
-1.5887e-10
-1.6755e-09
9.85476e-11
-1.67441e-09
3.56005e-10
-1.67333e-09
6.1348e-10
-1.67229e-09
8.70957e-10
-1.67128e-09
1.12843e-09
-1.67032e-09
1.3859e-09
-1.6694e-09
1.64335e-09
-1.66853e-09
1.90075e-09
-1.66771e-09
2.15809e-09
-1.66695e-09
2.41532e-09
-1.66625e-09
2.67242e-09
-1.6656e-09
2.92935e-09
-1.66501e-09
3.18608e-09
-1.66447e-09
3.44262e-09
-1.66398e-09
3.69893e-09
-1.66352e-09
3.95501e-09
-1.6631e-09
4.21085e-09
-1.66271e-09
4.46643e-09
-1.66233e-09
4.72174e-09
-1.66197e-09
4.97676e-09
-1.66163e-09
5.2315e-09
-1.66128e-09
5.48593e-09
-1.66094e-09
5.74007e-09
-1.66059e-09
5.99392e-09
-1.66024e-09
6.24748e-09
-1.65988e-09
6.50077e-09
-1.65951e-09
6.75379e-09
-1.65913e-09
7.00655e-09
-1.65874e-09
7.25906e-09
-1.65835e-09
7.51133e-09
-1.65794e-09
7.76336e-09
-1.65752e-09
8.01514e-09
-1.65708e-09
8.26669e-09
-1.65661e-09
8.51801e-09
-1.65608e-09
8.76908e-09
-1.65546e-09
9.01993e-09
-1.6547e-09
9.27053e-09
-1.65373e-09
9.52088e-09
-1.65246e-09
9.77095e-09
-1.65076e-09
1.00207e-08
-1.64848e-09
1.027e-08
-1.64542e-09
1.05189e-08
-1.64134e-09
1.0767e-08
-1.63596e-09
1.10144e-08
-1.62895e-09
1.12606e-08
-1.61995e-09
1.15055e-08
-1.60856e-09
1.17486e-08
-1.59436e-09
1.19896e-08
-1.57692e-09
1.22279e-08
-1.55583e-09
1.24631e-08
-1.53071e-09
1.26946e-08
-1.50124e-09
1.29216e-08
-1.46718e-09
1.31437e-08
-1.42844e-09
1.33601e-08
-1.38501e-09
1.35705e-08
-1.33708e-09
1.37738e-08
-1.28499e-09
1.39699e-08
-1.22923e-09
1.41578e-08
-1.17047e-09
1.43375e-08
-1.10952e-09
-1.04717e-09
1.45082e-08
-9.84413e-09
-1.30397e-09
-9.64737e-09
-1.37122e-09
-9.44485e-09
-1.43699e-09
-9.2368e-09
-1.50036e-09
-9.02351e-09
-1.56045e-09
-8.80528e-09
-1.61655e-09
-8.58248e-09
-1.66813e-09
-8.35546e-09
-1.71482e-09
-8.12459e-09
-1.75644e-09
-7.89023e-09
-1.79297e-09
-7.65274e-09
-1.82452e-09
-7.41243e-09
-1.85135e-09
-7.16963e-09
-1.8738e-09
-6.92461e-09
-1.89225e-09
-6.67762e-09
-1.90717e-09
-6.4289e-09
-1.91899e-09
-6.17863e-09
-1.92819e-09
-5.927e-09
-1.93517e-09
-5.67414e-09
-1.94034e-09
-5.42019e-09
-1.94405e-09
-5.16526e-09
-1.94661e-09
-4.90943e-09
-1.94827e-09
-4.6528e-09
-1.94925e-09
-4.39543e-09
-1.94971e-09
-4.13737e-09
-1.94981e-09
-3.87868e-09
-1.94965e-09
-3.6194e-09
-1.9493e-09
-3.35956e-09
-1.94882e-09
-3.0992e-09
-1.94826e-09
-2.83834e-09
-1.94764e-09
-2.577e-09
-1.94699e-09
-2.31521e-09
-1.9463e-09
-2.05299e-09
-1.9456e-09
-1.79034e-09
-1.94489e-09
-1.52729e-09
-1.94416e-09
-1.26383e-09
-1.94342e-09
-9.99995e-10
-1.94266e-09
-7.35787e-10
-1.9419e-09
-4.71227e-10
-1.94112e-09
-2.06338e-10
-1.94033e-09
5.88495e-11
-1.93953e-09
3.24305e-10
-1.93872e-09
5.89993e-10
-1.93791e-09
8.55875e-10
-1.9371e-09
1.12191e-09
-1.93628e-09
1.38805e-09
-1.93547e-09
1.65425e-09
-1.93467e-09
1.92046e-09
-1.93387e-09
2.18663e-09
-1.93307e-09
2.4527e-09
-1.93228e-09
2.71862e-09
-1.9315e-09
2.98433e-09
-1.93072e-09
3.2498e-09
-1.92995e-09
3.51498e-09
-1.92918e-09
3.77983e-09
-1.9284e-09
4.0443e-09
-1.92762e-09
4.30838e-09
-1.92684e-09
4.57203e-09
-1.92604e-09
4.83522e-09
-1.92523e-09
5.09794e-09
-1.92441e-09
5.36017e-09
-1.92357e-09
5.62189e-09
-1.92272e-09
5.8831e-09
-1.92184e-09
6.14377e-09
-1.92095e-09
6.4039e-09
-1.92004e-09
6.66348e-09
-1.91911e-09
6.92249e-09
-1.91816e-09
7.18092e-09
-1.9172e-09
7.43877e-09
-1.91622e-09
7.696e-09
-1.91521e-09
7.95259e-09
-1.91418e-09
8.20853e-09
-1.91311e-09
8.46379e-09
-1.91198e-09
8.71833e-09
-1.91077e-09
8.97212e-09
-1.90943e-09
9.22512e-09
-1.90791e-09
9.4773e-09
-1.90612e-09
9.72859e-09
-1.90398e-09
9.97894e-09
-1.90133e-09
1.02283e-08
-1.89802e-09
1.04765e-08
-1.89383e-09
1.07234e-08
-1.8885e-09
1.0969e-08
-1.88173e-09
1.1213e-08
-1.87318e-09
1.14553e-08
-1.86245e-09
1.16956e-08
-1.84911e-09
1.19338e-08
-1.83273e-09
1.21695e-08
-1.81283e-09
1.24024e-08
-1.78898e-09
1.26323e-08
-1.76077e-09
1.28588e-08
-1.72787e-09
1.30815e-08
-1.69003e-09
1.33e-08
-1.64711e-09
1.3514e-08
-1.59915e-09
1.3723e-08
-1.54632e-09
1.39268e-08
-1.48896e-09
1.41251e-08
-1.42761e-09
1.43175e-08
-1.36298e-09
1.4504e-08
-1.29593e-09
-1.22739e-09
1.4684e-08
-9.78034e-09
-1.5008e-09
-9.57978e-09
-1.57196e-09
-9.3754e-09
-1.64153e-09
-9.16731e-09
-1.70859e-09
-8.9556e-09
-1.77228e-09
-8.74039e-09
-1.83186e-09
-8.52181e-09
-1.88679e-09
-8.29999e-09
-1.9367e-09
-8.07507e-09
-1.98141e-09
-7.84719e-09
-2.02088e-09
-7.61648e-09
-2.05524e-09
-7.38311e-09
-2.08474e-09
-7.14719e-09
-2.10971e-09
-6.90888e-09
-2.13056e-09
-6.66829e-09
-2.14774e-09
-6.42557e-09
-2.1617e-09
-6.18082e-09
-2.17291e-09
-5.93418e-09
-2.18179e-09
-5.68575e-09
-2.18875e-09
-5.43564e-09
-2.19414e-09
-5.18395e-09
-2.19827e-09
-4.93077e-09
-2.20141e-09
-4.67621e-09
-2.20378e-09
-4.42034e-09
-2.20556e-09
-4.16325e-09
-2.20688e-09
-3.90502e-09
-2.20787e-09
-3.64571e-09
-2.2086e-09
-3.38539e-09
-2.20914e-09
-3.12413e-09
-2.20953e-09
-2.86199e-09
-2.20981e-09
-2.59902e-09
-2.21e-09
-2.33527e-09
-2.21011e-09
-2.07078e-09
-2.21015e-09
-1.8056e-09
-2.21014e-09
-1.53978e-09
-2.21006e-09
-1.27334e-09
-2.20993e-09
-1.00633e-09
-2.20974e-09
-7.38788e-10
-2.2095e-09
-4.70753e-10
-2.20921e-09
-2.02268e-10
-2.20886e-09
6.66237e-11
-2.20846e-09
3.35875e-10
-2.208e-09
6.05436e-10
-2.20749e-09
8.75255e-10
-2.20693e-09
1.14528e-09
-2.20632e-09
1.41545e-09
-2.20565e-09
1.6857e-09
-2.20494e-09
1.95599e-09
-2.20418e-09
2.22625e-09
-2.20337e-09
2.49643e-09
-2.2025e-09
2.76646e-09
-2.20159e-09
3.0363e-09
-2.20063e-09
3.30589e-09
-2.19961e-09
3.57519e-09
-2.19854e-09
3.84414e-09
-2.19742e-09
4.11271e-09
-2.19624e-09
4.38085e-09
-2.19501e-09
4.64852e-09
-2.19372e-09
4.91568e-09
-2.19238e-09
5.18229e-09
-2.19098e-09
5.44831e-09
-2.18952e-09
5.7137e-09
-2.18801e-09
5.97842e-09
-2.18644e-09
6.24244e-09
-2.18482e-09
6.50571e-09
-2.18314e-09
6.76819e-09
-2.18141e-09
7.02985e-09
-2.17962e-09
7.29064e-09
-2.17778e-09
7.55053e-09
-2.17588e-09
7.80946e-09
-2.17392e-09
8.06739e-09
-2.17188e-09
8.32427e-09
-2.16975e-09
8.58006e-09
-2.16751e-09
8.83469e-09
-2.16513e-09
9.08809e-09
-2.16256e-09
9.3402e-09
-2.15975e-09
9.59095e-09
-2.1566e-09
9.84025e-09
-2.15301e-09
1.0088e-08
-2.14884e-09
1.03341e-08
-2.14392e-09
1.05785e-08
-2.13801e-09
1.08211e-08
-2.13086e-09
1.10618e-08
-2.12216e-09
1.13004e-08
-2.11155e-09
1.15368e-08
-2.09864e-09
1.17709e-08
-2.08299e-09
1.20026e-08
-2.06414e-09
1.22316e-08
-2.04164e-09
1.24579e-08
-2.01503e-09
1.26812e-08
-1.98391e-09
1.29015e-08
-1.94794e-09
1.31185e-08
-1.90686e-09
1.33322e-08
-1.86056e-09
1.35424e-08
-1.80904e-09
1.37489e-08
-1.75251e-09
1.39515e-08
-1.69133e-09
1.41501e-08
-1.62602e-09
1.43445e-08
-1.55732e-09
1.45347e-08
-1.48609e-09
-1.41325e-09
1.4721e-08
-9.83434e-09
-1.70391e-09
-9.62817e-09
-1.77812e-09
-9.41898e-09
-1.8507e-09
-9.20681e-09
-1.92074e-09
-8.9917e-09
-1.98735e-09
-8.77371e-09
-2.0498e-09
-8.5529e-09
-2.10754e-09
-8.32931e-09
-2.1602e-09
-8.10303e-09
-2.20759e-09
-7.87412e-09
-2.24968e-09
-7.64266e-09
-2.28659e-09
-7.40872e-09
-2.31855e-09
-7.17239e-09
-2.3459e-09
-6.93375e-09
-2.36905e-09
-6.69289e-09
-2.38844e-09
-6.4499e-09
-2.40453e-09
-6.20486e-09
-2.41778e-09
-5.95787e-09
-2.42862e-09
-5.709e-09
-2.43745e-09
-5.45835e-09
-2.44463e-09
-5.206e-09
-2.45047e-09
-4.95203e-09
-2.45523e-09
-4.69653e-09
-2.45914e-09
-4.43956e-09
-2.46238e-09
-4.1812e-09
-2.46509e-09
-3.92153e-09
-2.46739e-09
-3.66061e-09
-2.46936e-09
-3.39852e-09
-2.47108e-09
-3.13531e-09
-2.47258e-09
-2.87104e-09
-2.4739e-09
-2.60578e-09
-2.47507e-09
-2.33959e-09
-2.47611e-09
-2.07252e-09
-2.47702e-09
-1.80464e-09
-2.47781e-09
-1.53599e-09
-2.47849e-09
-1.26663e-09
-2.47907e-09
-9.96615e-10
-2.47953e-09
-7.26004e-10
-2.47989e-09
-4.54851e-10
-2.48014e-09
-1.83208e-10
-2.48028e-09
8.88677e-11
-2.48032e-09
3.61322e-10
-2.48025e-09
6.34099e-10
-2.48007e-09
9.07143e-10
-2.47979e-09
1.1804e-09
-2.4794e-09
1.45381e-09
-2.4789e-09
1.72732e-09
-2.47829e-09
2.00088e-09
-2.47758e-09
2.27443e-09
-2.47677e-09
2.54791e-09
-2.47584e-09
2.82127e-09
-2.47481e-09
3.09445e-09
-2.47368e-09
3.3674e-09
-2.47244e-09
3.64007e-09
-2.47109e-09
3.91241e-09
-2.46964e-09
4.18435e-09
-2.46807e-09
4.45585e-09
-2.46641e-09
4.72685e-09
-2.46464e-09
4.99731e-09
-2.46276e-09
5.26716e-09
-2.46077e-09
5.53636e-09
-2.45868e-09
5.80485e-09
-2.45649e-09
6.07259e-09
-2.45419e-09
6.33952e-09
-2.45178e-09
6.60559e-09
-2.44927e-09
6.87074e-09
-2.44665e-09
7.13494e-09
-2.44393e-09
7.39813e-09
-2.44109e-09
7.66025e-09
-2.43814e-09
7.92126e-09
-2.43506e-09
8.18108e-09
-2.43186e-09
8.43968e-09
-2.4285e-09
8.69697e-09
-2.42497e-09
8.95289e-09
-2.42124e-09
9.20737e-09
-2.41725e-09
9.46034e-09
-2.41294e-09
9.71173e-09
-2.40823e-09
9.96147e-09
-2.403e-09
1.02095e-08
-2.39711e-09
1.04557e-08
-2.39038e-09
1.07e-08
-2.38258e-09
1.09423e-08
-2.37345e-09
1.11826e-08
-2.36269e-09
1.14208e-08
-2.34993e-09
1.16567e-08
-2.33477e-09
1.18903e-08
-2.31677e-09
1.21215e-08
-2.2955e-09
1.23502e-08
-2.27047e-09
1.25763e-08
-2.24125e-09
1.27997e-08
-2.20743e-09
1.30203e-08
-2.16867e-09
1.32381e-08
-2.12472e-09
1.34528e-08
-2.07546e-09
1.36646e-08
-2.02093e-09
1.38732e-08
-1.9613e-09
1.40788e-08
-1.89694e-09
1.42811e-08
-1.82842e-09
1.448e-08
-1.75644e-09
1.46755e-08
-1.6819e-09
-1.60569e-09
1.48679e-08
-1.00698e-08
-1.91624e-09
-9.85481e-09
-1.99308e-09
-9.63722e-09
-2.06827e-09
-9.41706e-09
-2.14089e-09
-9.19433e-09
-2.21006e-09
-8.96909e-09
-2.27504e-09
-8.74135e-09
-2.33527e-09
-8.51115e-09
-2.3904e-09
-8.27854e-09
-2.4402e-09
-8.04356e-09
-2.48466e-09
-7.80625e-09
-2.52389e-09
-7.56666e-09
-2.55813e-09
-7.32485e-09
-2.58771e-09
-7.08087e-09
-2.61302e-09
-6.83479e-09
-2.63452e-09
-6.58667e-09
-2.65266e-09
-6.33657e-09
-2.6679e-09
-6.08456e-09
-2.68066e-09
-5.83071e-09
-2.69134e-09
-5.57508e-09
-2.7003e-09
-5.31774e-09
-2.70786e-09
-5.05876e-09
-2.71427e-09
-4.79821e-09
-2.71977e-09
-4.53615e-09
-2.72452e-09
-4.27265e-09
-2.72869e-09
-4.00776e-09
-2.73237e-09
-3.74155e-09
-2.73566e-09
-3.47409e-09
-2.73862e-09
-3.20542e-09
-2.74131e-09
-2.93562e-09
-2.74375e-09
-2.66474e-09
-2.74598e-09
-2.39284e-09
-2.74801e-09
-2.11998e-09
-2.74986e-09
-1.84623e-09
-2.75153e-09
-1.57163e-09
-2.75303e-09
-1.29627e-09
-2.75436e-09
-1.02019e-09
-2.75553e-09
-7.43456e-10
-2.75653e-09
-4.66136e-10
-2.75736e-09
-1.88291e-10
-2.75803e-09
9.00162e-11
-2.75854e-09
3.68725e-10
-2.75888e-09
6.47773e-10
-2.75905e-09
9.271e-10
-2.75907e-09
1.20665e-09
-2.75891e-09
1.48635e-09
-2.75859e-09
1.76616e-09
-2.7581e-09
2.04602e-09
-2.75745e-09
2.32586e-09
-2.75663e-09
2.60564e-09
-2.75565e-09
2.88529e-09
-2.7545e-09
3.16476e-09
-2.75319e-09
3.44399e-09
-2.75171e-09
3.72293e-09
-2.75006e-09
4.00152e-09
-2.74825e-09
4.27969e-09
-2.74628e-09
4.55741e-09
-2.74414e-09
4.8346e-09
-2.74184e-09
5.11122e-09
-2.73937e-09
5.3872e-09
-2.73673e-09
5.6625e-09
-2.73394e-09
5.93705e-09
-2.73098e-09
6.2108e-09
-2.72785e-09
6.4837e-09
-2.72456e-09
6.75567e-09
-2.72111e-09
7.02666e-09
-2.71749e-09
7.29661e-09
-2.71371e-09
7.56546e-09
-2.70976e-09
7.83312e-09
-2.70563e-09
8.09954e-09
-2.70133e-09
8.36466e-09
-2.69682e-09
8.6284e-09
-2.69211e-09
8.8907e-09
-2.68716e-09
9.15152e-09
-2.68194e-09
9.41077e-09
-2.6764e-09
9.6684e-09
-2.67047e-09
9.92436e-09
-2.66407e-09
1.01786e-08
-2.65709e-09
1.04309e-08
-2.64937e-09
1.06814e-08
-2.64075e-09
1.093e-08
-2.631e-09
1.11765e-08
-2.61985e-09
1.14209e-08
-2.607e-09
1.16631e-08
-2.59208e-09
1.19032e-08
-2.5747e-09
1.21409e-08
-2.55443e-09
1.23764e-08
-2.53081e-09
1.26094e-08
-2.50339e-09
1.284e-08
-2.47173e-09
1.30681e-08
-2.43541e-09
1.32937e-08
-2.39412e-09
1.35167e-08
-2.34759e-09
1.37371e-08
-2.29573e-09
1.39548e-08
-2.23855e-09
1.41698e-08
-2.17625e-09
1.43821e-08
-2.1092e-09
1.45916e-08
-2.03795e-09
1.47985e-08
-1.96324e-09
1.50027e-08
-1.88594e-09
-1.80695e-09
1.52038e-08
-1.04634e-08
-2.14056e-09
-1.02365e-08
-2.21978e-09
-1.00073e-08
-2.29727e-09
-9.77587e-09
-2.37218e-09
-9.54212e-09
-2.44362e-09
-9.30611e-09
-2.51086e-09
-9.06785e-09
-2.57334e-09
-8.82738e-09
-2.63069e-09
-8.5847e-09
-2.68269e-09
-8.33986e-09
-2.72933e-09
-8.09287e-09
-2.77071e-09
-7.84378e-09
-2.80706e-09
-7.59262e-09
-2.83872e-09
-7.33941e-09
-2.86608e-09
-7.08422e-09
-2.88958e-09
-6.82707e-09
-2.90967e-09
-6.56803e-09
-2.92681e-09
-6.30714e-09
-2.94143e-09
-6.04444e-09
-2.95392e-09
-5.78e-09
-2.96463e-09
-5.51388e-09
-2.97388e-09
-5.24612e-09
-2.98193e-09
-4.9768e-09
-2.98901e-09
-4.70596e-09
-2.99528e-09
-4.43367e-09
-3.00091e-09
-4.15998e-09
-3.00599e-09
-3.88497e-09
-3.01062e-09
-3.60868e-09
-3.01486e-09
-3.33117e-09
-3.01877e-09
-3.05251e-09
-3.02237e-09
-2.77275e-09
-3.02569e-09
-2.49195e-09
-3.02875e-09
-2.21017e-09
-3.03157e-09
-1.92746e-09
-3.03415e-09
-1.6439e-09
-3.03649e-09
-1.35954e-09
-3.03861e-09
-1.07443e-09
-3.0405e-09
-7.88653e-10
-3.04216e-09
-5.02261e-10
-3.0436e-09
-2.1532e-10
-3.04481e-09
7.21047e-11
-3.0458e-09
3.59949e-10
-3.04657e-09
6.48149e-10
-3.04711e-09
9.3664e-10
-3.04742e-09
1.22536e-09
-3.04752e-09
1.51424e-09
-3.04738e-09
1.80323e-09
-3.04702e-09
2.09227e-09
-3.04643e-09
2.38128e-09
-3.04562e-09
2.67022e-09
-3.04458e-09
2.95903e-09
-3.04332e-09
3.24766e-09
-3.04183e-09
3.53603e-09
-3.04011e-09
3.8241e-09
-3.03816e-09
4.11182e-09
-3.03599e-09
4.39912e-09
-3.0336e-09
4.68594e-09
-3.03097e-09
4.97224e-09
-3.02813e-09
5.25794e-09
-3.02505e-09
5.54299e-09
-3.02176e-09
5.82733e-09
-3.01824e-09
6.1109e-09
-3.01449e-09
6.39362e-09
-3.01052e-09
6.67545e-09
-3.00633e-09
6.95631e-09
-3.00191e-09
7.23614e-09
-2.99726e-09
7.51488e-09
-2.99239e-09
7.79246e-09
-2.98729e-09
8.06883e-09
-2.98195e-09
8.34391e-09
-2.97636e-09
8.61764e-09
-2.97052e-09
8.88995e-09
-2.96441e-09
9.16078e-09
-2.95799e-09
9.43006e-09
-2.95125e-09
9.69773e-09
-2.94412e-09
9.96372e-09
-2.93654e-09
1.0228e-08
-2.92842e-09
1.04905e-08
-2.91966e-09
1.07511e-08
-2.9101e-09
1.10098e-08
-2.89958e-09
1.12666e-08
-2.88786e-09
1.15213e-08
-2.8747e-09
1.1774e-08
-2.85977e-09
1.20245e-08
-2.84273e-09
1.22728e-08
-2.82318e-09
1.2519e-08
-2.8007e-09
1.27628e-08
-2.77483e-09
1.30044e-08
-2.74512e-09
1.32437e-08
-2.71114e-09
1.34806e-08
-2.67249e-09
1.37152e-08
-2.62883e-09
1.39475e-08
-2.57994e-09
1.41773e-08
-2.5257e-09
1.44048e-08
-2.46614e-09
1.46299e-08
-2.40146e-09
1.48525e-08
-2.33202e-09
1.50728e-08
-2.25838e-09
1.52907e-08
-2.18127e-09
1.55064e-08
-2.10156e-09
-2.02012e-09
1.57194e-08
-1.09984e-08
-2.379e-09
-1.0758e-08
-2.46031e-09
-1.05155e-08
-2.53988e-09
-1.02709e-08
-2.61687e-09
-1.00242e-08
-2.69038e-09
-9.77549e-09
-2.75968e-09
-9.52469e-09
-2.82423e-09
-9.27183e-09
-2.88363e-09
-9.01692e-09
-2.9377e-09
-8.75995e-09
-2.98639e-09
-8.50094e-09
-3.02981e-09
-8.23991e-09
-3.06819e-09
-7.97687e-09
-3.10186e-09
-7.71185e-09
-3.13122e-09
-7.44486e-09
-3.15668e-09
-7.17595e-09
-3.17871e-09
-6.90515e-09
-3.19775e-09
-6.63249e-09
-3.21423e-09
-6.35802e-09
-3.22853e-09
-6.08177e-09
-3.24101e-09
-5.8038e-09
-3.25197e-09
-5.52416e-09
-3.26168e-09
-5.24289e-09
-3.27036e-09
-4.96006e-09
-3.27818e-09
-4.67571e-09
-3.2853e-09
-4.38992e-09
-3.29181e-09
-4.10273e-09
-3.29781e-09
-3.81421e-09
-3.30336e-09
-3.52442e-09
-3.30851e-09
-3.23343e-09
-3.3133e-09
-2.9413e-09
-3.31775e-09
-2.64809e-09
-3.32188e-09
-2.35387e-09
-3.32571e-09
-2.05871e-09
-3.32923e-09
-1.76266e-09
-3.33245e-09
-1.46578e-09
-3.33539e-09
-1.16815e-09
-3.33804e-09
-8.69827e-10
-3.34039e-09
-5.70869e-10
-3.34246e-09
-2.7134e-10
-3.34425e-09
2.86948e-11
-3.34574e-09
3.29173e-10
-3.34695e-09
6.3003e-10
-3.34787e-09
9.31203e-10
-3.3485e-09
1.23263e-09
-3.34884e-09
1.53424e-09
-3.3489e-09
1.83597e-09
-3.34866e-09
2.13776e-09
-3.34814e-09
2.43955e-09
-3.34733e-09
2.74127e-09
-3.34622e-09
3.04287e-09
-3.34483e-09
3.34427e-09
-3.34315e-09
3.64542e-09
-3.34118e-09
3.94625e-09
-3.33892e-09
4.24672e-09
-3.33637e-09
4.54674e-09
-3.33353e-09
4.84627e-09
-3.3304e-09
5.14525e-09
-3.32699e-09
5.44361e-09
-3.32329e-09
5.74129e-09
-3.3193e-09
6.03823e-09
-3.31502e-09
6.33436e-09
-3.31046e-09
6.62962e-09
-3.30561e-09
6.92395e-09
-3.30048e-09
7.21727e-09
-3.29506e-09
7.50953e-09
-3.28935e-09
7.80064e-09
-3.28335e-09
8.09056e-09
-3.27705e-09
8.3792e-09
-3.27046e-09
8.6665e-09
-3.26357e-09
8.95241e-09
-3.25635e-09
9.23685e-09
-3.24879e-09
9.51977e-09
-3.24087e-09
9.8011e-09
-3.23256e-09
1.00808e-08
-3.2238e-09
1.03588e-08
-3.21452e-09
1.0635e-08
-3.20465e-09
1.09094e-08
-3.19407e-09
1.11819e-08
-3.18265e-09
1.14524e-08
-3.17019e-09
1.17209e-08
-3.15649e-09
1.19874e-08
-3.14128e-09
1.22519e-08
-3.12427e-09
1.25142e-08
-3.1051e-09
1.27743e-08
-3.08338e-09
1.30323e-08
-3.05869e-09
1.3288e-08
-3.0306e-09
1.35415e-08
-2.99864e-09
1.37928e-08
-2.9624e-09
1.40418e-08
-2.92148e-09
1.42885e-08
-2.87556e-09
1.4533e-08
-2.8244e-09
1.47752e-08
-2.76791e-09
1.50153e-08
-2.7061e-09
1.52531e-08
-2.63919e-09
1.54887e-08
-2.56754e-09
1.57221e-08
-2.49169e-09
1.59532e-08
-2.41238e-09
1.6182e-08
-2.33047e-09
-2.24682e-09
1.64089e-08
-1.16956e-08
-2.6343e-09
-1.14383e-08
-2.71754e-09
-1.11792e-08
-2.79897e-09
-1.09182e-08
-2.87782e-09
-1.06554e-08
-2.9532e-09
-1.03907e-08
-3.02439e-09
-1.01241e-08
-3.09083e-09
-9.85554e-09
-3.15216e-09
-9.58508e-09
-3.20816e-09
-9.31267e-09
-3.2588e-09
-9.0383e-09
-3.30419e-09
-8.76195e-09
-3.34456e-09
-8.48363e-09
-3.38021e-09
-8.20335e-09
-3.41154e-09
-7.92111e-09
-3.43897e-09
-7.63693e-09
-3.46294e-09
-7.35084e-09
-3.4839e-09
-7.06286e-09
-3.50226e-09
-6.77304e-09
-3.51841e-09
-6.4814e-09
-3.53269e-09
-6.188e-09
-3.54541e-09
-5.89289e-09
-3.55683e-09
-5.59611e-09
-3.56716e-09
-5.29772e-09
-3.57658e-09
-4.99778e-09
-3.58523e-09
-4.69634e-09
-3.59322e-09
-4.39346e-09
-3.60064e-09
-4.08922e-09
-3.60754e-09
-3.78366e-09
-3.61399e-09
-3.47686e-09
-3.62001e-09
-3.16888e-09
-3.62563e-09
-2.85978e-09
-3.63087e-09
-2.54964e-09
-3.63574e-09
-2.23852e-09
-3.64024e-09
-1.92649e-09
-3.64439e-09
-1.61361e-09
-3.64818e-09
-1.29994e-09
-3.65161e-09
-9.85564e-10
-3.6547e-09
-6.70533e-10
-3.65743e-09
-3.54914e-10
-3.65981e-09
-3.87691e-11
-3.66183e-09
2.77837e-10
-3.6635e-09
5.94842e-10
-3.66482e-09
9.1218e-10
-3.66578e-09
1.22979e-09
-3.66639e-09
1.5476e-09
-3.66665e-09
1.86555e-09
-3.66655e-09
2.18358e-09
-3.66609e-09
2.5016e-09
-3.66529e-09
2.81957e-09
-3.66413e-09
3.1374e-09
-3.66262e-09
3.45503e-09
-3.66075e-09
3.77241e-09
-3.65853e-09
4.08945e-09
-3.65595e-09
4.4061e-09
-3.65303e-09
4.7223e-09
-3.64974e-09
5.03798e-09
-3.64611e-09
5.35309e-09
-3.64212e-09
5.66756e-09
-3.63778e-09
5.98132e-09
-3.63309e-09
6.29431e-09
-3.62805e-09
6.60648e-09
-3.62265e-09
6.91774e-09
-3.6169e-09
7.22805e-09
-3.61081e-09
7.53732e-09
-3.60436e-09
7.84549e-09
-3.59756e-09
8.15251e-09
-3.5904e-09
8.4583e-09
-3.58288e-09
8.7628e-09
-3.57501e-09
9.06596e-09
-3.56675e-09
9.3677e-09
-3.55812e-09
9.66798e-09
-3.54908e-09
9.96672e-09
-3.53962e-09
1.02639e-08
-3.5297e-09
1.05594e-08
-3.51927e-09
1.08531e-08
-3.50827e-09
1.11451e-08
-3.49662e-09
1.14352e-08
-3.4842e-09
1.17235e-08
-3.47088e-09
1.20098e-08
-3.45647e-09
1.22941e-08
-3.44078e-09
1.25763e-08
-3.42353e-09
1.28565e-08
-3.40444e-09
1.31345e-08
-3.38314e-09
1.34105e-08
-3.35928e-09
1.36842e-08
-3.33241e-09
1.39558e-08
-3.30212e-09
1.42252e-08
-3.26797e-09
1.44923e-08
-3.22952e-09
1.47573e-08
-3.18639e-09
1.502e-08
-3.13827e-09
1.52805e-08
-3.08493e-09
1.55388e-08
-3.02626e-09
1.57949e-08
-2.96229e-09
1.60489e-08
-2.89324e-09
1.63009e-08
-2.81946e-09
1.65507e-08
-2.74149e-09
1.67984e-08
-2.66007e-09
1.70438e-08
-2.57604e-09
-2.4902e-09
1.72871e-08
-1.25445e-08
-2.90852e-09
-1.22686e-08
-2.99355e-09
-1.19909e-08
-3.07676e-09
-1.17114e-08
-3.15738e-09
-1.14301e-08
-3.23455e-09
-1.1147e-08
-3.30755e-09
-1.08621e-08
-3.37584e-09
-1.05753e-08
-3.43903e-09
-1.02866e-08
-3.49694e-09
-9.996e-09
-3.54953e-09
-9.70341e-09
-3.59688e-09
-9.40882e-09
-3.63923e-09
-9.11223e-09
-3.67689e-09
-8.81362e-09
-3.71022e-09
-8.51301e-09
-3.73966e-09
-8.21039e-09
-3.76563e-09
-7.90579e-09
-3.78857e-09
-7.59923e-09
-3.80888e-09
-7.29076e-09
-3.82695e-09
-6.98041e-09
-3.84311e-09
-6.66823e-09
-3.85766e-09
-6.35427e-09
-3.87087e-09
-6.03859e-09
-3.88293e-09
-5.72125e-09
-3.89402e-09
-5.4023e-09
-3.90428e-09
-5.08181e-09
-3.91382e-09
-4.75984e-09
-3.92273e-09
-4.43644e-09
-3.93106e-09
-4.1117e-09
-3.93887e-09
-3.78566e-09
-3.94618e-09
-3.45839e-09
-3.95303e-09
-3.12995e-09
-3.95942e-09
-2.80041e-09
-3.96537e-09
-2.46983e-09
-3.9709e-09
-2.13828e-09
-3.976e-09
-1.80583e-09
-3.98067e-09
-1.47254e-09
-3.98492e-09
-1.13848e-09
-3.98876e-09
-8.0372e-10
-3.99217e-09
-4.68334e-10
-3.99516e-09
-1.32391e-10
-3.99773e-09
2.04038e-10
-3.99989e-09
5.40882e-10
-4.00162e-09
8.78071e-10
-4.00292e-09
1.21553e-09
-4.00381e-09
1.5532e-09
-4.00428e-09
1.89101e-09
-4.00432e-09
2.22889e-09
-4.00394e-09
2.56677e-09
-4.00314e-09
2.90459e-09
-4.00191e-09
3.24227e-09
-4.00027e-09
3.57977e-09
-3.9982e-09
3.917e-09
-3.99571e-09
4.2539e-09
-3.99279e-09
4.5904e-09
-3.98946e-09
4.92643e-09
-3.98571e-09
5.26193e-09
-3.98153e-09
5.59683e-09
-3.97694e-09
5.93105e-09
-3.97192e-09
6.26453e-09
-3.96649e-09
6.59721e-09
-3.96064e-09
6.92902e-09
-3.95437e-09
7.2599e-09
-3.94769e-09
7.58978e-09
-3.94059e-09
7.9186e-09
-3.93307e-09
8.24631e-09
-3.92513e-09
8.57282e-09
-3.91677e-09
8.89809e-09
-3.908e-09
9.22204e-09
-3.89879e-09
9.54459e-09
-3.88915e-09
9.86569e-09
-3.87906e-09
1.01853e-08
-3.86851e-09
1.05032e-08
-3.85748e-09
1.08196e-08
-3.84592e-09
1.11342e-08
-3.83379e-09
1.1447e-08
-3.82103e-09
1.1758e-08
-3.80756e-09
1.20671e-08
-3.79327e-09
1.23743e-08
-3.77801e-09
1.26796e-08
-3.76163e-09
1.29828e-08
-3.7439e-09
1.32839e-08
-3.72458e-09
1.35829e-08
-3.70336e-09
1.38797e-08
-3.67992e-09
1.41744e-08
-3.65387e-09
1.44669e-08
-3.6248e-09
1.47571e-08
-3.59229e-09
1.50451e-08
-3.5559e-09
1.53309e-08
-3.51522e-09
1.56144e-08
-3.46986e-09
1.58958e-08
-3.41952e-09
1.6175e-08
-3.36397e-09
1.64519e-08
-3.30311e-09
1.67267e-08
-3.23697e-09
1.69992e-08
-3.16576e-09
1.72696e-08
-3.08984e-09
1.7538e-08
-3.00975e-09
1.78042e-08
-2.92619e-09
1.80684e-08
-2.84003e-09
-2.75202e-09
1.83302e-08
-1.35779e-08
-3.20468e-09
-1.32798e-08
-3.29156e-09
-1.298e-08
-3.37656e-09
-1.26784e-08
-3.45896e-09
-1.2375e-08
-3.53793e-09
-1.20698e-08
-3.61276e-09
-1.17627e-08
-3.6829e-09
-1.14537e-08
-3.74799e-09
-1.11428e-08
-3.80783e-09
-1.08299e-08
-3.86238e-09
-1.0515e-08
-3.91173e-09
-1.01981e-08
-3.9561e-09
-9.87915e-09
-3.99579e-09
-9.55814e-09
-4.03118e-09
-9.23506e-09
-4.06266e-09
-8.90994e-09
-4.09067e-09
-8.58278e-09
-4.11564e-09
-8.25362e-09
-4.13795e-09
-7.92248e-09
-4.15798e-09
-7.58941e-09
-4.17607e-09
-7.25445e-09
-4.19251e-09
-6.91766e-09
-4.20755e-09
-6.5791e-09
-4.22139e-09
-6.23882e-09
-4.23421e-09
-5.89689e-09
-4.24613e-09
-5.55336e-09
-4.25728e-09
-5.20831e-09
-4.26772e-09
-4.86179e-09
-4.27752e-09
-4.51386e-09
-4.28673e-09
-4.1646e-09
-4.29537e-09
-3.81407e-09
-4.30348e-09
-3.46233e-09
-4.31107e-09
-3.10944e-09
-4.31816e-09
-2.75548e-09
-4.32474e-09
-2.4005e-09
-4.33082e-09
-2.04458e-09
-4.33642e-09
-1.68779e-09
-4.34152e-09
-1.3302e-09
-4.34614e-09
-9.71872e-10
-4.35026e-09
-6.12888e-10
-4.3539e-09
-2.5332e-10
-4.35705e-09
1.0676e-10
-4.35971e-09
4.67279e-10
-4.36188e-09
8.28163e-10
-4.36355e-09
1.18934e-09
-4.36474e-09
1.55074e-09
-4.36543e-09
1.91228e-09
-4.36563e-09
2.2739e-09
-4.36534e-09
2.63553e-09
-4.36456e-09
2.99709e-09
-4.36328e-09
3.35851e-09
-4.36151e-09
3.71972e-09
-4.35925e-09
4.08065e-09
-4.3565e-09
4.44123e-09
-4.35325e-09
4.80138e-09
-4.34952e-09
5.16105e-09
-4.34529e-09
5.52014e-09
-4.34057e-09
5.8786e-09
-4.33537e-09
6.23636e-09
-4.32967e-09
6.59334e-09
-4.32349e-09
6.94948e-09
-4.31681e-09
7.30471e-09
-4.30965e-09
7.65896e-09
-4.30201e-09
8.01217e-09
-4.29388e-09
8.36428e-09
-4.28526e-09
8.71521e-09
-4.27616e-09
9.0649e-09
-4.26656e-09
9.41328e-09
-4.25648e-09
9.7603e-09
-4.2459e-09
1.01059e-08
-4.23482e-09
1.045e-08
-4.22323e-09
1.07925e-08
-4.21111e-09
1.11334e-08
-4.19844e-09
1.14726e-08
-4.18518e-09
1.181e-08
-4.17129e-09
1.21456e-08
-4.15671e-09
1.24793e-08
-4.14136e-09
1.28111e-08
-4.12513e-09
1.31409e-08
-4.10788e-09
1.34686e-08
-4.08945e-09
1.37943e-08
-4.06963e-09
1.41178e-08
-4.04818e-09
1.44392e-08
-4.02479e-09
1.47583e-08
-3.99914e-09
1.50752e-08
-3.97085e-09
1.53898e-08
-3.93953e-09
1.57021e-08
-3.90474e-09
1.60122e-08
-3.86607e-09
1.63199e-08
-3.8231e-09
1.66254e-08
-3.77546e-09
1.69287e-08
-3.72284e-09
1.72297e-08
-3.66503e-09
1.75286e-08
-3.60193e-09
1.78252e-08
-3.53358e-09
1.81196e-08
-3.46016e-09
1.84118e-08
-3.38205e-09
1.87017e-08
-3.29977e-09
1.89896e-08
-3.21402e-09
1.92754e-08
-3.12566e-09
-3.03537e-09
1.95589e-08
-1.47804e-08
-3.5255e-09
-1.44577e-08
-3.61437e-09
-1.41332e-08
-3.70129e-09
-1.38067e-08
-3.78562e-09
-1.34782e-08
-3.86651e-09
-1.31478e-08
-3.94328e-09
-1.28155e-08
-4.01539e-09
-1.24811e-08
-4.08248e-09
-1.21447e-08
-4.14435e-09
-1.18062e-08
-4.20096e-09
-1.14656e-08
-4.2524e-09
-1.11229e-08
-4.29888e-09
-1.07781e-08
-4.3407e-09
-1.04312e-08
-4.37822e-09
-1.00821e-08
-4.41184e-09
-9.73092e-09
-4.44198e-09
-9.37763e-09
-4.46904e-09
-9.02227e-09
-4.49343e-09
-8.66487e-09
-4.51551e-09
-8.30547e-09
-4.5356e-09
-7.94412e-09
-4.55399e-09
-7.58086e-09
-4.57093e-09
-7.21575e-09
-4.58662e-09
-6.84885e-09
-4.60123e-09
-6.48022e-09
-4.61488e-09
-6.10992e-09
-4.62769e-09
-5.73802e-09
-4.63974e-09
-5.36459e-09
-4.65107e-09
-4.9897e-09
-4.66175e-09
-4.61342e-09
-4.67179e-09
-4.23581e-09
-4.68123e-09
-3.85695e-09
-4.69008e-09
-3.47691e-09
-4.69835e-09
-3.09575e-09
-4.70605e-09
-2.71355e-09
-4.71318e-09
-2.33037e-09
-4.71974e-09
-1.94628e-09
-4.72574e-09
-1.56136e-09
-4.73117e-09
-1.17567e-09
-4.73605e-09
-7.89283e-10
-4.74035e-09
-4.02275e-10
-4.7441e-09
-1.47169e-11
-4.74728e-09
3.73315e-10
-4.74989e-09
7.61746e-10
-4.75194e-09
1.1505e-09
-4.75342e-09
1.5395e-09
-4.75434e-09
1.92866e-09
-4.75468e-09
2.31791e-09
-4.75447e-09
2.70717e-09
-4.75368e-09
3.09636e-09
-4.75233e-09
3.48541e-09
-4.75041e-09
3.87423e-09
-4.74792e-09
4.26275e-09
-4.74487e-09
4.65089e-09
-4.74125e-09
5.03858e-09
-4.73707e-09
5.42574e-09
-4.73232e-09
5.8123e-09
-4.72701e-09
6.19818e-09
-4.72114e-09
6.58331e-09
-4.7147e-09
6.96763e-09
-4.70771e-09
7.35105e-09
-4.70015e-09
7.7335e-09
-4.69204e-09
8.11493e-09
-4.68336e-09
8.49524e-09
-4.67413e-09
8.87439e-09
-4.66434e-09
9.25229e-09
-4.65399e-09
9.62888e-09
-4.64309e-09
1.00041e-08
-4.63162e-09
1.03778e-08
-4.61958e-09
1.07501e-08
-4.60698e-09
1.11207e-08
-4.59379e-09
1.14897e-08
-4.58e-09
1.1857e-08
-4.56559e-09
1.22225e-08
-4.55054e-09
1.25861e-08
-4.53478e-09
1.29478e-08
-4.51827e-09
1.33076e-08
-4.50093e-09
1.36653e-08
-4.48265e-09
1.40209e-08
-4.4633e-09
1.43744e-08
-4.44271e-09
1.47256e-08
-4.42068e-09
1.50746e-08
-4.39698e-09
1.54213e-08
-4.3713e-09
1.57657e-08
-4.34333e-09
1.61077e-08
-4.3127e-09
1.64474e-08
-4.27901e-09
1.67847e-08
-4.24185e-09
1.71196e-08
-4.2008e-09
1.74522e-08
-4.15546e-09
1.77824e-08
-4.10546e-09
1.81102e-08
-4.0505e-09
1.84357e-08
-3.99037e-09
1.87589e-08
-3.92498e-09
1.90798e-08
-3.85435e-09
1.93984e-08
-3.77869e-09
1.97148e-08
-3.69835e-09
2.0029e-08
-3.61385e-09
2.03408e-08
-3.52588e-09
2.06503e-08
-3.43527e-09
-3.34268e-09
2.09577e-08
-1.61688e-08
-3.87415e-09
-1.5818e-08
-3.96521e-09
-1.54652e-08
-4.05425e-09
-1.51103e-08
-4.14066e-09
-1.47533e-08
-4.22365e-09
-1.43942e-08
-4.30251e-09
-1.4033e-08
-4.37673e-09
-1.36697e-08
-4.44594e-09
-1.33042e-08
-4.50996e-09
-1.29365e-08
-4.56874e-09
-1.25665e-08
-4.62237e-09
-1.21944e-08
-4.67106e-09
-1.182e-08
-4.7151e-09
-1.14433e-08
-4.75484e-09
-1.10645e-08
-4.79068e-09
-1.06834e-08
-4.82303e-09
-1.03001e-08
-4.85228e-09
-9.91461e-09
-4.87883e-09
-9.52702e-09
-4.90304e-09
-9.13735e-09
-4.92522e-09
-8.74565e-09
-4.94565e-09
-8.35196e-09
-4.96459e-09
-7.95634e-09
-4.98221e-09
-7.55885e-09
-4.99869e-09
-7.15955e-09
-5.01416e-09
-6.75851e-09
-5.02871e-09
-6.35578e-09
-5.04243e-09
-5.95144e-09
-5.05538e-09
-5.54555e-09
-5.06759e-09
-5.13819e-09
-5.0791e-09
-4.72942e-09
-5.08994e-09
-4.31933e-09
-5.10011e-09
-3.90797e-09
-5.10963e-09
-3.49544e-09
-5.11851e-09
-3.08179e-09
-5.12674e-09
-2.66712e-09
-5.13433e-09
-2.25149e-09
-5.14128e-09
-1.83497e-09
-5.14759e-09
-1.41765e-09
-5.15326e-09
-9.99602e-10
-5.15829e-09
-5.80893e-10
-5.16267e-09
-1.61603e-10
-5.16642e-09
2.58192e-10
-5.16952e-09
6.78413e-10
-5.17197e-09
1.09898e-09
-5.17378e-09
1.51981e-09
-5.17495e-09
1.94083e-09
-5.17547e-09
2.36194e-09
-5.17535e-09
2.78307e-09
-5.17458e-09
3.20412e-09
-5.17316e-09
3.625e-09
-5.17111e-09
4.04564e-09
-5.1684e-09
4.46594e-09
-5.16506e-09
4.88583e-09
-5.16106e-09
5.30521e-09
-5.15643e-09
5.72402e-09
-5.15115e-09
6.14218e-09
-5.14523e-09
6.5596e-09
-5.13866e-09
6.97623e-09
-5.13146e-09
7.39199e-09
-5.12361e-09
7.8068e-09
-5.11512e-09
8.22059e-09
-5.106e-09
8.63329e-09
-5.09623e-09
9.04482e-09
-5.08583e-09
9.45511e-09
-5.0748e-09
9.86408e-09
-5.06313e-09
1.02716e-08
-5.05082e-09
1.06777e-08
-5.03787e-09
1.10823e-08
-5.02429e-09
1.14852e-08
-5.01006e-09
1.18864e-08
-4.99517e-09
1.22859e-08
-4.97961e-09
1.26835e-08
-4.96335e-09
1.30792e-08
-4.94638e-09
1.34729e-08
-4.92864e-09
1.38646e-08
-4.91007e-09
1.42541e-08
-4.89061e-09
1.46415e-08
-4.87014e-09
1.50266e-08
-4.84855e-09
1.54094e-08
-4.82566e-09
1.57898e-08
-4.80128e-09
1.61679e-08
-4.77518e-09
1.65435e-08
-4.74706e-09
1.69166e-08
-4.71662e-09
1.72872e-08
-4.68349e-09
1.76554e-08
-4.64728e-09
1.8021e-08
-4.6076e-09
1.83842e-08
-4.56403e-09
1.87448e-08
-4.51617e-09
1.9103e-08
-4.46368e-09
1.94586e-08
-4.40626e-09
1.98118e-08
-4.34369e-09
2.01626e-08
-4.27589e-09
2.0511e-08
-4.20288e-09
2.08571e-08
-4.12486e-09
2.12009e-08
-4.04219e-09
2.15425e-08
-3.95537e-09
2.18818e-08
-3.86509e-09
2.22185e-08
-3.77215e-09
-3.67714e-09
2.25529e-08
-1.77323e-08
-4.25375e-09
-1.73504e-08
-4.34716e-09
-1.69662e-08
-4.43846e-09
-1.65797e-08
-4.52712e-09
-1.61911e-08
-4.61234e-09
-1.58002e-08
-4.69344e-09
-1.54071e-08
-4.76992e-09
-1.50118e-08
-4.84141e-09
-1.46141e-08
-4.90773e-09
-1.42141e-08
-4.96884e-09
-1.38118e-08
-5.02482e-09
-1.34071e-08
-5.07588e-09
-1.3e-08
-5.1223e-09
-1.25905e-08
-5.16443e-09
-1.21787e-08
-5.20265e-09
-1.17644e-08
-5.23737e-09
-1.13478e-08
-5.26898e-09
-1.09289e-08
-5.29785e-09
-1.05077e-08
-5.32435e-09
-1.00843e-08
-5.34877e-09
-9.65867e-09
-5.37141e-09
-9.23092e-09
-5.39248e-09
-8.80109e-09
-5.41219e-09
-8.36925e-09
-5.43069e-09
-7.93547e-09
-5.44811e-09
-7.49982e-09
-5.46455e-09
-7.06237e-09
-5.48009e-09
-6.62318e-09
-5.49477e-09
-6.18234e-09
-5.50865e-09
-5.73991e-09
-5.52175e-09
-5.29598e-09
-5.53409e-09
-4.8506e-09
-5.5457e-09
-4.40388e-09
-5.55656e-09
-3.95587e-09
-5.56671e-09
-3.50666e-09
-5.57613e-09
-3.05632e-09
-5.58482e-09
-2.60495e-09
-5.59279e-09
-2.15261e-09
-5.60004e-09
-1.69939e-09
-5.60657e-09
-1.24537e-09
-5.61237e-09
-7.90643e-10
-5.61745e-09
-3.35284e-10
-5.62179e-09
1.20616e-10
-5.62541e-09
5.76972e-10
-5.6283e-09
1.03369e-09
-5.63046e-09
1.49069e-09
-5.63189e-09
1.94788e-09
-5.63259e-09
2.40516e-09
-5.63255e-09
2.86245e-09
-5.63179e-09
3.31966e-09
-5.6303e-09
3.7767e-09
-5.62807e-09
4.23347e-09
-5.62512e-09
4.6899e-09
-5.62143e-09
5.1459e-09
-5.61701e-09
5.60138e-09
-5.61186e-09
6.05625e-09
-5.60599e-09
6.51044e-09
-5.59938e-09
6.96386e-09
-5.59205e-09
7.41642e-09
-5.58398e-09
7.86804e-09
-5.5752e-09
8.31865e-09
-5.56568e-09
8.76814e-09
-5.55545e-09
9.21645e-09
-5.54449e-09
9.66349e-09
-5.53281e-09
1.01092e-08
-5.52042e-09
1.05534e-08
-5.50731e-09
1.09962e-08
-5.49348e-09
1.14373e-08
-5.47893e-09
1.18768e-08
-5.46366e-09
1.23145e-08
-5.44766e-09
1.27504e-08
-5.43093e-09
1.31843e-08
-5.41344e-09
1.36163e-08
-5.39519e-09
1.40462e-08
-5.37614e-09
1.44739e-08
-5.35625e-09
1.48994e-08
-5.33546e-09
1.53227e-08
-5.3137e-09
1.57435e-08
-5.29088e-09
1.61619e-08
-5.26686e-09
1.65778e-08
-5.24149e-09
1.69912e-08
-5.21458e-09
1.74019e-08
-5.18589e-09
1.78101e-08
-5.15515e-09
1.82156e-08
-5.12206e-09
1.86184e-08
-5.08625e-09
1.90185e-08
-5.04736e-09
1.94159e-08
-5.00499e-09
1.98107e-08
-4.95874e-09
2.02027e-08
-4.90822e-09
2.05921e-08
-4.85309e-09
2.09789e-08
-4.79306e-09
2.13631e-08
-4.72793e-09
2.17448e-08
-4.6576e-09
2.21241e-08
-4.58212e-09
2.25009e-08
-4.50166e-09
2.28753e-08
-4.41657e-09
2.32473e-08
-4.32735e-09
2.3617e-08
-4.23468e-09
2.39843e-08
-4.13935e-09
-4.04187e-09
2.4349e-08
-1.9489e-08
-4.66807e-09
-1.90723e-08
-4.7639e-09
-1.86533e-08
-4.85753e-09
-1.82319e-08
-4.94851e-09
-1.78083e-08
-5.03604e-09
-1.73823e-08
-5.11947e-09
-1.6954e-08
-5.19829e-09
-1.65233e-08
-5.27217e-09
-1.60902e-08
-5.34092e-09
-1.56546e-08
-5.40449e-09
-1.52165e-08
-5.46297e-09
-1.47759e-08
-5.51657e-09
-1.43328e-08
-5.56555e-09
-1.3887e-08
-5.61025e-09
-1.34387e-08
-5.65105e-09
-1.29877e-08
-5.68834e-09
-1.25342e-08
-5.72251e-09
-1.20782e-08
-5.75391e-09
-1.16196e-08
-5.78291e-09
-1.11586e-08
-5.80979e-09
-1.06951e-08
-5.83483e-09
-1.02293e-08
-5.85826e-09
-9.76118e-09
-5.88025e-09
-9.29085e-09
-5.90098e-09
-8.81838e-09
-5.92055e-09
-8.34386e-09
-5.93907e-09
-7.86736e-09
-5.9566e-09
-7.38896e-09
-5.97321e-09
-6.90875e-09
-5.98892e-09
-6.4268e-09
-6.00377e-09
-5.9432e-09
-6.01778e-09
-5.45803e-09
-6.03096e-09
-4.97136e-09
-6.04332e-09
-4.48328e-09
-6.05486e-09
-3.99387e-09
-6.06559e-09
-3.50322e-09
-6.0755e-09
-3.0114e-09
-6.0846e-09
-2.51852e-09
-6.09289e-09
-2.02466e-09
-6.10036e-09
-1.52992e-09
-6.10702e-09
-1.0344e-09
-6.11286e-09
-5.38184e-10
-6.11789e-09
-4.13808e-11
-6.12209e-09
4.55913e-10
-6.12547e-09
9.53599e-10
-6.12803e-09
1.45158e-09
-6.12977e-09
1.94977e-09
-6.13068e-09
2.44806e-09
-6.13077e-09
2.94636e-09
-6.13003e-09
3.44459e-09
-6.12846e-09
3.94265e-09
-6.12607e-09
4.44044e-09
-6.12285e-09
4.93789e-09
-6.11881e-09
5.43488e-09
-6.11394e-09
5.93132e-09
-6.10825e-09
6.42713e-09
-6.10174e-09
6.92219e-09
-6.0944e-09
7.41643e-09
-6.08624e-09
7.90972e-09
-6.07726e-09
8.40199e-09
-6.06747e-09
8.89314e-09
-6.05685e-09
9.38307e-09
-6.04543e-09
9.87169e-09
-6.03319e-09
1.03589e-08
-6.02013e-09
1.08447e-08
-6.00627e-09
1.13289e-08
-5.99159e-09
1.18114e-08
-5.97611e-09
1.22922e-08
-5.95982e-09
1.27711e-08
-5.94271e-09
1.32482e-08
-5.92479e-09
1.37233e-08
-5.90605e-09
1.41962e-08
-5.88647e-09
1.4667e-08
-5.86603e-09
1.51355e-08
-5.84472e-09
1.56017e-08
-5.82248e-09
1.60654e-08
-5.79926e-09
1.65266e-08
-5.775e-09
1.69852e-08
-5.7496e-09
1.74411e-08
-5.72294e-09
1.78943e-08
-5.69486e-09
1.83448e-08
-5.66518e-09
1.87925e-08
-5.63367e-09
1.92372e-08
-5.60008e-09
1.96791e-08
-5.56409e-09
2.01181e-08
-5.52538e-09
2.05542e-08
-5.48357e-09
2.09873e-08
-5.43828e-09
2.14175e-08
-5.38912e-09
2.18449e-08
-5.33573e-09
2.22694e-08
-5.27776e-09
2.26912e-08
-5.21493e-09
2.31103e-08
-5.14706e-09
2.35268e-08
-5.07404e-09
2.39406e-08
-4.99593e-09
2.43519e-08
-4.91289e-09
2.47606e-08
-4.82527e-09
2.51668e-08
-4.73355e-09
2.55704e-08
-4.63838e-09
2.59718e-08
-4.54054e-09
-4.44048e-09
2.63705e-08
-2.14534e-08
-5.12093e-09
-2.09982e-08
-5.21918e-09
-2.05407e-08
-5.31514e-09
-2.00808e-08
-5.40844e-09
-1.96186e-08
-5.49832e-09
-1.9154e-08
-5.58412e-09
-1.8687e-08
-5.66536e-09
-1.82175e-08
-5.74172e-09
-1.77454e-08
-5.81302e-09
-1.72707e-08
-5.8792e-09
-1.67933e-08
-5.94037e-09
-1.63131e-08
-5.9967e-09
-1.58302e-08
-6.04847e-09
-1.53444e-08
-6.09599e-09
-1.48558e-08
-6.13964e-09
-1.43643e-08
-6.17978e-09
-1.387e-08
-6.2168e-09
-1.33728e-08
-6.25103e-09
-1.28728e-08
-6.28283e-09
-1.23701e-08
-6.31246e-09
-1.18647e-08
-6.3402e-09
-1.13566e-08
-6.36627e-09
-1.08459e-08
-6.39083e-09
-1.03327e-08
-6.41405e-09
-9.81714e-09
-6.43603e-09
-9.29923e-09
-6.45688e-09
-8.77908e-09
-6.47665e-09
-8.25678e-09
-6.4954e-09
-7.73243e-09
-6.51318e-09
-7.20613e-09
-6.52999e-09
-6.67797e-09
-6.54587e-09
-6.14805e-09
-6.56082e-09
-5.61646e-09
-6.57485e-09
-5.08331e-09
-6.58797e-09
-4.54869e-09
-6.60017e-09
-4.0127e-09
-6.61146e-09
-3.47544e-09
-6.62183e-09
-2.937e-09
-6.63129e-09
-2.39748e-09
-6.63983e-09
-1.85699e-09
-6.64746e-09
-1.31562e-09
-6.65416e-09
-7.73487e-10
-6.65994e-09
-2.3068e-10
-6.6648e-09
3.12692e-10
-6.66873e-09
8.56522e-10
-6.67174e-09
1.40071e-09
-6.67382e-09
1.94514e-09
-6.67497e-09
2.48971e-09
-6.67519e-09
3.03433e-09
-6.67448e-09
3.57887e-09
-6.67283e-09
4.12324e-09
-6.67026e-09
4.66733e-09
-6.66676e-09
5.21103e-09
-6.66233e-09
5.75424e-09
-6.65697e-09
6.29685e-09
-6.65068e-09
6.83876e-09
-6.64346e-09
7.37987e-09
-6.63532e-09
7.92005e-09
-6.62626e-09
8.45922e-09
-6.61627e-09
8.99727e-09
-6.60536e-09
9.5341e-09
-6.59353e-09
1.00696e-08
-6.58078e-09
1.06037e-08
-6.56712e-09
1.11362e-08
-6.55255e-09
1.16672e-08
-6.53706e-09
1.21964e-08
-6.52066e-09
1.27238e-08
-6.50335e-09
1.32492e-08
-6.48513e-09
1.37727e-08
-6.466e-09
1.4294e-08
-6.44596e-09
1.48131e-08
-6.42499e-09
1.53299e-08
-6.4031e-09
1.58443e-08
-6.38025e-09
1.63562e-08
-6.35643e-09
1.68654e-08
-6.3316e-09
1.7372e-08
-6.30571e-09
1.78759e-08
-6.27868e-09
1.83768e-08
-6.25043e-09
1.88749e-08
-6.22085e-09
1.937e-08
-6.18978e-09
1.9862e-08
-6.15706e-09
2.03509e-08
-6.12245e-09
2.08367e-08
-6.08572e-09
2.13193e-08
-6.04656e-09
2.17987e-08
-6.00466e-09
2.22749e-08
-5.95966e-09
2.27479e-08
-5.9112e-09
2.32178e-08
-5.8589e-09
2.36847e-08
-5.8024e-09
2.41484e-08
-5.74138e-09
2.46092e-08
-5.67557e-09
2.50671e-08
-5.60478e-09
2.55221e-08
-5.52893e-09
2.59743e-08
-5.44805e-09
2.64238e-08
-5.36232e-09
2.68707e-08
-5.27205e-09
2.73149e-08
-5.17773e-09
2.77565e-08
-5.07998e-09
2.81956e-08
-4.97954e-09
-4.87681e-09
2.86322e-08
-2.36637e-08
-5.61686e-09
-2.31654e-08
-5.71749e-09
-2.26648e-08
-5.81577e-09
-2.21619e-08
-5.9114e-09
-2.16566e-08
-6.00364e-09
-2.11489e-08
-6.09187e-09
-2.06387e-08
-6.17562e-09
-2.01259e-08
-6.25458e-09
-1.96104e-08
-6.32857e-09
-1.90921e-08
-6.39756e-09
-1.85709e-08
-6.46163e-09
-1.80467e-08
-6.52095e-09
-1.75195e-08
-6.57578e-09
-1.6989e-08
-6.62643e-09
-1.64554e-08
-6.67325e-09
-1.59186e-08
-6.71658e-09
-1.53786e-08
-6.75679e-09
-1.48354e-08
-6.79421e-09
-1.42891e-08
-6.82915e-09
-1.37396e-08
-6.8619e-09
-1.31871e-08
-6.89269e-09
-1.26316e-08
-6.92173e-09
-1.20732e-08
-6.94921e-09
-1.1512e-08
-6.97524e-09
-1.0948e-08
-6.99996e-09
-1.03814e-08
-7.02343e-09
-9.81225e-09
-7.04574e-09
-9.24068e-09
-7.06692e-09
-8.66677e-09
-7.08702e-09
-8.09066e-09
-7.10605e-09
-7.51244e-09
-7.12404e-09
-6.93223e-09
-7.14099e-09
-6.35014e-09
-7.15691e-09
-5.76629e-09
-7.1718e-09
-5.1808e-09
-7.18567e-09
-4.59377e-09
-7.19851e-09
-4.00531e-09
-7.21033e-09
-3.41555e-09
-7.22111e-09
-2.82459e-09
-7.23086e-09
-2.23254e-09
-7.23958e-09
-1.6395e-09
-7.24726e-09
-1.0456e-09
-7.2539e-09
-4.50938e-10
-7.2595e-09
1.44372e-10
-7.26406e-09
7.40216e-10
-7.26757e-09
1.33648e-09
-7.27004e-09
1.93304e-09
-7.27147e-09
2.52978e-09
-7.27185e-09
3.12657e-09
-7.27119e-09
3.72331e-09
-7.26948e-09
4.31985e-09
-7.26672e-09
4.91609e-09
-7.26292e-09
5.51191e-09
-7.25807e-09
6.10717e-09
-7.25218e-09
6.70178e-09
-7.24524e-09
7.29561e-09
-7.23727e-09
7.88854e-09
-7.22825e-09
8.48048e-09
-7.21819e-09
9.07131e-09
-7.20709e-09
9.66091e-09
-7.19495e-09
1.02492e-08
-7.18178e-09
1.0836e-08
-7.16758e-09
1.14213e-08
-7.15235e-09
1.20049e-08
-7.13609e-09
1.25867e-08
-7.11881e-09
1.31666e-08
-7.1005e-09
1.37445e-08
-7.08118e-09
1.43202e-08
-7.06083e-09
1.48937e-08
-7.03947e-09
1.54648e-08
-7.01708e-09
1.60335e-08
-6.99366e-09
1.65995e-08
-6.9692e-09
1.71629e-08
-6.94369e-09
1.77235e-08
-6.9171e-09
1.82812e-08
-6.88939e-09
1.8836e-08
-6.86053e-09
1.93877e-08
-6.83043e-09
1.99362e-08
-6.79903e-09
2.04815e-08
-6.76621e-09
2.10235e-08
-6.73183e-09
2.1562e-08
-6.69573e-09
2.20971e-08
-6.65769e-09
2.26288e-08
-6.61748e-09
2.31569e-08
-6.57482e-09
2.36814e-08
-6.5294e-09
2.42025e-08
-6.48089e-09
2.47201e-08
-6.42893e-09
2.52342e-08
-6.37317e-09
2.5745e-08
-6.31327e-09
2.62525e-08
-6.24892e-09
2.67566e-08
-6.17987e-09
2.72577e-08
-6.10594e-09
2.77556e-08
-6.02704e-09
2.82505e-08
-5.9432e-09
2.87426e-08
-5.8546e-09
2.9232e-08
-5.76154e-09
2.97188e-08
-5.66447e-09
3.02028e-08
-5.56401e-09
3.06841e-08
-5.46087e-09
-5.35537e-09
3.11626e-08
-2.61578e-08
-6.16061e-09
-2.56115e-08
-6.26365e-09
-2.50629e-08
-6.36431e-09
-2.45118e-08
-6.46234e-09
-2.39583e-08
-6.55705e-09
-2.34023e-08
-6.64783e-09
-2.28436e-08
-6.73424e-09
-2.22822e-08
-6.81599e-09
-2.17178e-08
-6.8929e-09
-2.11505e-08
-6.96495e-09
-2.05799e-08
-7.0322e-09
-2.0006e-08
-7.09483e-09
-1.94287e-08
-7.15306e-09
-1.8848e-08
-7.2072e-09
-1.82636e-08
-7.25755e-09
-1.76757e-08
-7.30446e-09
-1.70843e-08
-7.34826e-09
-1.64892e-08
-7.38927e-09
-1.58905e-08
-7.42776e-09
-1.52884e-08
-7.46402e-09
-1.46828e-08
-7.49826e-09
-1.40739e-08
-7.53068e-09
-1.34617e-08
-7.56143e-09
-1.28463e-08
-7.59066e-09
-1.22279e-08
-7.61845e-09
-1.16065e-08
-7.64491e-09
-1.09822e-08
-7.67007e-09
-1.03552e-08
-7.69399e-09
-9.72558e-09
-7.71671e-09
-9.09347e-09
-7.73824e-09
-8.45898e-09
-7.75859e-09
-7.82224e-09
-7.77779e-09
-7.18338e-09
-7.79583e-09
-6.54252e-09
-7.81271e-09
-5.89979e-09
-7.82845e-09
-5.25533e-09
-7.84303e-09
-4.60926e-09
-7.85645e-09
-3.96171e-09
-7.86871e-09
-3.3128e-09
-7.87982e-09
-2.66267e-09
-7.88976e-09
-2.01144e-09
-7.89854e-09
-1.35925e-09
-7.90615e-09
-7.06201e-10
-7.91259e-09
-5.24375e-11
-7.91785e-09
6.01917e-10
-7.92195e-09
1.25674e-09
-7.92487e-09
1.91189e-09
-7.92661e-09
2.56724e-09
-7.92718e-09
3.22267e-09
-7.92658e-09
3.87804e-09
-7.9248e-09
4.53322e-09
-7.92185e-09
5.18807e-09
-7.91772e-09
5.84246e-09
-7.91242e-09
6.49627e-09
-7.90595e-09
7.14936e-09
-7.8983e-09
7.80161e-09
-7.88948e-09
8.45288e-09
-7.87949e-09
9.10305e-09
-7.86833e-09
9.752e-09
-7.85601e-09
1.03996e-08
-7.84252e-09
1.10457e-08
-7.82786e-09
1.16902e-08
-7.81205e-09
1.2333e-08
-7.79508e-09
1.2974e-08
-7.77696e-09
1.36129e-08
-7.75768e-09
1.42497e-08
-7.73726e-09
1.48842e-08
-7.7157e-09
1.55164e-08
-7.69299e-09
1.61461e-08
-7.66913e-09
1.67731e-08
-7.64413e-09
1.73974e-08
-7.61798e-09
1.80189e-08
-7.59067e-09
1.86373e-08
-7.56218e-09
1.92527e-08
-7.53249e-09
1.98649e-08
-7.50158e-09
2.04737e-08
-7.46939e-09
2.10791e-08
-7.43587e-09
2.1681e-08
-7.40094e-09
2.22793e-08
-7.3645e-09
2.28738e-08
-7.32642e-09
2.34646e-08
-7.28654e-09
2.40516e-08
-7.24466e-09
2.46346e-08
-7.20056e-09
2.52138e-08
-7.15399e-09
2.57891e-08
-7.10464e-09
2.63605e-08
-7.05222e-09
2.6928e-08
-6.99638e-09
2.74917e-08
-6.93679e-09
2.80517e-08
-6.87314e-09
2.8608e-08
-6.80513e-09
2.91608e-08
-6.73253e-09
2.97101e-08
-6.65516e-09
3.02562e-08
-6.57295e-09
3.07991e-08
-6.48594e-09
3.13389e-08
-6.39427e-09
3.18758e-08
-6.29824e-09
3.24098e-08
-6.19828e-09
3.2941e-08
-6.09498e-09
3.34693e-08
-5.98904e-09
-5.88069e-09
3.39944e-08
-2.89812e-08
-6.75784e-09
-2.83814e-08
-6.86345e-09
-2.7779e-08
-6.96667e-09
-2.7174e-08
-7.06732e-09
-2.65663e-08
-7.16473e-09
-2.59558e-08
-7.25831e-09
-2.53423e-08
-7.34764e-09
-2.47258e-08
-7.43245e-09
-2.4106e-08
-7.51259e-09
-2.34829e-08
-7.58801e-09
-2.28562e-08
-7.65878e-09
-2.22259e-08
-7.72507e-09
-2.15917e-08
-7.78708e-09
-2.09537e-08
-7.84508e-09
-2.03118e-08
-7.89937e-09
-1.96659e-08
-7.95026e-09
-1.9016e-08
-7.99805e-09
-1.8362e-08
-8.04303e-09
-1.77041e-08
-8.08548e-09
-1.70423e-08
-8.12564e-09
-1.63767e-08
-8.16371e-09
-1.57073e-08
-8.19988e-09
-1.50342e-08
-8.23429e-09
-1.43575e-08
-8.26706e-09
-1.36774e-08
-8.2983e-09
-1.29941e-08
-8.32806e-09
-1.23075e-08
-8.35641e-09
-1.16179e-08
-8.3834e-09
-1.09253e-08
-8.40903e-09
-1.023e-08
-8.43335e-09
-9.53207e-09
-8.45636e-09
-8.83161e-09
-8.47806e-09
-8.12879e-09
-8.49847e-09
-7.42374e-09
-8.51759e-09
-6.7166e-09
-8.53541e-09
-6.00751e-09
-8.55193e-09
-5.29661e-09
-8.56716e-09
-4.58405e-09
-8.58109e-09
-3.86996e-09
-8.59371e-09
-3.1545e-09
-8.60503e-09
-2.43782e-09
-8.61504e-09
-1.72004e-09
-8.62374e-09
-1.00133e-09
-8.63114e-09
-2.81834e-10
-8.63721e-09
4.38312e-10
-8.64197e-09
1.15896e-09
-8.64541e-09
1.87997e-09
-8.64753e-09
2.6012e-09
-8.64833e-09
3.32251e-09
-8.64781e-09
4.04375e-09
-8.64597e-09
4.7648e-09
-8.64281e-09
5.4855e-09
-8.63834e-09
6.20572e-09
-8.63254e-09
6.92532e-09
-8.62542e-09
7.64415e-09
-8.61699e-09
8.36206e-09
-8.60724e-09
9.07891e-09
-8.59618e-09
9.79456e-09
-8.58381e-09
1.05089e-08
-8.57012e-09
1.12216e-08
-8.55514e-09
1.19328e-08
-8.53884e-09
1.26421e-08
-8.52125e-09
1.33495e-08
-8.50236e-09
1.40548e-08
-8.48218e-09
1.47579e-08
-8.4607e-09
1.54587e-08
-8.43794e-09
1.61569e-08
-8.41389e-09
1.68525e-08
-8.38855e-09
1.75454e-08
-8.36193e-09
1.82354e-08
-8.33403e-09
1.89223e-08
-8.30484e-09
1.96061e-08
-8.27435e-09
2.02866e-08
-8.24256e-09
2.09636e-08
-8.20944e-09
2.16371e-08
-8.17497e-09
2.23068e-08
-8.1391e-09
2.29727e-08
-8.10178e-09
2.36347e-08
-8.06294e-09
2.42927e-08
-8.02248e-09
2.49465e-08
-7.98029e-09
2.55961e-08
-7.93621e-09
2.62415e-08
-7.89007e-09
2.68826e-08
-7.84166e-09
2.75193e-08
-7.79074e-09
2.81518e-08
-7.73704e-09
2.87798e-08
-7.68028e-09
2.94036e-08
-7.62013e-09
3.00231e-08
-7.55631e-09
3.06384e-08
-7.48851e-09
3.12497e-08
-7.41645e-09
3.18571e-08
-7.33993e-09
3.24607e-08
-7.25878e-09
3.30608e-08
-7.17294e-09
3.36573e-08
-7.08243e-09
3.42505e-08
-6.9874e-09
3.48404e-08
-6.88813e-09
3.54271e-08
-6.78503e-09
3.60106e-08
-6.67865e-09
3.65912e-08
-6.56967e-09
-6.45829e-09
3.71687e-08
-3.2172e-08
-7.41447e-09
-3.15125e-08
-7.52298e-09
-3.085e-08
-7.62917e-09
-3.01845e-08
-7.73288e-09
-2.95158e-08
-7.83342e-09
-2.88439e-08
-7.93025e-09
-2.81686e-08
-8.02296e-09
-2.74898e-08
-8.11129e-09
-2.68073e-08
-8.1951e-09
-2.61209e-08
-8.27436e-09
-2.54306e-08
-8.34911e-09
-2.47362e-08
-8.41952e-09
-2.40375e-08
-8.48576e-09
-2.33345e-08
-8.54809e-09
-2.26272e-08
-8.60677e-09
-2.19154e-08
-8.66209e-09
-2.11992e-08
-8.71432e-09
-2.04786e-08
-8.76374e-09
-1.97536e-08
-8.81058e-09
-1.90243e-08
-8.85506e-09
-1.82907e-08
-8.89739e-09
-1.75529e-08
-8.93771e-09
-1.68111e-08
-8.97617e-09
-1.60654e-08
-9.01288e-09
-1.53158e-08
-9.04791e-09
-1.45626e-08
-9.08135e-09
-1.38058e-08
-9.11323e-09
-1.30457e-08
-9.1436e-09
-1.22823e-08
-9.17247e-09
-1.15158e-08
-9.19988e-09
-1.07465e-08
-9.22582e-09
-9.97429e-09
-9.25031e-09
-9.1995e-09
-9.27335e-09
-8.42225e-09
-9.29494e-09
-7.6427e-09
-9.31507e-09
-6.86098e-09
-9.33376e-09
-6.07727e-09
-9.35098e-09
-5.29172e-09
-9.36675e-09
-4.50448e-09
-9.38106e-09
-3.71571e-09
-9.3939e-09
-2.92557e-09
-9.40528e-09
-2.13422e-09
-9.41519e-09
-1.34182e-09
-9.42363e-09
-5.48528e-10
-9.43059e-09
2.45495e-10
-9.43608e-09
1.04009e-09
-9.44009e-09
1.8351e-09
-9.44261e-09
2.63036e-09
-9.44366e-09
3.42571e-09
-9.44323e-09
4.221e-09
-9.44131e-09
5.01608e-09
-9.43792e-09
5.81077e-09
-9.43304e-09
6.60493e-09
-9.42669e-09
7.39839e-09
-9.41886e-09
8.191e-09
-9.40955e-09
8.98259e-09
-9.39877e-09
9.773e-09
-9.38652e-09
1.05621e-08
-9.3728e-09
1.13496e-08
-9.35761e-09
1.21355e-08
-9.34096e-09
1.29196e-08
-9.32285e-09
1.37017e-08
-9.30328e-09
1.44817e-08
-9.28226e-09
1.52593e-08
-9.25979e-09
1.60346e-08
-9.23587e-09
1.68072e-08
-9.21051e-09
1.7577e-08
-9.1837e-09
1.8344e-08
-9.15546e-09
1.91079e-08
-9.12579e-09
1.98685e-08
-9.09468e-09
2.06259e-08
-9.06212e-09
2.13797e-08
-9.02813e-09
2.21298e-08
-8.99268e-09
2.28761e-08
-8.95577e-09
2.36185e-08
-8.91735e-09
2.43567e-08
-8.87741e-09
2.50908e-08
-8.83588e-09
2.58205e-08
-8.79271e-09
2.65458e-08
-8.7478e-09
2.72665e-08
-8.70105e-09
2.79825e-08
-8.65233e-09
2.86939e-08
-8.60146e-09
2.94005e-08
-8.54827e-09
3.01023e-08
-8.49254e-09
3.07992e-08
-8.43401e-09
3.14913e-08
-8.37243e-09
3.21786e-08
-8.30751e-09
3.28612e-08
-8.23897e-09
3.35392e-08
-8.16654e-09
3.42126e-08
-8.08998e-09
3.48817e-08
-8.00908e-09
3.55465e-08
-7.9237e-09
3.62073e-08
-7.83377e-09
3.68642e-08
-7.73933e-09
3.75173e-08
-7.64052e-09
3.81666e-08
-7.53759e-09
3.88123e-08
-7.43093e-09
3.94545e-08
-7.32108e-09
4.00933e-08
-7.2087e-09
-7.09398e-09
4.07294e-08
-3.57656e-08
-8.13702e-09
-3.50396e-08
-8.24884e-09
-3.431e-08
-8.35852e-09
-3.35769e-08
-8.46588e-09
-3.284e-08
-8.57017e-09
-3.20992e-08
-8.67086e-09
-3.13544e-08
-8.76754e-09
-3.06056e-08
-8.85998e-09
-2.98525e-08
-8.94803e-09
-2.9095e-08
-9.03167e-09
-2.83329e-08
-9.11095e-09
-2.75662e-08
-9.186e-09
-2.67948e-08
-9.25698e-09
-2.60185e-08
-9.32414e-09
-2.52374e-08
-9.3877e-09
-2.44513e-08
-9.44792e-09
-2.36604e-08
-9.50507e-09
-2.28645e-08
-9.55936e-09
-2.20638e-08
-9.61104e-09
-2.12584e-08
-9.66029e-09
-2.04483e-08
-9.7073e-09
-1.96336e-08
-9.75219e-09
-1.88144e-08
-9.79511e-09
-1.79909e-08
-9.83614e-09
-1.71632e-08
-9.87537e-09
-1.63315e-08
-9.91285e-09
-1.54959e-08
-9.94863e-09
-1.46565e-08
-9.98273e-09
-1.38135e-08
-1.00152e-08
-1.29671e-08
-1.0046e-08
-1.21175e-08
-1.00752e-08
-1.12648e-08
-1.01028e-08
-1.04093e-08
-1.01288e-08
-9.55094e-09
-1.01531e-08
-8.69009e-09
-1.01758e-08
-7.82685e-09
-1.01969e-08
-6.96141e-09
-1.02164e-08
-6.09395e-09
-1.02342e-08
-5.22462e-09
-1.02504e-08
-4.3536e-09
-1.0265e-08
-3.48107e-09
-1.02779e-08
-2.60718e-09
-1.02891e-08
-1.73213e-09
-1.02988e-08
-8.5607e-10
-1.03067e-08
2.08143e-11
-1.0313e-08
8.98347e-10
-1.03177e-08
1.77635e-09
-1.03207e-08
2.65465e-09
-1.0322e-08
3.53305e-09
-1.03217e-08
4.41139e-09
-1.03197e-08
5.28948e-09
-1.0316e-08
6.16714e-09
-1.03107e-08
7.04419e-09
-1.03038e-08
7.92045e-09
-1.02952e-08
8.79575e-09
-1.02849e-08
9.6699e-09
-1.0273e-08
1.05427e-08
-1.02594e-08
1.14141e-08
-1.02442e-08
1.22838e-08
-1.02273e-08
1.31516e-08
-1.02088e-08
1.40174e-08
-1.01887e-08
1.4881e-08
-1.01669e-08
1.57423e-08
-1.01435e-08
1.66011e-08
-1.01185e-08
1.74571e-08
-1.00919e-08
1.83103e-08
-1.00636e-08
1.91604e-08
-1.00337e-08
2.00074e-08
-1.00022e-08
2.08509e-08
-9.96917e-09
2.16909e-08
-9.93449e-09
2.25271e-08
-9.89821e-09
2.33594e-08
-9.86033e-09
2.41878e-08
-9.82083e-09
2.50119e-08
-9.7797e-09
2.58316e-08
-9.73693e-09
2.66469e-08
-9.69247e-09
2.74576e-08
-9.6463e-09
2.82635e-08
-9.59834e-09
2.90645e-08
-9.54853e-09
2.98605e-08
-9.49676e-09
3.06513e-08
-9.44292e-09
3.1437e-08
-9.38686e-09
3.22173e-08
-9.32841e-09
3.29923e-08
-9.26736e-09
3.37619e-08
-9.20351e-09
3.45262e-08
-9.1366e-09
3.52852e-08
-9.06638e-09
3.60389e-08
-8.9926e-09
3.67875e-08
-8.91501e-09
3.7531e-08
-8.83338e-09
3.82695e-08
-8.74755e-09
3.90033e-08
-8.65737e-09
3.97324e-08
-8.5628e-09
4.04569e-08
-8.46385e-09
4.1177e-08
-8.36066e-09
4.1893e-08
-8.25348e-09
4.26048e-08
-8.14267e-09
4.33126e-08
-8.02878e-09
4.40164e-08
-7.91251e-09
-7.79409e-09
4.47167e-08
-3.97904e-08
-8.93318e-09
-3.89906e-08
-9.04866e-09
-3.81868e-08
-9.16247e-09
-3.73785e-08
-9.2742e-09
-3.65658e-08
-9.38302e-09
-3.57484e-08
-9.48833e-09
-3.49263e-08
-9.58974e-09
-3.40994e-08
-9.68702e-09
-3.32675e-08
-9.78002e-09
-3.24306e-08
-9.86873e-09
-3.15885e-08
-9.95318e-09
-3.07412e-08
-1.00335e-08
-2.98885e-08
-1.01098e-08
-2.90304e-08
-1.01824e-08
-2.81668e-08
-1.02514e-08
-2.72978e-08
-1.0317e-08
-2.64233e-08
-1.03796e-08
-2.55434e-08
-1.04393e-08
-2.46581e-08
-1.04963e-08
-2.37676e-08
-1.05508e-08
-2.28719e-08
-1.06029e-08
-2.19712e-08
-1.06529e-08
-2.10656e-08
-1.07007e-08
-2.01552e-08
-1.07465e-08
-1.92401e-08
-1.07903e-08
-1.83207e-08
-1.08322e-08
-1.73969e-08
-1.08723e-08
-1.64689e-08
-1.09105e-08
-1.55371e-08
-1.09469e-08
-1.46014e-08
-1.09815e-08
-1.36621e-08
-1.10143e-08
-1.27194e-08
-1.10453e-08
-1.17735e-08
-1.10745e-08
-1.08245e-08
-1.11019e-08
-9.87269e-09
-1.11275e-08
-8.9182e-09
-1.11512e-08
-7.96123e-09
-1.11732e-08
-7.00199e-09
-1.11933e-08
-6.04067e-09
-1.12116e-08
-5.07745e-09
-1.1228e-08
-4.11254e-09
-1.12427e-08
-3.14613e-09
-1.12554e-08
-2.17841e-09
-1.12664e-08
-1.20958e-09
-1.12754e-08
-2.39834e-10
-1.12827e-08
7.30624e-10
-1.1288e-08
1.7016e-09
-1.12915e-08
2.67289e-09
-1.12932e-08
3.64431e-09
-1.1293e-08
4.61564e-09
-1.12909e-08
5.5867e-09
-1.1287e-08
6.55729e-09
-1.12812e-08
7.52721e-09
-1.12736e-08
8.49626e-09
-1.12641e-08
9.46424e-09
-1.12527e-08
1.0431e-08
-1.12396e-08
1.13962e-08
-1.12245e-08
1.23598e-08
-1.12076e-08
1.33216e-08
-1.11889e-08
1.42813e-08
-1.11684e-08
1.52387e-08
-1.1146e-08
1.61937e-08
-1.11218e-08
1.71461e-08
-1.10957e-08
1.80956e-08
-1.10679e-08
1.90421e-08
-1.10383e-08
1.99854e-08
-1.10068e-08
2.09253e-08
-1.09736e-08
2.18617e-08
-1.09385e-08
2.27942e-08
-1.09017e-08
2.37228e-08
-1.08631e-08
2.46473e-08
-1.08227e-08
2.55674e-08
-1.07806e-08
2.64831e-08
-1.07366e-08
2.73942e-08
-1.06908e-08
2.83004e-08
-1.06433e-08
2.92017e-08
-1.05939e-08
3.00979e-08
-1.05426e-08
3.09888e-08
-1.04894e-08
3.18744e-08
-1.04342e-08
3.27543e-08
-1.03769e-08
3.36287e-08
-1.03174e-08
3.44973e-08
-1.02556e-08
3.53601e-08
-1.01914e-08
3.6217e-08
-1.01244e-08
3.70679e-08
-1.00547e-08
3.7913e-08
-9.98185e-09
3.87522e-08
-9.90573e-09
3.95855e-08
-9.82608e-09
4.04131e-08
-9.74268e-09
4.12349e-08
-9.65535e-09
4.20511e-08
-9.5639e-09
4.28618e-08
-9.46823e-09
4.36671e-08
-9.36829e-09
4.44671e-08
-9.2641e-09
4.5262e-08
-9.15579e-09
4.60518e-08
-9.04358e-09
4.68369e-08
-8.92786e-09
4.76173e-08
-8.8092e-09
4.83932e-08
-8.68843e-09
-8.56599e-09
4.91644e-08
-4.42745e-08
-9.81038e-09
-4.33935e-08
-9.92965e-09
-4.25077e-08
-1.00482e-08
-4.16168e-08
-1.01651e-08
-4.07204e-08
-1.02793e-08
-3.98186e-08
-1.03901e-08
-3.89112e-08
-1.04971e-08
-3.79982e-08
-1.06e-08
-3.70793e-08
-1.06988e-08
-3.61547e-08
-1.07933e-08
-3.52241e-08
-1.08837e-08
-3.42875e-08
-1.097e-08
-3.33449e-08
-1.10524e-08
-3.23961e-08
-1.11311e-08
-3.14413e-08
-1.12062e-08
-3.04803e-08
-1.1278e-08
-2.95133e-08
-1.13467e-08
-2.85402e-08
-1.14124e-08
-2.75612e-08
-1.14753e-08
-2.65763e-08
-1.15357e-08
-2.55857e-08
-1.15936e-08
-2.45895e-08
-1.16491e-08
-2.35879e-08
-1.17024e-08
-2.25809e-08
-1.17535e-08
-2.15687e-08
-1.18025e-08
-2.05516e-08
-1.18494e-08
-1.95297e-08
-1.18943e-08
-1.85032e-08
-1.19371e-08
-1.74723e-08
-1.1978e-08
-1.64371e-08
-1.20168e-08
-1.53979e-08
-1.20536e-08
-1.43548e-08
-1.20885e-08
-1.33081e-08
-1.21213e-08
-1.22579e-08
-1.21521e-08
-1.12045e-08
-1.21809e-08
-1.01481e-08
-1.22077e-08
-9.08889e-09
-1.22324e-08
-8.02708e-09
-1.22551e-08
-6.96292e-09
-1.22758e-08
-5.89661e-09
-1.22944e-08
-4.82838e-09
-1.23109e-08
-3.75845e-09
-1.23254e-08
-2.68705e-09
-1.23378e-08
-1.61439e-09
-1.23482e-08
-5.40692e-10
-1.23565e-08
5.33812e-10
-1.23626e-08
1.6089e-09
-1.23667e-08
2.68435e-09
-1.23688e-08
3.75994e-09
-1.23687e-08
4.83544e-09
-1.23665e-08
5.91063e-09
-1.23623e-08
6.98528e-09
-1.2356e-08
8.05918e-09
-1.23475e-08
9.13208e-09
-1.23371e-08
1.02038e-08
-1.23245e-08
1.12741e-08
-1.23098e-08
1.23427e-08
-1.22931e-08
1.34094e-08
-1.22744e-08
1.44741e-08
-1.22535e-08
1.55364e-08
-1.22306e-08
1.65962e-08
-1.22057e-08
1.76533e-08
-1.21787e-08
1.87074e-08
-1.21497e-08
1.97582e-08
-1.21187e-08
2.08057e-08
-1.20856e-08
2.18496e-08
-1.20506e-08
2.28897e-08
-1.20135e-08
2.39257e-08
-1.19744e-08
2.49575e-08
-1.19334e-08
2.59849e-08
-1.18904e-08
2.70077e-08
-1.18454e-08
2.80257e-08
-1.17984e-08
2.90388e-08
-1.17494e-08
3.00466e-08
-1.16985e-08
3.10492e-08
-1.16456e-08
3.20462e-08
-1.15906e-08
3.30375e-08
-1.15336e-08
3.40229e-08
-1.14746e-08
3.50024e-08
-1.14134e-08
3.59757e-08
-1.135e-08
3.69428e-08
-1.12842e-08
3.79035e-08
-1.12161e-08
3.88578e-08
-1.11454e-08
3.98056e-08
-1.10719e-08
4.07468e-08
-1.09956e-08
4.16814e-08
-1.09162e-08
4.26095e-08
-1.08335e-08
4.35309e-08
-1.07473e-08
4.44458e-08
-1.06573e-08
4.53541e-08
-1.05636e-08
4.62561e-08
-1.04657e-08
4.71517e-08
-1.03638e-08
4.80412e-08
-1.02577e-08
4.89245e-08
-1.01474e-08
4.98019e-08
-1.00331e-08
5.06733e-08
-9.91499e-09
5.15389e-08
-9.7935e-09
5.2399e-08
-9.6693e-09
5.32542e-08
-9.54347e-09
-9.41696e-09
5.4105e-08
-4.92518e-08
-1.07777e-08
-4.82813e-08
-1.09004e-08
-4.73056e-08
-1.10241e-08
-4.63241e-08
-1.11468e-08
-4.53363e-08
-1.12672e-08
-4.43421e-08
-1.13844e-08
-4.33414e-08
-1.14979e-08
-4.23342e-08
-1.16074e-08
-4.13203e-08
-1.17128e-08
-4.02996e-08
-1.18141e-08
-3.92721e-08
-1.19112e-08
-3.82378e-08
-1.20044e-08
-3.71966e-08
-1.20937e-08
-3.61485e-08
-1.21793e-08
-3.50935e-08
-1.22613e-08
-3.40316e-08
-1.234e-08
-3.29628e-08
-1.24155e-08
-3.18873e-08
-1.24879e-08
-3.08051e-08
-1.25576e-08
-2.97163e-08
-1.26245e-08
-2.8621e-08
-1.26889e-08
-2.75193e-08
-1.27507e-08
-2.64115e-08
-1.28102e-08
-2.52976e-08
-1.28673e-08
-2.41779e-08
-1.29221e-08
-2.30526e-08
-1.29746e-08
-2.19217e-08
-1.30249e-08
-2.07857e-08
-1.3073e-08
-1.96445e-08
-1.31189e-08
-1.84986e-08
-1.31626e-08
-1.7348e-08
-1.3204e-08
-1.6193e-08
-1.32432e-08
-1.50339e-08
-1.32802e-08
-1.38709e-08
-1.33149e-08
-1.27041e-08
-1.33474e-08
-1.15339e-08
-1.33777e-08
-1.03605e-08
-1.34056e-08
-9.18415e-09
-1.34313e-08
-8.00505e-09
-1.34547e-08
-6.82348e-09
-1.34758e-08
-5.63968e-09
-1.34946e-08
-4.45391e-09
-1.35111e-08
-3.26642e-09
-1.35252e-08
-2.07746e-09
-1.3537e-08
-8.8729e-10
-1.35465e-08
3.03841e-10
-1.35537e-08
1.49567e-09
-1.35585e-08
2.68793e-09
-1.35609e-08
3.88036e-09
-1.3561e-08
5.0727e-09
-1.35588e-08
6.26469e-09
-1.35542e-08
7.45607e-09
-1.35472e-08
8.64657e-09
-1.3538e-08
9.83593e-09
-1.35263e-08
1.10239e-08
-1.35124e-08
1.22102e-08
-1.34961e-08
1.33946e-08
-1.34775e-08
1.45768e-08
-1.34566e-08
1.57566e-08
-1.34333e-08
1.69337e-08
-1.34078e-08
1.8108e-08
-1.338e-08
1.9279e-08
-1.33498e-08
2.04467e-08
-1.33174e-08
2.16108e-08
-1.32828e-08
2.27709e-08
-1.32459e-08
2.3927e-08
-1.32067e-08
2.50787e-08
-1.31653e-08
2.62258e-08
-1.31217e-08
2.73681e-08
-1.30758e-08
2.85054e-08
-1.30278e-08
2.96374e-08
-1.29776e-08
3.0764e-08
-1.29251e-08
3.18849e-08
-1.28705e-08
3.3e-08
-1.28138e-08
3.41091e-08
-1.27548e-08
3.52118e-08
-1.26936e-08
3.63082e-08
-1.26302e-08
3.7398e-08
-1.25646e-08
3.8481e-08
-1.24966e-08
3.95572e-08
-1.24263e-08
4.06263e-08
-1.23535e-08
4.16882e-08
-1.22782e-08
4.2743e-08
-1.22003e-08
4.37904e-08
-1.21195e-08
4.48304e-08
-1.20358e-08
4.5863e-08
-1.19489e-08
4.68882e-08
-1.18588e-08
4.7906e-08
-1.17651e-08
4.89163e-08
-1.16678e-08
4.99193e-08
-1.15667e-08
5.09149e-08
-1.14616e-08
5.19034e-08
-1.13524e-08
5.28847e-08
-1.12391e-08
5.3859e-08
-1.11218e-08
5.48264e-08
-1.10005e-08
5.5787e-08
-1.08756e-08
5.67408e-08
-1.07474e-08
5.76882e-08
-1.06169e-08
5.86301e-08
-1.04856e-08
-1.03555e-08
5.9569e-08
-5.47666e-08
-1.18441e-08
-5.36975e-08
-1.19694e-08
-5.26233e-08
-1.20982e-08
-5.15426e-08
-1.22274e-08
-5.0455e-08
-1.23548e-08
-4.93602e-08
-1.24792e-08
-4.82579e-08
-1.26001e-08
-4.71482e-08
-1.27171e-08
-4.60309e-08
-1.28301e-08
-4.49059e-08
-1.29391e-08
-4.37732e-08
-1.3044e-08
-4.26326e-08
-1.3145e-08
-4.14842e-08
-1.32422e-08
-4.03279e-08
-1.33356e-08
-3.91637e-08
-1.34256e-08
-3.79916e-08
-1.35122e-08
-3.68117e-08
-1.35955e-08
-3.5624e-08
-1.36758e-08
-3.44286e-08
-1.37531e-08
-3.32257e-08
-1.38276e-08
-3.20154e-08
-1.38994e-08
-3.07977e-08
-1.39686e-08
-2.9573e-08
-1.40351e-08
-2.83413e-08
-1.40992e-08
-2.71028e-08
-1.41607e-08
-2.58578e-08
-1.42198e-08
-2.46064e-08
-1.42765e-08
-2.33489e-08
-1.43307e-08
-2.20856e-08
-1.43824e-08
-2.08166e-08
-1.44317e-08
-1.95422e-08
-1.44785e-08
-1.82627e-08
-1.45228e-08
-1.69784e-08
-1.45647e-08
-1.56894e-08
-1.4604e-08
-1.43962e-08
-1.46408e-08
-1.30988e-08
-1.46751e-08
-1.17977e-08
-1.47068e-08
-1.04931e-08
-1.4736e-08
-9.18532e-09
-1.47626e-08
-7.87457e-09
-1.47867e-08
-6.56116e-09
-1.48081e-08
-5.24541e-09
-1.48269e-08
-3.92759e-09
-1.48431e-08
-2.60802e-09
-1.48567e-08
-1.28699e-09
-1.48676e-08
3.51861e-11
-1.48759e-08
1.35819e-09
-1.48815e-08
2.6817e-09
-1.48844e-08
4.0054e-09
-1.48847e-08
5.32899e-09
-1.48823e-08
6.65217e-09
-1.48773e-08
7.97462e-09
-1.48697e-08
9.29605e-09
-1.48593e-08
1.06161e-08
-1.48464e-08
1.19346e-08
-1.48308e-08
1.32512e-08
-1.48126e-08
1.45655e-08
-1.47918e-08
1.58772e-08
-1.47683e-08
1.71862e-08
-1.47422e-08
1.8492e-08
-1.47136e-08
1.97944e-08
-1.46823e-08
2.10931e-08
-1.46485e-08
2.23878e-08
-1.46121e-08
2.36783e-08
-1.45732e-08
2.49642e-08
-1.45317e-08
2.62454e-08
-1.44877e-08
2.75215e-08
-1.44413e-08
2.87923e-08
-1.43923e-08
3.00575e-08
-1.43409e-08
3.13169e-08
-1.4287e-08
3.25702e-08
-1.42307e-08
3.38172e-08
-1.41719e-08
3.50577e-08
-1.41108e-08
3.62914e-08
-1.40472e-08
3.75181e-08
-1.39813e-08
3.87376e-08
-1.39129e-08
3.99497e-08
-1.38421e-08
4.11542e-08
-1.37689e-08
4.2351e-08
-1.36932e-08
4.35399e-08
-1.3615e-08
4.47208e-08
-1.35342e-08
4.58934e-08
-1.34507e-08
4.70578e-08
-1.33645e-08
4.82138e-08
-1.32754e-08
4.93614e-08
-1.31833e-08
5.05006e-08
-1.3088e-08
5.16313e-08
-1.29894e-08
5.27535e-08
-1.28873e-08
5.38674e-08
-1.27816e-08
5.49729e-08
-1.2672e-08
5.60702e-08
-1.25587e-08
5.71592e-08
-1.24413e-08
5.82401e-08
-1.23199e-08
5.9313e-08
-1.21946e-08
6.03779e-08
-1.20654e-08
6.14352e-08
-1.19327e-08
6.24851e-08
-1.17971e-08
6.3528e-08
-1.16598e-08
6.45653e-08
-1.15231e-08
-1.13906e-08
6.56006e-08
-6.08773e-08
-1.30204e-08
-5.97001e-08
-1.31464e-08
-5.85181e-08
-1.32801e-08
-5.73296e-08
-1.34158e-08
-5.61335e-08
-1.35507e-08
-5.49296e-08
-1.3683e-08
-5.37175e-08
-1.3812e-08
-5.2497e-08
-1.39374e-08
-5.1268e-08
-1.4059e-08
-5.00303e-08
-1.41766e-08
-4.87838e-08
-1.42904e-08
-4.75284e-08
-1.44003e-08
-4.6264e-08
-1.45065e-08
-4.49905e-08
-1.4609e-08
-4.37079e-08
-1.47081e-08
-4.24162e-08
-1.48038e-08
-4.11153e-08
-1.48962e-08
-3.98054e-08
-1.49856e-08
-3.84864e-08
-1.50719e-08
-3.71587e-08
-1.51552e-08
-3.58222e-08
-1.52357e-08
-3.44771e-08
-1.53135e-08
-3.31236e-08
-1.53884e-08
-3.17619e-08
-1.54607e-08
-3.03923e-08
-1.55302e-08
-2.90148e-08
-1.5597e-08
-2.76299e-08
-1.56612e-08
-2.62377e-08
-1.57226e-08
-2.48385e-08
-1.57813e-08
-2.34326e-08
-1.58373e-08
-2.20202e-08
-1.58905e-08
-2.06017e-08
-1.5941e-08
-1.91774e-08
-1.59887e-08
-1.77476e-08
-1.60336e-08
-1.63125e-08
-1.60756e-08
-1.48725e-08
-1.61148e-08
-1.3428e-08
-1.61511e-08
-1.19793e-08
-1.61845e-08
-1.05267e-08
-1.6215e-08
-9.0705e-09
-1.62426e-08
-7.61112e-09
-1.62673e-08
-6.1489e-09
-1.6289e-08
-4.68418e-09
-1.63077e-08
-3.21733e-09
-1.63234e-08
-1.74871e-09
-1.63361e-08
-2.78696e-10
-1.63458e-08
1.19233e-09
-1.63525e-08
2.66398e-09
-1.63561e-08
4.13588e-09
-1.63567e-08
5.60764e-09
-1.63542e-08
7.07892e-09
-1.63487e-08
8.54933e-09
-1.63402e-08
1.00185e-08
-1.63287e-08
1.14862e-08
-1.63142e-08
1.29518e-08
-1.62967e-08
1.44152e-08
-1.62761e-08
1.5876e-08
-1.62526e-08
1.73337e-08
-1.62262e-08
1.87881e-08
-1.61967e-08
2.02387e-08
-1.61643e-08
2.16853e-08
-1.6129e-08
2.31274e-08
-1.60908e-08
2.45647e-08
-1.60496e-08
2.5997e-08
-1.60056e-08
2.74239e-08
-1.59588e-08
2.8845e-08
-1.59091e-08
3.026e-08
-1.58565e-08
3.16687e-08
-1.58012e-08
3.30708e-08
-1.57431e-08
3.44659e-08
-1.56823e-08
3.58538e-08
-1.56187e-08
3.72343e-08
-1.55525e-08
3.86069e-08
-1.54836e-08
3.99716e-08
-1.5412e-08
4.1328e-08
-1.53377e-08
4.26759e-08
-1.52609e-08
4.40151e-08
-1.51814e-08
4.53454e-08
-1.50992e-08
4.66666e-08
-1.50144e-08
4.79785e-08
-1.49269e-08
4.9281e-08
-1.48367e-08
5.05741e-08
-1.47437e-08
5.18575e-08
-1.46478e-08
5.31312e-08
-1.4549e-08
5.43951e-08
-1.44472e-08
5.56493e-08
-1.43422e-08
5.68939e-08
-1.42338e-08
5.81287e-08
-1.41221e-08
5.9354e-08
-1.40068e-08
6.05698e-08
-1.38878e-08
6.17764e-08
-1.37651e-08
6.29737e-08
-1.36385e-08
6.4162e-08
-1.35081e-08
6.53413e-08
-1.33739e-08
6.65119e-08
-1.3236e-08
6.76741e-08
-1.3095e-08
6.88284e-08
-1.29515e-08
6.99759e-08
-1.28073e-08
7.11185e-08
-1.26656e-08
-1.25327e-08
7.22602e-08
-6.7658e-08
-1.43182e-08
-6.63623e-08
-1.44422e-08
-6.50629e-08
-1.45795e-08
-6.37573e-08
-1.47214e-08
-6.24442e-08
-1.48638e-08
-6.11227e-08
-1.50045e-08
-5.97924e-08
-1.51423e-08
-5.8453e-08
-1.52769e-08
-5.71041e-08
-1.54079e-08
-5.57455e-08
-1.55353e-08
-5.43769e-08
-1.5659e-08
-5.29982e-08
-1.57791e-08
-5.16091e-08
-1.58957e-08
-5.02094e-08
-1.60088e-08
-4.8799e-08
-1.61186e-08
-4.73779e-08
-1.62251e-08
-4.5946e-08
-1.63283e-08
-4.45034e-08
-1.64284e-08
-4.305e-08
-1.65254e-08
-4.15859e-08
-1.66194e-08
-4.01114e-08
-1.67105e-08
-3.86265e-08
-1.67985e-08
-3.71315e-08
-1.68837e-08
-3.56265e-08
-1.69658e-08
-3.41119e-08
-1.70451e-08
-3.25878e-08
-1.71214e-08
-3.10546e-08
-1.71946e-08
-2.95126e-08
-1.72649e-08
-2.7962e-08
-1.73322e-08
-2.64032e-08
-1.73964e-08
-2.48365e-08
-1.74575e-08
-2.32623e-08
-1.75155e-08
-2.16809e-08
-1.75704e-08
-2.00927e-08
-1.7622e-08
-1.8498e-08
-1.76705e-08
-1.68974e-08
-1.77157e-08
-1.5291e-08
-1.77576e-08
-1.36795e-08
-1.77962e-08
-1.20631e-08
-1.78315e-08
-1.04423e-08
-1.78635e-08
-8.81754e-09
-1.78921e-08
-7.18926e-09
-1.79173e-08
-5.55787e-09
-1.79391e-08
-3.92382e-09
-1.79575e-08
-2.28755e-09
-1.79724e-08
-6.49505e-10
-1.79839e-08
9.89847e-10
-1.79919e-08
2.63003e-09
-1.79963e-08
4.27056e-09
-1.79972e-08
5.91097e-09
-1.79946e-08
7.55082e-09
-1.79886e-08
9.18965e-09
-1.7979e-08
1.0827e-08
-1.7966e-08
1.24624e-08
-1.79496e-08
1.40955e-08
-1.79296e-08
1.57257e-08
-1.79063e-08
1.73527e-08
-1.78795e-08
1.8976e-08
-1.78494e-08
2.05952e-08
-1.78158e-08
2.22098e-08
-1.77788e-08
2.38194e-08
-1.77385e-08
2.54236e-08
-1.76949e-08
2.7022e-08
-1.76479e-08
2.86142e-08
-1.75977e-08
3.01998e-08
-1.75442e-08
3.17784e-08
-1.74875e-08
3.33496e-08
-1.74276e-08
3.4913e-08
-1.73645e-08
3.64683e-08
-1.72983e-08
3.80151e-08
-1.7229e-08
3.95531e-08
-1.71566e-08
4.10819e-08
-1.70813e-08
4.26013e-08
-1.70029e-08
4.41109e-08
-1.69215e-08
4.56105e-08
-1.68372e-08
4.70999e-08
-1.67501e-08
4.85787e-08
-1.666e-08
5.00467e-08
-1.65671e-08
5.15038e-08
-1.64713e-08
5.29497e-08
-1.63727e-08
5.43844e-08
-1.62712e-08
5.58077e-08
-1.61669e-08
5.72195e-08
-1.60596e-08
5.86199e-08
-1.59493e-08
6.00088e-08
-1.5836e-08
6.13863e-08
-1.57196e-08
6.27525e-08
-1.56e-08
6.41076e-08
-1.54771e-08
6.54517e-08
-1.53509e-08
6.67851e-08
-1.52213e-08
6.81081e-08
-1.50881e-08
6.94209e-08
-1.49514e-08
7.0724e-08
-1.48111e-08
7.20177e-08
-1.46674e-08
7.33023e-08
-1.45205e-08
7.45783e-08
-1.43709e-08
7.58465e-08
-1.42198e-08
7.71085e-08
-1.40693e-08
7.8367e-08
-1.39239e-08
-1.37931e-08
7.96273e-08
-7.52075e-08
-1.57497e-08
-7.37822e-08
-1.58675e-08
-7.23555e-08
-1.60063e-08
-7.09237e-08
-1.61532e-08
-6.9485e-08
-1.63026e-08
-6.8038e-08
-1.64515e-08
-6.6582e-08
-1.65985e-08
-6.51161e-08
-1.67428e-08
-6.364e-08
-1.68841e-08
-6.2153e-08
-1.70222e-08
-6.06547e-08
-1.71573e-08
-5.91447e-08
-1.72891e-08
-5.76226e-08
-1.74178e-08
-5.6088e-08
-1.75434e-08
-5.45406e-08
-1.76658e-08
-5.29804e-08
-1.77852e-08
-5.14071e-08
-1.79015e-08
-4.98206e-08
-1.80147e-08
-4.82211e-08
-1.81249e-08
-4.66084e-08
-1.8232e-08
-4.49828e-08
-1.8336e-08
-4.33443e-08
-1.84368e-08
-4.16933e-08
-1.85346e-08
-4.00299e-08
-1.86291e-08
-3.83543e-08
-1.87204e-08
-3.6667e-08
-1.88085e-08
-3.49682e-08
-1.88932e-08
-3.32584e-08
-1.89746e-08
-3.15379e-08
-1.90526e-08
-2.9807e-08
-1.91271e-08
-2.80662e-08
-1.91981e-08
-2.6316e-08
-1.92656e-08
-2.45568e-08
-1.93295e-08
-2.2789e-08
-1.93897e-08
-2.10131e-08
-1.94462e-08
-1.92296e-08
-1.9499e-08
-1.7439e-08
-1.95481e-08
-1.56419e-08
-1.95933e-08
-1.38386e-08
-1.96348e-08
-1.20298e-08
-1.96723e-08
-1.02159e-08
-1.9706e-08
-8.39756e-09
-1.97357e-08
-6.57526e-09
-1.97615e-08
-4.74955e-09
-1.97833e-08
-2.92098e-09
-1.98011e-08
-1.09012e-09
-1.98149e-08
7.42467e-10
-1.98246e-08
2.57616e-09
-1.98301e-08
4.41036e-09
-1.98315e-08
6.24446e-09
-1.98288e-08
8.0779e-09
-1.98221e-08
9.91009e-09
-1.98113e-08
1.17405e-08
-1.97965e-08
1.35684e-08
-1.97777e-08
1.53935e-08
-1.97549e-08
1.7215e-08
-1.9728e-08
1.90324e-08
-1.96972e-08
2.08453e-08
-1.96624e-08
2.2653e-08
-1.96237e-08
2.4455e-08
-1.95811e-08
2.62508e-08
-1.95346e-08
2.80398e-08
-1.94842e-08
2.98217e-08
-1.943e-08
3.15958e-08
-1.93719e-08
3.33616e-08
-1.93102e-08
3.51187e-08
-1.92447e-08
3.68666e-08
-1.91755e-08
3.86048e-08
-1.91027e-08
4.03328e-08
-1.90263e-08
4.20502e-08
-1.89464e-08
4.37567e-08
-1.8863e-08
4.54517e-08
-1.87762e-08
4.71348e-08
-1.8686e-08
4.88058e-08
-1.85924e-08
5.04642e-08
-1.84956e-08
5.21098e-08
-1.83956e-08
5.37423e-08
-1.82924e-08
5.53613e-08
-1.81861e-08
5.69668e-08
-1.80767e-08
5.85584e-08
-1.79643e-08
6.01362e-08
-1.78489e-08
6.17e-08
-1.77305e-08
6.32498e-08
-1.76092e-08
6.47856e-08
-1.7485e-08
6.63076e-08
-1.73579e-08
6.7816e-08
-1.72278e-08
6.93109e-08
-1.70949e-08
7.07928e-08
-1.6959e-08
7.22621e-08
-1.68201e-08
7.37192e-08
-1.66783e-08
7.51647e-08
-1.65336e-08
7.65991e-08
-1.63858e-08
7.80231e-08
-1.62351e-08
7.94373e-08
-1.60816e-08
8.08426e-08
-1.59257e-08
8.22399e-08
-1.5768e-08
8.36305e-08
-1.56102e-08
8.50165e-08
-1.54552e-08
8.64011e-08
-1.53085e-08
-1.51838e-08
8.7792e-08
-8.36669e-08
-1.73285e-08
-8.21008e-08
-1.74337e-08
-8.05369e-08
-1.75704e-08
-7.89703e-08
-1.772e-08
-7.7398e-08
-1.78751e-08
-7.58182e-08
-1.80316e-08
-7.42293e-08
-1.81875e-08
-7.26304e-08
-1.83419e-08
-7.10204e-08
-1.84943e-08
-6.93983e-08
-1.86445e-08
-6.77634e-08
-1.87923e-08
-6.61148e-08
-1.89379e-08
-6.44517e-08
-1.9081e-08
-6.27737e-08
-1.92215e-08
-6.10801e-08
-1.93595e-08
-5.93706e-08
-1.94948e-08
-5.76448e-08
-1.96274e-08
-5.59027e-08
-1.9757e-08
-5.4144e-08
-1.98837e-08
-5.23687e-08
-2.00073e-08
-5.0577e-08
-2.01278e-08
-4.87691e-08
-2.02449e-08
-4.6945e-08
-2.03587e-08
-4.51052e-08
-2.0469e-08
-4.32499e-08
-2.05758e-08
-4.13795e-08
-2.06789e-08
-3.94945e-08
-2.07783e-08
-3.75952e-08
-2.08739e-08
-3.56823e-08
-2.09656e-08
-3.37561e-08
-2.10533e-08
-3.18172e-08
-2.1137e-08
-2.98663e-08
-2.12166e-08
-2.79038e-08
-2.1292e-08
-2.59303e-08
-2.13632e-08
-2.39465e-08
-2.14301e-08
-2.19529e-08
-2.14927e-08
-1.99502e-08
-2.15508e-08
-1.79391e-08
-2.16046e-08
-1.59201e-08
-2.16538e-08
-1.38939e-08
-2.16985e-08
-1.18613e-08
-2.17387e-08
-9.82284e-09
-2.17742e-08
-7.77926e-09
-2.18051e-08
-5.73123e-09
-2.18314e-08
-3.67947e-09
-2.18529e-08
-1.62469e-09
-2.18697e-08
4.32397e-10
-2.18817e-08
2.49098e-09
-2.18887e-08
4.55027e-09
-2.18908e-08
6.6095e-09
-2.1888e-08
8.66794e-09
-2.18805e-08
1.07249e-08
-2.18682e-08
1.27796e-08
-2.18511e-08
1.48313e-08
-2.18294e-08
1.68793e-08
-2.18028e-08
1.8923e-08
-2.17716e-08
2.09616e-08
-2.17357e-08
2.29944e-08
-2.16952e-08
2.50207e-08
-2.165e-08
2.70399e-08
-2.16002e-08
2.90513e-08
-2.15458e-08
3.10541e-08
-2.14869e-08
3.30478e-08
-2.14235e-08
3.50316e-08
-2.13557e-08
3.70049e-08
-2.12834e-08
3.89671e-08
-2.12068e-08
4.09176e-08
-2.11259e-08
4.28557e-08
-2.10408e-08
4.47809e-08
-2.09515e-08
4.66926e-08
-2.08581e-08
4.85902e-08
-2.07607e-08
5.04733e-08
-2.06593e-08
5.23413e-08
-2.0554e-08
5.41938e-08
-2.04449e-08
5.60302e-08
-2.0332e-08
5.78501e-08
-2.02156e-08
5.96533e-08
-2.00956e-08
6.14392e-08
-1.99722e-08
6.32078e-08
-1.98454e-08
6.49587e-08
-1.97154e-08
6.6692e-08
-1.95823e-08
6.84075e-08
-1.94462e-08
7.01052e-08
-1.93072e-08
7.17855e-08
-1.91654e-08
7.34485e-08
-1.9021e-08
7.50946e-08
-1.8874e-08
7.67243e-08
-1.87247e-08
7.83383e-08
-1.8573e-08
7.99372e-08
-1.84191e-08
8.15219e-08
-1.82631e-08
8.30934e-08
-1.81051e-08
8.46526e-08
-1.79451e-08
8.62007e-08
-1.77833e-08
8.77387e-08
-1.76198e-08
8.9268e-08
-1.74552e-08
9.07903e-08
-1.72904e-08
9.23077e-08
-1.71275e-08
9.38232e-08
-1.69706e-08
9.53415e-08
-1.68269e-08
-1.67159e-08
9.68737e-08
-9.32542e-08
-1.90682e-08
-9.15358e-08
-1.91521e-08
-8.98249e-08
-1.92812e-08
-8.81149e-08
-1.94299e-08
-8.64016e-08
-1.95883e-08
-8.4682e-08
-1.97511e-08
-8.2954e-08
-1.99154e-08
-8.12157e-08
-2.00801e-08
-7.94654e-08
-2.02444e-08
-7.77017e-08
-2.04081e-08
-7.59231e-08
-2.05709e-08
-7.41281e-08
-2.07328e-08
-7.23156e-08
-2.08934e-08
-7.04845e-08
-2.10525e-08
-6.8634e-08
-2.121e-08
-6.67632e-08
-2.13655e-08
-6.48718e-08
-2.15188e-08
-6.29592e-08
-2.16695e-08
-6.10253e-08
-2.18176e-08
-5.907e-08
-2.19626e-08
-5.70934e-08
-2.21043e-08
-5.50957e-08
-2.22427e-08
-5.30771e-08
-2.23773e-08
-5.10379e-08
-2.25082e-08
-4.89787e-08
-2.2635e-08
-4.69e-08
-2.27577e-08
-4.48021e-08
-2.28761e-08
-4.26859e-08
-2.29901e-08
-4.05519e-08
-2.30996e-08
-3.84007e-08
-2.32045e-08
-3.62332e-08
-2.33046e-08
-3.40499e-08
-2.33998e-08
-3.18518e-08
-2.34902e-08
-2.96394e-08
-2.35755e-08
-2.74137e-08
-2.36558e-08
-2.51753e-08
-2.3731e-08
-2.29252e-08
-2.38009e-08
-2.06641e-08
-2.38656e-08
-1.83929e-08
-2.3925e-08
-1.61123e-08
-2.3979e-08
-1.38234e-08
-2.40276e-08
-1.15268e-08
-2.40707e-08
-9.22359e-09
-2.41083e-08
-6.91455e-09
-2.41403e-08
-4.6006e-09
-2.41668e-08
-2.28268e-09
-2.41875e-08
3.82962e-11
-2.42026e-08
2.3613e-09
-2.42116e-08
4.68529e-09
-2.42147e-08
7.00929e-09
-2.4212e-08
9.33237e-09
-2.42036e-08
1.16536e-08
-2.41894e-08
1.39721e-08
-2.41696e-08
1.6287e-08
-2.41442e-08
1.85973e-08
-2.41131e-08
2.09021e-08
-2.40764e-08
2.32006e-08
-2.40342e-08
2.54918e-08
-2.39863e-08
2.77749e-08
-2.3933e-08
3.00489e-08
-2.38741e-08
3.2313e-08
-2.38098e-08
3.45663e-08
-2.37401e-08
3.68079e-08
-2.36651e-08
3.9037e-08
-2.35847e-08
4.12527e-08
-2.34992e-08
4.34543e-08
-2.34084e-08
4.56409e-08
-2.33125e-08
4.78116e-08
-2.32116e-08
4.99658e-08
-2.31057e-08
5.21026e-08
-2.29949e-08
5.42214e-08
-2.28794e-08
5.63214e-08
-2.27591e-08
5.84019e-08
-2.26343e-08
6.04622e-08
-2.2505e-08
6.25018e-08
-2.23714e-08
6.45201e-08
-2.22336e-08
6.65165e-08
-2.20918e-08
6.84905e-08
-2.1946e-08
7.04419e-08
-2.17966e-08
7.23704e-08
-2.16437e-08
7.42756e-08
-2.14875e-08
7.61578e-08
-2.13282e-08
7.80169e-08
-2.11662e-08
7.98533e-08
-2.10017e-08
8.16674e-08
-2.0835e-08
8.346e-08
-2.06664e-08
8.52317e-08
-2.04963e-08
8.69837e-08
-2.03248e-08
8.87171e-08
-2.01524e-08
9.04333e-08
-1.99792e-08
9.21338e-08
-1.98055e-08
9.38202e-08
-1.96315e-08
9.54944e-08
-1.94575e-08
9.71581e-08
-1.92837e-08
9.88136e-08
-1.91107e-08
1.00463e-07
-1.894e-08
1.0211e-07
-1.87743e-08
1.03759e-07
-1.86194e-08
1.05417e-07
-1.84853e-08
-1.84001e-08
1.07101e-07
-1.04338e-07
-2.09843e-08
-1.02454e-07
-2.10364e-08
-1.00584e-07
-2.11508e-08
-9.87205e-08
-2.12937e-08
-9.68566e-08
-2.14523e-08
-9.49882e-08
-2.16194e-08
-9.31123e-08
-2.17914e-08
-9.12258e-08
-2.19666e-08
-8.93261e-08
-2.2144e-08
-8.74109e-08
-2.23233e-08
-8.54777e-08
-2.25041e-08
-8.35245e-08
-2.2686e-08
-8.15494e-08
-2.28685e-08
-7.95506e-08
-2.30513e-08
-7.75269e-08
-2.32337e-08
-7.5477e-08
-2.34153e-08
-7.34002e-08
-2.35955e-08
-7.12957e-08
-2.37739e-08
-6.91634e-08
-2.39497e-08
-6.70031e-08
-2.41228e-08
-6.48147e-08
-2.42925e-08
-6.25987e-08
-2.44585e-08
-6.03553e-08
-2.46205e-08
-5.80852e-08
-2.47782e-08
-5.57888e-08
-2.49313e-08
-5.34669e-08
-2.50795e-08
-5.11202e-08
-2.52227e-08
-4.87496e-08
-2.53606e-08
-4.6356e-08
-2.54932e-08
-4.39402e-08
-2.56202e-08
-4.15031e-08
-2.57416e-08
-3.90458e-08
-2.58571e-08
-3.65692e-08
-2.59667e-08
-3.40744e-08
-2.60704e-08
-3.15623e-08
-2.61679e-08
-2.9034e-08
-2.62593e-08
-2.64906e-08
-2.63444e-08
-2.39331e-08
-2.64232e-08
-2.13626e-08
-2.64955e-08
-1.87801e-08
-2.65615e-08
-1.61868e-08
-2.66209e-08
-1.35837e-08
-2.66737e-08
-1.0972e-08
-2.67199e-08
-8.35279e-09
-2.67595e-08
-5.7272e-09
-2.67923e-08
-3.09641e-09
-2.68183e-08
-4.61603e-10
-2.68374e-08
2.17596e-09
-2.68492e-08
4.81495e-09
-2.68538e-08
7.45408e-09
-2.68512e-08
1.00922e-08
-2.68417e-08
1.27281e-08
-2.68254e-08
1.53607e-08
-2.68023e-08
1.79888e-08
-2.67723e-08
2.06112e-08
-2.67356e-08
2.32269e-08
-2.66921e-08
2.58347e-08
-2.66419e-08
2.84335e-08
-2.65851e-08
3.1022e-08
-2.65215e-08
3.35992e-08
-2.64514e-08
3.6164e-08
-2.63746e-08
3.87151e-08
-2.62914e-08
4.12516e-08
-2.62017e-08
4.37723e-08
-2.61055e-08
4.62761e-08
-2.60031e-08
4.8762e-08
-2.58943e-08
5.12289e-08
-2.57794e-08
5.36757e-08
-2.56584e-08
5.61013e-08
-2.55313e-08
5.85048e-08
-2.53984e-08
6.0885e-08
-2.52596e-08
6.3241e-08
-2.51152e-08
6.55718e-08
-2.49653e-08
6.78765e-08
-2.48099e-08
7.01543e-08
-2.46494e-08
7.24044e-08
-2.44839e-08
7.46261e-08
-2.43135e-08
7.68186e-08
-2.41387e-08
7.89815e-08
-2.39596e-08
8.11143e-08
-2.37766e-08
8.32169e-08
-2.35901e-08
8.5289e-08
-2.34005e-08
8.73309e-08
-2.32083e-08
8.9343e-08
-2.3014e-08
9.13259e-08
-2.28182e-08
9.32807e-08
-2.26214e-08
9.52085e-08
-2.24243e-08
9.71109e-08
-2.22275e-08
9.89899e-08
-2.20315e-08
1.00847e-07
-2.18369e-08
1.02686e-07
-2.16442e-08
1.04508e-07
-2.14538e-08
1.06317e-07
-2.12661e-08
1.08115e-07
-2.10815e-08
1.09905e-07
-2.0901e-08
1.11691e-07
-2.07262e-08
1.13477e-07
-2.05612e-08
1.15271e-07
-2.04135e-08
1.17084e-07
-2.02978e-08
-2.02518e-08
1.18936e-07
-1.17516e-07
-2.30935e-08
-1.15449e-07
-2.31038e-08
-1.13404e-07
-2.31958e-08
-1.1137e-07
-2.33278e-08
-1.09339e-07
-2.34832e-08
-1.07305e-07
-2.36529e-08
-1.05264e-07
-2.38322e-08
-1.03212e-07
-2.40188e-08
-1.01145e-07
-2.42116e-08
-9.9058e-08
-2.44099e-08
-9.69489e-08
-2.46131e-08
-9.48144e-08
-2.48204e-08
-9.26517e-08
-2.50312e-08
-9.04585e-08
-2.52445e-08
-8.82327e-08
-2.54594e-08
-8.59729e-08
-2.56751e-08
-8.36778e-08
-2.58906e-08
-8.13467e-08
-2.61049e-08
-7.89792e-08
-2.63173e-08
-7.6575e-08
-2.65269e-08
-7.41344e-08
-2.67331e-08
-7.16577e-08
-2.69352e-08
-6.91455e-08
-2.71327e-08
-6.65984e-08
-2.73252e-08
-6.40175e-08
-2.75122e-08
-6.14036e-08
-2.76934e-08
-5.87579e-08
-2.78684e-08
-5.60815e-08
-2.80371e-08
-5.33755e-08
-2.81993e-08
-5.06412e-08
-2.83546e-08
-4.78798e-08
-2.8503e-08
-4.50926e-08
-2.86444e-08
-4.22809e-08
-2.87785e-08
-3.94461e-08
-2.89053e-08
-3.65893e-08
-2.90247e-08
-3.3712e-08
-2.91366e-08
-3.08156e-08
-2.92408e-08
-2.79014e-08
-2.93374e-08
-2.49707e-08
-2.94262e-08
-2.2025e-08
-2.95072e-08
-1.90656e-08
-2.95802e-08
-1.6094e-08
-2.96454e-08
-1.31115e-08
-2.97025e-08
-1.01194e-08
-2.97515e-08
-7.11928e-09
-2.97924e-08
-4.11246e-09
-2.9825e-08
-1.10043e-09
-2.98493e-08
1.91529e-09
-2.98648e-08
4.93306e-09
-2.98714e-08
7.95127e-09
-2.98693e-08
1.09684e-08
-2.98587e-08
1.3983e-08
-2.98398e-08
1.69935e-08
-2.98127e-08
1.99987e-08
-2.97774e-08
2.2997e-08
-2.97338e-08
2.5987e-08
-2.96821e-08
2.89674e-08
-2.96223e-08
3.19367e-08
-2.95543e-08
3.48936e-08
-2.94783e-08
3.78365e-08
-2.93942e-08
4.07641e-08
-2.93022e-08
4.3675e-08
-2.92022e-08
4.65678e-08
-2.90943e-08
4.94411e-08
-2.89786e-08
5.22934e-08
-2.88552e-08
5.51233e-08
-2.87241e-08
5.79295e-08
-2.85854e-08
6.07106e-08
-2.84392e-08
6.34652e-08
-2.82857e-08
6.61918e-08
-2.81248e-08
6.88892e-08
-2.79568e-08
7.15561e-08
-2.77819e-08
7.4191e-08
-2.76e-08
7.67928e-08
-2.74116e-08
7.93602e-08
-2.72167e-08
8.18922e-08
-2.70156e-08
8.43877e-08
-2.68088e-08
8.68456e-08
-2.65964e-08
8.92654e-08
-2.6379e-08
9.16462e-08
-2.61571e-08
9.39877e-08
-2.59313e-08
9.62896e-08
-2.57022e-08
9.85523e-08
-2.54707e-08
1.00776e-07
-2.52376e-08
1.02962e-07
-2.50038e-08
1.05111e-07
-2.47703e-08
1.07225e-07
-2.45383e-08
1.09306e-07
-2.43087e-08
1.11357e-07
-2.40826e-08
1.13382e-07
-2.3861e-08
1.15382e-07
-2.36447e-08
1.17363e-07
-2.34346e-08
1.19329e-07
-2.32312e-08
1.21283e-07
-2.30354e-08
1.23231e-07
-2.28483e-08
1.25177e-07
-2.26724e-08
1.27129e-07
-2.25126e-08
1.29094e-07
-2.23787e-08
1.31086e-07
-2.22899e-08
-2.22915e-08
1.33125e-07
-1.33699e-07
-2.54153e-08
-1.31424e-07
-2.53787e-08
-1.29176e-07
-2.54431e-08
-1.26943e-07
-2.55608e-08
-1.24715e-07
-2.57113e-08
-1.22485e-07
-2.58834e-08
-1.20245e-07
-2.60716e-08
-1.17991e-07
-2.62728e-08
-1.15718e-07
-2.64855e-08
-1.13419e-07
-2.67085e-08
-1.11091e-07
-2.69408e-08
-1.0873e-07
-2.71814e-08
-1.06333e-07
-2.74289e-08
-1.03895e-07
-2.7682e-08
-1.01415e-07
-2.79391e-08
-9.88911e-08
-2.81989e-08
-9.63217e-08
-2.84599e-08
-9.37059e-08
-2.87206e-08
-9.10434e-08
-2.89797e-08
-8.83341e-08
-2.92361e-08
-8.55783e-08
-2.94888e-08
-8.27767e-08
-2.97368e-08
-7.99301e-08
-2.99793e-08
-7.70395e-08
-3.02156e-08
-7.41062e-08
-3.04453e-08
-7.11316e-08
-3.06679e-08
-6.8117e-08
-3.08828e-08
-6.50641e-08
-3.10899e-08
-6.19743e-08
-3.12889e-08
-5.88493e-08
-3.14795e-08
-5.56907e-08
-3.16616e-08
-5.25001e-08
-3.18349e-08
-4.92792e-08
-3.19993e-08
-4.60297e-08
-3.21548e-08
-4.27533e-08
-3.23011e-08
-3.94515e-08
-3.24383e-08
-3.61261e-08
-3.25661e-08
-3.27789e-08
-3.26846e-08
-2.94114e-08
-3.27936e-08
-2.60254e-08
-3.28931e-08
-2.26226e-08
-3.2983e-08
-1.92047e-08
-3.30633e-08
-1.57733e-08
-3.31338e-08
-1.23302e-08
-3.31946e-08
-8.87712e-09
-3.32455e-08
-5.41569e-09
-3.32865e-08
-1.94768e-09
-3.33173e-08
1.52514e-09
-3.33376e-08
5.00084e-09
-3.3347e-08
8.47744e-09
-3.33457e-08
1.19531e-08
-3.33343e-08
1.5426e-08
-3.33127e-08
1.88944e-08
-3.32811e-08
2.23566e-08
-3.32396e-08
2.58109e-08
-3.31881e-08
2.92555e-08
-3.31268e-08
3.26888e-08
-3.30556e-08
3.6109e-08
-3.29746e-08
3.95145e-08
-3.28838e-08
4.29035e-08
-3.27832e-08
4.62743e-08
-3.2673e-08
4.96252e-08
-3.2553e-08
5.29543e-08
-3.24235e-08
5.626e-08
-3.22844e-08
5.95406e-08
-3.21358e-08
6.27942e-08
-3.19778e-08
6.60191e-08
-3.18105e-08
6.92137e-08
-3.16339e-08
7.23761e-08
-3.14482e-08
7.55046e-08
-3.12535e-08
7.85976e-08
-3.10499e-08
8.16532e-08
-3.08375e-08
8.46698e-08
-3.06166e-08
8.76456e-08
-3.03874e-08
9.0579e-08
-3.01502e-08
9.34685e-08
-2.99053e-08
9.63126e-08
-2.9653e-08
9.911e-08
-2.93939e-08
1.01859e-07
-2.91287e-08
1.0456e-07
-2.88579e-08
1.07211e-07
-2.85825e-08
1.09812e-07
-2.83035e-08
1.12363e-07
-2.8022e-08
1.14865e-07
-2.77393e-08
1.17318e-07
-2.74568e-08
1.19724e-07
-2.71762e-08
1.22085e-07
-2.6899e-08
1.24403e-07
-2.66271e-08
1.26682e-07
-2.63619e-08
1.28926e-07
-2.61051e-08
1.31139e-07
-2.58582e-08
1.33327e-07
-2.56224e-08
1.35495e-07
-2.53989e-08
1.37648e-07
-2.51888e-08
1.39794e-07
-2.4994e-08
1.41939e-07
-2.48174e-08
1.44091e-07
-2.4665e-08
1.46261e-07
-2.45485e-08
1.48461e-07
-2.44896e-08
-2.45384e-08
1.50707e-07
-1.54082e-07
-2.79722e-08
-1.51567e-07
-2.7894e-08
-1.49077e-07
-2.79331e-08
-1.46599e-07
-2.8039e-08
-1.44122e-07
-2.81883e-08
-1.41637e-07
-2.83681e-08
-1.39137e-07
-2.85717e-08
-1.36615e-07
-2.87952e-08
-1.34063e-07
-2.90365e-08
-1.31478e-07
-2.9294e-08
-1.28853e-07
-2.95659e-08
-1.26184e-07
-2.98506e-08
-1.23466e-07
-3.01462e-08
-1.20698e-07
-3.04506e-08
-1.17875e-07
-3.07616e-08
-1.14997e-07
-3.10772e-08
-1.12062e-07
-3.13952e-08
-1.09069e-07
-3.17136e-08
-1.06018e-07
-3.20307e-08
-1.02909e-07
-3.23447e-08
-9.97438e-08
-3.26543e-08
-9.65224e-08
-3.29582e-08
-9.32464e-08
-3.32554e-08
-8.99172e-08
-3.35449e-08
-8.65365e-08
-3.38262e-08
-8.31061e-08
-3.40985e-08
-7.96276e-08
-3.43614e-08
-7.61032e-08
-3.46145e-08
-7.25346e-08
-3.48576e-08
-6.8924e-08
-3.50902e-08
-6.52733e-08
-3.53124e-08
-6.15845e-08
-3.55237e-08
-5.78597e-08
-3.57242e-08
-5.41009e-08
-3.59137e-08
-5.031e-08
-3.60921e-08
-4.64892e-08
-3.62592e-08
-4.26404e-08
-3.6415e-08
-3.87656e-08
-3.65595e-08
-3.48667e-08
-3.66925e-08
-3.09459e-08
-3.6814e-08
-2.7005e-08
-3.69239e-08
-2.3046e-08
-3.70222e-08
-1.90711e-08
-3.71087e-08
-1.50821e-08
-3.71835e-08
-1.10811e-08
-3.72465e-08
-7.07012e-09
-3.72974e-08
-3.05117e-09
-3.73362e-08
9.73709e-10
-3.73624e-08
5.00234e-09
-3.73756e-08
9.03247e-09
-3.73759e-08
1.30619e-08
-3.73637e-08
1.70887e-08
-3.73394e-08
2.11106e-08
-3.7303e-08
2.51257e-08
-3.72546e-08
2.91321e-08
-3.71944e-08
3.31276e-08
-3.71222e-08
3.71102e-08
-3.70382e-08
4.1078e-08
-3.69424e-08
4.5029e-08
-3.68347e-08
4.89612e-08
-3.67153e-08
5.28724e-08
-3.65842e-08
5.67608e-08
-3.64414e-08
6.06243e-08
-3.62869e-08
6.44609e-08
-3.61209e-08
6.82684e-08
-3.59433e-08
7.2045e-08
-3.57543e-08
7.57884e-08
-3.55538e-08
7.94967e-08
-3.53421e-08
8.31678e-08
-3.51191e-08
8.67996e-08
-3.48851e-08
9.039e-08
-3.464e-08
9.39368e-08
-3.43841e-08
9.74381e-08
-3.41176e-08
1.00892e-07
-3.38408e-08
1.04295e-07
-3.35538e-08
1.07647e-07
-3.32572e-08
1.10946e-07
-3.29514e-08
1.14189e-07
-3.2637e-08
1.17375e-07
-3.23147e-08
1.20503e-07
-3.19855e-08
1.23571e-07
-3.16506e-08
1.26579e-07
-3.13112e-08
1.29526e-07
-3.09688e-08
1.32412e-07
-3.06254e-08
1.35239e-07
-3.02828e-08
1.38006e-07
-2.99433e-08
1.40716e-07
-2.96091e-08
1.43372e-07
-2.92827e-08
1.45976e-07
-2.89665e-08
1.48534e-07
-2.86627e-08
1.51049e-07
-2.83737e-08
1.53528e-07
-2.81013e-08
1.55977e-07
-2.78474e-08
1.58402e-07
-2.76139e-08
1.60811e-07
-2.7403e-08
1.63213e-07
-2.72188e-08
1.65617e-07
-2.7068e-08
1.68032e-07
-2.69637e-08
1.70472e-07
-2.69291e-08
-2.70139e-08
1.72947e-07
-1.8006e-07
-3.07926e-08
-1.77259e-07
-3.06945e-08
-1.74469e-07
-3.0724e-08
-1.71675e-07
-3.08324e-08
-1.68869e-07
-3.09949e-08
-1.6604e-07
-3.11972e-08
-1.6318e-07
-3.14313e-08
-1.60282e-07
-3.16926e-08
-1.57341e-07
-3.1978e-08
-1.54349e-07
-3.22852e-08
-1.51303e-07
-3.26116e-08
-1.48199e-07
-3.2955e-08
-1.45032e-07
-3.33127e-08
-1.41801e-07
-3.36818e-08
-1.38503e-07
-3.40595e-08
-1.35137e-07
-3.4443e-08
-1.31703e-07
-3.48296e-08
-1.282e-07
-3.52167e-08
-1.24628e-07
-3.5602e-08
-1.20989e-07
-3.59835e-08
-1.17284e-07
-3.63593e-08
-1.13514e-07
-3.6728e-08
-1.09681e-07
-3.70883e-08
-1.05787e-07
-3.7439e-08
-1.01833e-07
-3.77794e-08
-9.78226e-08
-3.81088e-08
-9.37573e-08
-3.84265e-08
-8.96393e-08
-3.87323e-08
-8.5471e-08
-3.90257e-08
-8.12546e-08
-3.93064e-08
-7.69925e-08
-3.95743e-08
-7.26869e-08
-3.98291e-08
-6.83401e-08
-4.00708e-08
-6.39545e-08
-4.02991e-08
-5.95323e-08
-4.05141e-08
-5.50759e-08
-4.07155e-08
-5.05875e-08
-4.09034e-08
-4.60694e-08
-4.10776e-08
-4.15238e-08
-4.12381e-08
-3.6953e-08
-4.13848e-08
-3.23592e-08
-4.15176e-08
-2.77447e-08
-4.16366e-08
-2.31118e-08
-4.17415e-08
-1.84627e-08
-4.18325e-08
-1.37997e-08
-4.19093e-08
-9.12519e-09
-4.19719e-08
-4.44142e-09
-4.202e-08
2.49287e-10
-4.20532e-08
4.94455e-09
-4.20709e-08
9.64187e-09
-4.20732e-08
1.43388e-08
-4.20607e-08
1.9033e-08
-4.20335e-08
2.37221e-08
-4.1992e-08
2.84038e-08
-4.19363e-08
3.30758e-08
-4.18663e-08
3.77359e-08
-4.17822e-08
4.23817e-08
-4.1684e-08
4.70111e-08
-4.15718e-08
5.16217e-08
-4.14455e-08
5.62113e-08
-4.13052e-08
6.07778e-08
-4.11509e-08
6.5319e-08
-4.09827e-08
6.98325e-08
-4.08006e-08
7.43162e-08
-4.06047e-08
7.87678e-08
-4.0395e-08
8.3185e-08
-4.01715e-08
8.75655e-08
-3.99344e-08
9.1907e-08
-3.96837e-08
9.62073e-08
-3.94195e-08
1.00464e-07
-3.91419e-08
1.04675e-07
-3.88511e-08
1.08838e-07
-3.85471e-08
1.1295e-07
-3.82302e-08
1.1701e-07
-3.79006e-08
1.21015e-07
-3.75586e-08
1.24962e-07
-3.72048e-08
1.2885e-07
-3.68395e-08
1.32677e-07
-3.64635e-08
1.3644e-07
-3.60777e-08
1.40137e-07
-3.56831e-08
1.43767e-07
-3.5281e-08
1.47329e-07
-3.48731e-08
1.50821e-07
-3.44612e-08
1.54243e-07
-3.40475e-08
1.57595e-07
-3.36344e-08
1.60876e-07
-3.32246e-08
1.64088e-07
-3.28211e-08
1.67232e-07
-3.24269e-08
1.70311e-07
-3.20452e-08
1.73327e-07
-3.16789e-08
1.76284e-07
-3.13312e-08
1.79187e-07
-3.10046e-08
1.82042e-07
-3.07018e-08
1.84853e-07
-3.04256e-08
1.87629e-07
-3.01793e-08
1.90378e-07
-2.99677e-08
1.93109e-07
-2.97989e-08
1.95833e-07
-2.96873e-08
1.9856e-07
-2.96566e-08
-2.97517e-08
2.01298e-07
-2.12788e-07
-3.39198e-08
-2.09639e-07
-3.38433e-08
-2.06465e-07
-3.38971e-08
-2.03259e-07
-3.40388e-08
-2.0001e-07
-3.42435e-08
-1.96712e-07
-3.44959e-08
-1.93356e-07
-3.47869e-08
-1.89938e-07
-3.51107e-08
-1.86453e-07
-3.54631e-08
-1.82897e-07
-3.5841e-08
-1.79268e-07
-3.62412e-08
-1.75562e-07
-3.66606e-08
-1.71779e-07
-3.70957e-08
-1.67918e-07
-3.75433e-08
-1.63977e-07
-3.8e-08
-1.59958e-07
-3.84623e-08
-1.55861e-07
-3.89272e-08
-1.51686e-07
-3.93917e-08
-1.47435e-07
-3.98531e-08
-1.43109e-07
-4.03092e-08
-1.38711e-07
-4.07578e-08
-1.34242e-07
-4.11974e-08
-1.29703e-07
-4.16265e-08
-1.25099e-07
-4.2044e-08
-1.20429e-07
-4.24489e-08
-1.15698e-07
-4.28404e-08
-1.10906e-07
-4.3218e-08
-1.06057e-07
-4.35812e-08
-1.01154e-07
-4.39296e-08
-9.61972e-08
-4.42631e-08
-9.11905e-08
-4.45812e-08
-8.6136e-08
-4.48838e-08
-8.10361e-08
-4.51709e-08
-7.58932e-08
-4.54422e-08
-7.07098e-08
-4.56976e-08
-6.54884e-08
-4.59371e-08
-6.02313e-08
-4.61606e-08
-5.49411e-08
-4.63679e-08
-4.96204e-08
-4.6559e-08
-4.42714e-08
-4.67339e-08
-3.88968e-08
-4.68924e-08
-3.34989e-08
-4.70346e-08
-2.80804e-08
-4.71603e-08
-2.26437e-08
-4.72694e-08
-1.71913e-08
-4.73619e-08
-1.17258e-08
-4.74375e-08
-6.24967e-09
-4.74961e-08
-7.65629e-10
-4.75373e-08
4.72376e-09
-4.75604e-08
1.02158e-08
-4.75654e-08
1.57077e-08
-4.75527e-08
2.11968e-08
-4.75227e-08
2.66805e-08
-4.74758e-08
3.21562e-08
-4.74121e-08
3.76215e-08
-4.73317e-08
4.30739e-08
-4.72346e-08
4.85108e-08
-4.7121e-08
5.39298e-08
-4.69908e-08
5.93286e-08
-4.68442e-08
6.47046e-08
-4.66811e-08
7.00555e-08
-4.65017e-08
7.53789e-08
-4.6306e-08
8.06723e-08
-4.60939e-08
8.59336e-08
-4.58658e-08
9.11603e-08
-4.56214e-08
9.635e-08
-4.53611e-08
1.01501e-07
-4.50847e-08
1.06609e-07
-4.47925e-08
1.11675e-07
-4.44845e-08
1.16694e-07
-4.41608e-08
1.21664e-07
-4.38216e-08
1.26584e-07
-4.34671e-08
1.31452e-07
-4.30973e-08
1.36264e-07
-4.27127e-08
1.41019e-07
-4.23135e-08
1.45715e-07
-4.19002e-08
1.50349e-07
-4.14733e-08
1.54919e-07
-4.10335e-08
1.59423e-07
-4.05818e-08
1.63859e-07
-4.01193e-08
1.68226e-07
-3.96472e-08
1.7252e-07
-3.91674e-08
1.7674e-07
-3.86818e-08
1.80885e-07
-3.81927e-08
1.84954e-07
-3.77027e-08
1.88944e-07
-3.72148e-08
1.92856e-07
-3.67323e-08
1.96688e-07
-3.62585e-08
2.0044e-07
-3.57969e-08
2.04112e-07
-3.5351e-08
2.07705e-07
-3.49243e-08
2.11221e-07
-3.45202e-08
2.14661e-07
-3.4142e-08
2.18029e-07
-3.37933e-08
2.21328e-07
-3.34785e-08
2.24564e-07
-3.32035e-08
2.27743e-07
-3.2978e-08
2.30874e-07
-3.28173e-08
2.33963e-07
-3.27453e-08
-3.28009e-08
2.37012e-07
-2.52726e-07
-3.74191e-08
-2.49145e-07
-3.74237e-08
-2.45488e-07
-3.75545e-08
-2.41749e-07
-3.77772e-08
-2.37924e-07
-3.80678e-08
-2.3401e-07
-3.84105e-08
-2.30002e-07
-3.87947e-08
-2.25899e-07
-3.92136e-08
-2.217e-07
-3.9662e-08
-2.17405e-07
-4.01358e-08
-2.13015e-07
-4.06313e-08
-2.0853e-07
-4.11449e-08
-2.03953e-07
-4.1673e-08
-1.99284e-07
-4.22118e-08
-1.94526e-07
-4.27577e-08
-1.89681e-07
-4.33074e-08
-1.8475e-07
-4.38575e-08
-1.79737e-07
-4.44051e-08
-1.74642e-07
-4.49475e-08
-1.69469e-07
-4.54824e-08
-1.64219e-07
-4.60076e-08
-1.58895e-07
-4.65216e-08
-1.53498e-07
-4.70229e-08
-1.48032e-07
-4.75103e-08
-1.42498e-07
-4.79829e-08
-1.36898e-07
-4.84399e-08
-1.31235e-07
-4.88807e-08
-1.25512e-07
-4.93048e-08
-1.19729e-07
-4.97119e-08
-1.13891e-07
-5.01016e-08
-1.07998e-07
-5.04736e-08
-1.02054e-07
-5.08278e-08
-9.6061e-08
-5.1164e-08
-9.00213e-08
-5.14819e-08
-8.39373e-08
-5.17814e-08
-7.78117e-08
-5.20625e-08
-7.16471e-08
-5.23249e-08
-6.5446e-08
-5.25687e-08
-5.92112e-08
-5.27936e-08
-5.29453e-08
-5.29996e-08
-4.6651e-08
-5.31866e-08
-4.03311e-08
-5.33544e-08
-3.39883e-08
-5.35031e-08
-2.76252e-08
-5.36324e-08
-2.12447e-08
-5.37423e-08
-1.48495e-08
-5.38325e-08
-8.44254e-09
-5.39029e-08
-2.02662e-09
-5.39529e-08
4.39533e-09
-5.39821e-08
1.08203e-08
-5.39901e-08
1.72453e-08
-5.39775e-08
2.36672e-08
-5.39446e-08
3.00831e-08
-5.38918e-08
3.64902e-08
-5.38193e-08
4.28857e-08
-5.37273e-08
4.92669e-08
-5.36158e-08
5.56312e-08
-5.34851e-08
6.19757e-08
-5.33352e-08
6.82978e-08
-5.31661e-08
7.45948e-08
-5.2978e-08
8.08641e-08
-5.27709e-08
8.7103e-08
-5.25449e-08
9.33091e-08
-5.23002e-08
9.948e-08
-5.20368e-08
1.05613e-07
-5.17549e-08
1.11707e-07
-5.14546e-08
1.17758e-07
-5.11361e-08
1.23765e-07
-5.07994e-08
1.29725e-07
-5.04447e-08
1.35636e-07
-5.00722e-08
1.41497e-07
-4.96822e-08
1.47304e-07
-4.92747e-08
1.53057e-07
-4.88502e-08
1.58753e-07
-4.84088e-08
1.6439e-07
-4.7951e-08
1.69967e-07
-4.74773e-08
1.75482e-07
-4.69881e-08
1.80933e-07
-4.64843e-08
1.86318e-07
-4.59666e-08
1.91635e-07
-4.54361e-08
1.96882e-07
-4.48942e-08
2.02057e-07
-4.43424e-08
2.07157e-07
-4.37825e-08
2.12181e-07
-4.32167e-08
2.17126e-07
-4.26474e-08
2.21988e-07
-4.20774e-08
2.26765e-07
-4.15097e-08
2.31455e-07
-4.09475e-08
2.36052e-07
-4.03942e-08
2.40554e-07
-3.98531e-08
2.44958e-07
-3.93278e-08
2.49259e-07
-3.88219e-08
2.53456e-07
-3.83389e-08
2.57546e-07
-3.78832e-08
2.61527e-07
-3.746e-08
2.654e-07
-3.70766e-08
2.69165e-07
-3.67438e-08
2.72826e-07
-3.64782e-08
2.76385e-07
-3.63035e-08
-3.62523e-08
2.79836e-07
-2.9918e-07
-4.13579e-08
-2.9509e-07
-4.1514e-08
-2.90859e-07
-4.17858e-08
-2.86489e-07
-4.2147e-08
-2.81981e-07
-4.25755e-08
-2.77337e-07
-4.30546e-08
-2.72559e-07
-4.35731e-08
-2.6765e-07
-4.41228e-08
-2.62614e-07
-4.4698e-08
-2.57456e-07
-4.5294e-08
-2.5218e-07
-4.59068e-08
-2.46793e-07
-4.65329e-08
-2.41297e-07
-4.71686e-08
-2.35698e-07
-4.78107e-08
-2.3e-07
-4.84557e-08
-2.24207e-07
-4.91007e-08
-2.18322e-07
-4.97426e-08
-2.12349e-07
-5.03788e-08
-2.06289e-07
-5.1007e-08
-2.00147e-07
-5.1625e-08
-1.93923e-07
-5.22311e-08
-1.87621e-07
-5.28236e-08
-1.81243e-07
-5.34013e-08
-1.7479e-07
-5.3963e-08
-1.68266e-07
-5.45079e-08
-1.6167e-07
-5.50351e-08
-1.55007e-07
-5.55442e-08
-1.48277e-07
-5.60345e-08
-1.41484e-07
-5.65055e-08
-1.34629e-07
-5.6957e-08
-1.27714e-07
-5.73885e-08
-1.20742e-07
-5.77998e-08
-1.13715e-07
-5.81906e-08
-1.06637e-07
-5.85606e-08
-9.95087e-08
-5.89096e-08
-9.23339e-08
-5.92375e-08
-8.51151e-08
-5.9544e-08
-7.78551e-08
-5.98289e-08
-7.05568e-08
-6.00921e-08
-6.32231e-08
-6.03334e-08
-5.58572e-08
-6.05527e-08
-4.84621e-08
-6.07497e-08
-4.1041e-08
-6.09245e-08
-3.35969e-08
-6.10767e-08
-2.61332e-08
-6.12063e-08
-1.86531e-08
-6.13129e-08
-1.11598e-08
-6.13964e-08
-3.65668e-09
-6.14563e-08
3.85308e-09
-6.1492e-08
1.13662e-08
-6.15033e-08
1.88791e-08
-6.14905e-08
2.63884e-08
-6.1454e-08
3.38907e-08
-6.13941e-08
4.13825e-08
-6.13112e-08
4.88607e-08
-6.12055e-08
5.6322e-08
-6.10771e-08
6.37631e-08
-6.09263e-08
7.11811e-08
-6.07531e-08
7.85727e-08
-6.05578e-08
8.59351e-08
-6.03403e-08
9.32652e-08
-6.0101e-08
1.0056e-07
-5.98399e-08
1.07817e-07
-5.95573e-08
1.15034e-07
-5.92533e-08
1.22207e-07
-5.89281e-08
1.29334e-07
-5.8582e-08
1.36414e-07
-5.82152e-08
1.43442e-07
-5.7828e-08
1.50418e-07
-5.74206e-08
1.57339e-07
-5.69933e-08
1.64204e-07
-5.65464e-08
1.71009e-07
-5.60804e-08
1.77754e-07
-5.55954e-08
1.84438e-07
-5.5092e-08
1.91057e-07
-5.45706e-08
1.97612e-07
-5.40318e-08
2.041e-07
-5.34761e-08
2.1052e-07
-5.29043e-08
2.16871e-07
-5.23171e-08
2.2315e-07
-5.17156e-08
2.29357e-07
-5.11009e-08
2.35489e-07
-5.04743e-08
2.41544e-07
-4.98372e-08
2.47518e-07
-4.91914e-08
2.53409e-07
-4.85388e-08
2.59213e-07
-4.78816e-08
2.64926e-07
-4.7222e-08
2.70541e-07
-4.65627e-08
2.76053e-07
-4.59063e-08
2.81456e-07
-4.52554e-08
2.86741e-07
-4.46131e-08
2.91902e-07
-4.39824e-08
2.9693e-07
-4.33669e-08
3.01818e-07
-4.2771e-08
3.06558e-07
-4.22004e-08
3.11145e-07
-4.16632e-08
3.15573e-07
-4.11714e-08
3.19837e-07
-4.07418e-08
3.23931e-07
-4.03972e-08
-4.01642e-08
3.27843e-07
-3.50304e-07
-4.57861e-08
-3.4566e-07
-4.61576e-08
-3.40816e-07
-4.66303e-08
-3.35779e-07
-4.71841e-08
-3.30556e-07
-4.77986e-08
-3.25153e-07
-4.8457e-08
-3.19579e-07
-4.91475e-08
-3.1384e-07
-4.98613e-08
-3.07946e-07
-5.05922e-08
-3.01904e-07
-5.13356e-08
-2.95723e-07
-5.20878e-08
-2.8941e-07
-5.28454e-08
-2.82973e-07
-5.36056e-08
-2.76418e-07
-5.43658e-08
-2.6975e-07
-5.51232e-08
-2.62975e-07
-5.58756e-08
-2.56097e-07
-5.66208e-08
-2.49119e-07
-5.73566e-08
-2.42045e-07
-5.80812e-08
-2.34877e-07
-5.87929e-08
-2.27617e-07
-5.94902e-08
-2.20269e-07
-6.01719e-08
-2.12833e-07
-6.08368e-08
-2.05312e-07
-6.14838e-08
-1.97708e-07
-6.21122e-08
-1.90022e-07
-6.2721e-08
-1.82256e-07
-6.33097e-08
-1.74413e-07
-6.38776e-08
-1.66494e-07
-6.44241e-08
-1.58502e-07
-6.49487e-08
-1.50439e-07
-6.54509e-08
-1.42309e-07
-6.59304e-08
-1.34112e-07
-6.63866e-08
-1.25853e-07
-6.68193e-08
-1.17535e-07
-6.7228e-08
-1.0916e-07
-6.76124e-08
-1.00732e-07
-6.79721e-08
-9.2254e-08
-6.83069e-08
-8.37296e-08
-6.86165e-08
-7.51623e-08
-6.89007e-08
-6.65558e-08
-6.91591e-08
-5.79138e-08
-6.93915e-08
-4.92402e-08
-6.95978e-08
-4.0539e-08
-6.97776e-08
-3.18144e-08
-6.99308e-08
-2.30703e-08
-7.0057e-08
-1.43108e-08
-7.0156e-08
-5.54006e-09
-7.02272e-08
3.23795e-09
-7.02702e-08
1.20191e-08
-7.02846e-08
2.07992e-08
-7.02706e-08
2.9574e-08
-7.02286e-08
3.8339e-08
-7.0159e-08
4.70901e-08
-7.00622e-08
5.58229e-08
-6.99384e-08
6.45334e-08
-6.97879e-08
7.32176e-08
-6.96108e-08
8.18716e-08
-6.94075e-08
9.04915e-08
-6.91781e-08
9.90737e-08
-6.89228e-08
1.07614e-07
-6.86418e-08
1.1611e-07
-6.83356e-08
1.24557e-07
-6.80042e-08
1.32952e-07
-6.76482e-08
1.41292e-07
-6.72677e-08
1.49572e-07
-6.68631e-08
1.57792e-07
-6.64349e-08
1.65947e-07
-6.59834e-08
1.74035e-07
-6.5509e-08
1.82054e-07
-6.50122e-08
1.90001e-07
-6.44936e-08
1.97874e-07
-6.39535e-08
2.05671e-07
-6.33925e-08
2.1339e-07
-6.28112e-08
2.2103e-07
-6.22102e-08
2.28588e-07
-6.15902e-08
2.36064e-07
-6.09519e-08
2.43455e-07
-6.02959e-08
2.50761e-07
-5.96232e-08
2.5798e-07
-5.89346e-08
2.6511e-07
-5.82311e-08
2.7215e-07
-5.75137e-08
2.79096e-07
-5.67837e-08
2.85947e-07
-5.60421e-08
2.92699e-07
-5.52905e-08
2.99347e-07
-5.45301e-08
3.05888e-07
-5.37626e-08
3.12314e-07
-5.29896e-08
3.18621e-07
-5.22127e-08
3.24799e-07
-5.14339e-08
3.30841e-07
-5.06551e-08
3.36738e-07
-4.98789e-08
3.4248e-07
-4.91082e-08
3.48056e-07
-4.83471e-08
3.53457e-07
-4.76017e-08
3.58674e-07
-4.68803e-08
3.63698e-07
-4.61952e-08
3.68519e-07
-4.55628e-08
3.73125e-07
-4.50035e-08
-4.45385e-08
3.77499e-07
-4.04583e-07
-5.06598e-08
-3.99446e-07
-5.12953e-08
-3.94062e-07
-5.20144e-08
-3.88444e-07
-5.28021e-08
-3.82603e-07
-5.364e-08
-3.76548e-07
-5.45123e-08
-3.70288e-07
-5.54069e-08
-3.63835e-07
-5.6315e-08
-3.57197e-07
-5.72305e-08
-3.50384e-07
-5.81489e-08
-3.43405e-07
-5.90669e-08
-3.36269e-07
-5.99821e-08
-3.28982e-07
-6.08922e-08
-3.21553e-07
-6.17955e-08
-3.13986e-07
-6.26903e-08
-3.06287e-07
-6.35749e-08
-2.9846e-07
-6.44479e-08
-2.90509e-07
-6.53079e-08
-2.82437e-07
-6.61535e-08
-2.74247e-07
-6.69835e-08
-2.6594e-07
-6.77968e-08
-2.5752e-07
-6.85921e-08
-2.48989e-07
-6.93686e-08
-2.40348e-07
-7.01251e-08
-2.31599e-07
-7.08608e-08
-2.22745e-07
-7.15749e-08
-2.13789e-07
-7.22665e-08
-2.04732e-07
-7.29348e-08
-1.95577e-07
-7.35791e-08
-1.86327e-07
-7.41987e-08
-1.76985e-07
-7.47929e-08
-1.67554e-07
-7.53611e-08
-1.58039e-07
-7.59027e-08
-1.48441e-07
-7.6417e-08
-1.38766e-07
-7.69036e-08
-1.29016e-07
-7.73618e-08
-1.19197e-07
-7.77912e-08
-1.09313e-07
-7.81913e-08
-9.93678e-08
-7.85617e-08
-8.93665e-08
-7.8902e-08
-7.9314e-08
-7.92117e-08
-6.9215e-08
-7.94906e-08
-5.90747e-08
-7.97382e-08
-4.88982e-08
-7.99542e-08
-3.86906e-08
-8.01383e-08
-2.84575e-08
-8.02902e-08
-1.82041e-08
-8.04094e-08
-7.93601e-09
-8.04954e-08
2.34136e-09
-8.05477e-08
1.26225e-08
-8.05658e-08
2.29017e-08
-8.05499e-08
3.31733e-08
-8.05003e-08
4.34318e-08
-8.04175e-08
5.36715e-08
-8.03019e-08
6.38868e-08
-8.01537e-08
7.40722e-08
-7.99733e-08
8.42224e-08
-7.97609e-08
9.43319e-08
-7.95169e-08
1.04396e-07
-7.92415e-08
1.14408e-07
-7.89351e-08
1.24365e-07
-7.85981e-08
1.3426e-07
-7.82307e-08
1.44089e-07
-7.78334e-08
1.53848e-07
-7.74067e-08
1.63531e-07
-7.6951e-08
1.73135e-07
-7.64668e-08
1.82654e-07
-7.59546e-08
1.92086e-07
-7.54151e-08
2.01426e-07
-7.48488e-08
2.1067e-07
-7.42564e-08
2.19816e-07
-7.36385e-08
2.28858e-07
-7.29958e-08
2.37795e-07
-7.23291e-08
2.46623e-07
-7.16391e-08
2.55339e-07
-7.09266e-08
2.63941e-07
-7.01923e-08
2.72426e-07
-6.94372e-08
2.80792e-07
-6.8662e-08
2.89037e-07
-6.78678e-08
2.97158e-07
-6.70553e-08
3.05153e-07
-6.62256e-08
3.13019e-07
-6.53796e-08
3.20753e-07
-6.45183e-08
3.28354e-07
-6.36426e-08
3.35817e-07
-6.27536e-08
3.43139e-07
-6.18524e-08
3.50316e-07
-6.09398e-08
3.57344e-07
-6.00171e-08
3.64216e-07
-5.90853e-08
3.70928e-07
-5.81457e-08
3.77473e-07
-5.71998e-08
3.83844e-07
-5.62496e-08
3.90034e-07
-5.52979e-08
3.96035e-07
-5.43486e-08
4.01841e-07
-5.34075e-08
4.07444e-07
-5.24833e-08
4.12837e-07
-5.15876e-08
4.1801e-07
-5.07358e-08
4.22952e-07
-4.99457e-08
-4.9235e-08
4.27649e-07
-4.61784e-07
-5.58792e-08
-4.56281e-07
-5.67985e-08
-4.50509e-07
-5.77857e-08
-4.44481e-07
-5.88299e-08
-4.38206e-07
-5.99148e-08
-4.31692e-07
-6.10261e-08
-4.24947e-07
-6.2152e-08
-4.17978e-07
-6.3284e-08
-4.10792e-07
-6.44159e-08
-4.03397e-07
-6.55437e-08
-3.958e-07
-6.66642e-08
-3.88007e-07
-6.77754e-08
-3.80023e-07
-6.88758e-08
-3.71854e-07
-6.9964e-08
-3.63505e-07
-7.1039e-08
-3.5498e-07
-7.20996e-08
-3.46283e-07
-7.31449e-08
-3.37416e-07
-7.41738e-08
-3.28384e-07
-7.51853e-08
-3.1919e-07
-7.61783e-08
-3.09835e-07
-7.71517e-08
-3.00322e-07
-7.81046e-08
-2.90655e-07
-7.90357e-08
-2.80836e-07
-7.99442e-08
-2.70868e-07
-8.08288e-08
-2.60754e-07
-8.16886e-08
-2.50497e-07
-8.25226e-08
-2.40102e-07
-8.33297e-08
-2.29572e-07
-8.4109e-08
-2.18911e-07
-8.48594e-08
-2.08124e-07
-8.55802e-08
-1.97215e-07
-8.62703e-08
-1.86189e-07
-8.69289e-08
-1.75051e-07
-8.75552e-08
-1.63806e-07
-8.81483e-08
-1.5246e-07
-8.87075e-08
-1.41019e-07
-8.92322e-08
-1.29489e-07
-8.97215e-08
-1.17875e-07
-9.0175e-08
-1.06186e-07
-9.05919e-08
-9.44259e-08
-9.09716e-08
-8.26029e-08
-9.13138e-08
-7.07236e-08
-9.16178e-08
-5.87948e-08
-9.18832e-08
-4.68237e-08
-9.21095e-08
-3.48176e-08
-9.22963e-08
-2.27838e-08
-9.24431e-08
-1.07299e-08
-9.25492e-08
1.33641e-09
-9.2614e-08
1.34078e-08
-9.26375e-08
2.5477e-08
-9.26195e-08
3.75362e-08
-9.256e-08
4.9578e-08
-9.24597e-08
6.15947e-08
-9.23188e-08
7.35787e-08
-9.21379e-08
8.55227e-08
-9.19172e-08
9.74188e-08
-9.16571e-08
1.0926e-07
-9.13579e-08
1.21038e-07
-9.10202e-08
1.32746e-07
-9.06441e-08
1.44378e-07
-9.02304e-08
1.55926e-07
-8.97793e-08
1.67384e-07
-8.92916e-08
1.78745e-07
-8.87677e-08
1.90002e-07
-8.82084e-08
2.01149e-07
-8.76142e-08
2.12181e-07
-8.6986e-08
2.2309e-07
-8.63244e-08
2.33871e-07
-8.56302e-08
2.44519e-07
-8.49044e-08
2.55027e-07
-8.41476e-08
2.65392e-07
-8.33609e-08
2.75608e-07
-8.25451e-08
2.8567e-07
-8.17011e-08
2.95573e-07
-8.08301e-08
3.05314e-07
-7.9933e-08
3.14887e-07
-7.90107e-08
3.24289e-07
-7.80644e-08
3.33516e-07
-7.70952e-08
3.42565e-07
-7.61041e-08
3.51431e-07
-7.50922e-08
3.60112e-07
-7.40606e-08
3.68604e-07
-7.30104e-08
3.76904e-07
-7.19428e-08
3.8501e-07
-7.08589e-08
3.92917e-07
-6.97598e-08
4.00623e-07
-6.86466e-08
4.08127e-07
-6.75206e-08
4.15424e-07
-6.6383e-08
4.22513e-07
-6.52352e-08
4.29392e-07
-6.4079e-08
4.3606e-07
-6.29166e-08
4.42513e-07
-6.17511e-08
4.48751e-07
-6.05868e-08
4.54774e-07
-5.94299e-08
4.6058e-07
-5.82888e-08
4.66167e-07
-5.71748e-08
4.71532e-07
-5.61016e-08
4.76671e-07
-5.5085e-08
-5.41382e-08
4.81574e-07
-5.25541e-07
-6.12793e-08
-5.19847e-07
-6.24926e-08
-5.13871e-07
-6.37615e-08
-5.07622e-07
-6.50796e-08
-5.01103e-07
-6.64336e-08
-4.94319e-07
-6.78107e-08
-4.87271e-07
-6.92001e-08
-4.79962e-07
-7.05934e-08
-4.72394e-07
-7.19844e-08
-4.64569e-07
-7.33689e-08
-4.5649e-07
-7.47436e-08
-4.48159e-07
-7.61066e-08
-4.39579e-07
-7.7456e-08
-4.30753e-07
-7.87906e-08
-4.21683e-07
-8.01092e-08
-4.12372e-07
-8.14108e-08
-4.02823e-07
-8.26942e-08
-3.93039e-07
-8.39583e-08
-3.83023e-07
-8.52021e-08
-3.72777e-07
-8.64242e-08
-3.62305e-07
-8.76235e-08
-3.51612e-07
-8.87986e-08
-3.40699e-07
-8.99483e-08
-3.29572e-07
-9.10713e-08
-3.18235e-07
-9.21661e-08
-3.06693e-07
-9.32314e-08
-2.9495e-07
-9.4266e-08
-2.83011e-07
-9.52684e-08
-2.70883e-07
-9.62373e-08
-2.58571e-07
-9.71715e-08
-2.46081e-07
-9.80698e-08
-2.33421e-07
-9.89307e-08
-2.20597e-07
-9.97533e-08
-2.07615e-07
-1.00536e-07
-1.94485e-07
-1.01279e-07
-1.81214e-07
-1.01979e-07
-1.67809e-07
-1.02637e-07
-1.5428e-07
-1.03251e-07
-1.40635e-07
-1.0382e-07
-1.26883e-07
-1.04344e-07
-1.13033e-07
-1.04822e-07
-9.90942e-08
-1.05252e-07
-8.5077e-08
-1.05635e-07
-7.09908e-08
-1.05969e-07
-5.68455e-08
-1.06255e-07
-4.26513e-08
-1.06491e-07
-2.84184e-08
-1.06676e-07
-1.4157e-08
-1.0681e-07
1.22394e-10
-1.06893e-07
1.441e-08
-1.06925e-07
2.86958e-08
-1.06905e-07
4.29694e-08
-1.06834e-07
5.72203e-08
-1.0671e-07
7.1438e-08
-1.06536e-07
8.5612e-08
-1.06312e-07
9.97319e-08
-1.06037e-07
1.13788e-07
-1.05712e-07
1.27769e-07
-1.05339e-07
1.41665e-07
-1.04916e-07
1.55467e-07
-1.04446e-07
1.69165e-07
-1.03928e-07
1.8275e-07
-1.03364e-07
1.96211e-07
-1.02753e-07
2.09541e-07
-1.02097e-07
2.2273e-07
-1.01397e-07
2.35769e-07
-1.00653e-07
2.4865e-07
-9.9867e-08
2.61365e-07
-9.90393e-08
2.73906e-07
-9.81712e-08
2.86266e-07
-9.72638e-08
2.98437e-07
-9.63182e-08
3.10411e-07
-9.53355e-08
3.22184e-07
-9.43169e-08
3.33747e-07
-9.32638e-08
3.45094e-07
-9.21774e-08
3.5622e-07
-9.10588e-08
3.67119e-07
-8.99096e-08
3.77786e-07
-8.87309e-08
3.88215e-07
-8.75243e-08
3.98402e-07
-8.6291e-08
4.08342e-07
-8.50325e-08
4.18032e-07
-8.37502e-08
4.27467e-07
-8.24457e-08
4.36645e-07
-8.11205e-08
4.45563e-07
-7.97761e-08
4.54217e-07
-7.84142e-08
4.62607e-07
-7.70364e-08
4.70731e-07
-7.56445e-08
4.78588e-07
-7.42404e-08
4.86179e-07
-7.28262e-08
4.93505e-07
-7.14045e-08
5.00566e-07
-6.99782e-08
5.07367e-07
-6.85513e-08
5.13908e-07
-6.71287e-08
5.20196e-07
-6.57172e-08
5.26232e-07
-6.43252e-08
5.3202e-07
-6.29636e-08
5.37564e-07
-6.16451e-08
5.42862e-07
-6.03834e-08
-5.91864e-08
5.47911e-07
-6.01588e-07
-6.6737e-08
-5.9582e-07
-6.82605e-08
-5.89749e-07
-6.98324e-08
-5.83376e-07
-7.14521e-08
-5.76701e-07
-7.3109e-08
-5.6972e-07
-7.47919e-08
-5.62429e-07
-7.64907e-08
-5.54825e-07
-7.81972e-08
-5.46905e-07
-7.99048e-08
-5.38665e-07
-8.16086e-08
-5.30103e-07
-8.3305e-08
-5.21218e-07
-8.4991e-08
-5.1201e-07
-8.66643e-08
-5.02477e-07
-8.8323e-08
-4.92621e-07
-8.99652e-08
-4.82442e-07
-9.15894e-08
-4.71942e-07
-9.31937e-08
-4.61124e-07
-9.47766e-08
-4.4999e-07
-9.63364e-08
-4.38543e-07
-9.78714e-08
-4.26786e-07
-9.93799e-08
-4.14725e-07
-1.0086e-07
-4.02363e-07
-1.0231e-07
-3.89705e-07
-1.03728e-07
-3.76758e-07
-1.05113e-07
-3.63528e-07
-1.06462e-07
-3.5002e-07
-1.07774e-07
-3.36243e-07
-1.09046e-07
-3.22202e-07
-1.10278e-07
-3.07906e-07
-1.11467e-07
-2.93364e-07
-1.12612e-07
-2.78584e-07
-1.13711e-07
-2.63576e-07
-1.14762e-07
-2.48349e-07
-1.15763e-07
-2.32913e-07
-1.16714e-07
-2.1728e-07
-1.17612e-07
-2.01461e-07
-1.18456e-07
-1.85467e-07
-1.19246e-07
-1.69309e-07
-1.19978e-07
-1.53001e-07
-1.20653e-07
-1.36554e-07
-1.21268e-07
-1.19982e-07
-1.21824e-07
-1.03298e-07
-1.22319e-07
-8.65163e-08
-1.22751e-07
-6.96505e-08
-1.23121e-07
-5.27147e-08
-1.23427e-07
-3.57231e-08
-1.23668e-07
-1.869e-08
-1.23844e-07
-1.62966e-09
-1.23954e-07
1.54442e-08
-1.23999e-07
3.25178e-08
-1.23979e-07
4.95768e-08
-1.23892e-07
6.66063e-08
-1.2374e-07
8.35918e-08
-1.23522e-07
1.00519e-07
-1.23239e-07
1.17373e-07
-1.22892e-07
1.34141e-07
-1.2248e-07
1.50807e-07
-1.22006e-07
1.6736e-07
-1.21469e-07
1.83785e-07
-1.20871e-07
2.00068e-07
-1.20212e-07
2.16198e-07
-1.19493e-07
2.32161e-07
-1.18716e-07
2.47945e-07
-1.17882e-07
2.6354e-07
-1.16992e-07
2.78933e-07
-1.16047e-07
2.94115e-07
-1.15049e-07
3.09074e-07
-1.13999e-07
3.23801e-07
-1.12898e-07
3.38286e-07
-1.11749e-07
3.5252e-07
-1.10553e-07
3.66495e-07
-1.09311e-07
3.80202e-07
-1.08025e-07
3.93635e-07
-1.06697e-07
4.06786e-07
-1.05328e-07
4.19649e-07
-1.03921e-07
4.32217e-07
-1.02477e-07
4.44484e-07
-1.00999e-07
4.56446e-07
-9.94864e-08
4.68098e-07
-9.79429e-08
4.79435e-07
-9.637e-08
4.90454e-07
-9.47696e-08
5.01152e-07
-9.31435e-08
5.11525e-07
-9.1494e-08
5.21572e-07
-8.98229e-08
5.31291e-07
-8.81325e-08
5.40679e-07
-8.64249e-08
5.49737e-07
-8.47025e-08
5.58464e-07
-8.29678e-08
5.66861e-07
-8.12234e-08
5.74929e-07
-7.94726e-08
5.8267e-07
-7.7719e-08
5.90086e-07
-7.59671e-08
5.9718e-07
-7.42226e-08
6.03955e-07
-7.24926e-08
6.10416e-07
-7.07856e-08
6.16565e-07
-6.9112e-08
6.22403e-07
-6.74835e-08
6.27931e-07
-6.59119e-08
-6.43997e-08
6.33145e-07
-6.97323e-07
-7.21073e-08
-6.91591e-07
-7.39929e-08
-6.85499e-07
-7.59252e-08
-6.79043e-07
-7.79083e-08
-6.72218e-07
-7.99338e-08
-6.65018e-07
-8.19918e-08
-6.57436e-07
-8.40728e-08
-6.49465e-07
-8.61686e-08
-6.41097e-07
-8.82722e-08
-6.32328e-07
-9.03781e-08
-6.23152e-07
-9.24816e-08
-6.13564e-07
-9.45789e-08
-6.03562e-07
-9.66669e-08
-5.93142e-07
-9.87425e-08
-5.82304e-07
-1.00803e-07
-5.71047e-07
-1.02846e-07
-5.59372e-07
-1.0487e-07
-5.47278e-07
-1.0687e-07
-5.34768e-07
-1.08846e-07
-5.21845e-07
-1.10795e-07
-5.08512e-07
-1.12714e-07
-4.94772e-07
-1.146e-07
-4.8063e-07
-1.16452e-07
-4.66092e-07
-1.18266e-07
-4.51164e-07
-1.20041e-07
-4.35853e-07
-1.21774e-07
-4.20165e-07
-1.23461e-07
-4.0411e-07
-1.25102e-07
-3.87696e-07
-1.26692e-07
-3.70933e-07
-1.28231e-07
-3.53831e-07
-1.29714e-07
-3.36401e-07
-1.3114e-07
-3.18655e-07
-1.32507e-07
-3.00606e-07
-1.33812e-07
-2.82267e-07
-1.35053e-07
-2.63652e-07
-1.36227e-07
-2.44776e-07
-1.37333e-07
-2.25654e-07
-1.38368e-07
-2.06302e-07
-1.3933e-07
-1.86737e-07
-1.40218e-07
-1.66976e-07
-1.4103e-07
-1.47036e-07
-1.41763e-07
-1.26937e-07
-1.42418e-07
-1.06697e-07
-1.42991e-07
-8.6336e-08
-1.43482e-07
-6.58725e-08
-1.4389e-07
-4.5327e-08
-1.44213e-07
-2.47196e-08
-1.44451e-07
-4.07044e-09
-1.44603e-07
1.66005e-08
-1.44669e-07
3.72736e-08
-1.44652e-07
5.79286e-08
-1.44547e-07
7.8545e-08
-1.44356e-07
9.91021e-08
-1.44079e-07
1.1958e-07
-1.43716e-07
1.39957e-07
-1.43269e-07
1.60215e-07
-1.42738e-07
1.80334e-07
-1.42124e-07
2.00294e-07
-1.41429e-07
2.20078e-07
-1.40654e-07
2.39666e-07
-1.398e-07
2.59042e-07
-1.38869e-07
2.78188e-07
-1.37862e-07
2.97088e-07
-1.36782e-07
3.15727e-07
-1.3563e-07
3.34089e-07
-1.34409e-07
3.52161e-07
-1.3312e-07
3.69929e-07
-1.31766e-07
3.8738e-07
-1.30349e-07
4.04503e-07
-1.28872e-07
4.21287e-07
-1.27336e-07
4.37721e-07
-1.25745e-07
4.53796e-07
-1.241e-07
4.69504e-07
-1.22405e-07
4.84838e-07
-1.20661e-07
4.99789e-07
-1.18873e-07
5.14353e-07
-1.17041e-07
5.28523e-07
-1.15169e-07
5.42295e-07
-1.13259e-07
5.55666e-07
-1.11313e-07
5.68632e-07
-1.09336e-07
5.81191e-07
-1.07328e-07
5.93341e-07
-1.05293e-07
6.0508e-07
-1.03233e-07
6.16408e-07
-1.01151e-07
6.27325e-07
-9.90491e-08
6.3783e-07
-9.69302e-08
6.47924e-07
-9.4797e-08
6.57609e-07
-9.26523e-08
6.66885e-07
-9.04991e-08
6.75754e-07
-8.8341e-08
6.84217e-07
-8.6182e-08
6.92277e-07
-8.40267e-08
6.99935e-07
-8.18809e-08
7.07194e-07
-7.97518e-08
7.14056e-07
-7.76477e-08
7.20522e-07
-7.55785e-08
7.26593e-07
-7.35549e-08
7.32267e-07
-7.15861e-08
-6.9667e-08
7.37535e-07
-8.1714e-07
-7.72007e-08
-8.11595e-07
-7.95385e-08
-8.05597e-07
-8.1923e-08
-7.99143e-07
-8.43627e-08
-7.92225e-07
-8.68515e-08
-7.84837e-07
-8.93804e-08
-7.76969e-07
-9.19405e-08
-7.68613e-07
-9.45235e-08
-7.59763e-07
-9.71224e-08
-7.50409e-07
-9.97312e-08
-7.40546e-07
-1.02345e-07
-7.30167e-07
-1.04958e-07
-7.19266e-07
-1.07568e-07
-7.07837e-07
-1.10171e-07
-6.95878e-07
-1.12763e-07
-6.83384e-07
-1.1534e-07
-6.70353e-07
-1.179e-07
-6.56784e-07
-1.2044e-07
-6.42675e-07
-1.22955e-07
-6.28026e-07
-1.25443e-07
-6.12839e-07
-1.279e-07
-5.97117e-07
-1.30323e-07
-5.80861e-07
-1.32708e-07
-5.64075e-07
-1.35052e-07
-5.46765e-07
-1.37351e-07
-5.28937e-07
-1.39602e-07
-5.10598e-07
-1.418e-07
-4.91756e-07
-1.43943e-07
-4.72421e-07
-1.46027e-07
-4.52605e-07
-1.48047e-07
-4.32319e-07
-1.5e-07
-4.11576e-07
-1.51883e-07
-3.90392e-07
-1.53692e-07
-3.68781e-07
-1.55423e-07
-3.46761e-07
-1.57073e-07
-3.2435e-07
-1.58638e-07
-3.01567e-07
-1.60115e-07
-2.78433e-07
-1.61501e-07
-2.54971e-07
-1.62792e-07
-2.31202e-07
-1.63986e-07
-2.07152e-07
-1.6508e-07
-1.82844e-07
-1.66071e-07
-1.58305e-07
-1.66957e-07
-1.33561e-07
-1.67735e-07
-1.08639e-07
-1.68404e-07
-8.35672e-08
-1.68961e-07
-5.83748e-08
-1.69406e-07
-3.30906e-08
-1.69735e-07
-7.74414e-09
-1.69949e-07
1.76355e-08
-1.70049e-07
4.30196e-08
-1.70036e-07
6.83791e-08
-1.69907e-07
9.36841e-08
-1.69661e-07
1.18905e-07
-1.693e-07
1.44012e-07
-1.68823e-07
1.68975e-07
-1.68233e-07
1.93767e-07
-1.6753e-07
2.1836e-07
-1.66717e-07
2.42726e-07
-1.65795e-07
2.66839e-07
-1.64767e-07
2.90673e-07
-1.63634e-07
3.14205e-07
-1.624e-07
3.37409e-07
-1.61066e-07
3.60264e-07
-1.59637e-07
3.82749e-07
-1.58115e-07
4.04842e-07
-1.56502e-07
4.26525e-07
-1.54804e-07
4.47781e-07
-1.53023e-07
4.68594e-07
-1.51162e-07
4.88948e-07
-1.49226e-07
5.0883e-07
-1.47218e-07
5.28227e-07
-1.45142e-07
5.47129e-07
-1.43002e-07
5.65525e-07
-1.40801e-07
5.83408e-07
-1.38544e-07
6.0077e-07
-1.36235e-07
6.17606e-07
-1.33876e-07
6.3391e-07
-1.31473e-07
6.4968e-07
-1.29028e-07
6.64912e-07
-1.26546e-07
6.79605e-07
-1.2403e-07
6.93759e-07
-1.21483e-07
7.07375e-07
-1.18909e-07
7.20453e-07
-1.16311e-07
7.32995e-07
-1.13693e-07
7.45005e-07
-1.11058e-07
7.56484e-07
-1.08409e-07
7.67437e-07
-1.0575e-07
7.77867e-07
-1.03083e-07
7.8778e-07
-1.00412e-07
7.97179e-07
-9.77403e-08
8.06069e-07
-9.50726e-08
8.14456e-07
-9.24135e-08
8.22344e-07
-8.97686e-08
8.29737e-07
-8.71447e-08
8.3664e-07
-8.45499e-08
8.43054e-07
-8.19933e-08
8.48984e-07
-7.94842e-08
8.54426e-07
-7.70291e-08
-7.46194e-08
8.59379e-07
-9.62997e-07
-8.15956e-08
-9.58043e-07
-8.44923e-08
-9.52526e-07
-8.744e-08
-9.4644e-07
-9.04488e-08
-9.39777e-07
-9.35143e-08
-9.32529e-07
-9.66288e-08
-9.24685e-07
-9.9784e-08
-9.16237e-07
-1.02972e-07
-9.07173e-07
-1.06187e-07
-8.97483e-07
-1.09422e-07
-8.87156e-07
-1.12672e-07
-8.76182e-07
-1.15932e-07
-8.64551e-07
-1.192e-07
-8.52253e-07
-1.22469e-07
-8.39278e-07
-1.25737e-07
-8.25619e-07
-1.28999e-07
-8.11268e-07
-1.32252e-07
-7.96217e-07
-1.35491e-07
-7.8046e-07
-1.38712e-07
-7.63992e-07
-1.41911e-07
-7.4681e-07
-1.45083e-07
-7.2891e-07
-1.48223e-07
-7.10292e-07
-1.51326e-07
-6.90955e-07
-1.54389e-07
-6.70902e-07
-1.57404e-07
-6.50136e-07
-1.60368e-07
-6.28662e-07
-1.63274e-07
-6.06487e-07
-1.66118e-07
-5.83621e-07
-1.68893e-07
-5.60073e-07
-1.71594e-07
-5.35857e-07
-1.74216e-07
-5.10989e-07
-1.76752e-07
-4.85485e-07
-1.79196e-07
-4.59364e-07
-1.81543e-07
-4.32649e-07
-1.83788e-07
-4.05363e-07
-1.85924e-07
-3.77531e-07
-1.87947e-07
-3.49182e-07
-1.8985e-07
-3.20346e-07
-1.91628e-07
-2.91055e-07
-1.93278e-07
-2.61343e-07
-1.94793e-07
-2.31245e-07
-1.96169e-07
-2.00799e-07
-1.97403e-07
-1.70044e-07
-1.9849e-07
-1.39021e-07
-1.99427e-07
-1.07771e-07
-2.00211e-07
-7.63367e-08
-2.0084e-07
-4.47624e-08
-2.0131e-07
-1.30921e-08
-2.0162e-07
1.86298e-08
-2.01771e-07
5.03595e-08
-2.01766e-07
8.20528e-08
-2.016e-07
1.13664e-07
-2.01273e-07
1.4515e-07
-2.00785e-07
1.76464e-07
-2.00138e-07
2.07565e-07
-1.99333e-07
2.38408e-07
-1.98374e-07
2.68954e-07
-1.97263e-07
2.99161e-07
-1.96002e-07
3.2899e-07
-1.94596e-07
3.58405e-07
-1.93049e-07
3.8737e-07
-1.91365e-07
4.15852e-07
-1.89548e-07
4.43818e-07
-1.87604e-07
4.7124e-07
-1.85537e-07
4.9809e-07
-1.83352e-07
5.24343e-07
-1.81056e-07
5.49975e-07
-1.78655e-07
5.74966e-07
-1.76152e-07
5.99296e-07
-1.73556e-07
6.2295e-07
-1.70871e-07
6.45912e-07
-1.68104e-07
6.68171e-07
-1.65261e-07
6.89716e-07
-1.62346e-07
7.10539e-07
-1.59367e-07
7.30634e-07
-1.5633e-07
7.49996e-07
-1.53238e-07
7.68623e-07
-1.50099e-07
7.86513e-07
-1.46918e-07
8.03667e-07
-1.437e-07
8.20087e-07
-1.4045e-07
8.35777e-07
-1.37173e-07
8.50742e-07
-1.33873e-07
8.64987e-07
-1.30556e-07
8.7852e-07
-1.27225e-07
8.91347e-07
-1.23886e-07
9.03479e-07
-1.20541e-07
9.14924e-07
-1.17195e-07
9.25693e-07
-1.13852e-07
9.35797e-07
-1.10516e-07
9.45247e-07
-1.0719e-07
9.54054e-07
-1.0388e-07
9.62231e-07
-1.0059e-07
9.69788e-07
-9.73256e-08
9.76737e-07
-9.40934e-08
9.83088e-07
-9.09008e-08
9.8885e-07
-8.77559e-08
9.94032e-07
-8.46665e-08
9.98639e-07
-8.16365e-08
-7.86577e-08
1.00268e-06
-1.13588e-06
-8.45072e-08
-1.13231e-06
-8.80584e-08
-1.12808e-06
-9.16731e-08
-1.12317e-06
-9.53597e-08
-1.11757e-06
-9.91162e-08
-1.11126e-06
-1.02936e-07
-1.10423e-06
-1.06813e-07
-1.09646e-06
-1.1074e-07
-1.08794e-06
-1.14711e-07
-1.07864e-06
-1.18721e-07
-1.06855e-06
-1.22765e-07
-1.05764e-06
-1.2684e-07
-1.0459e-06
-1.3094e-07
-1.03331e-06
-1.35062e-07
-1.01984e-06
-1.39202e-07
-1.00549e-06
-1.43354e-07
-9.90223e-07
-1.47515e-07
-9.74037e-07
-1.51678e-07
-9.5691e-07
-1.55839e-07
-9.38828e-07
-1.59993e-07
-9.19779e-07
-1.64132e-07
-8.99751e-07
-1.68251e-07
-8.78733e-07
-1.72343e-07
-8.5672e-07
-1.76401e-07
-8.33706e-07
-1.80418e-07
-8.09688e-07
-1.84386e-07
-7.84666e-07
-1.88296e-07
-7.58642e-07
-1.92142e-07
-7.31623e-07
-1.95913e-07
-7.03616e-07
-1.99602e-07
-6.74633e-07
-2.03198e-07
-6.4469e-07
-2.06695e-07
-6.13805e-07
-2.1008e-07
-5.82001e-07
-2.13347e-07
-5.49305e-07
-2.16484e-07
-5.15747e-07
-2.19483e-07
-4.8136e-07
-2.22334e-07
-4.46182e-07
-2.25028e-07
-4.10255e-07
-2.27555e-07
-3.73624e-07
-2.29908e-07
-3.36338e-07
-2.32078e-07
-2.9845e-07
-2.34057e-07
-2.60016e-07
-2.35837e-07
-2.21094e-07
-2.37412e-07
-1.81747e-07
-2.38775e-07
-1.42038e-07
-2.3992e-07
-1.02035e-07
-2.40843e-07
-6.18052e-08
-2.4154e-07
-2.1419e-08
-2.42006e-07
1.90532e-08
-2.42243e-07
5.95435e-08
-2.42256e-07
9.99824e-08
-2.42039e-07
1.40298e-07
-2.41589e-07
1.8042e-07
-2.40907e-07
2.20278e-07
-2.39996e-07
2.59804e-07
-2.38859e-07
2.98932e-07
-2.37502e-07
3.37598e-07
-2.35927e-07
3.75738e-07
-2.34143e-07
4.13296e-07
-2.32154e-07
4.50214e-07
-2.29968e-07
4.86441e-07
-2.27592e-07
5.21927e-07
-2.25035e-07
5.56628e-07
-2.22305e-07
5.90502e-07
-2.1941e-07
6.23512e-07
-2.16362e-07
6.55623e-07
-2.13167e-07
6.86805e-07
-2.09837e-07
7.17034e-07
-2.06381e-07
7.46286e-07
-2.02808e-07
7.74544e-07
-1.99129e-07
8.01792e-07
-1.95352e-07
8.2802e-07
-1.91488e-07
8.53218e-07
-1.87545e-07
8.77383e-07
-1.83532e-07
9.00512e-07
-1.79459e-07
9.22606e-07
-1.75333e-07
9.4367e-07
-1.71163e-07
9.63709e-07
-1.66957e-07
9.82731e-07
-1.62722e-07
1.00075e-06
-1.58466e-07
1.01777e-06
-1.54195e-07
1.03381e-06
-1.49915e-07
1.04889e-06
-1.45634e-07
1.06302e-06
-1.41355e-07
1.07622e-06
-1.37086e-07
1.08851e-06
-1.32831e-07
1.09991e-06
-1.28594e-07
1.11044e-06
-1.24381e-07
1.12012e-06
-1.20196e-07
1.12897e-06
-1.16043e-07
1.13702e-06
-1.11927e-07
1.14428e-06
-1.07853e-07
1.15078e-06
-1.03826e-07
1.15654e-06
-9.98512e-08
1.16157e-06
-9.59364e-08
1.1659e-06
-9.2088e-08
1.16955e-06
-8.83122e-08
1.17252e-06
-8.46112e-08
-8.09794e-08
1.17485e-06
-1.33927e-06
-8.46564e-08
-1.3384e-06
-8.8928e-08
-1.33678e-06
-9.32883e-08
-1.3344e-06
-9.77435e-08
-1.33122e-06
-1.02294e-07
-1.32722e-06
-1.06935e-07
-1.32237e-06
-1.11663e-07
-1.31664e-06
-1.16471e-07
-1.30999e-06
-1.21357e-07
-1.3024e-06
-1.26315e-07
-1.29382e-06
-1.31342e-07
-1.28423e-06
-1.36435e-07
-1.27358e-06
-1.41589e-07
-1.26184e-06
-1.468e-07
-1.24898e-06
-1.52065e-07
-1.23496e-06
-1.57377e-07
-1.21974e-06
-1.62733e-07
-1.20329e-06
-1.68126e-07
-1.18558e-06
-1.7355e-07
-1.16657e-06
-1.78998e-07
-1.14624e-06
-1.84462e-07
-1.12456e-06
-1.89934e-07
-1.1015e-06
-1.95405e-07
-1.07703e-06
-2.00866e-07
-1.05115e-06
-2.06306e-07
-1.02382e-06
-2.11714e-07
-9.95035e-07
-2.17079e-07
-9.64788e-07
-2.22389e-07
-9.3307e-07
-2.2763e-07
-8.99883e-07
-2.32789e-07
-8.65229e-07
-2.37852e-07
-8.2912e-07
-2.42803e-07
-7.91572e-07
-2.47629e-07
-7.52607e-07
-2.52312e-07
-7.12253e-07
-2.56838e-07
-6.70546e-07
-2.61189e-07
-6.27529e-07
-2.6535e-07
-5.83252e-07
-2.69305e-07
-5.37771e-07
-2.73036e-07
-4.9115e-07
-2.76529e-07
-4.43461e-07
-2.79767e-07
-3.94783e-07
-2.82735e-07
-3.45202e-07
-2.85418e-07
-2.94811e-07
-2.87803e-07
-2.43707e-07
-2.89878e-07
-1.91996e-07
-2.91632e-07
-1.39785e-07
-2.93054e-07
-8.71879e-08
-2.94137e-07
-3.4321e-08
-2.94873e-07
1.8698e-08
-2.95262e-07
7.17566e-08
-2.95314e-07
1.2474e-07
-2.95022e-07
1.77526e-07
-2.94375e-07
2.29996e-07
-2.93378e-07
2.82035e-07
-2.92035e-07
3.3353e-07
-2.90355e-07
3.84373e-07
-2.88344e-07
4.34458e-07
-2.86013e-07
4.83688e-07
-2.83372e-07
5.31969e-07
-2.80434e-07
5.79212e-07
-2.77211e-07
6.2534e-07
-2.73719e-07
6.70279e-07
-2.69973e-07
7.13964e-07
-2.6599e-07
7.56338e-07
-2.61784e-07
7.9735e-07
-2.57374e-07
8.36959e-07
-2.52776e-07
8.75128e-07
-2.48006e-07
9.11829e-07
-2.43082e-07
9.47041e-07
-2.3802e-07
9.80748e-07
-2.32837e-07
1.01294e-06
-2.27547e-07
1.04362e-06
-2.22166e-07
1.07279e-06
-2.1671e-07
1.10044e-06
-2.11191e-07
1.12661e-06
-2.05623e-07
1.1513e-06
-2.0002e-07
1.17452e-06
-1.94392e-07
1.19632e-06
-1.88751e-07
1.2167e-06
-1.83107e-07
1.23571e-06
-1.7747e-07
1.25336e-06
-1.71849e-07
1.2697e-06
-1.66253e-07
1.28475e-06
-1.60688e-07
1.29856e-06
-1.55162e-07
1.31116e-06
-1.49681e-07
1.32258e-06
-1.44252e-07
1.33286e-06
-1.38878e-07
1.34205e-06
-1.33566e-07
1.35017e-06
-1.2832e-07
1.35727e-06
-1.23143e-07
1.36338e-06
-1.1804e-07
1.36854e-06
-1.13015e-07
1.37279e-06
-1.08073e-07
1.37616e-06
-1.03217e-07
1.37868e-06
-9.84536e-08
1.38037e-06
-9.37872e-08
1.38128e-06
-8.92222e-08
1.38143e-06
-8.47586e-08
-8.03964e-08
1.38085e-06
-1.57954e-06
-8.0267e-08
-1.58319e-06
-8.52811e-08
-1.58605e-06
-9.04286e-08
-1.58808e-06
-9.57104e-08
-1.58925e-06
-1.0113e-07
-1.5895e-06
-1.06685e-07
-1.58879e-06
-1.12374e-07
-1.58706e-06
-1.18194e-07
-1.58428e-06
-1.24144e-07
-1.58037e-06
-1.30221e-07
-1.57529e-06
-1.36423e-07
-1.56897e-06
-1.42749e-07
-1.56137e-06
-1.49196e-07
-1.5524e-06
-1.5576e-07
-1.54203e-06
-1.6244e-07
-1.53018e-06
-1.6923e-07
-1.51678e-06
-1.76126e-07
-1.50179e-06
-1.83123e-07
-1.48512e-06
-1.90215e-07
-1.46673e-06
-1.97393e-07
-1.44654e-06
-2.0465e-07
-1.42449e-06
-2.11976e-07
-1.40054e-06
-2.19361e-07
-1.37461e-06
-2.26793e-07
-1.34666e-06
-2.34258e-07
-1.31663e-06
-2.41742e-07
-1.28448e-06
-2.4923e-07
-1.25016e-06
-2.56703e-07
-1.21365e-06
-2.64143e-07
-1.17491e-06
-2.7153e-07
-1.13392e-06
-2.78843e-07
-1.09066e-06
-2.86056e-07
-1.04515e-06
-2.93147e-07
-9.97369e-07
-3.00089e-07
-9.47351e-07
-3.06855e-07
-8.95122e-07
-3.13418e-07
-8.40725e-07
-3.19748e-07
-7.84214e-07
-3.25815e-07
-7.25661e-07
-3.31589e-07
-6.65156e-07
-3.37034e-07
-6.02806e-07
-3.42117e-07
-5.38736e-07
-3.46804e-07
-4.73089e-07
-3.51065e-07
-4.06016e-07
-3.54875e-07
-3.37682e-07
-3.58212e-07
-2.6826e-07
-3.61054e-07
-1.97935e-07
-3.63378e-07
-1.26903e-07
-3.65169e-07
-5.53665e-08
-3.66409e-07
1.64604e-08
-3.67089e-07
8.83718e-08
-3.67226e-07
1.60158e-07
-3.66809e-07
2.31601e-07
-3.65818e-07
3.02491e-07
-3.64267e-07
3.72624e-07
-3.62168e-07
4.41805e-07
-3.59536e-07
5.09849e-07
-3.56389e-07
5.76581e-07
-3.52745e-07
6.41835e-07
-3.48626e-07
7.05455e-07
-3.44053e-07
7.67295e-07
-3.39051e-07
8.27228e-07
-3.33652e-07
8.85145e-07
-3.27891e-07
9.40956e-07
-3.21801e-07
9.94588e-07
-3.15416e-07
1.04598e-06
-3.08767e-07
1.09509e-06
-3.01885e-07
1.14189e-06
-2.948e-07
1.18635e-06
-2.87542e-07
1.22846e-06
-2.80139e-07
1.26825e-06
-2.7262e-07
1.30571e-06
-2.6501e-07
1.34088e-06
-2.57334e-07
1.37378e-06
-2.49614e-07
1.40447e-06
-2.41872e-07
1.43297e-06
-2.34127e-07
1.45935e-06
-2.26397e-07
1.48365e-06
-2.18698e-07
1.50595e-06
-2.11045e-07
1.52629e-06
-2.03453e-07
1.54476e-06
-1.95932e-07
1.5614e-06
-1.88493e-07
1.57629e-06
-1.81145e-07
1.5895e-06
-1.73898e-07
1.60109e-06
-1.66757e-07
1.61114e-06
-1.59729e-07
1.61971e-06
-1.52819e-07
1.62686e-06
-1.46031e-07
1.63266e-06
-1.3937e-07
1.63718e-06
-1.32838e-07
1.64048e-06
-1.26438e-07
1.64261e-06
-1.20172e-07
1.64364e-06
-1.14042e-07
1.64362e-06
-1.08051e-07
1.6426e-06
-1.022e-07
1.64064e-06
-9.64926e-08
1.63778e-06
-9.09298e-08
1.63407e-06
-8.55134e-08
1.62955e-06
-8.02404e-08
-7.51125e-08
1.62427e-06
-1.86235e-06
-6.90527e-08
-1.87288e-06
-7.47574e-08
-1.88265e-06
-8.06522e-08
-1.89163e-06
-8.67362e-08
-1.89974e-06
-9.30164e-08
-1.90693e-06
-9.94955e-08
-1.91313e-06
-1.06175e-07
-1.91826e-06
-1.13058e-07
-1.92226e-06
-1.20145e-07
-1.92504e-06
-1.27439e-07
-1.92653e-06
-1.34942e-07
-1.92662e-06
-1.42655e-07
-1.92524e-06
-1.5058e-07
-1.92228e-06
-1.58719e-07
-1.91764e-06
-1.67073e-07
-1.91123e-06
-1.7564e-07
-1.90294e-06
-1.8442e-07
-1.89265e-06
-1.93411e-07
-1.88026e-06
-2.0261e-07
-1.86564e-06
-2.12013e-07
-1.84867e-06
-2.21614e-07
-1.82924e-06
-2.31405e-07
-1.80723e-06
-2.41377e-07
-1.7825e-06
-2.5152e-07
-1.75494e-06
-2.61819e-07
-1.72442e-06
-2.7226e-07
-1.69083e-06
-2.82825e-07
-1.65404e-06
-2.93495e-07
-1.61393e-06
-3.04247e-07
-1.57041e-06
-3.15056e-07
-1.52336e-06
-3.25891e-07
-1.4727e-06
-3.36717e-07
-1.41835e-06
-3.47494e-07
-1.36026e-06
-3.58175e-07
-1.29841e-06
-3.68714e-07
-1.23276e-06
-3.79059e-07
-1.16336e-06
-3.89152e-07
-1.09025e-06
-3.98927e-07
-1.01353e-06
-4.08311e-07
-9.33337e-07
-4.17225e-07
-8.49851e-07
-4.25603e-07
-7.63254e-07
-4.33402e-07
-6.73757e-07
-4.40562e-07
-5.8161e-07
-4.47023e-07
-4.87087e-07
-4.52735e-07
-3.90495e-07
-4.57646e-07
-2.92145e-07
-4.61728e-07
-1.92337e-07
-4.64977e-07
-9.14307e-08
-4.67316e-07
1.0099e-08
-4.68619e-07
1.11812e-07
-4.68939e-07
2.13302e-07
-4.68298e-07
3.14095e-07
-4.6661e-07
4.1377e-07
-4.63942e-07
5.11976e-07
-4.60374e-07
6.08403e-07
-4.55962e-07
7.02721e-07
-4.50707e-07
7.94617e-07
-4.44642e-07
8.83808e-07
-4.37817e-07
9.70035e-07
-4.3028e-07
1.05308e-06
-4.22095e-07
1.13274e-06
-4.13309e-07
1.20883e-06
-4.03987e-07
1.28123e-06
-3.94203e-07
1.34983e-06
-3.84017e-07
1.41456e-06
-3.73495e-07
1.47538e-06
-3.627e-07
1.53228e-06
-3.51699e-07
1.58529e-06
-3.40553e-07
1.63447e-06
-3.2932e-07
1.6799e-06
-3.18051e-07
1.72168e-06
-3.06789e-07
1.75992e-06
-2.95574e-07
1.79474e-06
-2.84435e-07
1.82627e-06
-2.734e-07
1.85463e-06
-2.62493e-07
1.87997e-06
-2.51733e-07
1.90241e-06
-2.41139e-07
1.92209e-06
-2.30726e-07
1.93914e-06
-2.20506e-07
1.9537e-06
-2.1049e-07
1.9659e-06
-2.00687e-07
1.97586e-06
-1.91104e-07
1.9837e-06
-1.81744e-07
1.98956e-06
-1.72613e-07
1.99354e-06
-1.63711e-07
1.99576e-06
-1.55041e-07
1.99633e-06
-1.46601e-07
1.99536e-06
-1.38392e-07
1.99293e-06
-1.30411e-07
1.98915e-06
-1.22658e-07
1.98411e-06
-1.15128e-07
1.97788e-06
-1.0782e-07
1.97056e-06
-1.00731e-07
1.96222e-06
-9.3859e-08
1.95293e-06
-8.72006e-08
1.94275e-06
-8.07538e-08
1.93176e-06
-7.45152e-08
1.91999e-06
-6.84775e-08
-6.26436e-08
1.90752e-06
-2.18659e-06
-4.81662e-08
-2.20698e-06
-5.43606e-08
-2.22684e-06
-6.08006e-08
-2.24608e-06
-6.74917e-08
-2.26465e-06
-7.44464e-08
-2.28247e-06
-8.16741e-08
-2.29946e-06
-8.91829e-08
-2.31554e-06
-9.69814e-08
-2.33061e-06
-1.05079e-07
-2.34456e-06
-1.13485e-07
-2.35729e-06
-1.2221e-07
-2.36868e-06
-1.31263e-07
-2.37861e-06
-1.40655e-07
-2.38693e-06
-1.50397e-07
-2.39351e-06
-1.60498e-07
-2.39818e-06
-1.70969e-07
-2.40078e-06
-1.81818e-07
-2.40113e-06
-1.93055e-07
-2.39906e-06
-2.04688e-07
-2.39435e-06
-2.16724e-07
-2.38679e-06
-2.2917e-07
-2.37617e-06
-2.42031e-07
-2.36223e-06
-2.55312e-07
-2.34473e-06
-2.69018e-07
-2.3234e-06
-2.83148e-07
-2.29796e-06
-2.97702e-07
-2.26811e-06
-3.12674e-07
-2.23356e-06
-3.28049e-07
-2.194e-06
-3.43805e-07
-2.14915e-06
-3.59907e-07
-2.09873e-06
-3.7631e-07
-2.04249e-06
-3.9296e-07
-1.98019e-06
-4.09791e-07
-1.91166e-06
-4.26705e-07
-1.83678e-06
-4.4359e-07
-1.75548e-06
-4.6036e-07
-1.66776e-06
-4.76874e-07
-1.57372e-06
-4.92967e-07
-1.47352e-06
-5.08508e-07
-1.36729e-06
-5.23452e-07
-1.25501e-06
-5.3789e-07
-1.13644e-06
-5.51966e-07
-1.01161e-06
-5.65394e-07
-8.80938e-07
-5.77696e-07
-7.45142e-07
-5.88531e-07
-6.04836e-07
-5.97951e-07
-4.60417e-07
-6.06147e-07
-3.12153e-07
-6.13241e-07
-1.60488e-07
-6.1898e-07
-6.90969e-09
-6.22197e-07
1.47028e-07
-6.22876e-07
2.99948e-07
-6.21219e-07
4.50338e-07
-6.17001e-07
5.97386e-07
-6.10989e-07
7.40853e-07
-6.03841e-07
8.80559e-07
-5.95667e-07
1.01605e-06
-5.862e-07
1.14661e-06
-5.75202e-07
1.27154e-06
-5.62742e-07
1.39051e-06
-5.49255e-07
1.50355e-06
-5.35128e-07
1.6106e-06
-5.20358e-07
1.71151e-06
-5.04906e-07
1.80607e-06
-4.88759e-07
1.89403e-06
-4.71975e-07
1.97523e-06
-4.54699e-07
2.04964e-06
-4.37105e-07
2.11728e-06
-4.19342e-07
2.17829e-06
-4.01564e-07
2.23288e-06
-3.83902e-07
2.28128e-06
-3.66452e-07
2.32378e-06
-3.49294e-07
2.3607e-06
-3.32494e-07
2.39237e-06
-3.16104e-07
2.41913e-06
-3.00159e-07
2.44132e-06
-2.84681e-07
2.45927e-06
-2.69681e-07
2.47329e-06
-2.55161e-07
2.48368e-06
-2.41118e-07
2.49072e-06
-2.27546e-07
2.49467e-06
-2.14439e-07
2.49577e-06
-2.01789e-07
2.49425e-06
-1.89585e-07
2.49033e-06
-1.7782e-07
2.48419e-06
-1.66481e-07
2.47604e-06
-1.55559e-07
2.46604e-06
-1.45043e-07
2.45436e-06
-1.34919e-07
2.44115e-06
-1.25177e-07
2.42654e-06
-1.15805e-07
2.41067e-06
-1.06789e-07
2.39366e-06
-9.81179e-08
2.37562e-06
-8.97801e-08
2.35666e-06
-8.1764e-08
2.33686e-06
-7.40586e-08
2.31631e-06
-6.66538e-08
2.29509e-06
-5.95397e-08
2.27328e-06
-5.27056e-08
2.25094e-06
-4.61375e-08
-3.98317e-08
2.22813e-06
-2.54011e-06
-1.44474e-08
-2.5738e-06
-2.06768e-08
-2.60741e-06
-2.71845e-08
-2.64091e-06
-3.39944e-08
-2.67423e-06
-4.11277e-08
-2.7073e-06
-4.86013e-08
-2.74005e-06
-5.6432e-08
-2.7724e-06
-6.46378e-08
-2.80424e-06
-7.32377e-08
-2.83547e-06
-8.22524e-08
-2.86598e-06
-9.17037e-08
-2.89562e-06
-1.01615e-07
-2.92427e-06
-1.12011e-07
-2.95175e-06
-1.22918e-07
-2.97788e-06
-1.34363e-07
-3.00247e-06
-1.46376e-07
-3.0253e-06
-1.58988e-07
-3.04612e-06
-1.72234e-07
-3.06466e-06
-1.8615e-07
-3.08061e-06
-2.00777e-07
-3.09362e-06
-2.16159e-07
-3.10331e-06
-2.3234e-07
-3.10926e-06
-2.49367e-07
-3.111e-06
-2.67277e-07
-3.10805e-06
-2.86099e-07
-3.09991e-06
-3.05837e-07
-3.08612e-06
-3.26469e-07
-3.06623e-06
-3.47939e-07
-3.03986e-06
-3.70168e-07
-3.0067e-06
-3.93074e-07
-2.9664e-06
-4.16607e-07
-2.91858e-06
-4.40778e-07
-2.86273e-06
-4.65639e-07
-2.79831e-06
-4.9113e-07
-2.7249e-06
-5.16996e-07
-2.64171e-06
-5.43556e-07
-2.54792e-06
-5.70657e-07
-2.44272e-06
-5.98173e-07
-2.3252e-06
-6.2603e-07
-2.19363e-06
-6.55022e-07
-2.0452e-06
-6.86318e-07
-1.87772e-06
-7.1944e-07
-1.69063e-06
-7.52491e-07
-1.48575e-06
-7.82571e-07
-1.26664e-06
-8.07639e-07
-1.03533e-06
-8.29261e-07
-7.94172e-07
-8.47308e-07
-5.48091e-07
-8.59322e-07
-2.99034e-07
-8.68038e-07
-4.72132e-08
-8.74018e-07
2.04823e-07
-8.74912e-07
4.52743e-07
-8.6914e-07
6.95678e-07
-8.59935e-07
9.34906e-07
-8.50218e-07
1.17014e-06
-8.39077e-07
1.3984e-06
-8.23927e-07
1.61823e-06
-8.06031e-07
1.82566e-06
-7.82633e-07
2.0162e-06
-7.53281e-07
2.18884e-06
-7.21892e-07
2.3446e-06
-6.90884e-07
2.485e-06
-6.60767e-07
2.61072e-06
-6.30618e-07
2.72174e-06
-5.99779e-07
2.81873e-06
-5.68968e-07
2.90294e-06
-5.38912e-07
2.97581e-06
-5.09971e-07
3.03835e-06
-4.81884e-07
3.09151e-06
-4.54726e-07
3.13603e-06
-4.28421e-07
3.17245e-06
-4.02872e-07
3.20121e-06
-3.7805e-07
3.2227e-06
-3.53988e-07
3.23736e-06
-3.30759e-07
3.24565e-06
-3.08452e-07
3.24811e-06
-2.87139e-07
3.24529e-06
-2.66861e-07
3.23775e-06
-2.47621e-07
3.22603e-06
-2.29396e-07
3.21062e-06
-2.12143e-07
3.19199e-06
-1.95811e-07
3.17055e-06
-1.80342e-07
3.14664e-06
-1.65681e-07
3.1206e-06
-1.51779e-07
3.09271e-06
-1.38587e-07
3.06321e-06
-1.26063e-07
3.03234e-06
-1.14167e-07
3.00028e-06
-1.02865e-07
2.96722e-06
-9.21216e-08
2.93333e-06
-8.19073e-08
2.89873e-06
-7.21929e-08
2.86357e-06
-6.29513e-08
2.82794e-06
-5.41573e-08
2.79197e-06
-4.57872e-08
2.75573e-06
-3.78189e-08
2.7193e-06
-3.02323e-08
2.68277e-06
-2.30087e-08
2.6462e-06
-1.61292e-08
2.60963e-06
-9.57075e-09
-3.31033e-09
2.57311e-06
-2.89654e-06
3.50687e-08
-2.94678e-06
2.95603e-08
-2.99776e-06
2.38048e-08
-3.0495e-06
1.7744e-08
-3.10198e-06
1.13486e-08
-3.15517e-06
4.59096e-09
-3.20904e-06
-2.56125e-09
-3.26356e-06
-1.01148e-08
-3.3187e-06
-1.81054e-08
-3.37438e-06
-2.65655e-08
-3.43056e-06
-3.55297e-08
-3.48714e-06
-4.50365e-08
-3.54402e-06
-5.51281e-08
-3.60109e-06
-6.58515e-08
-3.65819e-06
-7.72589e-08
-3.71515e-06
-8.941e-08
-3.77177e-06
-1.02373e-07
-3.82778e-06
-1.16221e-07
-3.8829e-06
-1.31035e-07
-3.93678e-06
-1.46897e-07
-3.98906e-06
-1.63883e-07
-4.03934e-06
-1.82056e-07
-4.08726e-06
-2.0145e-07
-4.13247e-06
-2.2206e-07
-4.17474e-06
-2.43834e-07
-4.21389e-06
-2.66683e-07
-4.24986e-06
-2.90497e-07
-4.28259e-06
-3.15213e-07
-4.31181e-06
-3.40947e-07
-4.3369e-06
-3.67983e-07
-4.35676e-06
-3.96753e-07
-4.3697e-06
-4.27834e-07
-4.37325e-06
-4.62093e-07
-4.36393e-06
-5.00447e-07
-4.33818e-06
-5.42743e-07
-4.29469e-06
-5.87047e-07
-4.23127e-06
-6.34078e-07
-4.1407e-06
-6.88742e-07
-4.01044e-06
-7.56292e-07
-3.82506e-06
-8.40399e-07
-3.57364e-06
-9.37736e-07
-3.26135e-06
-1.03173e-06
-2.8957e-06
-1.11814e-06
-2.49074e-06
-1.18754e-06
-2.06398e-06
-1.23439e-06
-1.62425e-06
-1.26899e-06
-1.18243e-06
-1.28913e-06
-7.67438e-07
-1.27431e-06
-3.97116e-07
-1.23836e-06
-4.47048e-08
-1.22643e-06
3.07802e-07
-1.22742e-06
6.56821e-07
-1.21816e-06
1.02878e-06
-1.23189e-06
1.43575e-06
-1.25718e-06
1.86927e-06
-1.2726e-06
2.30965e-06
-1.2643e-06
2.74662e-06
-1.24301e-06
3.16034e-06
-1.19635e-06
3.52775e-06
-1.12069e-06
3.83843e-06
-1.03257e-06
4.08862e-06
-9.41075e-07
4.28349e-06
-8.55639e-07
4.43203e-06
-7.79159e-07
4.54106e-06
-7.0881e-07
4.61517e-06
-6.43077e-07
4.65768e-06
-5.81425e-07
4.67325e-06
-5.25535e-07
4.66835e-06
-4.7699e-07
4.64884e-06
-4.35216e-07
4.61923e-06
-3.98807e-07
4.58276e-06
-3.66404e-07
4.54171e-06
-3.36992e-07
4.49737e-06
-3.09648e-07
4.45037e-06
-2.83763e-07
4.40091e-06
-2.58992e-07
4.34904e-06
-2.35274e-07
4.29484e-06
-2.12652e-07
4.23841e-06
-1.91199e-07
4.18e-06
-1.70978e-07
4.11987e-06
-1.52018e-07
4.05837e-06
-1.34309e-07
3.99583e-06
-1.17804e-07
3.93258e-06
-1.02433e-07
3.86893e-06
-8.81217e-08
3.80512e-06
-7.47759e-08
3.74137e-06
-6.23142e-08
3.67786e-06
-5.06621e-08
3.61475e-06
-3.97521e-08
3.55215e-06
-2.95237e-08
3.49017e-06
-1.9923e-08
3.42888e-06
-1.09017e-08
3.36834e-06
-2.41543e-09
3.3086e-06
5.58456e-09
3.24971e-06
1.31058e-08
3.19169e-06
2.01954e-08
3.13457e-06
2.68858e-08
3.07836e-06
3.32061e-08
3.02306e-06
3.91665e-08
2.96869e-06
4.48029e-08
5.01862e-08
2.91519e-06
-3.21129e-06
1.00941e-07
-3.27888e-06
9.715e-08
-3.34832e-06
9.32448e-08
-3.41968e-06
8.91043e-08
-3.49303e-06
8.46973e-08
-3.56844e-06
8.0002e-08
-3.646e-06
7.4996e-08
-3.72577e-06
6.96546e-08
-3.80782e-06
6.39506e-08
-3.89224e-06
5.78523e-08
-3.97909e-06
5.13252e-08
-4.06847e-06
4.43357e-08
-4.16043e-06
3.68309e-08
-4.25504e-06
2.87669e-08
-4.35241e-06
2.01057e-08
-4.45264e-06
1.08209e-08
-4.55571e-06
6.98838e-10
-4.6618e-06
-1.01325e-08
-4.77111e-06
-2.1723e-08
-4.88396e-06
-3.40474e-08
-5.0008e-06
-4.70383e-08
-5.12226e-06
-6.0596e-08
-5.2491e-06
-7.462e-08
-5.38207e-06
-8.90859e-08
-5.52173e-06
-1.04175e-07
-5.66794e-06
-1.20477e-07
-5.81918e-06
-1.39255e-07
-5.97186e-06
-1.62532e-07
-6.12007e-06
-1.92737e-07
-6.25492e-06
-2.33132e-07
-6.36392e-06
-2.87751e-07
-6.43161e-06
-3.60145e-07
-6.44593e-06
-4.47776e-07
-6.3825e-06
-5.63873e-07
-6.25866e-06
-6.66582e-07
-6.10513e-06
-7.40583e-07
-5.93796e-06
-8.01247e-07
-5.75233e-06
-8.74372e-07
-5.48403e-06
-1.02459e-06
-5.07209e-06
-1.25234e-06
-4.53122e-06
-1.47861e-06
-3.92981e-06
-1.63314e-06
-3.32046e-06
-1.72749e-06
-2.72945e-06
-1.77855e-06
-2.16206e-06
-1.80178e-06
-1.61337e-06
-1.81768e-06
-1.09757e-06
-1.80493e-06
-6.28277e-07
-1.74361e-06
-2.09771e-07
-1.65687e-06
1.56303e-07
-1.5925e-06
5.18083e-07
-1.5892e-06
9.20013e-07
-1.62009e-06
1.35211e-06
-1.664e-06
1.82957e-06
-1.73463e-06
2.35946e-06
-1.8025e-06
2.92643e-06
-1.83127e-06
3.51621e-06
-1.83279e-06
4.12096e-06
-1.80109e-06
4.72146e-06
-1.7212e-06
5.26328e-06
-1.57439e-06
5.68797e-06
-1.36577e-06
5.98984e-06
-1.15751e-06
6.2234e-06
-1.01272e-06
6.44382e-06
-9.29234e-07
6.64815e-06
-8.4741e-07
6.81192e-06
-7.4519e-07
6.90472e-06
-6.18336e-07
6.91199e-06
-4.84256e-07
6.85126e-06
-3.74493e-07
6.73622e-06
-2.83763e-07
6.58595e-06
-2.16134e-07
6.4157e-06
-1.66748e-07
6.2364e-06
-1.3035e-07
6.05617e-06
-1.0353e-07
5.88058e-06
-8.3397e-08
5.71263e-06
-6.73223e-08
5.55337e-06
-5.33979e-08
5.40267e-06
-4.04986e-08
5.25979e-06
-2.80926e-08
5.12378e-06
-1.60132e-08
4.99376e-06
-4.28448e-09
4.86895e-06
7.00247e-09
4.74826e-06
1.82528e-08
4.63239e-06
2.77517e-08
4.52047e-06
3.7147e-08
4.41227e-06
4.58835e-08
4.30761e-06
5.40001e-08
4.20632e-06
6.15346e-08
4.10827e-06
6.85288e-08
4.01332e-06
7.50289e-08
3.92134e-06
8.10793e-08
3.8322e-06
8.67173e-08
3.74581e-06
9.19764e-08
3.66203e-06
9.68858e-08
3.58075e-06
1.01472e-07
3.50188e-06
1.05759e-07
3.42532e-06
1.09768e-07
3.35097e-06
1.1352e-07
3.27872e-06
1.17044e-07
1.20461e-07
3.20845e-06
-3.42371e-06
1.79746e-07
-3.50516e-06
1.78608e-07
-3.5895e-06
1.77586e-07
-3.67691e-06
1.76514e-07
-3.76759e-06
1.75379e-07
-3.86177e-06
1.74178e-07
-3.95969e-06
1.72916e-07
-4.06163e-06
1.71592e-07
-4.16789e-06
1.7021e-07
-4.27881e-06
1.6877e-07
-4.39476e-06
1.67275e-07
-4.51615e-06
1.65728e-07
-4.64345e-06
1.64137e-07
-4.77721e-06
1.62523e-07
-4.91803e-06
1.60929e-07
-5.06665e-06
1.59438e-07
-5.22416e-06
1.58206e-07
-5.39164e-06
1.5735e-07
-5.57047e-06
1.57107e-07
-5.76221e-06
1.57688e-07
-5.96813e-06
1.58884e-07
-6.18905e-06
1.60327e-07
-6.4244e-06
1.60732e-07
-6.67121e-06
1.57725e-07
-6.92279e-06
1.47404e-07
-7.16802e-06
1.2475e-07
-7.38926e-06
8.198e-08
-7.55935e-06
7.56049e-09
-7.67339e-06
-7.87011e-08
-7.70665e-06
-1.99865e-07
-7.64372e-06
-3.50681e-07
-7.46007e-06
-5.43797e-07
-7.12494e-06
-7.82908e-07
-6.66179e-06
-1.02702e-06
-5.96795e-06
-1.36042e-06
-5.19395e-06
-1.51459e-06
-4.49158e-06
-1.50362e-06
-3.90079e-06
-1.46516e-06
-3.35049e-06
-1.5749e-06
-2.80948e-06
-1.79334e-06
-2.32269e-06
-1.96539e-06
-1.93252e-06
-2.02332e-06
-1.58107e-06
-2.07893e-06
-1.16687e-06
-2.19276e-06
-8.44787e-07
-2.12386e-06
-7.35956e-07
-1.92651e-06
-7.06973e-07
-1.83391e-06
-6.20461e-07
-1.83012e-06
-4.09245e-07
-1.86808e-06
2.79423e-08
-2.02969e-06
5.6133e-07
-2.12259e-06
8.98892e-07
-1.95765e-06
1.12171e-06
-1.88681e-06
1.26089e-06
-1.87382e-06
1.36224e-06
-1.90385e-06
1.56875e-06
-2.03778e-06
1.88641e-06
-2.15045e-06
2.19079e-06
-2.10547e-06
2.51105e-06
-2.04146e-06
2.91486e-06
-1.9782e-06
3.37925e-06
-1.83016e-06
3.87151e-06
-1.64977e-06
4.43032e-06
-1.57152e-06
5.11232e-06
-1.61124e-06
5.86433e-06
-1.59942e-06
6.5459e-06
-1.42676e-06
7.04441e-06
-1.11684e-06
7.41197e-06
-8.51818e-07
7.63606e-06
-5.98584e-07
7.75057e-06
-3.98274e-07
7.771e-06
-2.36561e-07
7.70588e-06
-1.01627e-07
7.57694e-06
-1.40886e-09
7.38415e-06
8.92557e-08
7.15501e-06
1.45747e-07
6.90848e-06
1.792e-07
6.65858e-06
1.96503e-07
6.41468e-06
2.03407e-07
6.18222e-06
2.04364e-07
5.96359e-06
2.02612e-07
5.75913e-06
2.00176e-07
5.56803e-06
1.98103e-07
5.38952e-06
1.96766e-07
5.22113e-06
1.96141e-07
5.0622e-06
1.9608e-07
4.9117e-06
1.96379e-07
4.76882e-06
1.96879e-07
4.63289e-06
1.97468e-07
4.50334e-06
1.98082e-07
4.37968e-06
1.98689e-07
4.26148e-06
1.99276e-07
4.14836e-06
1.99836e-07
4.03997e-06
2.0037e-07
3.93598e-06
2.00875e-07
3.8361e-06
2.0135e-07
3.74007e-06
2.01792e-07
3.64764e-06
2.02199e-07
3.55859e-06
2.0257e-07
3.47271e-06
2.02917e-07
2.03417e-07
3.38976e-06
-3.47317e-06
2.62143e-07
-3.55818e-06
2.63613e-07
-3.64596e-06
2.65367e-07
-3.73664e-06
2.67198e-07
-3.83036e-06
2.69096e-07
-3.92725e-06
2.71069e-07
-4.02746e-06
2.73125e-07
-4.13114e-06
2.75272e-07
-4.23845e-06
2.7752e-07
-4.34956e-06
2.79883e-07
-4.46468e-06
2.82387e-07
-4.58402e-06
2.85075e-07
-4.70791e-06
2.88026e-07
-4.83675e-06
2.91359e-07
-4.97106e-06
2.95243e-07
-5.11149e-06
2.99866e-07
-5.25865e-06
3.05365e-07
-5.41297e-06
3.11669e-07
-5.57413e-06
3.18268e-07
-5.74032e-06
3.23884e-07
-5.90755e-06
3.26112e-07
-6.06836e-06
3.21131e-07
-6.2112e-06
3.03573e-07
-6.32023e-06
2.66757e-07
-6.3761e-06
2.03278e-07
-6.35796e-06
1.06608e-07
-6.24957e-06
-2.64116e-08
-6.05039e-06
-1.91613e-07
-5.74282e-06
-3.86272e-07
-5.33879e-06
-6.03903e-07
-4.85848e-06
-8.30986e-07
-4.31462e-06
-1.08766e-06
-3.67597e-06
-1.42155e-06
-2.93458e-06
-1.76842e-06
-2.10645e-06
-2.18855e-06
-1.2041e-06
-2.41693e-06
-2.67355e-07
-2.44037e-06
5.52502e-07
-2.28502e-06
1.08968e-06
-2.11208e-06
1.31327e-06
-2.01693e-06
1.27589e-06
-1.92801e-06
1.18548e-06
-1.9329e-06
1.01293e-06
-1.90639e-06
6.82034e-07
-1.86186e-06
3.73657e-07
-1.81548e-06
3.02957e-07
-1.85581e-06
3.8348e-07
-1.91444e-06
5.53348e-07
-1.99999e-06
4.623e-07
-1.77703e-06
1.04393e-07
-1.67179e-06
-3.07362e-07
-1.71083e-06
-5.47092e-07
-1.71792e-06
-4.42881e-07
-1.99102e-06
-3.1925e-07
-1.99745e-06
-3.20711e-07
-1.90239e-06
-5.50871e-07
-1.80762e-06
-9.38481e-07
-1.76284e-06
-1.17427e-06
-1.86969e-06
-1.26026e-06
-1.95547e-06
-1.29825e-06
-1.94021e-06
-1.11353e-06
-2.01487e-06
-6.38176e-07
-2.12513e-06
1.14063e-07
-2.32376e-06
9.87606e-07
-2.48478e-06
1.82982e-06
-2.44163e-06
2.60289e-06
-2.19983e-06
3.29691e-06
-1.81086e-06
3.91495e-06
-1.46986e-06
4.46892e-06
-1.15255e-06
4.97802e-06
-9.07374e-07
5.42282e-06
-6.81365e-07
5.78113e-06
-4.59933e-07
6.03561e-06
-2.5589e-07
6.20123e-06
-7.63679e-08
6.27418e-06
7.27981e-08
6.26572e-06
1.87667e-07
6.19386e-06
2.68362e-07
6.07788e-06
3.19388e-07
5.93473e-06
3.47513e-07
5.77779e-06
3.59548e-07
5.61655e-06
3.61419e-07
5.45696e-06
3.57691e-07
5.30223e-06
3.51492e-07
5.15366e-06
3.44718e-07
5.01141e-06
3.38328e-07
4.87512e-06
3.32671e-07
4.74424e-06
3.27755e-07
4.61826e-06
3.23446e-07
4.49676e-06
3.1958e-07
4.37943e-06
3.16021e-07
4.26603e-06
3.12676e-07
4.15638e-06
3.09488e-07
4.05032e-06
3.06426e-07
3.94772e-06
3.03474e-07
3.84845e-06
3.00623e-07
3.75237e-06
2.97867e-07
3.65937e-06
2.952e-07
3.56933e-06
2.92616e-07
3.48212e-06
2.90128e-07
2.87945e-07
3.39759e-06
-3.34327e-06
3.38306e-07
-3.4211e-06
3.41441e-07
-3.50054e-06
3.44808e-07
-3.58158e-06
3.48237e-07
-3.66419e-06
3.51708e-07
-3.74834e-06
3.55216e-07
-3.83397e-06
3.58761e-07
-3.92105e-06
3.62349e-07
-4.00953e-06
3.65997e-07
-4.09939e-06
3.69745e-07
-4.19067e-06
3.73668e-07
-4.28347e-06
3.77872e-07
-4.37792e-06
3.82483e-07
-4.47414e-06
3.8758e-07
-4.57198e-06
3.9308e-07
-4.67064e-06
3.98529e-07
-4.76811e-06
4.02832e-07
-4.86038e-06
4.03935e-07
-4.94065e-06
3.98541e-07
-4.99872e-06
3.81953e-07
-5.02079e-06
3.48187e-07
-4.99014e-06
2.90476e-07
-4.8888e-06
2.02236e-07
-4.70107e-06
7.90278e-08
-4.42029e-06
-7.75038e-08
-4.04411e-06
-2.69578e-07
-3.5865e-06
-4.84022e-07
-3.06607e-06
-7.12038e-07
-2.51323e-06
-9.3911e-07
-1.97482e-06
-1.14232e-06
-1.50134e-06
-1.30446e-06
-1.13783e-06
-1.45118e-06
-7.72847e-07
-1.78653e-06
-2.8104e-07
-2.26022e-06
1.31223e-07
-2.60081e-06
3.6695e-07
-2.65266e-06
5.25457e-07
-2.59887e-06
7.33244e-07
-2.4928e-06
9.84676e-07
-2.36351e-06
1.18464e-06
-2.21689e-06
1.28342e-06
-2.02679e-06
1.19301e-06
-1.8425e-06
1.02255e-06
-1.73593e-06
8.26564e-07
-1.66587e-06
6.71763e-07
-1.66068e-06
5.16848e-07
-1.7009e-06
3.33733e-07
-1.73132e-06
5.30465e-08
-1.7193e-06
-1.4729e-08
-1.70926e-06
2.16959e-08
-1.70821e-06
1.72694e-08
-1.7064e-06
1.02872e-08
-1.71094e-06
-2.76195e-07
-1.70454e-06
-5.42155e-07
-1.73149e-06
-7.31259e-07
-1.71328e-06
-8.65997e-07
-1.67288e-06
-9.68091e-07
-1.66075e-06
-1.11069e-06
-1.72709e-06
-1.23467e-06
-1.83148e-06
-1.15617e-06
-2.01871e-06
-9.61333e-07
-2.20971e-06
-7.30035e-07
-2.35643e-06
-5.67177e-07
-2.48662e-06
-4.51108e-07
-2.60085e-06
-2.46736e-07
-2.646e-06
1.34577e-07
-2.58114e-06
5.98483e-07
-2.27476e-06
9.98947e-07
-1.87033e-06
1.37148e-06
-1.52509e-06
1.83406e-06
-1.36995e-06
2.35461e-06
-1.20191e-06
2.88905e-06
-9.94374e-07
3.39962e-06
-7.66457e-07
3.8605e-06
-5.37252e-07
4.25162e-06
-3.18322e-07
4.55821e-06
-1.18921e-07
4.77597e-06
5.06047e-08
4.90754e-06
1.87814e-07
4.96454e-06
2.90518e-07
4.96277e-06
3.61317e-07
4.91851e-06
4.05672e-07
4.84627e-06
4.29939e-07
4.75753e-06
4.40231e-07
4.66053e-06
4.41715e-07
4.56055e-06
4.38306e-07
4.46056e-06
4.32659e-07
4.36196e-06
4.26359e-07
4.26521e-06
4.202e-07
4.17032e-06
4.14467e-07
4.07717e-06
4.0917e-07
3.98563e-06
4.04215e-07
3.89563e-06
3.99489e-07
3.80715e-06
3.94905e-07
3.72022e-06
3.90411e-07
3.63486e-06
3.85981e-07
3.55112e-06
3.81607e-07
3.46903e-06
3.77289e-07
3.38862e-06
3.73032e-07
3.30989e-06
3.68859e-07
3.64944e-07
3.23289e-06
-3.11175e-06
4.07696e-07
-3.18211e-06
4.11804e-07
-3.25332e-06
4.16014e-07
-3.32526e-06
4.2018e-07
-3.39782e-06
4.24263e-07
-3.47085e-06
4.28249e-07
-3.54423e-06
4.32137e-07
-3.61783e-06
4.35948e-07
-3.69156e-06
4.39735e-07
-3.7654e-06
4.43578e-07
-3.83929e-06
4.47563e-07
-3.91312e-06
4.51705e-07
-3.98645e-06
4.5581e-07
-4.05812e-06
4.59253e-07
-4.12573e-06
4.60684e-07
-4.1849e-06
4.57704e-07
-4.22868e-06
4.46613e-07
-4.24709e-06
4.22338e-07
-4.22724e-06
3.78697e-07
-4.15438e-06
3.09089e-07
-4.01384e-06
2.07644e-07
-3.79449e-06
7.113e-08
-3.49423e-06
-9.80201e-08
-3.11544e-06
-2.99762e-07
-2.67195e-06
-5.21001e-07
-2.18836e-06
-7.53168e-07
-1.68435e-06
-9.88034e-07
-1.18399e-06
-1.21239e-06
-7.11384e-07
-1.41171e-06
-2.83856e-07
-1.56984e-06
1.19596e-07
-1.70792e-06
2.85803e-07
-1.61738e-06
4.15499e-07
-1.91622e-06
6.72854e-07
-2.51758e-06
8.76435e-07
-2.80439e-06
9.92866e-07
-2.76909e-06
9.91167e-07
-2.59717e-06
9.1993e-07
-2.42157e-06
8.44512e-07
-2.28809e-06
7.48527e-07
-2.1209e-06
6.49839e-07
-1.92811e-06
5.88129e-07
-1.78079e-06
5.1944e-07
-1.66724e-06
4.63481e-07
-1.60991e-06
3.94499e-07
-1.5917e-06
2.92542e-07
-1.59894e-06
1.81038e-07
-1.61982e-06
1.07327e-07
-1.64559e-06
5.4054e-08
-1.65598e-06
-1.74114e-09
-1.65241e-06
-5.64099e-08
-1.65174e-06
-1.11541e-07
-1.65581e-06
-1.66941e-07
-1.64914e-06
-2.75164e-07
-1.62326e-06
-3.9016e-07
-1.59829e-06
-4.75147e-07
-1.58789e-06
-5.25595e-07
-1.6103e-06
-5.84515e-07
-1.66817e-06
-6.36969e-07
-1.77903e-06
-7.26762e-07
-1.92892e-06
-8.15558e-07
-2.12092e-06
-8.88202e-07
-2.28378e-06
-9.62244e-07
-2.41257e-06
-9.78315e-07
-2.58478e-06
-8.7102e-07
-2.7533e-06
-6.57376e-07
-2.79479e-06
-3.66097e-07
-2.56604e-06
-1.29339e-07
-2.10708e-06
7.12219e-09
-1.66155e-06
3.69846e-07
-1.73268e-06
7.60259e-07
-1.59233e-06
1.1884e-06
-1.42252e-06
1.64329e-06
-1.22135e-06
2.10554e-06
-9.99506e-07
2.55642e-06
-7.69205e-07
2.97776e-06
-5.40252e-07
3.34752e-06
-3.19163e-07
3.6487e-06
-1.13359e-07
3.87605e-06
6.31638e-08
4.02827e-06
2.09093e-07
4.11361e-06
3.20336e-07
4.1446e-06
3.98951e-07
4.13488e-06
4.49946e-07
4.09707e-06
4.79526e-07
4.04148e-06
4.939e-07
3.97568e-06
4.98456e-07
3.90469e-06
4.97345e-07
3.83148e-06
4.93419e-07
3.75755e-06
4.88397e-07
3.68356e-06
4.83158e-07
3.60973e-06
4.78044e-07
3.53611e-06
4.73107e-07
3.46273e-06
4.68283e-07
3.38966e-06
4.63487e-07
3.31698e-06
4.58657e-07
3.24482e-06
4.53761e-07
3.17332e-06
4.48793e-07
3.10259e-06
4.43765e-07
3.03273e-06
4.38718e-07
4.33811e-07
2.96386e-06
-2.82933e-06
4.74564e-07
-2.89719e-06
4.79668e-07
-2.96597e-06
4.84789e-07
-3.03557e-06
4.89781e-07
-3.10591e-06
4.94604e-07
-3.17692e-06
4.99258e-07
-3.24855e-06
5.03769e-07
-3.32079e-06
5.08184e-07
-3.3936e-06
5.12543e-07
-3.46682e-06
5.16805e-07
-3.53998e-06
5.20717e-07
-3.61187e-06
5.23601e-07
-3.68015e-06
5.24088e-07
-3.74072e-06
5.19823e-07
-3.78727e-06
5.07234e-07
-3.81105e-06
4.81481e-07
-3.80116e-06
4.3672e-07
-3.74561e-06
3.66788e-07
-3.63327e-06
2.66361e-07
-3.4567e-06
1.32519e-07
-3.21888e-06
-3.01716e-08
-2.92109e-06
-2.26664e-07
-2.57927e-06
-4.39843e-07
-2.21529e-06
-6.63743e-07
-1.84341e-06
-8.92876e-07
-1.47569e-06
-1.12089e-06
-1.1224e-06
-1.34133e-06
-7.94436e-07
-1.54035e-06
-4.78979e-07
-1.72717e-06
-1.8002e-07
-1.8688e-06
8.44862e-08
-1.97242e-06
2.24813e-07
-1.75771e-06
5.22429e-07
-2.21384e-06
8.32663e-07
-2.82781e-06
9.60167e-07
-2.9319e-06
8.96256e-07
-2.70518e-06
7.39148e-07
-2.44006e-06
5.95074e-07
-2.27749e-06
4.80393e-07
-2.17341e-06
3.55429e-07
-1.99594e-06
2.32022e-07
-1.8047e-06
1.4283e-07
-1.69159e-06
1.04609e-07
-1.62902e-06
8.71351e-08
-1.59244e-06
8.79035e-08
-1.59247e-06
9.43872e-08
-1.60542e-06
8.77133e-08
-1.61314e-06
5.81608e-08
-1.61604e-06
2.0928e-08
-1.61875e-06
-1.32202e-08
-1.61827e-06
-4.60035e-08
-1.61895e-06
-8.12718e-08
-1.62054e-06
-1.12124e-07
-1.61829e-06
-1.2085e-07
-1.61454e-06
-1.1182e-07
-1.60732e-06
-1.04273e-07
-1.59544e-06
-1.19085e-07
-1.59549e-06
-1.55959e-07
-1.6313e-06
-2.39863e-07
-1.69512e-06
-3.58066e-07
-1.81071e-06
-4.75079e-07
-2.0039e-06
-5.81284e-07
-2.17758e-06
-7.15569e-07
-2.27829e-06
-8.57397e-07
-2.44295e-06
-9.05977e-07
-2.70472e-06
-7.83856e-07
-2.91691e-06
-5.48093e-07
-2.80181e-06
-3.70357e-07
-2.28482e-06
-1.97781e-07
-1.83412e-06
4.80831e-08
-1.97854e-06
3.43311e-07
-1.88755e-06
6.46761e-07
-1.72596e-06
9.5662e-07
-1.5312e-06
1.28608e-06
-1.32897e-06
1.6294e-06
-1.11253e-06
1.97935e-06
-8.90199e-07
2.32591e-06
-6.65723e-07
2.65679e-06
-4.44238e-07
2.95078e-06
-2.30823e-07
3.19261e-06
-3.2744e-08
3.37858e-06
1.34368e-07
3.5041e-06
2.73431e-07
3.57445e-06
3.79599e-07
3.59897e-06
4.55006e-07
3.58846e-06
5.04412e-07
3.55323e-06
5.33684e-07
3.50196e-06
5.48617e-07
3.4412e-06
5.54178e-07
3.37543e-06
5.54165e-07
3.3074e-06
5.51182e-07
3.23863e-06
5.46817e-07
3.16983e-06
5.41911e-07
3.10128e-06
5.36827e-07
3.03311e-06
5.31663e-07
2.96536e-06
5.26408e-07
2.8981e-06
5.21021e-07
2.83141e-06
5.15476e-07
2.76541e-06
5.09773e-07
2.70017e-06
5.03953e-07
4.98169e-07
2.63581e-06
-2.49874e-06
5.4352e-07
-2.56954e-06
5.50464e-07
-2.64227e-06
5.57517e-07
-2.717e-06
5.6451e-07
-2.79382e-06
5.71424e-07
-2.87285e-06
5.78287e-07
-2.9542e-06
5.8512e-07
-3.03788e-06
5.91871e-07
-3.12363e-06
5.98286e-07
-3.21054e-06
6.03719e-07
-3.2967e-06
6.06872e-07
-3.37861e-06
6.0552e-07
-3.45082e-06
5.96296e-07
-3.50564e-06
5.74637e-07
-3.53345e-06
5.35045e-07
-3.52372e-06
4.71753e-07
-3.46683e-06
3.79828e-07
-3.35663e-06
2.56592e-07
-3.19318e-06
1.02907e-07
-2.98427e-06
-7.63896e-08
-2.74134e-06
-2.73104e-07
-2.48774e-06
-4.80262e-07
-2.23614e-06
-6.91443e-07
-1.99639e-06
-9.03494e-07
-1.7728e-06
-1.11646e-06
-1.57569e-06
-1.318e-06
-1.39556e-06
-1.52146e-06
-1.22058e-06
-1.71533e-06
-1.06222e-06
-1.88553e-06
-9.16434e-07
-2.01459e-06
-7.63159e-07
-2.1257e-06
-1.94141e-07
-2.32673e-06
2.77883e-07
-2.68586e-06
4.81169e-07
-3.0311e-06
5.04733e-07
-2.95546e-06
3.77762e-07
-2.57821e-06
1.95498e-07
-2.2578e-06
3.87697e-08
-2.12077e-06
-7.86328e-08
-2.05601e-06
-1.56449e-07
-1.91812e-06
-2.21176e-07
-1.73997e-06
-2.37845e-07
-1.67492e-06
-2.14465e-07
-1.6524e-06
-1.68103e-07
-1.6388e-06
-1.24576e-07
-1.636e-06
-9.19154e-08
-1.63808e-06
-6.83588e-08
-1.6367e-06
-4.87313e-08
-1.63567e-06
-3.24498e-08
-1.63503e-06
-1.66969e-08
-1.63402e-06
-1.08104e-09
-1.63457e-06
1.4783e-08
-1.6364e-06
3.48012e-08
-1.6383e-06
6.03548e-08
-1.64009e-06
9.39052e-08
-1.64087e-06
1.37481e-07
-1.63902e-06
1.85891e-07
-1.6439e-06
2.12482e-07
-1.65789e-06
2.01603e-07
-1.68424e-06
1.44869e-07
-1.75398e-06
7.27829e-08
-1.93182e-06
-4.1644e-08
-2.06315e-06
-1.88789e-07
-2.13115e-06
-3.52087e-07
-2.27965e-06
-4.51773e-07
-2.60503e-06
-4.08713e-07
-2.95997e-06
-2.2171e-07
-2.98881e-06
1.64105e-07
-2.67063e-06
6.9302e-07
-2.36304e-06
8.55301e-07
-2.14082e-06
9.63396e-07
-1.99565e-06
1.08898e-06
-1.85155e-06
1.23817e-06
-1.68039e-06
1.39576e-06
-1.48656e-06
1.57229e-06
-1.28906e-06
1.77581e-06
-1.09372e-06
1.99916e-06
-8.89075e-07
2.23737e-06
-6.82443e-07
2.48087e-06
-4.74329e-07
2.7162e-06
-2.68073e-07
2.92165e-06
-7.10824e-08
3.08557e-06
1.09519e-07
3.19995e-06
2.65211e-07
3.26392e-06
3.91044e-07
3.28245e-06
4.85881e-07
3.26407e-06
5.52067e-07
3.21846e-06
5.94225e-07
3.15472e-06
6.17912e-07
3.08035e-06
6.28539e-07
3.00084e-06
6.30696e-07
2.9198e-06
6.27853e-07
2.83934e-06
6.2237e-07
2.7605e-06
6.15669e-07
2.68367e-06
6.08496e-07
2.60891e-06
6.01169e-07
2.53615e-06
5.93778e-07
2.46531e-06
5.86319e-07
2.39631e-06
5.78773e-07
2.32909e-06
5.71165e-07
5.63674e-07
2.26359e-06
-2.05441e-06
6.12053e-07
-2.12555e-06
6.21608e-07
-2.19953e-06
6.31494e-07
-2.27652e-06
6.41498e-07
-2.3567e-06
6.51608e-07
-2.44023e-06
6.61818e-07
-2.52711e-06
6.72001e-07
-2.61699e-06
6.81742e-07
-2.70881e-06
6.90106e-07
-2.80043e-06
6.95345e-07
-2.88819e-06
6.94632e-07
-2.96659e-06
6.83917e-07
-3.02833e-06
6.58037e-07
-3.06492e-06
6.11227e-07
-3.06796e-06
5.38081e-07
-3.03111e-06
4.34902e-07
-2.95237e-06
3.01095e-07
-2.83576e-06
1.39982e-07
-2.68958e-06
-4.32754e-08
-2.53139e-06
-2.3458e-07
-2.37257e-06
-4.31931e-07
-2.22113e-06
-6.31697e-07
-2.08283e-06
-8.29741e-07
-1.97108e-06
-1.01525e-06
-1.87886e-06
-1.20868e-06
-1.79241e-06
-1.40445e-06
-1.74123e-06
-1.57265e-06
-1.72044e-06
-1.73612e-06
-1.68325e-06
-1.92272e-06
-1.561e-06
-2.13684e-06
-1.30071e-06
-2.38598e-06
-9.60541e-07
-2.6669e-06
-7.14287e-07
-2.93212e-06
-6.3689e-07
-3.1085e-06
-5.9969e-07
-2.99266e-06
-6.00573e-07
-2.57732e-06
-5.21351e-07
-2.33702e-06
-6.14749e-07
-2.02737e-06
-9.48054e-07
-1.7227e-06
-1.11297e-06
-1.75321e-06
-1.04413e-06
-1.80881e-06
-9.36525e-07
-1.78253e-06
-8.58651e-07
-1.73027e-06
-7.30308e-07
-1.76715e-06
-5.79105e-07
-1.7872e-06
-4.19709e-07
-1.79748e-06
-2.82149e-07
-1.77426e-06
-1.71767e-07
-1.74605e-06
-8.10156e-08
-1.72578e-06
4.43093e-09
-1.71947e-06
9.39587e-08
-1.7241e-06
1.90627e-07
-1.73307e-06
3.08275e-07
-1.75595e-06
4.52135e-07
-1.78395e-06
6.09994e-07
-1.79873e-06
7.63379e-07
-1.7924e-06
8.98314e-07
-1.77883e-06
9.78329e-07
-1.7379e-06
1.08637e-06
-1.79229e-06
1.15158e-06
-1.81919e-06
9.68364e-07
-1.7486e-06
6.22324e-07
-1.71711e-06
5.38619e-07
-2.04744e-06
6.34149e-07
-2.37518e-06
6.42869e-07
-2.61375e-06
6.78854e-07
-2.99595e-06
7.30868e-07
-3.04082e-06
9.20449e-07
-2.86021e-06
1.17439e-06
-2.61698e-06
1.38455e-06
-2.35098e-06
1.49376e-06
-2.10486e-06
1.52988e-06
-1.88767e-06
1.54592e-06
-1.69643e-06
1.59091e-06
-1.53155e-06
1.66476e-06
-1.36291e-06
1.74786e-06
-1.17682e-06
1.85057e-06
-9.91785e-07
1.98088e-06
-8.12756e-07
2.12663e-06
-6.20075e-07
2.28067e-06
-4.22118e-07
2.43283e-06
-2.2324e-07
2.57189e-06
-2.95407e-08
2.68294e-06
1.54167e-07
2.75791e-06
3.16073e-07
2.79338e-06
4.50409e-07
2.79142e-06
5.54025e-07
2.75801e-06
6.27637e-07
2.70097e-06
6.74954e-07
2.62819e-06
7.01318e-07
2.54646e-06
7.12422e-07
2.46094e-06
7.13379e-07
2.37508e-06
7.08227e-07
2.29094e-06
6.99807e-07
2.20954e-06
6.89895e-07
2.13125e-06
6.79456e-07
2.0561e-06
6.68929e-07
1.98396e-06
6.58458e-07
1.91467e-06
6.48066e-07
1.84806e-06
6.37777e-07
6.27805e-07
1.78393e-06
-1.4328e-06
6.71846e-07
-1.49549e-06
6.84302e-07
-1.56131e-06
6.97309e-07
-1.63045e-06
7.10637e-07
-1.70306e-06
7.24221e-07
-1.77915e-06
7.37907e-07
-1.8584e-06
7.51249e-07
-1.93991e-06
7.63252e-07
-2.02188e-06
7.72073e-07
-2.10127e-06
7.74736e-07
-2.17363e-06
7.66993e-07
-2.2332e-06
7.43486e-07
-2.27351e-06
6.98351e-07
-2.28862e-06
6.26341e-07
-2.27485e-06
5.24308e-07
-2.23257e-06
3.92622e-07
-2.16723e-06
2.35754e-07
-2.08838e-06
6.11334e-08
-2.00851e-06
-1.23151e-07
-1.93156e-06
-3.11525e-07
-1.86416e-06
-4.99333e-07
-1.8191e-06
-6.76752e-07
-1.78929e-06
-8.59551e-07
-1.76737e-06
-1.03718e-06
-1.79198e-06
-1.18406e-06
-1.86863e-06
-1.3278e-06
-1.95452e-06
-1.48676e-06
-2.03163e-06
-1.65901e-06
-2.10857e-06
-1.84578e-06
-2.20207e-06
-2.04334e-06
-2.34391e-06
-2.24414e-06
-2.56931e-06
-2.4415e-06
-2.83728e-06
-2.66415e-06
-2.95809e-06
-2.98768e-06
-2.86405e-06
-3.08671e-06
-2.75694e-06
-2.68444e-06
-1.47393e-06
-3.62003e-06
-1.79652e-06
-1.70478e-06
-2.98395e-06
-5.35269e-07
-3.53762e-06
-1.19955e-06
-3.12484e-06
-2.22159e-06
-2.71825e-06
-2.18912e-06
-2.4857e-06
-1.96282e-06
-2.17973e-06
-2.07311e-06
-1.76483e-06
-2.20209e-06
-1.2614e-06
-2.30091e-06
-7.95668e-07
-2.23999e-06
-4.07272e-07
-2.13445e-06
-1.10404e-07
-2.02265e-06
1.38983e-07
-1.96885e-06
3.93248e-07
-1.97836e-06
6.89164e-07
-2.02899e-06
1.06913e-06
-2.13592e-06
1.53517e-06
-2.24999e-06
2.01737e-06
-2.28093e-06
2.43406e-06
-2.20909e-06
2.7854e-06
-2.13017e-06
3.03433e-06
-1.98684e-06
3.40706e-06
-2.16502e-06
3.75207e-06
-2.1642e-06
3.17908e-06
-1.17561e-06
2.01332e-06
-5.51355e-07
1.68895e-06
-1.72307e-06
2.88115e-06
-3.56738e-06
2.9647e-06
-2.69731e-06
3.00685e-06
-3.0381e-06
2.83146e-06
-2.86543e-06
2.54161e-06
-2.57036e-06
2.29109e-06
-2.36646e-06
2.12204e-06
-2.18193e-06
2.0066e-06
-1.98942e-06
1.91557e-06
-1.79665e-06
1.8326e-06
-1.61346e-06
1.74498e-06
-1.44393e-06
1.66988e-06
-1.28781e-06
1.6377e-06
-1.14464e-06
1.64456e-06
-9.98649e-07
1.67026e-06
-8.38448e-07
1.71695e-06
-6.66766e-07
1.77718e-06
-4.82352e-07
1.84394e-06
-2.90003e-07
1.9123e-06
-9.79016e-08
1.97662e-06
8.98536e-08
2.02624e-06
2.66455e-07
2.05323e-06
4.23416e-07
2.05374e-06
5.53515e-07
2.02841e-06
6.52968e-07
1.98124e-06
7.22122e-07
1.91792e-06
7.64641e-07
1.84432e-06
7.86022e-07
1.76554e-06
7.9216e-07
1.68543e-06
7.88333e-07
1.60658e-06
7.78656e-07
1.53049e-06
7.65983e-07
1.45788e-06
7.52067e-07
1.38897e-06
7.37846e-07
1.32369e-06
7.23738e-07
1.26186e-06
7.09893e-07
1.20326e-06
6.96381e-07
6.83449e-07
1.14761e-06
-6.39044e-07
7.14907e-07
-6.85012e-07
7.30269e-07
-7.34163e-07
7.4646e-07
-7.86708e-07
7.63181e-07
-8.42761e-07
7.80274e-07
-9.02237e-07
7.97383e-07
-9.64695e-07
8.13707e-07
-1.02915e-06
8.27704e-07
-1.09384e-06
8.3677e-07
-1.15614e-06
8.37028e-07
-1.2125e-06
8.2336e-07
-1.2589e-06
7.89879e-07
-1.29147e-06
7.30927e-07
-1.30771e-06
6.42575e-07
-1.30761e-06
5.24207e-07
-1.29438e-06
3.79395e-07
-1.27377e-06
2.15147e-07
-1.25178e-06
3.91421e-08
-1.23296e-06
-1.41969e-07
-1.21943e-06
-3.25055e-07
-1.21518e-06
-5.03588e-07
-1.22231e-06
-6.69622e-07
-1.2599e-06
-8.21953e-07
-1.33432e-06
-9.6276e-07
-1.41496e-06
-1.10342e-06
-1.49237e-06
-1.2504e-06
-1.57834e-06
-1.40079e-06
-1.68455e-06
-1.5528e-06
-1.82767e-06
-1.70265e-06
-2.02259e-06
-1.84842e-06
-2.27482e-06
-1.99191e-06
-2.58451e-06
-2.13182e-06
-2.97149e-06
-2.27717e-06
-3.57153e-06
-2.38764e-06
-4.33686e-06
-2.32137e-06
-4.8068e-06
-2.2145e-06
-6.4516e-06
-1.97523e-06
-6.60891e-06
-1.54747e-06
-5.53665e-06
-1.60753e-06
-4.54594e-06
-2.19026e-06
-4.34815e-06
-2.41938e-06
-4.12814e-06
-2.40913e-06
-3.57159e-06
-2.51937e-06
-3.02707e-06
-2.61764e-06
-2.56969e-06
-2.65947e-06
-2.19653e-06
-2.67407e-06
-1.75115e-06
-2.68537e-06
-1.18006e-06
-2.70554e-06
-4.59325e-07
-2.74339e-06
3.38955e-07
-2.76713e-06
1.12089e-06
-2.76029e-06
1.8269e-06
-2.735e-06
2.39072e-06
-2.69974e-06
2.81283e-06
-2.6721e-06
3.17965e-06
-2.64775e-06
3.58454e-06
-2.61398e-06
4.01772e-06
-2.56335e-06
4.49782e-06
-2.46693e-06
4.69216e-06
-2.35936e-06
4.90212e-06
-2.37416e-06
5.86946e-06
-2.14294e-06
6.88047e-06
-1.56237e-06
6.66309e-06
-1.50569e-06
5.0274e-06
-1.93169e-06
4.47975e-06
-2.14965e-06
3.64361e-06
-2.20196e-06
3.04445e-06
-2.26627e-06
2.63125e-06
-2.15716e-06
2.29979e-06
-2.035e-06
2.03166e-06
-1.91381e-06
1.82621e-06
-1.78397e-06
1.67609e-06
-1.64653e-06
1.56563e-06
-1.50299e-06
1.47875e-06
-1.35705e-06
1.40309e-06
-1.21215e-06
1.32871e-06
-1.07026e-06
1.26378e-06
-9.33722e-07
1.21929e-06
-7.93953e-07
1.19432e-06
-6.41802e-07
1.1712e-06
-4.59232e-07
1.15161e-06
-2.7041e-07
1.13708e-06
-8.33696e-08
1.12637e-06
1.00561e-07
1.11528e-06
2.77546e-07
1.09877e-06
4.39926e-07
1.07269e-06
5.79596e-07
1.03525e-06
6.9041e-07
9.87078e-07
7.70293e-07
9.30517e-07
8.21202e-07
8.68667e-07
8.47872e-07
8.04515e-07
8.56312e-07
7.40558e-07
8.52289e-07
6.78599e-07
8.40616e-07
6.19756e-07
8.24825e-07
5.646e-07
8.07223e-07
5.13306e-07
7.89139e-07
4.65807e-07
7.71237e-07
4.21894e-07
7.53806e-07
3.81295e-07
7.3698e-07
7.21068e-07
3.43676e-07
3.37693e-07
7.29378e-07
3.20846e-07
7.47116e-07
3.0143e-07
7.65877e-07
2.79197e-07
7.85415e-07
2.53916e-07
8.05555e-07
2.25419e-07
8.2588e-07
1.93629e-07
8.45497e-07
1.58586e-07
8.62746e-07
1.20454e-07
8.74901e-07
7.94913e-08
8.77991e-07
3.5964e-08
8.66888e-07
-9.99691e-09
8.3584e-07
-5.86293e-08
7.7956e-07
-1.10775e-07
6.94721e-07
-1.6797e-07
5.81403e-07
-2.32188e-07
4.43612e-07
-3.05075e-07
2.88033e-07
-3.87281e-07
1.21349e-07
-4.77464e-07
-5.17862e-08
-5.74259e-07
-2.2826e-07
-6.89319e-07
-3.88529e-07
-8.39105e-07
-5.19836e-07
-1.01476e-06
-6.46293e-07
-1.20253e-06
-7.74992e-07
-1.39897e-06
-9.06985e-07
-1.61307e-06
-1.0363e-06
-1.85529e-06
-1.15857e-06
-2.13518e-06
-1.27292e-06
-2.45781e-06
-1.38002e-06
-2.83251e-06
-1.47373e-06
-3.27011e-06
-1.55431e-06
-3.76443e-06
-1.63749e-06
-4.33622e-06
-1.70538e-06
-4.9262e-06
-1.79767e-06
-5.36245e-06
-1.88512e-06
-5.64306e-06
-1.93388e-06
-5.54946e-06
-2.06883e-06
-4.79642e-06
-2.30052e-06
-3.91552e-06
-2.48842e-06
-3.51679e-06
-2.58899e-06
-3.27824e-06
-2.65793e-06
-2.92672e-06
-2.76065e-06
-2.59053e-06
-2.85556e-06
-2.28386e-06
-2.9243e-06
-1.94919e-06
-2.99414e-06
-1.5627e-06
-3.06057e-06
-1.12966e-06
-3.11841e-06
-6.7275e-07
-3.16244e-06
-2.28803e-07
-3.18733e-06
1.97688e-07
-3.19362e-06
6.22968e-07
-3.18557e-06
1.05115e-06
-3.16318e-06
1.47581e-06
-3.12441e-06
1.87317e-06
-3.06946e-06
2.22884e-06
-3.00342e-06
2.54327e-06
-2.92841e-06
2.82863e-06
-2.84871e-06
3.13251e-06
-2.77082e-06
3.44471e-06
-2.67155e-06
3.64304e-06
-2.57249e-06
4.00768e-06
-2.50758e-06
4.85154e-06
-2.40622e-06
5.55813e-06
-2.21228e-06
5.59875e-06
-1.97232e-06
5.27384e-06
-1.82474e-06
4.82878e-06
-1.7569e-06
4.22281e-06
-1.6603e-06
3.65524e-06
-1.58959e-06
3.15527e-06
-1.53503e-06
2.71887e-06
-1.47741e-06
2.3457e-06
-1.4108e-06
2.02289e-06
-1.32373e-06
1.74374e-06
-1.22384e-06
1.50081e-06
-1.11412e-06
1.28363e-06
-9.9496e-07
1.08177e-06
-8.68406e-07
8.88017e-07
-7.39968e-07
7.07757e-07
-6.13693e-07
5.49317e-07
-4.83362e-07
3.91846e-07
-3.01761e-07
2.46139e-07
-1.24704e-07
1.15419e-07
4.73504e-08
-4.35941e-09
2.20339e-07
-1.09242e-07
3.82428e-07
-1.9904e-07
5.29724e-07
-2.74703e-07
6.55259e-07
-3.38019e-07
7.53726e-07
-3.90997e-07
8.23271e-07
-4.35565e-07
8.65771e-07
-4.73402e-07
8.85709e-07
-5.05714e-07
8.88623e-07
-5.3341e-07
8.79986e-07
-5.57132e-07
8.64338e-07
-5.77323e-07
8.45016e-07
-5.94312e-07
8.24212e-07
-6.08374e-07
8.03201e-07
-6.19775e-07
7.82638e-07
-6.28782e-07
7.62812e-07
-6.35643e-07
7.43841e-07
7.25945e-07
-6.4052e-07
1.46008e-06
7.0214e-07
1.4868e-06
7.20399e-07
1.51293e-06
7.39745e-07
1.53831e-06
7.60033e-07
1.56268e-06
7.81183e-07
1.58564e-06
8.02924e-07
1.60652e-06
8.24623e-07
1.62421e-06
8.45055e-07
1.63695e-06
8.62154e-07
1.64213e-06
8.72819e-07
1.63612e-06
8.72897e-07
1.61446e-06
8.57498e-07
1.57228e-06
8.21734e-07
1.50517e-06
7.6184e-07
1.4102e-06
6.76364e-07
1.287e-06
5.66816e-07
1.13783e-06
4.37205e-07
9.66779e-07
2.92399e-07
7.79175e-07
1.35818e-07
5.79096e-07
-2.81806e-08
3.85489e-07
-1.94922e-07
2.02819e-07
-3.37166e-07
1.4011e-08
-4.57485e-07
-1.81553e-07
-5.79428e-07
-3.86434e-07
-7.02104e-07
-5.99946e-07
-8.22785e-07
-8.19921e-07
-9.38591e-07
-1.04467e-06
-1.04816e-06
-1.27268e-06
-1.15201e-06
-1.49481e-06
-1.2516e-06
-1.73305e-06
-1.31606e-06
-1.97903e-06
-1.39151e-06
-2.17522e-06
-1.50919e-06
-2.28382e-06
-1.68907e-06
-2.25466e-06
-1.91428e-06
-2.03975e-06
-2.14879e-06
-1.77316e-06
-2.33541e-06
-1.62196e-06
-2.45172e-06
-1.57242e-06
-2.53796e-06
-1.52663e-06
-2.63478e-06
-1.43732e-06
-2.74724e-06
-1.33668e-06
-2.86129e-06
-1.22299e-06
-2.96926e-06
-1.07752e-06
-3.06977e-06
-9.1352e-07
-3.15815e-06
-7.41759e-07
-3.23233e-06
-5.68502e-07
-3.29166e-06
-3.96674e-07
-3.33427e-06
-2.24716e-07
-3.35929e-06
-5.15397e-08
-3.3668e-06
1.20003e-07
-3.35711e-06
2.87574e-07
-3.33075e-06
4.51638e-07
-3.28847e-06
6.1362e-07
-3.23144e-06
7.71208e-07
-3.16101e-06
9.2073e-07
-3.07793e-06
1.05381e-06
-2.98179e-06
1.15714e-06
-2.87415e-06
1.24472e-06
-2.75913e-06
1.3116e-06
-2.63938e-06
1.32957e-06
-2.52554e-06
1.35364e-06
-2.43029e-06
1.48176e-06
-2.3404e-06
1.71958e-06
-2.21014e-06
1.903e-06
-2.00815e-06
1.91537e-06
-1.76928e-06
1.80793e-06
-1.55285e-06
1.61434e-06
-1.39601e-06
1.38538e-06
-1.30607e-06
1.1611e-06
-1.25313e-06
9.28784e-07
-1.17848e-06
6.94005e-07
-1.08895e-06
4.5827e-07
-9.88106e-07
2.21993e-07
-8.77844e-07
-1.39017e-08
-7.59065e-07
-2.48847e-07
-6.33461e-07
-4.84628e-07
-5.04187e-07
-7.22616e-07
-3.75704e-07
-9.79478e-07
-2.26501e-07
-1.21449e-06
-6.67488e-08
-1.42852e-06
8.93229e-08
-1.6264e-06
2.45231e-07
-1.79677e-06
3.90717e-07
-1.93728e-06
5.22934e-07
-2.04435e-06
6.36798e-07
-2.11715e-06
7.2805e-07
-2.15805e-06
7.94629e-07
-2.17199e-06
8.37212e-07
-2.16504e-06
8.5882e-07
-2.14317e-06
8.63843e-07
-2.11155e-06
8.56995e-07
-2.07406e-06
8.42502e-07
-2.03342e-06
8.23695e-07
-1.99131e-06
8.02913e-07
-1.94874e-06
7.81633e-07
-1.90621e-06
7.6068e-07
-1.86403e-06
7.40455e-07
-1.82233e-06
7.2111e-07
-1.78116e-06
7.02676e-07
6.85249e-07
-1.74047e-06
2.62791e-06
6.22917e-07
2.71011e-06
6.38203e-07
2.79553e-06
6.54321e-07
2.88437e-06
6.71198e-07
2.97672e-06
6.88832e-07
3.0725e-06
7.07146e-07
3.17125e-06
7.25869e-07
3.27189e-06
7.44414e-07
3.37234e-06
7.61704e-07
3.46915e-06
7.76012e-07
3.5572e-06
7.84843e-07
3.62973e-06
7.84971e-07
3.67876e-06
7.727e-07
3.6962e-06
7.44398e-07
3.67536e-06
6.97209e-07
3.61244e-06
6.29734e-07
3.50727e-06
5.42372e-07
3.36252e-06
4.37155e-07
3.18128e-06
3.17058e-07
2.96843e-06
1.84661e-07
2.73093e-06
4.25801e-08
2.50079e-06
-1.07021e-07
2.2863e-06
-2.42996e-07
2.08089e-06
-3.74022e-07
1.88206e-06
-5.03273e-07
1.69221e-06
-6.32938e-07
1.51429e-06
-7.60663e-07
1.35283e-06
-8.86705e-07
1.21157e-06
-1.01076e-06
1.09365e-06
-1.13367e-06
1.0287e-06
-1.25112e-06
1.01062e-06
-1.37343e-06
1.0186e-06
-1.51717e-06
1.01374e-06
-1.68421e-06
9.59993e-07
-1.86053e-06
8.35871e-07
-2.02467e-06
6.64769e-07
-2.16431e-06
5.0324e-07
-2.29019e-06
3.83799e-07
-2.41852e-06
3.00574e-07
-2.55155e-06
2.34722e-07
-2.68139e-06
1.75583e-07
-2.80215e-06
1.18534e-07
-2.91221e-06
5.94484e-08
-3.01068e-06
-1.10355e-09
-3.09759e-06
-6.06488e-08
-3.17278e-06
-1.17094e-07
-3.23522e-06
-1.6805e-07
-3.28332e-06
-2.13016e-07
-3.31433e-06
-2.54299e-07
-3.32552e-06
-2.95698e-07
-3.31572e-06
-3.40474e-07
-3.28597e-06
-3.90174e-07
-3.23877e-06
-4.45051e-07
-3.17656e-06
-5.04861e-07
-3.1012e-06
-5.68467e-07
-3.01433e-06
-6.33036e-07
-2.91722e-06
-6.96874e-07
-2.81031e-06
-7.62099e-07
-2.69391e-06
-8.3289e-07
-2.56859e-06
-9.223e-07
-2.43613e-06
-1.05029e-06
-2.3023e-06
-1.21858e-06
-2.17212e-06
-1.38855e-06
-2.04017e-06
-1.50308e-06
-1.89362e-06
-1.54234e-06
-1.73001e-06
-1.5306e-06
-1.56459e-06
-1.5119e-06
-1.41471e-06
-1.53201e-06
-1.28596e-06
-1.6173e-06
-1.16784e-06
-1.74634e-06
-1.04944e-06
-1.90712e-06
-9.28163e-07
-2.09333e-06
-8.019e-07
-2.3006e-06
-6.70574e-07
-2.52374e-06
-5.35924e-07
-2.75833e-06
-3.98871e-07
-3.00207e-06
-2.60444e-07
-3.25656e-06
-1.21211e-07
-3.5031e-06
2.00326e-08
-3.72563e-06
1.55783e-07
-3.92003e-06
2.83723e-07
-4.07514e-06
4.00344e-07
-4.18755e-06
5.03125e-07
-4.25389e-06
5.89272e-07
-4.27395e-06
6.56858e-07
-4.25131e-06
7.05412e-07
-4.19274e-06
7.36063e-07
-4.1068e-06
7.51264e-07
-4.00222e-06
7.5424e-07
-3.88674e-06
7.48366e-07
-3.76643e-06
7.36687e-07
-3.64557e-06
7.21638e-07
-3.52685e-06
7.04973e-07
-3.41176e-06
6.87832e-07
-3.30101e-06
6.70878e-07
-3.19478e-06
6.54448e-07
-3.093e-06
6.38673e-07
-2.99545e-06
6.23562e-07
-2.90186e-06
6.09087e-07
5.95309e-07
-2.81192e-06
3.61234e-06
4.99603e-07
3.74157e-06
5.08979e-07
3.87714e-06
5.18747e-07
4.01953e-06
5.28805e-07
4.16922e-06
5.39149e-07
4.32657e-06
5.49796e-07
4.49174e-06
5.607e-07
4.66445e-06
5.71699e-07
4.84371e-06
5.82446e-07
5.02741e-06
5.9231e-07
5.21197e-06
6.00285e-07
5.39203e-06
6.04914e-07
5.56044e-06
6.04285e-07
5.70871e-06
5.96129e-07
5.82787e-06
5.78054e-07
5.90973e-06
5.47866e-07
5.94819e-06
5.03919e-07
5.93998e-06
4.45364e-07
5.8848e-06
3.72234e-07
5.78399e-06
2.85467e-07
5.64007e-06
1.86506e-07
5.4566e-06
7.64474e-08
5.25817e-06
-4.45644e-08
5.05607e-06
-1.71927e-07
4.85449e-06
-3.01693e-07
4.65213e-06
-4.30577e-07
4.45557e-06
-5.64101e-07
4.26872e-06
-6.99857e-07
4.09462e-06
-8.36654e-07
3.93526e-06
-9.74307e-07
3.79674e-06
-1.11261e-06
3.67422e-06
-1.2509e-06
3.5464e-06
-1.38936e-06
3.39029e-06
-1.5281e-06
3.19587e-06
-1.66611e-06
2.97371e-06
-1.80251e-06
2.74707e-06
-1.93767e-06
2.5292e-06
-2.07232e-06
2.31596e-06
-2.20529e-06
2.09809e-06
-2.33368e-06
1.87157e-06
-2.45487e-06
1.63717e-06
-2.56774e-06
1.39689e-06
-2.67194e-06
1.15297e-06
-2.76676e-06
9.06232e-07
-2.85085e-06
6.56173e-07
-2.92272e-06
4.02268e-07
-2.98131e-06
1.44523e-07
-3.02557e-06
-1.16012e-07
-3.05379e-06
-3.77616e-07
-3.06391e-06
-6.3855e-07
-3.05478e-06
-8.97226e-07
-3.0273e-06
-1.15225e-06
-2.98375e-06
-1.40273e-06
-2.92609e-06
-1.64846e-06
-2.85546e-06
-1.89005e-06
-2.77274e-06
-2.12815e-06
-2.67912e-06
-2.36239e-06
-2.57607e-06
-2.59148e-06
-2.46481e-06
-2.81405e-06
-2.34603e-06
-3.02973e-06
-2.22045e-06
-3.24244e-06
-2.08959e-06
-3.45882e-06
-1.95573e-06
-3.67801e-06
-1.82098e-06
-3.8855e-06
-1.68613e-06
-4.06466e-06
-1.55085e-06
-4.21436e-06
-1.41489e-06
-4.35076e-06
-1.27831e-06
-4.49571e-06
-1.141e-06
-4.66044e-06
-1.00311e-06
-4.84408e-06
-8.65796e-07
-5.04346e-06
-7.28785e-07
-5.25293e-06
-5.92432e-07
-5.46572e-06
-4.57781e-07
-5.67629e-06
-3.25356e-07
-5.87815e-06
-1.97014e-07
-6.0642e-06
-7.43904e-08
-6.22696e-06
4.15448e-08
-6.35269e-06
1.45765e-07
-6.43751e-06
2.40602e-07
-6.47749e-06
3.23702e-07
-6.47106e-06
3.93919e-07
-6.41856e-06
4.50626e-07
-6.32318e-06
4.93893e-07
-6.19085e-06
5.24527e-07
-6.02945e-06
5.44007e-07
-5.84766e-06
5.54274e-07
-5.65385e-06
5.5745e-07
-5.45516e-06
5.55555e-07
-5.25711e-06
5.50319e-07
-5.06351e-06
5.43082e-07
-4.87667e-06
5.34797e-07
-4.69777e-06
5.26078e-07
-4.52722e-06
5.17285e-07
-4.36495e-06
5.086e-07
-4.21059e-06
5.00089e-07
-4.06367e-06
4.91752e-07
-3.92366e-06
4.83554e-07
-3.79005e-06
4.75483e-07
4.67648e-07
-3.66239e-06
4.20309e-06
3.56447e-07
4.35297e-06
3.591e-07
4.51e-06
3.61716e-07
4.6747e-06
3.64103e-07
4.84764e-06
3.66216e-07
5.02938e-06
3.68057e-07
5.22046e-06
3.69618e-07
5.42129e-06
3.70872e-07
5.63199e-06
3.71746e-07
5.8522e-06
3.72093e-07
6.08084e-06
3.71653e-07
6.31575e-06
3.70002e-07
6.55352e-06
3.6651e-07
6.78934e-06
3.60308e-07
7.0171e-06
3.50296e-07
7.22977e-06
3.35197e-07
7.42003e-06
3.13661e-07
7.58097e-06
2.84422e-07
7.70676e-06
2.46449e-07
7.79313e-06
1.99091e-07
7.8375e-06
1.42132e-07
7.83815e-06
7.57973e-08
7.79041e-06
3.17807e-09
7.70461e-06
-8.61287e-08
7.58438e-06
-1.81454e-07
7.4378e-06
-2.84002e-07
7.26671e-06
-3.93008e-07
7.0748e-06
-5.07946e-07
6.86579e-06
-6.27647e-07
6.64156e-06
-7.50076e-07
6.40425e-06
-8.75298e-07
6.15614e-06
-1.0028e-06
5.89822e-06
-1.13144e-06
5.62993e-06
-1.2598e-06
5.35046e-06
-1.38664e-06
5.05933e-06
-1.51138e-06
4.75537e-06
-1.63372e-06
4.4363e-06
-1.75325e-06
4.10006e-06
-1.86905e-06
3.74636e-06
-1.97997e-06
3.37663e-06
-2.08515e-06
2.99279e-06
-2.1839e-06
2.59618e-06
-2.27532e-06
2.18767e-06
-2.35825e-06
1.76851e-06
-2.43169e-06
1.34076e-06
-2.49497e-06
9.06904e-07
-2.54746e-06
4.69478e-07
-2.58814e-06
3.0971e-08
-2.61528e-06
-4.07213e-07
-2.62573e-06
-8.44474e-07
-2.61752e-06
-1.27953e-06
-2.59224e-06
-1.71074e-06
-2.55254e-06
-2.1362e-06
-2.50063e-06
-2.55382e-06
-2.43785e-06
-2.96156e-06
-2.365e-06
-3.35787e-06
-2.28281e-06
-3.74175e-06
-2.1922e-06
-4.11231e-06
-2.09424e-06
-4.46835e-06
-1.98999e-06
-4.80853e-06
-1.88027e-06
-5.13219e-06
-1.76593e-06
-5.43999e-06
-1.64793e-06
-5.73388e-06
-1.5271e-06
-6.01612e-06
-1.40389e-06
-6.28828e-06
-1.27869e-06
-6.55101e-06
-1.15216e-06
-6.80384e-06
-1.02548e-06
-7.04482e-06
-9.00019e-07
-7.27102e-06
-7.76913e-07
-7.4799e-06
-6.56921e-07
-7.66796e-06
-5.40716e-07
-7.83114e-06
-4.29254e-07
-7.96543e-06
-3.23489e-07
-8.06625e-06
-2.24535e-07
-8.12993e-06
-1.33343e-07
-8.15426e-06
-5.00526e-08
-8.13639e-06
2.36757e-08
-8.07809e-06
8.74595e-08
-7.98029e-06
1.42803e-07
-7.84574e-06
1.89149e-07
-7.67859e-06
2.26779e-07
-7.48434e-06
2.56367e-07
-7.26933e-06
2.78891e-07
-7.04032e-06
2.95509e-07
-6.80374e-06
3.07427e-07
-6.56524e-06
3.1578e-07
-6.32933e-06
3.21544e-07
-6.09927e-06
3.2549e-07
-5.87713e-06
3.28185e-07
-5.66407e-06
3.30014e-07
-5.46049e-06
3.31222e-07
-5.26636e-06
3.3195e-07
-5.08135e-06
3.32274e-07
-4.90498e-06
3.32222e-07
-4.73669e-06
3.31802e-07
-4.57595e-06
3.31015e-07
-4.42226e-06
3.29858e-07
-4.27515e-06
3.2838e-07
3.26781e-07
-4.13429e-06
4.3372e-06
2.21232e-07
4.47785e-06
2.18448e-07
4.62418e-06
2.15391e-07
4.77646e-06
2.11823e-07
4.935e-06
2.0767e-07
5.10016e-06
2.02895e-07
5.27233e-06
1.97456e-07
5.45188e-06
1.91322e-07
5.63917e-06
1.84457e-07
5.83444e-06
1.76818e-07
6.03775e-06
1.68348e-07
6.24879e-06
1.58955e-07
6.4668e-06
1.48499e-07
6.69034e-06
1.36776e-07
6.91714e-06
1.23493e-07
7.1441e-06
1.08234e-07
7.36729e-06
9.04774e-08
7.5821e-06
6.96081e-08
7.78359e-06
4.49582e-08
7.96681e-06
1.58746e-08
8.12693e-06
-1.79841e-08
8.26058e-06
-5.7862e-08
8.3676e-06
-1.03837e-07
8.4372e-06
-1.55725e-07
8.46928e-06
-2.13536e-07
8.46251e-06
-2.77236e-07
8.41629e-06
-3.46784e-07
8.33048e-06
-4.22137e-07
8.20591e-06
-5.03082e-07
8.04487e-06
-5.8903e-07
7.84874e-06
-6.79171e-07
7.61875e-06
-7.72809e-07
7.35643e-06
-8.69122e-07
7.0639e-06
-9.67268e-07
6.74369e-06
-1.06643e-06
6.39811e-06
-1.1658e-06
6.02886e-06
-1.26446e-06
5.63683e-06
-1.36123e-06
5.22285e-06
-1.45507e-06
4.78809e-06
-1.54521e-06
4.3339e-06
-1.63096e-06
3.86157e-06
-1.71157e-06
3.37248e-06
-1.78624e-06
2.86847e-06
-1.85424e-06
2.35175e-06
-1.91498e-06
1.82464e-06
-1.96785e-06
1.28939e-06
-2.01222e-06
7.48471e-07
-2.04722e-06
2.04474e-07
-2.07129e-06
-3.39767e-07
-2.08149e-06
-8.8209e-07
-2.0752e-06
-1.42063e-06
-2.0537e-06
-1.95305e-06
-2.02011e-06
-2.47698e-06
-1.9767e-06
-2.99012e-06
-1.92471e-06
-3.4903e-06
-1.86482e-06
-3.97545e-06
-1.79766e-06
-4.44374e-06
-1.7239e-06
-4.8937e-06
-1.64429e-06
-5.32407e-06
-1.55962e-06
-5.73367e-06
-1.47068e-06
-6.12138e-06
-1.37822e-06
-6.48624e-06
-1.28307e-06
-6.8271e-06
-1.18624e-06
-7.14211e-06
-1.08888e-06
-7.42882e-06
-9.91984e-07
-7.68463e-06
-8.9635e-07
-7.90744e-06
-8.02678e-07
-8.09574e-06
-7.11711e-07
-8.24841e-06
-6.2425e-07
-8.36431e-06
-5.41022e-07
-8.4424e-06
-4.62625e-07
-8.48218e-06
-3.89474e-07
-8.48386e-06
-3.21807e-07
-8.44863e-06
-2.59765e-07
-8.37856e-06
-2.03419e-07
-8.27584e-06
-1.52765e-07
-8.14443e-06
-1.07734e-07
-7.98883e-06
-6.81413e-08
-7.81205e-06
-3.39796e-08
-7.61832e-06
-4.57648e-09
-7.4123e-06
2.07582e-08
-7.19854e-06
4.26044e-08
-6.9812e-06
6.15469e-08
-6.76382e-06
7.81345e-08
-6.54923e-06
9.28314e-08
-6.33945e-06
1.06005e-07
-6.13583e-06
1.17922e-07
-5.93911e-06
1.28772e-07
-5.74961e-06
1.38686e-07
-5.56733e-06
1.47734e-07
-5.39208e-06
1.55971e-07
-5.22357e-06
1.63435e-07
-5.06145e-06
1.70155e-07
-4.90539e-06
1.76159e-07
-4.75506e-06
1.81478e-07
-4.6102e-06
1.86152e-07
-4.47056e-06
1.90223e-07
-4.33596e-06
1.93773e-07
1.97048e-07
-4.20622e-06
4.12058e-06
1.11092e-07
4.234e-06
1.05025e-07
4.35076e-06
9.86342e-08
4.47088e-06
9.17037e-08
4.59438e-06
8.41663e-08
4.7213e-06
7.59748e-08
4.85168e-06
6.70812e-08
4.98556e-06
5.74337e-08
5.12303e-06
4.69908e-08
5.26414e-06
3.57111e-08
5.40893e-06
2.35565e-08
5.5574e-06
1.04839e-08
5.70952e-06
-3.62386e-09
5.8652e-06
-1.8904e-08
6.02338e-06
-3.46841e-08
6.18341e-06
-5.17983e-08
6.34405e-06
-7.01618e-08
6.50363e-06
-8.99739e-08
6.66e-06
-1.11411e-07
6.81062e-06
-1.34744e-07
6.95289e-06
-1.60252e-07
7.08323e-06
-1.88206e-07
7.19825e-06
-2.18852e-07
7.29492e-06
-2.524e-07
7.37044e-06
-2.89047e-07
7.42211e-06
-3.28914e-07
7.44739e-06
-3.72061e-07
7.44373e-06
-4.1848e-07
7.40875e-06
-4.68093e-07
7.34047e-06
-5.20752e-07
7.23755e-06
-5.76252e-07
7.09909e-06
-6.34351e-07
6.92473e-06
-6.94758e-07
6.71457e-06
-7.57109e-07
6.46907e-06
-8.20937e-07
6.18899e-06
-8.85718e-07
5.87545e-06
-9.50919e-07
5.53021e-06
-1.01599e-06
5.15546e-06
-1.08032e-06
4.75349e-06
-1.14325e-06
4.3266e-06
-1.20406e-06
3.87711e-06
-1.26208e-06
3.4075e-06
-1.31663e-06
2.92034e-06
-1.36708e-06
2.41825e-06
-1.41289e-06
1.90396e-06
-1.45355e-06
1.38034e-06
-1.4886e-06
8.50335e-07
-1.51721e-06
3.16575e-07
-1.53753e-06
-2.18091e-07
-1.54682e-06
-7.50324e-07
-1.54296e-06
-1.27758e-06
-1.52644e-06
-1.7977e-06
-1.49998e-06
-2.30815e-06
-1.46626e-06
-2.80613e-06
-1.42673e-06
-3.28889e-06
-1.38205e-06
-3.75384e-06
-1.33271e-06
-4.19847e-06
-1.27928e-06
-4.62039e-06
-1.22237e-06
-5.01732e-06
-1.16268e-06
-5.38704e-06
-1.10096e-06
-5.72735e-06
-1.03791e-06
-6.03623e-06
-9.74188e-07
-6.31211e-06
-9.10357e-07
-6.55405e-06
-8.46946e-07
-6.76155e-06
-7.84475e-07
-6.93445e-06
-7.23451e-07
-7.0728e-06
-6.64327e-07
-7.17705e-06
-6.07463e-07
-7.24816e-06
-5.53144e-07
-7.28758e-06
-5.016e-07
-7.29719e-06
-4.53014e-07
-7.27915e-06
-4.0751e-07
-7.23582e-06
-3.65145e-07
-7.16967e-06
-3.25907e-07
-7.08337e-06
-2.89719e-07
-6.97969e-06
-2.5645e-07
-6.86151e-06
-2.25909e-07
-6.73178e-06
-1.97873e-07
-6.59365e-06
-1.72106e-07
-6.44987e-06
-1.48364e-07
-6.3027e-06
-1.26407e-07
-6.15409e-06
-1.0601e-07
-6.00556e-06
-8.69846e-08
-5.85826e-06
-6.91653e-08
-5.71291e-06
-5.25135e-08
-5.57012e-06
-3.67847e-08
-5.4301e-06
-2.20974e-08
-5.29275e-06
-8.57798e-09
-5.1588e-06
4.73534e-09
-5.02785e-06
1.67843e-08
-4.89986e-06
2.79803e-08
-4.77479e-06
3.83641e-08
-4.65261e-06
4.79755e-08
-4.53331e-06
5.6857e-08
-4.41689e-06
6.50571e-08
-4.30336e-06
7.26284e-08
-4.19276e-06
7.96195e-08
-4.08509e-06
8.60989e-08
9.22846e-08
-3.98032e-06
3.7128e-06
3.01009e-08
3.79519e-06
2.26359e-08
3.87895e-06
1.48811e-08
3.96398e-06
6.67265e-09
4.0502e-06
-2.06067e-09
4.13765e-06
-1.14739e-08
4.22582e-06
-2.10899e-08
4.31478e-06
-3.15191e-08
4.40424e-06
-4.24683e-08
4.4941e-06
-5.41544e-08
4.5842e-06
-6.65383e-08
4.67433e-06
-7.96508e-08
4.76423e-06
-9.35192e-08
4.85348e-06
-1.08154e-07
4.94237e-06
-1.23575e-07
5.03037e-06
-1.398e-07
5.11706e-06
-1.56847e-07
5.20182e-06
-1.74738e-07
5.28391e-06
-1.93499e-07
5.36234e-06
-2.13171e-07
5.43589e-06
-2.33803e-07
5.50314e-06
-2.5546e-07
5.5625e-06
-2.78216e-07
5.61226e-06
-3.02154e-07
5.65056e-06
-3.27353e-07
5.67554e-06
-3.53885e-07
5.68529e-06
-3.81812e-07
5.67798e-06
-4.11178e-07
5.65189e-06
-4.42001e-07
5.60541e-06
-4.74266e-07
5.53707e-06
-5.07919e-07
5.44559e-06
-5.42866e-07
5.3298e-06
-5.78971e-07
5.18876e-06
-6.16061e-07
5.02175e-06
-6.53936e-07
4.8284e-06
-6.92367e-07
4.60859e-06
-7.31105e-07
4.36248e-06
-7.69874e-07
4.09054e-06
-8.08383e-07
3.79363e-06
-8.46341e-07
3.47304e-06
-8.83469e-07
3.13046e-06
-9.19499e-07
2.76797e-06
-9.54134e-07
2.38795e-06
-9.87064e-07
1.99305e-06
-1.01799e-06
1.58612e-06
-1.04662e-06
1.17005e-06
-1.07253e-06
7.47548e-07
-1.09472e-06
3.21143e-07
-1.11112e-06
-1.06659e-07
-1.11902e-06
-5.32687e-07
-1.11694e-06
-9.54055e-07
-1.10508e-06
-1.36858e-06
-1.08546e-06
-1.77394e-06
-1.0609e-06
-2.16752e-06
-1.03315e-06
-2.54656e-06
-1.00301e-06
-2.90841e-06
-9.70856e-07
-3.2507e-06
-9.36987e-07
-3.57137e-06
-9.01695e-07
-3.86879e-06
-8.65266e-07
-4.14178e-06
-8.27976e-07
-4.38958e-06
-7.90104e-07
-4.61182e-06
-7.51947e-07
-4.80837e-06
-7.13808e-07
-4.97935e-06
-6.75972e-07
-5.12513e-06
-6.38696e-07
-5.24637e-06
-6.02204e-07
-5.34401e-06
-5.66688e-07
-5.41916e-06
-5.32311e-07
-5.47311e-06
-4.99199e-07
-5.50727e-06
-4.67436e-07
-5.52322e-06
-4.37066e-07
-5.52263e-06
-4.08098e-07
-5.50727e-06
-3.80509e-07
-5.47892e-06
-3.54251e-07
-5.43938e-06
-3.2926e-07
-5.39037e-06
-3.05465e-07
-5.33349e-06
-2.82788e-07
-5.27021e-06
-2.61155e-07
-5.20182e-06
-2.40495e-07
-5.12944e-06
-2.20745e-07
-5.05398e-06
-2.01859e-07
-4.97619e-06
-1.83801e-07
-4.89663e-06
-1.66545e-07
-4.81572e-06
-1.50076e-07
-4.73386e-06
-1.3438e-07
-4.65119e-06
-1.19447e-07
-4.56802e-06
-1.05266e-07
-4.48477e-06
-9.18275e-08
-4.40094e-06
-7.90993e-08
-4.31707e-06
-6.70814e-08
-4.23338e-06
-5.57161e-08
-4.14999e-06
-4.50203e-08
-4.06713e-06
-3.48884e-08
-3.98491e-06
-2.53595e-08
-3.90352e-06
-1.63371e-08
-3.82309e-06
-7.79621e-09
-3.74381e-06
3.34622e-10
-3.66572e-06
8.01376e-09
1.54265e-08
-3.58887e-06
3.23647e-06
-2.49189e-08
3.29164e-06
-3.25323e-08
3.34689e-06
-4.037e-08
3.40211e-06
-4.85491e-08
3.45712e-06
-5.70674e-08
3.51161e-06
-6.59598e-08
3.56575e-06
-7.52375e-08
3.61916e-06
-8.49226e-08
3.67173e-06
-9.50372e-08
3.72317e-06
-1.05602e-07
3.77327e-06
-1.16639e-07
3.82179e-06
-1.28166e-07
3.86847e-06
-1.402e-07
3.91307e-06
-1.52755e-07
3.95533e-06
-1.65837e-07
3.99498e-06
-1.79448e-07
4.03172e-06
-1.93587e-07
4.06523e-06
-2.08246e-07
4.09515e-06
-2.23415e-07
4.12106e-06
-2.39081e-07
4.14248e-06
-2.5523e-07
4.15887e-06
-2.71848e-07
4.16958e-06
-2.88924e-07
4.17387e-06
-3.06448e-07
4.17093e-06
-3.24415e-07
4.15987e-06
-3.42821e-07
4.13973e-06
-3.61667e-07
4.1095e-06
-3.80957e-07
4.0682e-06
-4.00693e-07
4.01481e-06
-4.20878e-07
3.9484e-06
-4.41508e-07
3.8681e-06
-4.62573e-07
3.77319e-06
-4.84052e-07
3.66303e-06
-5.05908e-07
3.53719e-06
-5.28088e-07
3.39533e-06
-5.50516e-07
3.23733e-06
-5.731e-07
3.06318e-06
-5.95724e-07
2.87305e-06
-6.18256e-07
2.66726e-06
-6.40543e-07
2.44623e-06
-6.62438e-07
2.21055e-06
-6.83822e-07
1.96106e-06
-7.04644e-07
1.69892e-06
-7.24927e-07
1.42567e-06
-7.44737e-07
1.14311e-06
-7.64064e-07
8.53166e-07
-7.82586e-07
5.57729e-07
-7.99277e-07
2.58779e-07
-8.12173e-07
-4.14492e-08
-8.18791e-07
-3.406e-07
-8.17785e-07
-6.36336e-07
-8.09341e-07
-9.2668e-07
-7.95114e-07
-1.20996e-06
-7.77621e-07
-1.48448e-06
-7.58629e-07
-1.74851e-06
-7.38979e-07
-2.00047e-06
-7.18902e-07
-2.23908e-06
-6.98373e-07
-2.46344e-06
-6.77338e-07
-2.6729e-06
-6.55803e-07
-2.86702e-06
-6.33857e-07
-3.04548e-06
-6.11643e-07
-3.20811e-06
-5.89319e-07
-3.35489e-06
-5.6703e-07
-3.48596e-06
-5.44897e-07
-3.60164e-06
-5.2302e-07
-3.70237e-06
-5.01475e-07
-3.78874e-06
-4.80316e-07
-3.86147e-06
-4.59577e-07
-3.92139e-06
-4.39277e-07
-3.96941e-06
-4.1942e-07
-4.00647e-06
-4.00005e-07
-4.03354e-06
-3.81025e-07
-4.05158e-06
-3.62472e-07
-4.06149e-06
-3.44336e-07
-4.06414e-06
-3.26614e-07
-4.0603e-06
-3.09302e-07
-4.05069e-06
-2.92405e-07
-4.03591e-06
-2.7593e-07
-4.01652e-06
-2.59888e-07
-3.99297e-06
-2.44293e-07
-3.96567e-06
-2.29159e-07
-3.93497e-06
-2.14504e-07
-3.90117e-06
-2.00341e-07
-3.86457e-06
-1.8668e-07
-3.82542e-06
-1.73531e-07
-3.78397e-06
-1.60895e-07
-3.74047e-06
-1.48769e-07
-3.69515e-06
-1.37144e-07
-3.64824e-06
-1.26007e-07
-3.59999e-06
-1.15339e-07
-3.55059e-06
-1.05117e-07
-3.50029e-06
-9.53176e-08
-3.44926e-06
-8.59168e-08
-3.39773e-06
-7.68921e-08
-3.34584e-06
-6.82222e-08
-3.29375e-06
-5.98887e-08
-3.24154e-06
-5.18782e-08
-3.18936e-06
-4.41678e-08
-3.66583e-08
-3.13727e-06
2.76118e-06
-5.92585e-08
2.795e-06
-6.63535e-08
2.82823e-06
-7.35986e-08
2.86075e-06
-8.10646e-08
2.89244e-06
-8.87613e-08
2.92318e-06
-9.66943e-08
2.95281e-06
-1.0487e-07
2.98118e-06
-1.13297e-07
3.00813e-06
-1.21982e-07
3.03346e-06
-1.30936e-07
3.05699e-06
-1.40168e-07
3.07851e-06
-1.49689e-07
3.09782e-06
-1.5951e-07
3.11471e-06
-1.69637e-07
3.12895e-06
-1.80076e-07
3.14033e-06
-1.90829e-07
3.14863e-06
-2.01892e-07
3.15364e-06
-2.13256e-07
3.15513e-06
-2.24906e-07
3.15287e-06
-2.36824e-07
3.14663e-06
-2.48984e-07
3.13614e-06
-2.61359e-07
3.12113e-06
-2.73918e-07
3.10131e-06
-2.86628e-07
3.07635e-06
-2.99456e-07
3.0459e-06
-3.12372e-07
3.00958e-06
-3.25347e-07
2.96698e-06
-3.38356e-07
2.91767e-06
-3.51379e-07
2.86119e-06
-3.64403e-07
2.79711e-06
-3.77419e-07
2.72496e-06
-3.90425e-07
2.64433e-06
-4.03426e-07
2.55485e-06
-4.16428e-07
2.4562e-06
-4.29441e-07
2.34816e-06
-4.42476e-07
2.2306e-06
-4.55541e-07
2.10352e-06
-4.68639e-07
1.96703e-06
-4.81764e-07
1.82138e-06
-4.94898e-07
1.66696e-06
-5.08018e-07
1.50425e-06
-5.21106e-07
1.33379e-06
-5.3419e-07
1.15623e-06
-5.47368e-07
9.72284e-07
-5.60788e-07
7.82727e-07
-5.74507e-07
5.8836e-07
-5.88219e-07
3.90035e-07
-6.00952e-07
1.88875e-07
-6.11013e-07
-1.35325e-08
-6.16383e-07
-2.15265e-07
-6.16053e-07
-4.14601e-07
-6.10005e-07
-6.10119e-07
-5.99597e-07
-8.00938e-07
-5.86802e-07
-9.86388e-07
-5.73178e-07
-1.16581e-06
-5.59558e-07
-1.33853e-06
-5.46181e-07
-1.50391e-06
-5.32998e-07
-1.66134e-06
-5.199e-07
-1.81032e-06
-5.0683e-07
-1.95039e-06
-4.93778e-07
-2.08128e-06
-4.80762e-07
-2.2028e-06
-4.678e-07
-2.31493e-06
-4.54897e-07
-2.41777e-06
-4.42054e-07
-2.51153e-06
-4.2926e-07
-2.5965e-06
-4.16504e-07
-2.67304e-06
-4.03773e-07
-2.74157e-06
-3.91055e-07
-2.8025e-06
-3.78341e-07
-2.8563e-06
-3.65626e-07
-2.90339e-06
-3.52913e-07
-2.94421e-06
-3.40208e-07
-2.97915e-06
-3.27526e-07
-3.0086e-06
-3.14885e-07
-3.03291e-06
-3.02309e-07
-3.05238e-06
-2.89828e-07
-3.06732e-06
-2.7747e-07
-3.07798e-06
-2.65269e-07
-3.08461e-06
-2.53256e-07
-3.08744e-06
-2.4146e-07
-3.08669e-06
-2.29908e-07
-3.08257e-06
-2.18625e-07
-3.07529e-06
-2.07627e-07
-3.06504e-06
-1.96929e-07
-3.05203e-06
-1.86537e-07
-3.03647e-06
-1.76452e-07
-3.01857e-06
-1.66672e-07
-2.99853e-06
-1.57187e-07
-2.97655e-06
-1.47987e-07
-2.95283e-06
-1.39058e-07
-2.92756e-06
-1.30388e-07
-2.90091e-06
-1.21964e-07
-2.87305e-06
-1.13774e-07
-2.84414e-06
-1.05809e-07
-2.8143e-06
-9.80623e-08
-2.78366e-06
-9.05295e-08
-2.75233e-06
-8.32078e-08
-2.7204e-06
-7.60887e-08
-6.91052e-08
-2.68796e-06
2.32981e-06
-7.86659e-08
2.34839e-06
-8.49349e-08
2.36608e-06
-9.12966e-08
2.38282e-06
-9.77957e-08
2.39849e-06
-1.04434e-07
2.413e-06
-1.1121e-07
2.42626e-06
-1.18124e-07
2.43814e-06
-1.25176e-07
2.44852e-06
-1.32367e-07
2.45728e-06
-1.39699e-07
2.46429e-06
-1.47174e-07
2.4694e-06
-1.54796e-07
2.47246e-06
-1.62569e-07
2.47332e-06
-1.70497e-07
2.47183e-06
-1.78585e-07
2.46783e-06
-1.86834e-07
2.46118e-06
-1.95243e-07
2.45174e-06
-2.03809e-07
2.43935e-06
-2.12523e-07
2.4239e-06
-2.21369e-07
2.40524e-06
-2.30328e-07
2.38326e-06
-2.39377e-07
2.35783e-06
-2.48486e-07
2.32882e-06
-2.57622e-07
2.29612e-06
-2.66751e-07
2.25958e-06
-2.75838e-07
2.21908e-06
-2.84848e-07
2.17448e-06
-2.93748e-07
2.12561e-06
-3.0251e-07
2.07231e-06
-3.11111e-07
2.01443e-06
-3.19535e-07
1.95178e-06
-3.27775e-07
1.88419e-06
-3.35834e-07
1.81148e-06
-3.43724e-07
1.73352e-06
-3.51471e-07
1.65015e-06
-3.59111e-07
1.5613e-06
-3.66693e-07
1.46694e-06
-3.74278e-07
1.36711e-06
-3.81936e-07
1.26196e-06
-3.89748e-07
1.15175e-06
-3.97801e-07
1.03683e-06
-4.06191e-07
9.17666e-07
-4.15025e-07
7.94718e-07
-4.2442e-07
6.68388e-07
-4.34458e-07
5.3895e-07
-4.4507e-07
4.06577e-07
-4.55846e-07
2.71504e-07
-4.65878e-07
1.34294e-07
-4.73804e-07
-3.90518e-09
-4.78183e-07
-1.41771e-07
-4.78187e-07
-2.77932e-07
-4.73843e-07
-4.11428e-07
-4.66101e-07
-5.41839e-07
-4.56391e-07
-6.69032e-07
-4.45986e-07
-7.92886e-07
-4.35704e-07
-9.13156e-07
-4.25912e-07
-1.02947e-06
-4.16684e-07
-1.1414e-06
-4.07966e-07
-1.24856e-06
-3.99669e-07
-1.35064e-06
-3.91699e-07
-1.44744e-06
-3.83966e-07
-1.53885e-06
-3.76385e-07
-1.62488e-06
-3.68876e-07
-1.70556e-06
-3.61368e-07
-1.78102e-06
-3.53801e-07
-1.85139e-06
-3.46131e-07
-1.91685e-06
-3.38321e-07
-1.97755e-06
-3.30351e-07
-2.03368e-06
-3.22209e-07
-2.08541e-06
-3.13895e-07
-2.13291e-06
-3.05416e-07
-2.17633e-06
-2.9679e-07
-2.21581e-06
-2.88041e-07
-2.2515e-06
-2.79197e-07
-2.28352e-06
-2.7029e-07
-2.31199e-06
-2.61354e-07
-2.33704e-06
-2.52425e-07
-2.35877e-06
-2.43536e-07
-2.37731e-06
-2.34719e-07
-2.39277e-06
-2.26001e-07
-2.40527e-06
-2.17406e-07
-2.41494e-06
-2.08952e-07
-2.42192e-06
-2.00652e-07
-2.42633e-06
-1.92512e-07
-2.42833e-06
-1.84536e-07
-2.42807e-06
-1.7672e-07
-2.42568e-06
-1.69061e-07
-2.42131e-06
-1.6155e-07
-2.41512e-06
-1.5418e-07
-2.40724e-06
-1.46943e-07
-2.39779e-06
-1.39834e-07
-2.38691e-06
-1.32847e-07
-2.3747e-06
-1.25981e-07
-2.36127e-06
-1.19234e-07
-2.34673e-06
-1.12609e-07
-2.33115e-06
-1.06107e-07
-2.31463e-06
-9.97318e-08
-2.29723e-06
-9.34854e-08
-8.73265e-08
-2.27901e-06
1.9582e-06
-8.786e-08
1.96647e-06
-9.32036e-08
1.97378e-06
-9.86069e-08
1.98008e-06
-1.04093e-07
1.9853e-06
-1.09655e-07
1.98938e-06
-1.1529e-07
1.99225e-06
-1.20992e-07
1.99383e-06
-1.26758e-07
1.99405e-06
-1.32585e-07
1.99282e-06
-1.3847e-07
1.99006e-06
-1.44413e-07
1.98567e-06
-1.50413e-07
1.97957e-06
-1.56471e-07
1.97167e-06
-1.62589e-07
1.96185e-06
-1.68772e-07
1.95004e-06
-1.75021e-07
1.93614e-06
-1.81339e-07
1.92005e-06
-1.87726e-07
1.90171e-06
-1.94178e-07
1.88103e-06
-2.00689e-07
1.85794e-06
-2.07244e-07
1.83239e-06
-2.13827e-07
1.80432e-06
-2.20415e-07
1.77368e-06
-2.2698e-07
1.74042e-06
-2.33494e-07
1.70451e-06
-2.39922e-07
1.66589e-06
-2.46232e-07
1.62453e-06
-2.52392e-07
1.5804e-06
-2.58372e-07
1.53343e-06
-2.64146e-07
1.48359e-06
-2.69697e-07
1.43083e-06
-2.75014e-07
1.3751e-06
-2.80097e-07
1.31633e-06
-2.84961e-07
1.2545e-06
-2.89634e-07
1.18955e-06
-2.94162e-07
1.12147e-06
-2.98612e-07
1.05026e-06
-3.0307e-07
9.7597e-07
-3.07646e-07
8.98691e-07
-3.12469e-07
8.18571e-07
-3.17682e-07
7.35815e-07
-3.23435e-07
6.50657e-07
-3.29867e-07
5.63313e-07
-3.37076e-07
4.73916e-07
-3.45062e-07
3.82488e-07
-3.53641e-07
2.88987e-07
-3.62345e-07
1.93481e-07
-3.70373e-07
9.63621e-08
-3.76685e-07
-1.53871e-09
-3.80282e-07
-9.92086e-08
-3.80517e-07
-1.95625e-07
-3.77427e-07
-2.90068e-07
-3.71658e-07
-3.82248e-07
-3.64211e-07
-4.72157e-07
-3.56076e-07
-5.59863e-07
-3.47997e-07
-6.45368e-07
-3.40407e-07
-7.28568e-07
-3.33484e-07
-8.09293e-07
-3.27241e-07
-8.87359e-07
-3.21603e-07
-9.62608e-07
-3.1645e-07
-1.03492e-06
-3.11649e-07
-1.10424e-06
-3.0707e-07
-1.17052e-06
-3.02594e-07
-1.23377e-06
-2.98118e-07
-1.29401e-06
-2.93562e-07
-1.35128e-06
-2.88865e-07
-1.40561e-06
-2.83984e-07
-1.45707e-06
-2.78892e-07
-1.5057e-06
-2.73579e-07
-1.55155e-06
-2.68046e-07
-1.59467e-06
-2.62302e-07
-1.63509e-06
-2.56367e-07
-1.67286e-06
-2.50267e-07
-1.70803e-06
-2.44031e-07
-1.74063e-06
-2.3769e-07
-1.7707e-06
-2.31279e-07
-1.7983e-06
-2.24829e-07
-1.82347e-06
-2.1837e-07
-1.84626e-06
-2.11928e-07
-1.86673e-06
-2.05527e-07
-1.88495e-06
-1.99183e-07
-1.901e-06
-1.92907e-07
-1.91494e-06
-1.86706e-07
-1.92687e-06
-1.80582e-07
-1.93688e-06
-1.74533e-07
-1.94504e-06
-1.68553e-07
-1.95147e-06
-1.62638e-07
-1.95624e-06
-1.56779e-07
-1.95944e-06
-1.50973e-07
-1.96117e-06
-1.45214e-07
-1.96151e-06
-1.39501e-07
-1.96052e-06
-1.33834e-07
-1.95828e-06
-1.28216e-07
-1.95487e-06
-1.22651e-07
-1.95033e-06
-1.17143e-07
-1.94474e-06
-1.11699e-07
-1.93814e-06
-1.06326e-07
-1.9306e-06
-1.01031e-07
-9.57866e-08
-1.92214e-06
1.64559e-06
-9.04227e-08
1.64725e-06
-9.48638e-08
1.64798e-06
-9.93431e-08
1.64776e-06
-1.03872e-07
1.64655e-06
-1.08442e-07
1.6443e-06
-1.13045e-07
1.64099e-06
-1.17672e-07
1.63655e-06
-1.22319e-07
1.63094e-06
-1.26979e-07
1.62412e-06
-1.3165e-07
1.61603e-06
-1.36327e-07
1.60663e-06
-1.4101e-07
1.59586e-06
-1.45697e-07
1.58366e-06
-1.50391e-07
1.56998e-06
-1.55095e-07
1.55478e-06
-1.59813e-07
1.53799e-06
-1.64549e-07
1.51957e-06
-1.69306e-07
1.49947e-06
-1.74085e-07
1.47767e-06
-1.78883e-07
1.45412e-06
-1.83693e-07
1.42879e-06
-1.88503e-07
1.40167e-06
-1.93295e-07
1.37274e-06
-1.98049e-07
1.34199e-06
-2.02737e-07
1.30939e-06
-2.07331e-07
1.27496e-06
-2.11802e-07
1.23869e-06
-2.16118e-07
1.20057e-06
-2.20253e-07
1.16061e-06
-2.24182e-07
1.1188e-06
-2.27889e-07
1.07515e-06
-2.31364e-07
1.02966e-06
-2.34609e-07
9.8234e-07
-2.3764e-07
9.33194e-07
-2.40489e-07
8.8224e-07
-2.43208e-07
8.29498e-07
-2.45871e-07
7.75005e-07
-2.48577e-07
7.18805e-07
-2.51447e-07
6.6096e-07
-2.54624e-07
6.01538e-07
-2.58259e-07
5.40604e-07
-2.62502e-07
4.78206e-07
-2.67468e-07
4.14342e-07
-2.73212e-07
3.48953e-07
-2.79672e-07
2.81929e-07
-2.86617e-07
2.13189e-07
-2.93605e-07
1.42802e-07
-2.99987e-07
7.11185e-08
-3.05001e-07
-1.20148e-09
-3.07963e-07
-7.33008e-08
-3.08418e-07
-1.44383e-07
-3.06344e-07
-2.13873e-07
-3.02168e-07
-2.81507e-07
-2.96577e-07
-3.47277e-07
-2.90306e-07
-4.11299e-07
-2.83975e-07
-4.73701e-07
-2.78005e-07
-5.34565e-07
-2.7262e-07
-5.93915e-07
-2.67891e-07
-6.51734e-07
-2.63784e-07
-7.07984e-07
-2.60201e-07
-7.62618e-07
-2.57015e-07
-8.15596e-07
-2.54093e-07
-8.6688e-07
-2.51309e-07
-9.16445e-07
-2.48554e-07
-9.64268e-07
-2.45739e-07
-1.01034e-06
-2.42797e-07
-1.05464e-06
-2.39682e-07
-1.09717e-06
-2.36364e-07
-1.13791e-06
-2.3283e-07
-1.17688e-06
-2.29079e-07
-1.21406e-06
-2.25119e-07
-1.24946e-06
-2.20968e-07
-1.28308e-06
-2.16649e-07
-1.31492e-06
-2.1219e-07
-1.34499e-06
-2.07619e-07
-1.37331e-06
-2.02967e-07
-1.39987e-06
-1.98262e-07
-1.42471e-06
-1.93529e-07
-1.44785e-06
-1.88792e-07
-1.46931e-06
-1.84066e-07
-1.48913e-06
-1.79365e-07
-1.50734e-06
-1.74695e-07
-1.52399e-06
-1.70058e-07
-1.53912e-06
-1.65452e-07
-1.55278e-06
-1.60872e-07
-1.56502e-06
-1.56312e-07
-1.5759e-06
-1.51764e-07
-1.58545e-06
-1.47223e-07
-1.59374e-06
-1.42683e-07
-1.60081e-06
-1.38144e-07
-1.60671e-06
-1.33603e-07
-1.61148e-06
-1.29064e-07
-1.61517e-06
-1.24531e-07
-1.61781e-06
-1.20009e-07
-1.61945e-06
-1.15506e-07
-1.62011e-06
-1.1103e-07
-1.61985e-06
-1.06588e-07
-1.6187e-06
-1.02188e-07
-9.78143e-08
-1.61667e-06
1.38549e-06
-8.88867e-08
1.38314e-06
-9.25181e-08
1.37997e-06
-9.6175e-08
1.37596e-06
-9.98629e-08
1.37109e-06
-1.03571e-07
1.36533e-06
-1.07289e-07
1.35867e-06
-1.11007e-07
1.35107e-06
-1.14718e-07
1.34251e-06
-1.18416e-07
1.33295e-06
-1.22097e-07
1.32238e-06
-1.25757e-07
1.31077e-06
-1.29394e-07
1.29808e-06
-1.33008e-07
1.28429e-06
-1.36601e-07
1.26937e-06
-1.40178e-07
1.2533e-06
-1.43744e-07
1.23606e-06
-1.47304e-07
1.21761e-06
-1.50864e-07
1.19796e-06
-1.54427e-07
1.17707e-06
-1.57993e-07
1.15493e-06
-1.61558e-07
1.13154e-06
-1.65113e-07
1.10689e-06
-1.68644e-07
1.08097e-06
-1.72132e-07
1.05379e-06
-1.75555e-07
1.02535e-06
-1.78887e-07
9.95646e-07
-1.82101e-07
9.64697e-07
-1.8517e-07
9.32514e-07
-1.88069e-07
8.9911e-07
-1.90779e-07
8.64506e-07
-1.93285e-07
8.28724e-07
-1.95581e-07
7.91787e-07
-1.97673e-07
7.53726e-07
-1.99579e-07
7.1457e-07
-2.01333e-07
6.74354e-07
-2.02992e-07
6.33113e-07
-2.04629e-07
5.90878e-07
-2.06342e-07
5.47679e-07
-2.08248e-07
5.03531e-07
-2.10476e-07
4.58431e-07
-2.1316e-07
4.12346e-07
-2.16416e-07
3.65203e-07
-2.20326e-07
3.1689e-07
-2.24899e-07
2.67265e-07
-2.30047e-07
2.16196e-07
-2.35548e-07
1.63628e-07
-2.41038e-07
1.09669e-07
-2.46027e-07
5.46476e-08
-2.49979e-07
-8.73443e-10
-2.52441e-07
-5.6131e-08
-2.5316e-07
-1.10506e-07
-2.51969e-07
-1.63543e-07
-2.49132e-07
-2.15003e-07
-2.45116e-07
-2.64854e-07
-2.40456e-07
-3.13196e-07
-2.35633e-07
-3.60186e-07
-2.31014e-07
-4.05979e-07
-2.26826e-07
-4.50699e-07
-2.23171e-07
-4.94428e-07
-2.20055e-07
-5.37208e-07
-2.1742e-07
-5.79054e-07
-2.15169e-07
-6.19959e-07
-2.13188e-07
-6.59904e-07
-2.11365e-07
-6.9886e-07
-2.09598e-07
-7.36798e-07
-2.07801e-07
-7.73687e-07
-2.05908e-07
-8.09497e-07
-2.03872e-07
-8.44201e-07
-2.0166e-07
-8.77774e-07
-1.99257e-07
-9.10194e-07
-1.96658e-07
-9.41442e-07
-1.9387e-07
-9.71504e-07
-1.90906e-07
-1.00037e-06
-1.87786e-07
-1.02803e-06
-1.84533e-07
-1.05447e-06
-1.81173e-07
-1.07971e-06
-1.77732e-07
-1.10373e-06
-1.74236e-07
-1.12655e-06
-1.70708e-07
-1.14818e-06
-1.67166e-07
-1.16862e-06
-1.63625e-07
-1.18789e-06
-1.60094e-07
-1.20601e-06
-1.56578e-07
-1.22299e-06
-1.53075e-07
-1.23886e-06
-1.49582e-07
-1.25364e-06
-1.46094e-07
-1.26735e-06
-1.426e-07
-1.28002e-06
-1.39095e-07
-1.29167e-06
-1.35572e-07
-1.30233e-06
-1.32025e-07
-1.31202e-06
-1.28454e-07
-1.32076e-06
-1.24857e-07
-1.32859e-06
-1.21239e-07
-1.33552e-06
-1.17604e-07
-1.34157e-06
-1.13957e-07
-1.34677e-06
-1.10306e-07
-1.35114e-06
-1.0666e-07
-1.3547e-06
-1.03025e-07
-1.35748e-06
-9.94097e-08
-9.58057e-08
-1.35949e-06
1.17041e-06
-8.49624e-08
1.1658e-06
-8.79022e-08
1.16048e-06
-9.08628e-08
1.15446e-06
-9.38424e-08
1.14772e-06
-9.68296e-08
1.14025e-06
-9.98136e-08
1.13203e-06
-1.02785e-07
1.12304e-06
-1.05736e-07
1.11329e-06
-1.08661e-07
1.10275e-06
-1.11555e-07
1.09141e-06
-1.14416e-07
1.07925e-06
-1.17241e-07
1.06628e-06
-1.20033e-07
1.05247e-06
-1.22793e-07
1.03782e-06
-1.25528e-07
1.02232e-06
-1.28242e-07
1.00596e-06
-1.30943e-07
9.88733e-07
-1.33637e-07
9.70635e-07
-1.36328e-07
9.5166e-07
-1.39018e-07
9.31804e-07
-1.41701e-07
9.11063e-07
-1.44373e-07
8.89438e-07
-1.47018e-07
8.66927e-07
-1.49621e-07
8.43533e-07
-1.52162e-07
8.19261e-07
-1.54615e-07
7.94119e-07
-1.56959e-07
7.68117e-07
-1.59168e-07
7.41271e-07
-1.61223e-07
7.13598e-07
-1.63106e-07
6.85121e-07
-1.64808e-07
6.55865e-07
-1.66325e-07
6.25861e-07
-1.67668e-07
5.95139e-07
-1.68857e-07
5.63734e-07
-1.69928e-07
5.31678e-07
-1.70936e-07
4.98999e-07
-1.7195e-07
4.65715e-07
-1.73058e-07
4.31829e-07
-1.74362e-07
3.97321e-07
-1.75968e-07
3.6214e-07
-1.77979e-07
3.26202e-07
-1.80478e-07
2.89388e-07
-1.83512e-07
2.51557e-07
-1.87068e-07
2.12569e-07
-1.91058e-07
1.72321e-07
-1.95301e-07
1.30805e-07
-1.99521e-07
8.815e-08
-2.03372e-07
4.46542e-08
-2.06483e-07
7.24793e-10
-2.08512e-07
-4.28449e-08
-2.0959e-07
-8.56709e-08
-2.09143e-07
-1.27408e-07
-2.07394e-07
-1.67853e-07
-2.04671e-07
-2.06953e-07
-2.01356e-07
-2.44766e-07
-1.9782e-07
-2.81421e-07
-1.94359e-07
-3.17072e-07
-1.91176e-07
-3.51862e-07
-1.88381e-07
-3.85909e-07
-1.86008e-07
-4.19298e-07
-1.84032e-07
-4.52077e-07
-1.8239e-07
-4.84267e-07
-1.80997e-07
-5.15869e-07
-1.79763e-07
-5.46867e-07
-1.786e-07
-5.77235e-07
-1.77433e-07
-6.06945e-07
-1.76198e-07
-6.35967e-07
-1.7485e-07
-6.64271e-07
-1.73356e-07
-6.9183e-07
-1.71698e-07
-7.1862e-07
-1.69868e-07
-7.44621e-07
-1.67869e-07
-7.69816e-07
-1.65711e-07
-7.94192e-07
-1.6341e-07
-8.17739e-07
-1.60985e-07
-8.40452e-07
-1.5846e-07
-8.62326e-07
-1.55857e-07
-8.83362e-07
-1.532e-07
-9.0356e-07
-1.50509e-07
-9.22925e-07
-1.47802e-07
-9.4146e-07
-1.4509e-07
-9.59171e-07
-1.42383e-07
-9.76065e-07
-1.39684e-07
-9.92148e-07
-1.36992e-07
-1.00743e-06
-1.34302e-07
-1.02191e-06
-1.31609e-07
-1.03561e-06
-1.28903e-07
-1.04853e-06
-1.26177e-07
-1.06068e-06
-1.23423e-07
-1.07207e-06
-1.20638e-07
-1.0827e-06
-1.17817e-07
-1.0926e-06
-1.14962e-07
-1.10176e-06
-1.12075e-07
-1.11021e-06
-1.0916e-07
-1.11794e-06
-1.06223e-07
-1.12498e-06
-1.03271e-07
-1.13132e-06
-1.00312e-07
-1.13699e-06
-9.7354e-08
-1.142e-06
-9.44042e-08
-9.14572e-08
-1.14635e-06
9.93996e-07
-7.98108e-08
9.88269e-07
-8.21759e-08
9.81963e-07
-8.45569e-08
9.75073e-07
-8.69518e-08
9.67593e-07
-8.93501e-08
9.59521e-07
-9.17414e-08
9.50851e-07
-9.4116e-08
9.41581e-07
-9.64663e-08
9.31706e-07
-9.8786e-08
9.21221e-07
-1.01071e-07
9.10124e-07
-1.03319e-07
8.98412e-07
-1.05529e-07
8.86082e-07
-1.07703e-07
8.73132e-07
-1.09844e-07
8.59562e-07
-1.11958e-07
8.4537e-07
-1.1405e-07
8.30554e-07
-1.16128e-07
8.15113e-07
-1.18196e-07
7.99043e-07
-1.20259e-07
7.82344e-07
-1.22318e-07
7.65011e-07
-1.24369e-07
7.47042e-07
-1.26404e-07
7.28436e-07
-1.28412e-07
7.09192e-07
-1.30378e-07
6.89311e-07
-1.32281e-07
6.68796e-07
-1.341e-07
6.47654e-07
-1.35816e-07
6.25893e-07
-1.37408e-07
6.03528e-07
-1.38857e-07
5.80575e-07
-1.40153e-07
5.57057e-07
-1.41289e-07
5.32998e-07
-1.42267e-07
5.08428e-07
-1.43098e-07
4.83378e-07
-1.43807e-07
4.57877e-07
-1.44428e-07
4.31952e-07
-1.45011e-07
4.05622e-07
-1.45619e-07
3.7889e-07
-1.46326e-07
3.51741e-07
-1.47213e-07
3.24134e-07
-1.48361e-07
2.96001e-07
-1.49846e-07
2.67246e-07
-1.51723e-07
2.37751e-07
-1.54018e-07
2.07396e-07
-1.56713e-07
1.76074e-07
-1.59737e-07
1.43728e-07
-1.62954e-07
1.10375e-07
-1.66169e-07
7.61341e-08
-1.69132e-07
4.12425e-08
-1.71591e-07
6.04394e-09
-1.73313e-07
-2.89703e-08
-1.74576e-07
-6.34864e-08
-1.74627e-07
-9.72274e-08
-1.73653e-07
-1.30021e-07
-1.71877e-07
-1.61777e-07
-1.696e-07
-1.92501e-07
-1.67097e-07
-2.22263e-07
-1.64597e-07
-2.51175e-07
-1.62264e-07
-2.79358e-07
-1.60198e-07
-3.06924e-07
-1.58441e-07
-3.33965e-07
-1.56991e-07
-3.60544e-07
-1.55811e-07
-3.86698e-07
-1.54843e-07
-4.1244e-07
-1.54021e-07
-4.37765e-07
-1.53275e-07
-4.62658e-07
-1.5254e-07
-4.87093e-07
-1.51763e-07
-5.11045e-07
-1.50898e-07
-5.34486e-07
-1.49915e-07
-5.57393e-07
-1.48792e-07
-5.79743e-07
-1.47518e-07
-6.01519e-07
-1.46093e-07
-6.22708e-07
-1.44522e-07
-6.433e-07
-1.42818e-07
-6.63288e-07
-1.40997e-07
-6.8267e-07
-1.39078e-07
-7.01445e-07
-1.37082e-07
-7.19615e-07
-1.35031e-07
-7.37181e-07
-1.32943e-07
-7.54149e-07
-1.30834e-07
-7.70522e-07
-1.28717e-07
-7.86304e-07
-1.26601e-07
-8.01499e-07
-1.24489e-07
-8.1611e-07
-1.22381e-07
-8.30139e-07
-1.20274e-07
-8.43587e-07
-1.18161e-07
-8.56455e-07
-1.16035e-07
-8.68744e-07
-1.13888e-07
-8.80454e-07
-1.11714e-07
-8.91585e-07
-1.09507e-07
-9.02139e-07
-1.07264e-07
-9.12117e-07
-1.04984e-07
-9.21521e-07
-1.0267e-07
-9.30356e-07
-1.00325e-07
-9.38624e-07
-9.79542e-08
-9.46331e-07
-9.55639e-08
-9.53482e-07
-9.31614e-08
-9.60081e-07
-9.07546e-08
-9.66133e-07
-8.83524e-08
-8.59558e-08
-9.71634e-07
8.50103e-07
-7.42465e-08
8.44078e-07
-7.61506e-08
8.37592e-07
-7.80712e-08
8.30643e-07
-8.00026e-08
8.23228e-07
-8.19343e-08
8.15343e-07
-8.38567e-08
8.06988e-07
-8.57611e-08
7.98163e-07
-8.76403e-08
7.88865e-07
-8.94883e-08
7.79095e-07
-9.13011e-08
7.68853e-07
-9.30767e-08
7.58139e-07
-9.48148e-08
7.46954e-07
-9.65172e-08
7.35298e-07
-9.81874e-08
7.23171e-07
-9.98303e-08
7.10573e-07
-1.01452e-07
6.97503e-07
-1.03058e-07
6.83959e-07
-1.04653e-07
6.6994e-07
-1.0624e-07
6.55441e-07
-1.07819e-07
6.4046e-07
-1.09388e-07
6.24993e-07
-1.10937e-07
6.09038e-07
-1.12457e-07
5.92594e-07
-1.13933e-07
5.7566e-07
-1.15347e-07
5.58242e-07
-1.16682e-07
5.40345e-07
-1.1792e-07
5.21982e-07
-1.19044e-07
5.03167e-07
-1.20043e-07
4.8392e-07
-1.20907e-07
4.64266e-07
-1.21635e-07
4.44233e-07
-1.22234e-07
4.23849e-07
-1.22715e-07
4.03146e-07
-1.23104e-07
3.82151e-07
-1.23432e-07
3.60883e-07
-1.23744e-07
3.39355e-07
-1.24091e-07
3.1756e-07
-1.24532e-07
2.95476e-07
-1.25128e-07
2.73057e-07
-1.25943e-07
2.50239e-07
-1.27028e-07
2.2694e-07
-1.28424e-07
2.03071e-07
-1.30149e-07
1.78548e-07
-1.3219e-07
1.53305e-07
-1.34494e-07
1.27312e-07
-1.36961e-07
1.00584e-07
-1.39441e-07
7.31941e-08
-1.41742e-07
4.52108e-08
-1.43608e-07
1.68422e-08
-1.44945e-07
-1.1737e-08
-1.45997e-07
-4.0231e-08
-1.46133e-07
-6.83495e-08
-1.45535e-07
-9.58935e-08
-1.44333e-07
-1.227e-07
-1.42794e-07
-1.48703e-07
-1.41094e-07
-1.73913e-07
-1.39387e-07
-1.98394e-07
-1.37783e-07
-2.22235e-07
-1.36357e-07
-2.45531e-07
-1.35145e-07
-2.68368e-07
-1.34155e-07
-2.90811e-07
-1.33368e-07
-3.12904e-07
-1.32751e-07
-3.3467e-07
-1.32255e-07
-3.56115e-07
-1.3183e-07
-3.77229e-07
-1.31427e-07
-3.97994e-07
-1.30998e-07
-4.18386e-07
-1.30506e-07
-4.38381e-07
-1.2992e-07
-4.57953e-07
-1.29219e-07
-4.77082e-07
-1.2839e-07
-4.95748e-07
-1.27427e-07
-5.13937e-07
-1.26333e-07
-5.31641e-07
-1.25115e-07
-5.48853e-07
-1.23784e-07
-5.65573e-07
-1.22358e-07
-5.81803e-07
-1.20853e-07
-5.97545e-07
-1.19288e-07
-6.12807e-07
-1.17681e-07
-6.27596e-07
-1.16046e-07
-6.41917e-07
-1.14396e-07
-6.55779e-07
-1.12739e-07
-6.69187e-07
-1.11081e-07
-6.82146e-07
-1.09422e-07
-6.9466e-07
-1.0776e-07
-7.0673e-07
-1.0609e-07
-7.18358e-07
-1.04407e-07
-7.29543e-07
-1.02703e-07
-7.40285e-07
-1.00972e-07
-7.50582e-07
-9.92091e-08
-7.60434e-07
-9.74118e-08
-7.6984e-07
-9.55789e-08
-7.78798e-07
-9.37117e-08
-7.8731e-07
-9.18133e-08
-7.95375e-07
-8.98885e-08
-8.02996e-07
-8.79433e-08
-8.10172e-07
-8.59851e-08
-8.16903e-07
-8.40236e-08
-8.23184e-07
-8.20718e-08
-8.01408e-08
-8.28999e-07
7.32729e-07
-6.87764e-08
7.26871e-07
-7.02935e-08
7.20643e-07
-7.18433e-08
7.14047e-07
-7.34063e-08
7.07081e-07
-7.49689e-08
6.99745e-07
-7.65209e-08
6.92038e-07
-7.80539e-08
6.83958e-07
-7.95605e-08
6.75504e-07
-8.10349e-08
6.66676e-07
-8.2473e-08
6.57471e-07
-8.38727e-08
6.4789e-07
-8.52338e-08
6.37931e-07
-8.65582e-08
6.27592e-07
-8.78493e-08
6.16873e-07
-8.91119e-08
6.05773e-07
-9.03515e-08
5.94288e-07
-9.15735e-08
5.82417e-07
-9.27822e-08
5.70157e-07
-9.39801e-08
5.57505e-07
-9.51672e-08
5.44457e-07
-9.63401e-08
5.31012e-07
-9.74922e-08
5.17168e-07
-9.86136e-08
5.02927e-07
-9.96919e-08
4.88293e-07
-1.00713e-07
4.73274e-07
-1.01663e-07
4.57881e-07
-1.02527e-07
4.4213e-07
-1.03294e-07
4.26043e-07
-1.03956e-07
4.09644e-07
-1.04508e-07
3.92961e-07
-1.04952e-07
3.76023e-07
-1.05296e-07
3.5886e-07
-1.05553e-07
3.41502e-07
-1.05745e-07
3.23971e-07
-1.05901e-07
3.06283e-07
-1.06056e-07
2.88444e-07
-1.06252e-07
2.70447e-07
-1.06535e-07
2.52271e-07
-1.06953e-07
2.33881e-07
-1.07553e-07
2.1523e-07
-1.08376e-07
1.96262e-07
-1.09455e-07
1.76919e-07
-1.10806e-07
1.57149e-07
-1.1242e-07
1.36914e-07
-1.14259e-07
1.16199e-07
-1.16246e-07
9.50071e-08
-1.18249e-07
7.33151e-08
-1.2005e-07
5.1051e-08
-1.21344e-07
2.79711e-08
-1.21865e-07
4.27481e-09
-1.22301e-07
-1.98119e-08
-1.22046e-07
-4.3793e-08
-1.21554e-07
-6.73619e-08
-1.20764e-07
-9.03478e-08
-1.19808e-07
-1.12651e-07
-1.18791e-07
-1.34262e-07
-1.17776e-07
-1.55237e-07
-1.16808e-07
-1.75663e-07
-1.15931e-07
-1.95628e-07
-1.1518e-07
-2.15214e-07
-1.14569e-07
-2.34484e-07
-1.14098e-07
-2.53485e-07
-1.13749e-07
-2.72245e-07
-1.13496e-07
-2.90773e-07
-1.13302e-07
-3.09067e-07
-1.13132e-07
-3.27114e-07
-1.12951e-07
-3.44892e-07
-1.12728e-07
-3.62375e-07
-1.12437e-07
-3.79537e-07
-1.12057e-07
-3.9635e-07
-1.11577e-07
-4.1279e-07
-1.10987e-07
-4.28836e-07
-1.10287e-07
-4.44471e-07
-1.0948e-07
-4.59682e-07
-1.08573e-07
-4.74463e-07
-1.07578e-07
-4.88809e-07
-1.06507e-07
-5.02723e-07
-1.05375e-07
-5.16208e-07
-1.04196e-07
-5.29269e-07
-1.02984e-07
-5.41915e-07
-1.0175e-07
-5.54154e-07
-1.005e-07
-5.65994e-07
-9.92409e-08
-5.77443e-07
-9.79729e-08
-5.88509e-07
-9.66948e-08
-5.99197e-07
-9.54029e-08
-6.09512e-07
-9.40918e-08
-6.19459e-07
-9.27557e-08
-6.29042e-07
-9.13893e-08
-6.38263e-07
-8.99882e-08
-6.47125e-07
-8.85497e-08
-6.55631e-07
-8.70732e-08
-6.63782e-07
-8.556e-08
-6.71582e-07
-8.40133e-08
-6.79033e-07
-8.2438e-08
-6.86136e-07
-8.08407e-08
-6.9289e-07
-7.92306e-08
-6.99293e-07
-7.76206e-08
-7.05335e-07
-7.60299e-08
-7.44831e-08
-7.10993e-07
6.3428e-07
-6.35422e-08
6.28704e-07
-6.47175e-08
6.2281e-07
-6.595e-08
6.16612e-07
-6.72078e-08
6.10113e-07
-6.84698e-08
6.03314e-07
-6.97221e-08
5.96214e-07
-7.09539e-08
5.88811e-07
-7.21572e-08
5.81102e-07
-7.33257e-08
5.73084e-07
-7.44553e-08
5.64755e-07
-7.55439e-08
5.56113e-07
-7.65915e-08
5.47155e-07
-7.76002e-08
5.37879e-07
-7.85737e-08
5.28284e-07
-7.95169e-08
5.18368e-07
-8.04355e-08
5.08129e-07
-8.13345e-08
4.97566e-07
-8.22185e-08
4.86675e-07
-8.30898e-08
4.75457e-07
-8.39485e-08
4.63908e-07
-8.47919e-08
4.52031e-07
-8.56147e-08
4.39826e-07
-8.64087e-08
4.27298e-07
-8.71642e-08
4.14455e-07
-8.78701e-08
4.01307e-07
-8.85155e-08
3.87871e-07
-8.90904e-08
3.74163e-07
-8.95867e-08
3.60207e-07
-8.99993e-08
3.46025e-07
-9.03265e-08
3.31644e-07
-9.0571e-08
3.17088e-07
-9.07399e-08
3.02381e-07
-9.08459e-08
2.87542e-07
-9.09064e-08
2.72585e-07
-9.09447e-08
2.57518e-07
-9.0989e-08
2.42338e-07
-9.10717e-08
2.27032e-07
-9.1229e-08
2.11577e-07
-9.14982e-08
1.9594e-07
-9.19157e-08
1.80077e-07
-9.25137e-08
1.63937e-07
-9.33161e-08
1.47466e-07
-9.43342e-08
1.30606e-07
-9.55608e-08
1.13312e-07
-9.69656e-08
9.5556e-08
-9.84897e-08
7.73888e-08
-1.00082e-07
5.89218e-08
-1.01583e-07
4.00495e-08
-1.02472e-07
2.06171e-08
-1.02433e-07
5.68068e-10
-1.02252e-07
-1.90636e-08
-1.02415e-07
-3.80879e-08
-1.0253e-07
-5.65944e-08
-1.02258e-07
-7.45181e-08
-1.01884e-07
-9.17882e-08
-1.01521e-07
-1.08549e-07
-1.01015e-07
-1.24923e-07
-1.00434e-07
-1.41008e-07
-9.98457e-08
-1.56884e-07
-9.93043e-08
-1.72609e-07
-9.8844e-08
-1.88228e-07
-9.84787e-08
-2.03772e-07
-9.8206e-08
-2.19256e-07
-9.80111e-08
-2.34686e-07
-9.78717e-08
-2.50056e-07
-9.77625e-08
-2.6535e-07
-9.76577e-08
-2.80544e-07
-9.75336e-08
-2.95611e-07
-9.73698e-08
-3.10518e-07
-9.71501e-08
-3.25233e-07
-9.68626e-08
-3.3972e-07
-9.64998e-08
-3.53949e-07
-9.60582e-08
-3.67891e-07
-9.55382e-08
-3.8152e-07
-9.49437e-08
-3.94817e-07
-9.42809e-08
-4.07765e-07
-9.35585e-08
-4.20353e-07
-9.27862e-08
-4.32576e-07
-9.19739e-08
-4.44429e-07
-9.1131e-08
-4.55913e-07
-9.02653e-08
-4.67031e-07
-8.93826e-08
-4.77786e-07
-8.84859e-08
-4.88183e-07
-8.75758e-08
-4.98228e-07
-8.665e-08
-5.07926e-07
-8.57045e-08
-5.17284e-07
-8.47337e-08
-5.26308e-07
-8.37319e-08
-5.35004e-07
-8.26933e-08
-5.43378e-07
-8.16135e-08
-5.51438e-07
-8.04896e-08
-5.59191e-07
-7.9321e-08
-5.66641e-07
-7.81091e-08
-5.73797e-07
-7.68574e-08
-5.80664e-07
-7.55716e-08
-5.87245e-07
-7.426e-08
-5.93541e-07
-7.29341e-08
-5.99551e-07
-7.1611e-08
-6.05264e-07
-7.03165e-08
-6.90904e-08
-6.10656e-07
5.48006e-07
-5.83573e-08
5.42521e-07
-5.92326e-08
5.36762e-07
-6.01907e-08
5.3074e-07
-6.11863e-08
5.24462e-07
-6.21917e-08
5.17928e-07
-6.3189e-08
5.1114e-07
-6.41661e-08
5.04097e-07
-6.51141e-08
4.96798e-07
-6.60271e-08
4.89244e-07
-6.69012e-08
4.81435e-07
-6.7735e-08
4.73372e-07
-6.85291e-08
4.65058e-07
-6.92862e-08
4.56494e-07
-7.00105e-08
4.47685e-07
-7.07072e-08
4.38631e-07
-7.13818e-08
4.29335e-07
-7.20393e-08
4.198e-07
-7.26836e-08
4.10027e-07
-7.33168e-08
4.00017e-07
-7.39388e-08
3.89772e-07
-7.45471e-08
3.79294e-07
-7.51367e-08
3.68586e-07
-7.5701e-08
3.57654e-07
-7.62316e-08
3.46504e-07
-7.67196e-08
3.35145e-07
-7.71563e-08
3.23588e-07
-7.75336e-08
3.11846e-07
-7.78452e-08
2.99934e-07
-7.80867e-08
2.87864e-07
-7.82568e-08
2.7565e-07
-7.83571e-08
2.63303e-07
-7.83926e-08
2.50829e-07
-7.8372e-08
2.38231e-07
-7.83078e-08
2.25503e-07
-7.82163e-08
2.12631e-07
-7.81173e-08
1.99593e-07
-7.80337e-08
1.86355e-07
-7.79908e-08
1.72873e-07
-7.80159e-08
1.59095e-07
-7.81377e-08
1.44966e-07
-7.83848e-08
1.30434e-07
-7.87842e-08
1.15456e-07
-7.93562e-08
1.00003e-07
-8.01071e-08
8.40571e-08
-8.10198e-08
6.7619e-08
-8.20513e-08
5.08406e-08
-8.33033e-08
3.41866e-08
-8.49292e-08
1.78248e-08
-8.61102e-08
1.44481e-09
-8.60524e-08
-1.48698e-08
-8.5937e-08
-2.90118e-08
-8.82725e-08
-4.19263e-08
-8.96153e-08
-5.43486e-08
-8.98357e-08
-6.59871e-08
-9.02456e-08
-7.76004e-08
-8.9908e-08
-8.92748e-08
-8.93411e-08
-1.01007e-07
-8.87018e-08
-1.1277e-07
-8.8083e-08
-1.24542e-07
-8.75321e-08
-1.36319e-07
-8.70668e-08
-1.48111e-07
-8.66873e-08
-1.59934e-07
-8.63835e-08
-1.71805e-07
-8.61403e-08
-1.83736e-07
-8.594e-08
-1.95735e-07
-8.57645e-08
-2.07796e-07
-8.55962e-08
-2.19911e-07
-8.5419e-08
-2.32062e-07
-8.52193e-08
-2.44226e-07
-8.49862e-08
-2.56378e-07
-8.47115e-08
-2.68488e-07
-8.43901e-08
-2.80527e-07
-8.40197e-08
-2.92465e-07
-8.36004e-08
-3.04274e-07
-8.31348e-08
-3.15928e-07
-8.2627e-08
-3.27404e-07
-8.20831e-08
-3.38681e-07
-8.15094e-08
-3.49742e-07
-8.09129e-08
-3.60574e-07
-8.02998e-08
-3.71164e-07
-7.96754e-08
-3.81504e-07
-7.90431e-08
-3.91585e-07
-7.84044e-08
-4.01403e-07
-7.77583e-08
-4.10951e-07
-7.71018e-08
-4.20226e-07
-7.64297e-08
-4.29224e-07
-7.57358e-08
-4.37943e-07
-7.5013e-08
-4.46382e-07
-7.42546e-08
-4.54541e-07
-7.34547e-08
-4.62421e-07
-7.26093e-08
-4.70026e-07
-7.17163e-08
-4.77359e-07
-7.07761e-08
-4.84425e-07
-6.97918e-08
-4.91227e-07
-6.87695e-08
-4.97769e-07
-6.77186e-08
-5.0405e-07
-6.66531e-08
-5.10067e-07
-6.55934e-08
-5.15814e-07
-6.45701e-08
-6.36343e-08
-5.2127e-07
4.72641e-07
-5.30793e-08
4.67082e-07
-5.36738e-08
4.61267e-07
-5.43753e-08
4.55211e-07
-5.513e-08
4.48926e-07
-5.59069e-08
4.42423e-07
-5.66857e-08
4.3571e-07
-5.74533e-08
4.28797e-07
-5.82008e-08
4.21693e-07
-5.8923e-08
4.14409e-07
-5.96171e-08
4.06956e-07
-6.02827e-08
3.99349e-07
-6.09215e-08
3.916e-07
-6.15367e-08
3.83722e-07
-6.21327e-08
3.75729e-07
-6.27141e-08
3.67633e-07
-6.32856e-08
3.59444e-07
-6.38507e-08
3.51172e-07
-6.44115e-08
3.42823e-07
-6.49681e-08
3.34403e-07
-6.55187e-08
3.25915e-07
-6.60589e-08
3.17361e-07
-6.65828e-08
3.08743e-07
-6.70825e-08
3.0006e-07
-6.75492e-08
2.91314e-07
-6.79736e-08
2.82504e-07
-6.83467e-08
2.7363e-07
-6.86599e-08
2.64691e-07
-6.89061e-08
2.55684e-07
-6.908e-08
2.46605e-07
-6.9178e-08
2.37446e-07
-6.91991e-08
2.28198e-07
-6.91443e-08
2.18843e-07
-6.90171e-08
2.09358e-07
-6.88226e-08
1.99709e-07
-6.85675e-08
1.89852e-07
-6.82601e-08
1.79727e-07
-6.79096e-08
1.69265e-07
-6.75283e-08
1.58383e-07
-6.71342e-08
1.47002e-07
-6.6757e-08
1.35063e-07
-6.64453e-08
1.22553e-07
-6.62743e-08
1.09542e-07
-6.6346e-08
9.62087e-08
-6.67733e-08
8.2825e-08
-6.76361e-08
6.96717e-08
-6.8898e-08
5.69483e-08
-7.05798e-08
4.65905e-08
-7.45713e-08
3.85018e-08
-7.80215e-08
3.24807e-08
-8.00315e-08
2.64875e-08
-7.99439e-08
1.97602e-08
-8.15453e-08
1.14649e-08
-8.132e-08
1.8774e-09
-8.02482e-08
-9.81958e-09
-7.85485e-08
-2.2834e-08
-7.68934e-08
-3.64302e-08
-7.57445e-08
-5.00181e-08
-7.51136e-08
-6.3235e-08
-7.48657e-08
-7.59036e-08
-7.48632e-08
-8.79774e-08
-7.49928e-08
-9.9491e-08
-7.51734e-08
-1.10521e-07
-7.53535e-08
-1.21158e-07
-7.5503e-08
-1.31491e-07
-7.56066e-08
-1.41599e-07
-7.56566e-08
-1.51546e-07
-7.56495e-08
-1.61381e-07
-7.55833e-08
-1.71143e-07
-7.54571e-08
-1.80859e-07
-7.52701e-08
-1.90547e-07
-7.50228e-08
-2.0022e-07
-7.47166e-08
-2.09885e-07
-7.43543e-08
-2.19545e-07
-7.39401e-08
-2.292e-07
-7.34797e-08
-2.38847e-07
-7.29799e-08
-2.48482e-07
-7.24483e-08
-2.58098e-07
-7.18932e-08
-2.67688e-07
-7.13225e-08
-2.77244e-07
-7.07439e-08
-2.86755e-07
-7.01638e-08
-2.96211e-07
-6.95871e-08
-3.05598e-07
-6.90167e-08
-3.14903e-07
-6.84533e-08
-3.2411e-07
-6.78952e-08
-3.33201e-07
-6.73386e-08
-3.42158e-07
-6.6778e-08
-3.50965e-07
-6.62067e-08
-3.59602e-07
-6.56176e-08
-3.68053e-07
-6.50039e-08
-3.76302e-07
-6.43598e-08
-3.84337e-07
-6.36814e-08
-3.92146e-07
-6.2967e-08
-3.9972e-07
-6.22178e-08
-4.07051e-07
-6.14385e-08
-4.14131e-07
-6.06381e-08
-4.20953e-07
-5.98307e-08
-4.27509e-07
-5.90378e-08
-4.33789e-07
-5.82902e-08
-5.76435e-08
-4.39779e-07
4.09941e-07
-4.79205e-08
4.04546e-07
-4.82795e-08
3.98934e-07
-4.87627e-08
3.93121e-07
-4.93177e-08
3.87131e-07
-4.99164e-08
3.80984e-07
-5.05388e-08
3.74703e-07
-5.1172e-08
3.6831e-07
-5.18082e-08
3.6183e-07
-5.24433e-08
3.55289e-07
-5.30758e-08
3.48712e-07
-5.37062e-08
3.42127e-07
-5.43365e-08
3.35559e-07
-5.49692e-08
3.29034e-07
-5.56074e-08
3.22573e-07
-5.62533e-08
3.16196e-07
-5.69084e-08
3.09917e-07
-5.75723e-08
3.03748e-07
-5.82428e-08
2.97696e-07
-5.89154e-08
2.91761e-07
-5.95836e-08
2.8594e-07
-6.02386e-08
2.80227e-07
-6.08698e-08
2.7461e-07
-6.14654e-08
2.69073e-07
-6.20126e-08
2.63598e-07
-6.24985e-08
2.58162e-07
-6.29102e-08
2.52738e-07
-6.32356e-08
2.47295e-07
-6.34636e-08
2.418e-07
-6.35843e-08
2.36211e-07
-6.35888e-08
2.30481e-07
-6.34693e-08
2.24555e-07
-6.32185e-08
2.18367e-07
-6.28283e-08
2.11833e-07
-6.22891e-08
2.04854e-07
-6.15886e-08
1.97305e-07
-6.0711e-08
1.89033e-07
-5.96372e-08
1.79854e-07
-5.83489e-08
1.69556e-07
-5.68363e-08
1.57914e-07
-5.5115e-08
1.44721e-07
-5.32513e-08
1.29846e-07
-5.13997e-08
1.13346e-07
-4.98463e-08
9.56151e-08
-4.9042e-08
7.75691e-08
-4.959e-08
6.05451e-08
-5.18739e-08
4.48607e-08
-5.48953e-08
3.34651e-08
-6.31757e-08
2.70946e-08
-7.16509e-08
2.31444e-08
-7.60811e-08
2.07786e-08
-7.75781e-08
1.52067e-08
-7.59733e-08
9.37695e-09
-7.54902e-08
1.20158e-09
-7.20728e-08
-1.0564e-08
-6.6783e-08
-2.44089e-08
-6.30486e-08
-3.80344e-08
-6.21191e-08
-5.08856e-08
-6.22625e-08
-6.27181e-08
-6.30333e-08
-7.34909e-08
-6.40905e-08
-8.32804e-08
-6.52034e-08
-9.22194e-08
-6.62347e-08
-1.00457e-07
-6.71159e-08
-1.08138e-07
-6.78227e-08
-1.15389e-07
-6.8356e-08
-1.22317e-07
-6.87288e-08
-1.29009e-07
-6.89576e-08
-1.35535e-07
-6.90576e-08
-1.41951e-07
-6.90414e-08
-1.48302e-07
-6.89186e-08
-1.54629e-07
-6.86968e-08
-1.60963e-07
-6.83824e-08
-1.67336e-07
-6.79818e-08
-1.73774e-07
-6.75023e-08
-1.80302e-07
-6.69519e-08
-1.86942e-07
-6.63401e-08
-1.93713e-07
-6.56776e-08
-2.0063e-07
-6.49757e-08
-2.07707e-07
-6.42462e-08
-2.1495e-07
-6.3501e-08
-2.22363e-07
-6.27512e-08
-2.29943e-07
-6.20067e-08
-2.37684e-07
-6.12755e-08
-2.45574e-07
-6.05638e-08
-2.53594e-07
-5.98751e-08
-2.61722e-07
-5.92106e-08
-2.69931e-07
-5.8569e-08
-2.78191e-07
-5.79474e-08
-2.86468e-07
-5.73409e-08
-2.94728e-07
-5.67441e-08
-3.02936e-07
-5.61516e-08
-3.11059e-07
-5.55586e-08
-3.19064e-07
-5.49618e-08
-3.26922e-07
-5.43603e-08
-3.34604e-07
-5.37564e-08
-3.42085e-07
-5.31568e-08
-3.49343e-07
-5.25736e-08
-3.56355e-07
-5.20259e-08
-3.63105e-07
-5.154e-08
-5.11622e-08
-3.69587e-07
3.62016e-07
-4.34316e-08
3.57391e-07
-4.36545e-08
3.52624e-07
-4.39963e-08
3.47733e-07
-4.44267e-08
3.42743e-07
-4.49263e-08
3.37684e-07
-4.5479e-08
3.32585e-07
-4.60736e-08
3.2748e-07
-4.67033e-08
3.22401e-07
-4.73644e-08
3.17381e-07
-4.80557e-08
3.12452e-07
-4.8777e-08
3.07644e-07
-4.95286e-08
3.02986e-07
-5.03107e-08
2.98501e-07
-5.11224e-08
2.9421e-07
-5.19618e-08
2.90126e-07
-5.28248e-08
2.86259e-07
-5.37055e-08
2.82612e-07
-5.45956e-08
2.79181e-07
-5.54848e-08
2.75958e-07
-5.63606e-08
2.72929e-07
-5.72089e-08
2.70073e-07
-5.80146e-08
2.6737e-07
-5.87616e-08
2.64791e-07
-5.9434e-08
2.62309e-07
-6.0016e-08
2.59891e-07
-6.04926e-08
2.57506e-07
-6.08499e-08
2.55117e-07
-6.10751e-08
2.52689e-07
-6.11563e-08
2.50183e-07
-6.10821e-08
2.47554e-07
-6.08406e-08
2.44754e-07
-6.04186e-08
2.41725e-07
-5.97998e-08
2.384e-07
-5.89636e-08
2.34694e-07
-5.78825e-08
2.30504e-07
-5.65215e-08
2.25704e-07
-5.48372e-08
2.20134e-07
-5.27791e-08
2.13596e-07
-5.02979e-08
2.05843e-07
-4.73619e-08
1.96561e-07
-4.39694e-08
1.8535e-07
-4.01885e-08
1.71728e-07
-3.6224e-08
1.55176e-07
-3.24898e-08
1.3529e-07
-2.97048e-08
1.13475e-07
-3.00587e-08
9.20066e-08
-3.34267e-08
6.85823e-08
-3.97513e-08
4.60261e-08
-4.90945e-08
2.3758e-08
-5.38128e-08
-2.15944e-10
-5.36039e-08
-2.46919e-08
-5.14972e-08
-4.66895e-08
-5.34925e-08
-6.58058e-08
-5.29563e-08
-8.99755e-08
-4.26132e-08
-1.0765e-07
-4.53744e-08
-1.21392e-07
-4.83766e-08
-1.31887e-07
-5.17676e-08
-1.39838e-07
-5.50823e-08
-1.45874e-07
-5.80542e-08
-1.50515e-07
-6.05626e-08
-1.54164e-07
-6.25853e-08
-1.5713e-07
-6.41496e-08
-1.59641e-07
-6.53113e-08
-1.61863e-07
-6.61338e-08
-1.63915e-07
-6.66769e-08
-1.65881e-07
-6.69911e-08
-1.67823e-07
-6.71156e-08
-1.69784e-07
-6.70797e-08
-1.71799e-07
-6.69039e-08
-1.73893e-07
-6.66021e-08
-1.76091e-07
-6.61844e-08
-1.78415e-07
-6.56583e-08
-1.80886e-07
-6.50308e-08
-1.83528e-07
-6.43096e-08
-1.86365e-07
-6.35035e-08
-1.8942e-07
-6.26228e-08
-1.92716e-07
-6.16798e-08
-1.96274e-07
-6.06878e-08
-2.00114e-07
-5.96614e-08
-2.04249e-07
-5.86155e-08
-2.08691e-07
-5.75648e-08
-2.13444e-07
-5.6523e-08
-2.18506e-07
-5.55024e-08
-2.23867e-07
-5.45134e-08
-2.29514e-07
-5.35638e-08
-2.35424e-07
-5.26592e-08
-2.41569e-07
-5.18024e-08
-2.47916e-07
-5.0994e-08
-2.54427e-07
-5.02329e-08
-2.61062e-07
-4.95164e-08
-2.67779e-07
-4.88415e-08
-2.74535e-07
-4.82055e-08
-2.81289e-07
-4.7607e-08
-2.87998e-07
-4.7047e-08
-2.94625e-07
-4.653e-08
-3.01133e-07
-4.60654e-08
-3.07491e-07
-4.56681e-08
-3.13674e-07
-4.53572e-08
-4.51702e-08
-3.19666e-07
3.3148e-07
-4.04537e-08
3.2849e-07
-4.06649e-08
3.255e-07
-4.10065e-08
3.22531e-07
-4.14575e-08
3.19613e-07
-4.20078e-08
3.16779e-07
-4.26458e-08
3.14068e-07
-4.33623e-08
3.11516e-07
-4.41509e-08
3.09159e-07
-4.50075e-08
3.07033e-07
-4.59296e-08
3.05171e-07
-4.69153e-08
3.03605e-07
-4.79623e-08
3.02362e-07
-4.90676e-08
3.01466e-07
-5.02267e-08
3.00938e-07
-5.14334e-08
3.00793e-07
-5.26796e-08
3.01043e-07
-5.39555e-08
3.01697e-07
-5.52495e-08
3.02761e-07
-5.65486e-08
3.04239e-07
-5.78388e-08
3.06136e-07
-5.91057e-08
3.08456e-07
-6.03349e-08
3.11207e-07
-6.15124e-08
3.14398e-07
-6.26249e-08
3.18043e-07
-6.36603e-08
3.22157e-07
-6.46071e-08
3.26762e-07
-6.54545e-08
3.31879e-07
-6.61915e-08
3.37529e-07
-6.6806e-08
3.4373e-07
-6.72835e-08
3.50495e-07
-6.76055e-08
3.57825e-07
-6.77483e-08
3.65706e-07
-6.76812e-08
3.74109e-07
-6.73659e-08
3.82983e-07
-6.67568e-08
3.92263e-07
-6.58014e-08
4.0187e-07
-6.4444e-08
4.11709e-07
-6.26174e-08
4.21655e-07
-6.02437e-08
4.31504e-07
-5.7211e-08
4.4092e-07
-5.33853e-08
4.49328e-07
-4.85959e-08
4.55766e-07
-4.26619e-08
4.58868e-07
-3.55922e-08
4.57046e-07
-2.78825e-08
4.46799e-07
-1.98116e-08
4.3716e-07
-2.37877e-08
4.2116e-07
-2.37509e-08
3.84882e-07
-1.28163e-08
3.41422e-07
-1.03526e-08
2.93927e-07
-6.10977e-09
2.41641e-07
7.89408e-10
1.87272e-07
8.76103e-10
1.32211e-07
2.10478e-09
8.37823e-08
5.81593e-09
4.16166e-08
-3.20876e-09
5.83035e-09
-1.25904e-08
-2.41346e-08
-2.18027e-08
-4.92308e-08
-2.99863e-08
-7.04189e-08
-3.68662e-08
-8.8487e-08
-4.24947e-08
-1.04033e-07
-4.704e-08
-1.1747e-07
-5.07125e-08
-1.2912e-07
-5.36615e-08
-1.39244e-07
-5.601e-08
-1.48064e-07
-5.78569e-08
-1.55775e-07
-5.92806e-08
-1.62545e-07
-6.03449e-08
-1.68524e-07
-6.11015e-08
-1.73836e-07
-6.15919e-08
-1.78589e-07
-6.18493e-08
-1.82874e-07
-6.18999e-08
-1.86768e-07
-6.17645e-08
-1.90338e-07
-6.14602e-08
-1.93646e-07
-6.10016e-08
-1.96748e-07
-6.04023e-08
-1.99695e-07
-5.96758e-08
-2.02538e-07
-5.88364e-08
-2.05326e-07
-5.78996e-08
-2.08105e-07
-5.6882e-08
-2.1092e-07
-5.58014e-08
-2.13808e-07
-5.4676e-08
-2.16807e-07
-5.35242e-08
-2.19946e-07
-5.23638e-08
-2.23247e-07
-5.12115e-08
-2.26729e-07
-5.00822e-08
-2.304e-07
-4.89886e-08
-2.34261e-07
-4.79411e-08
-2.38308e-07
-4.69475e-08
-2.42527e-07
-4.60131e-08
-2.46902e-07
-4.51416e-08
-2.51409e-07
-4.43348e-08
-2.5602e-07
-4.3594e-08
-2.60706e-07
-4.29208e-08
-2.65436e-07
-4.23179e-08
-2.70175e-07
-4.17905e-08
-2.74894e-07
-4.1347e-08
-2.79563e-07
-4.09991e-08
-2.84161e-07
-4.07591e-08
-4.06414e-08
-2.8869e-07
3.03422e-07
-3.86617e-08
3.01705e-07
-3.89485e-08
3.00058e-07
-3.93588e-08
2.98495e-07
-3.98955e-08
2.97042e-07
-4.05539e-08
2.95721e-07
-4.13248e-08
2.94557e-07
-4.21988e-08
2.93574e-07
-4.31678e-08
2.92791e-07
-4.42251e-08
2.92226e-07
-4.53646e-08
2.91891e-07
-4.65802e-08
2.91794e-07
-4.78652e-08
2.91938e-07
-4.9212e-08
2.92323e-07
-5.06116e-08
2.92943e-07
-5.20535e-08
2.9379e-07
-5.35263e-08
2.94852e-07
-5.50175e-08
2.96116e-07
-5.65138e-08
2.97569e-07
-5.80019e-08
2.99199e-07
-5.94689e-08
3.00996e-07
-6.09022e-08
3.0295e-07
-6.22898e-08
3.05058e-07
-6.36204e-08
3.07316e-07
-6.48827e-08
3.0972e-07
-6.60642e-08
3.12262e-07
-6.71501e-08
3.14929e-07
-6.81215e-08
3.17691e-07
-6.89527e-08
3.20494e-07
-6.96093e-08
3.23256e-07
-7.00455e-08
3.25853e-07
-7.02025e-08
3.28112e-07
-7.00075e-08
3.29806e-07
-6.93747e-08
3.30649e-07
-6.82087e-08
3.30307e-07
-6.64149e-08
3.28421e-07
-6.39158e-08
3.24711e-07
-6.07333e-08
3.19169e-07
-5.70758e-08
3.11718e-07
-5.27923e-08
3.02311e-07
-4.78047e-08
2.90877e-07
-4.19509e-08
2.77465e-07
-3.51839e-08
2.6133e-07
-2.65264e-08
2.4029e-07
-1.45526e-08
2.12812e-07
-4.04282e-10
1.81129e-07
1.18714e-08
1.45309e-07
1.2032e-08
1.10278e-07
1.12798e-08
8.06532e-08
1.68086e-08
4.85406e-08
2.17598e-08
1.53803e-08
2.70504e-08
-1.49299e-08
3.10995e-08
-4.76172e-08
3.35634e-08
-7.95507e-08
3.40384e-08
-1.08677e-07
3.49429e-08
-1.3326e-07
2.13738e-08
-1.5361e-07
7.76021e-09
-1.71497e-07
-3.9154e-09
-1.87157e-07
-1.4327e-08
-2.0088e-07
-2.3143e-08
-2.13206e-07
-3.01682e-08
-2.23988e-07
-3.62578e-08
-2.33149e-07
-4.15517e-08
-2.40458e-07
-4.63531e-08
-2.46014e-07
-5.04535e-08
-2.5004e-07
-5.38309e-08
-2.52806e-07
-5.65141e-08
-2.54575e-07
-5.85765e-08
-2.55587e-07
-6.00895e-08
-2.56049e-07
-6.11294e-08
-2.56129e-07
-6.17695e-08
-2.55953e-07
-6.20758e-08
-2.55613e-07
-6.21041e-08
-2.55174e-07
-6.18995e-08
-2.54678e-07
-6.14979e-08
-2.54153e-07
-6.0927e-08
-2.5362e-07
-6.02088e-08
-2.53095e-07
-5.93616e-08
-2.52593e-07
-5.84018e-08
-2.5213e-07
-5.73447e-08
-2.51726e-07
-5.6206e-08
-2.514e-07
-5.50019e-08
-2.51175e-07
-5.37491e-08
-2.51074e-07
-5.24649e-08
-2.51119e-07
-5.11664e-08
-2.51331e-07
-4.98703e-08
-2.51727e-07
-4.85922e-08
-2.52322e-07
-4.73466e-08
-2.53124e-07
-4.61459e-08
-2.54136e-07
-4.5001e-08
-2.55357e-07
-4.39206e-08
-2.56779e-07
-4.29123e-08
-2.58391e-07
-4.19826e-08
-2.60174e-07
-4.11374e-08
-2.62109e-07
-4.03834e-08
-2.64171e-07
-3.97281e-08
-2.66337e-07
-3.91807e-08
-2.68585e-07
-3.8751e-08
-2.70899e-07
-3.84455e-08
-3.82724e-08
-2.73268e-07
2.78318e-07
-3.7864e-08
2.77654e-07
-3.82839e-08
2.77131e-07
-3.88353e-08
2.76762e-07
-3.95272e-08
2.76567e-07
-4.03588e-08
2.76564e-07
-4.13216e-08
2.76771e-07
-4.24056e-08
2.77203e-07
-4.36003e-08
2.77874e-07
-4.4896e-08
2.78793e-07
-4.6283e-08
2.79965e-07
-4.77522e-08
2.81394e-07
-4.92938e-08
2.8308e-07
-5.08983e-08
2.85024e-07
-5.25556e-08
2.87226e-07
-5.42559e-08
2.8969e-07
-5.59894e-08
2.92419e-07
-5.77473e-08
2.95428e-07
-5.95218e-08
2.98732e-07
-6.13064e-08
3.02359e-07
-6.30956e-08
3.06342e-07
-6.48851e-08
3.10722e-07
-6.66704e-08
3.15547e-07
-6.84451e-08
3.20864e-07
-7.01994e-08
3.26716e-07
-7.19159e-08
3.33133e-07
-7.35671e-08
3.40122e-07
-7.51104e-08
3.47653e-07
-7.6484e-08
3.55647e-07
-7.76033e-08
3.63959e-07
-7.83581e-08
3.72368e-07
-7.86113e-08
3.80562e-07
-7.82016e-08
3.88137e-07
-7.69491e-08
3.94568e-07
-7.46397e-08
3.9926e-07
-7.11064e-08
4.01399e-07
-6.60549e-08
4.00475e-07
-5.98092e-08
3.96103e-07
-5.27036e-08
3.90082e-07
-4.67712e-08
3.79074e-07
-3.67973e-08
3.61987e-07
-2.48642e-08
3.42324e-07
-1.55201e-08
3.20678e-07
-4.88069e-09
2.93058e-07
1.30682e-08
2.50817e-07
4.18366e-08
2.00986e-07
6.17022e-08
1.44487e-07
6.85316e-08
7.70166e-08
7.87503e-08
9.5575e-09
8.42679e-08
-5.37289e-08
8.50463e-08
-1.12258e-07
8.55793e-08
-1.66712e-07
8.55537e-08
-2.11719e-07
7.85705e-08
-2.46364e-07
6.86837e-08
-2.6166e-07
5.02386e-08
-2.65941e-07
2.56546e-08
-2.72138e-07
1.39577e-08
-2.85198e-07
9.14419e-09
-2.97031e-07
-2.49385e-09
-3.07273e-07
-1.2901e-08
-3.16113e-07
-2.13275e-08
-3.24476e-07
-2.7895e-08
-3.29134e-07
-3.68934e-08
-3.30817e-07
-4.46707e-08
-3.29956e-07
-5.13144e-08
-3.27199e-07
-5.65884e-08
-3.23085e-07
-6.06274e-08
-3.18072e-07
-6.35896e-08
-3.12572e-07
-6.55892e-08
-3.06909e-07
-6.67932e-08
-3.01325e-07
-6.73532e-08
-2.95991e-07
-6.74089e-08
-2.91015e-07
-6.70802e-08
-2.8645e-07
-6.64649e-08
-2.82308e-07
-6.56389e-08
-2.78577e-07
-6.46585e-08
-2.75222e-07
-6.35636e-08
-2.72202e-07
-6.23817e-08
-2.69472e-07
-6.11309e-08
-2.66993e-07
-5.9824e-08
-2.64728e-07
-5.84702e-08
-2.62652e-07
-5.70777e-08
-2.60747e-07
-5.56547e-08
-2.59001e-07
-5.42102e-08
-2.57413e-07
-5.27543e-08
-2.55985e-07
-5.12982e-08
-2.54724e-07
-4.98536e-08
-2.53637e-07
-4.84329e-08
-2.52735e-07
-4.70483e-08
-2.52024e-07
-4.57118e-08
-2.5151e-07
-4.44347e-08
-2.51195e-07
-4.3228e-08
-2.51076e-07
-4.21021e-08
-2.51146e-07
-4.10674e-08
-2.51395e-07
-4.01344e-08
-2.51809e-07
-3.9314e-08
-2.52373e-07
-3.86167e-08
-2.53073e-07
-3.80518e-08
-2.53897e-07
-3.76216e-08
-3.73153e-08
-2.54854e-07
2.44914e-07
-3.70951e-08
2.44261e-07
-3.76306e-08
2.43717e-07
-3.82918e-08
2.43288e-07
-3.90984e-08
2.42981e-07
-4.00514e-08
2.42802e-07
-4.1143e-08
2.42758e-07
-4.23619e-08
2.42854e-07
-4.36958e-08
2.4309e-07
-4.51327e-08
2.43469e-07
-4.66615e-08
2.43988e-07
-4.82719e-08
2.4465e-07
-4.9955e-08
2.45454e-07
-5.17031e-08
2.46409e-07
-5.351e-08
2.47524e-07
-5.53714e-08
2.48819e-07
-5.72851e-08
2.50323e-07
-5.92513e-08
2.52074e-07
-6.12726e-08
2.54121e-07
-6.33535e-08
2.56525e-07
-6.54998e-08
2.59356e-07
-6.77164e-08
2.62692e-07
-7.00057e-08
2.6661e-07
-7.23634e-08
2.71186e-07
-7.47747e-08
2.76479e-07
-7.72089e-08
2.82525e-07
-7.96137e-08
2.89324e-07
-8.19094e-08
2.96824e-07
-8.39842e-08
3.04911e-07
-8.56901e-08
3.13395e-07
-8.68424e-08
3.22005e-07
-8.72208e-08
3.30376e-07
-8.6573e-08
3.38044e-07
-8.46164e-08
3.44487e-07
-8.10829e-08
3.4917e-07
-7.57895e-08
3.51859e-07
-6.8744e-08
3.48439e-07
-5.63894e-08
3.4042e-07
-4.46845e-08
3.27868e-07
-3.42197e-08
3.0562e-07
-1.45496e-08
2.70252e-07
1.0504e-08
2.27152e-07
2.75798e-08
1.88044e-07
3.42267e-08
1.49952e-07
5.11604e-08
1.10566e-07
8.12228e-08
6.37692e-08
1.08499e-07
8.27784e-10
1.31473e-07
-7.34954e-08
1.53073e-07
-1.60902e-07
1.71675e-07
-2.27046e-07
1.51189e-07
-2.84247e-07
1.42781e-07
-3.347e-07
1.36006e-07
-3.88276e-07
1.32146e-07
-4.30529e-07
1.10936e-07
-4.46998e-07
6.67081e-08
-4.50959e-07
2.96145e-08
-4.60627e-07
2.36257e-08
-4.88675e-07
3.71925e-08
-5.0282e-07
1.16511e-08
-5.095e-07
-6.22175e-09
-5.0765e-07
-2.31766e-08
-5.00975e-07
-3.45699e-08
-4.91603e-07
-4.62659e-08
-4.77774e-07
-5.84995e-08
-4.6155e-07
-6.75387e-08
-4.44404e-07
-7.3734e-08
-4.26656e-07
-7.83753e-08
-4.08812e-07
-8.14336e-08
-3.9134e-07
-8.30614e-08
-3.74606e-07
-8.35275e-08
-3.58872e-07
-8.30874e-08
-3.44313e-07
-8.19682e-08
-3.31027e-07
-8.03665e-08
-3.19045e-07
-7.84464e-08
-3.08346e-07
-7.63379e-08
-2.98866e-07
-7.41389e-08
-2.90512e-07
-7.1918e-08
-2.83174e-07
-6.97195e-08
-2.76736e-07
-6.75689e-08
-2.71083e-07
-6.54776e-08
-2.66105e-07
-6.34481e-08
-2.61705e-07
-6.14777e-08
-2.57799e-07
-5.95613e-08
-2.54315e-07
-5.76938e-08
-2.51198e-07
-5.58717e-08
-2.48403e-07
-5.40931e-08
-2.45899e-07
-5.23586e-08
-2.4366e-07
-5.06714e-08
-2.41672e-07
-4.90364e-08
-2.39923e-07
-4.74605e-08
-2.38406e-07
-4.59519e-08
-2.37114e-07
-4.45201e-08
-2.3604e-07
-4.31757e-08
-2.35177e-07
-4.19302e-08
-2.34516e-07
-4.07959e-08
-2.34044e-07
-3.97855e-08
-2.33751e-07
-3.89105e-08
-2.33623e-07
-3.81791e-08
-2.33654e-07
-3.75905e-08
-3.71306e-08
-2.33839e-07
2.09654e-07
-3.5692e-08
2.08232e-07
-3.62083e-08
2.06779e-07
-3.68393e-08
2.05283e-07
-3.7602e-08
2.03731e-07
-3.8499e-08
2.0211e-07
-3.95225e-08
2.00408e-07
-4.06601e-08
1.98611e-07
-4.18983e-08
1.96702e-07
-4.3224e-08
1.94666e-07
-4.46258e-08
1.92488e-07
-4.60944e-08
1.90156e-07
-4.76229e-08
1.8766e-07
-4.92066e-08
1.84993e-07
-5.08437e-08
1.82157e-07
-5.25351e-08
1.79156e-07
-5.42846e-08
1.76003e-07
-5.60984e-08
1.72716e-07
-5.79848e-08
1.69315e-07
-5.99533e-08
1.65828e-07
-6.20126e-08
1.6228e-07
-6.41683e-08
1.58694e-07
-6.64198e-08
1.55087e-07
-6.87562e-08
1.51462e-07
-7.11505e-08
1.47808e-07
-7.35546e-08
1.44089e-07
-7.58949e-08
1.40248e-07
-7.80684e-08
1.36204e-07
-7.99395e-08
1.31854e-07
-8.13408e-08
1.2709e-07
-8.20785e-08
1.2181e-07
-8.19403e-08
1.15941e-07
-8.07039e-08
1.09458e-07
-7.81342e-08
1.02303e-07
-7.39278e-08
9.23729e-08
-6.58589e-08
8.32588e-08
-5.96298e-08
7.7591e-08
-5.07215e-08
6.69068e-08
-3.40001e-08
4.91264e-08
-1.64392e-08
3.58507e-08
-1.27367e-09
2.91451e-08
1.72097e-08
1.87707e-08
3.79544e-08
4.38019e-09
4.86173e-08
8.43767e-09
4.7103e-08
2.56277e-08
6.40329e-08
4.01387e-08
9.39877e-08
3.91016e-08
1.3251e-07
3.24313e-08
1.59744e-07
3.33937e-08
1.70713e-07
1.24436e-09
1.83339e-07
-3.25295e-08
1.76555e-07
-6.52786e-08
1.68756e-07
-8.13269e-08
1.48195e-07
-8.68723e-08
1.16482e-07
-9.67538e-08
7.65898e-08
-1.0289e-07
3.57509e-08
-1.16042e-07
3.67773e-08
-1.28503e-07
4.9654e-08
-1.49381e-07
3.25285e-08
-1.66286e-07
1.06833e-08
-1.81927e-07
-7.53524e-09
-1.92878e-07
-2.3619e-08
-1.9889e-07
-4.02531e-08
-2.04834e-07
-5.25555e-08
-2.08901e-07
-6.34723e-08
-2.13013e-07
-6.9622e-08
-2.13993e-07
-7.73953e-08
-2.13688e-07
-8.17378e-08
-2.12347e-07
-8.44026e-08
-2.10234e-07
-8.56409e-08
-2.07624e-07
-8.56969e-08
-2.04781e-07
-8.48117e-08
-2.01929e-07
-8.32179e-08
-1.99247e-07
-8.11285e-08
-1.96859e-07
-7.87262e-08
-1.94839e-07
-7.61586e-08
-1.9322e-07
-7.35373e-08
-1.91999e-07
-7.09401e-08
-1.91152e-07
-6.84163e-08
-1.90636e-07
-6.5993e-08
-1.90404e-07
-6.36808e-08
-1.90402e-07
-6.14797e-08
-1.9058e-07
-5.93831e-08
-1.90892e-07
-5.73814e-08
-1.913e-07
-5.54643e-08
-1.91771e-07
-5.36226e-08
-1.9228e-07
-5.18493e-08
-1.92812e-07
-5.014e-08
-1.93355e-07
-4.84931e-08
-1.93906e-07
-4.69099e-08
-1.94463e-07
-4.53943e-08
-1.95031e-07
-4.39528e-08
-1.95613e-07
-4.25941e-08
-1.96214e-07
-4.1329e-08
-1.9684e-07
-4.01701e-08
-1.97495e-07
-3.91306e-08
-1.98183e-07
-3.82226e-08
-1.98909e-07
-3.74537e-08
-1.99678e-07
-3.68217e-08
-3.63097e-08
-2.00499e-07
1.7075e-07
-3.31408e-08
1.68003e-07
-3.34612e-08
1.65024e-07
-3.38601e-08
1.61782e-07
-3.43602e-08
1.58248e-07
-3.49651e-08
1.54393e-07
-3.56676e-08
1.50188e-07
-3.64552e-08
1.45604e-07
-3.73141e-08
1.40611e-07
-3.82306e-08
1.35178e-07
-3.91931e-08
1.29276e-07
-4.01922e-08
1.22874e-07
-4.12208e-08
1.15941e-07
-4.22741e-08
1.08447e-07
-4.33496e-08
1.00359e-07
-4.44468e-08
9.1641e-08
-4.55668e-08
8.22549e-08
-4.67123e-08
7.21565e-08
-4.78865e-08
6.12952e-08
-4.9092e-08
4.96123e-08
-5.03298e-08
3.70412e-08
-5.15972e-08
2.35073e-08
-5.28859e-08
8.93057e-09
-5.41794e-08
-6.76963e-09
-5.54502e-08
-2.36668e-08
-5.66573e-08
-4.18183e-08
-5.77432e-08
-6.12533e-08
-5.86333e-08
-8.19562e-08
-5.92364e-08
-1.03848e-07
-5.94489e-08
-1.26764e-07
-5.91621e-08
-1.50433e-07
-5.82715e-08
-1.74451e-07
-5.66858e-08
-1.98237e-07
-5.43483e-08
-2.20965e-07
-5.11996e-08
-2.38326e-07
-4.84977e-08
-2.58811e-07
-3.91455e-08
-2.7855e-07
-3.09821e-08
-2.90343e-07
-2.22069e-08
-2.93506e-07
-1.32764e-08
-2.90049e-07
-4.73073e-09
-2.76612e-07
3.77315e-09
-2.48294e-07
9.63592e-09
-2.01088e-07
1.41118e-09
-1.63581e-07
9.59665e-09
-1.22628e-07
2.30792e-08
-8.47887e-08
5.61486e-08
-2.90115e-08
7.67329e-08
1.6277e-08
1.14455e-07
4.13924e-08
1.45597e-07
5.0019e-08
1.74712e-07
4.83458e-08
1.78228e-07
6.14884e-08
1.55613e-07
8.27924e-08
1.26891e-07
1.16597e-07
8.26772e-08
1.36713e-07
5.64744e-08
1.40186e-07
3.22773e-08
1.56795e-07
2.01685e-08
2.02517e-07
3.93242e-09
2.29515e-07
5.5302e-09
2.46298e-07
-6.0995e-09
2.50673e-07
-1.19106e-08
2.46146e-07
-1.90921e-08
2.32968e-07
-2.70746e-08
2.16376e-07
-3.59641e-08
1.96568e-07
-4.36634e-08
1.79631e-07
-5.26851e-08
1.58558e-07
-5.63222e-08
1.36659e-07
-5.98384e-08
1.14737e-07
-6.24805e-08
9.33643e-08
-6.42683e-08
7.29122e-08
-6.52447e-08
5.35917e-08
-6.5491e-08
3.54986e-08
-6.51247e-08
1.86505e-08
-6.42804e-08
3.0151e-09
-6.30907e-08
-1.14698e-08
-6.16737e-08
-2.48815e-08
-6.01256e-08
-3.73022e-08
-5.85194e-08
-4.88125e-08
-5.6906e-08
-5.94871e-08
-5.53182e-08
-6.93932e-08
-5.37747e-08
-7.8589e-08
-5.22838e-08
-8.71247e-08
-5.08472e-08
-9.50436e-08
-4.94623e-08
-1.02383e-07
-4.81245e-08
-1.09177e-07
-4.68287e-08
-1.15455e-07
-4.55706e-08
-1.21248e-07
-4.43472e-08
-1.26583e-07
-4.31579e-08
-1.31489e-07
-4.20038e-08
-1.35995e-07
-4.08889e-08
-1.40128e-07
-3.98191e-08
-1.43919e-07
-3.88029e-08
-1.47397e-07
-3.78513e-08
-1.5059e-07
-3.6977e-08
-1.53527e-07
-3.61935e-08
-1.56236e-07
-3.55131e-08
-1.58746e-07
-3.49435e-08
-1.61086e-07
-3.44819e-08
-3.41089e-08
-1.63287e-07
1.39146e-07
-3.0015e-08
1.3574e-07
-3.00557e-08
1.32024e-07
-3.01441e-08
1.27966e-07
-3.03024e-08
1.23538e-07
-3.05372e-08
1.18714e-07
-3.08446e-08
1.13474e-07
-3.12146e-08
1.07794e-07
-3.16347e-08
1.01656e-07
-3.20927e-08
9.50401e-08
-3.25772e-08
8.79263e-08
-3.30785e-08
8.02937e-08
-3.35883e-08
7.21191e-08
-3.40996e-08
6.33761e-08
-3.46065e-08
5.40335e-08
-3.51042e-08
4.40549e-08
-3.55883e-08
3.33969e-08
-3.60545e-08
2.20088e-08
-3.64985e-08
9.83197e-09
-3.69154e-08
-3.19925e-09
-3.72987e-08
-1.71561e-08
-3.76405e-08
-3.21116e-08
-3.79306e-08
-4.81345e-08
-3.81567e-08
-6.52812e-08
-3.83036e-08
-8.35864e-08
-3.83522e-08
-1.0305e-07
-3.82794e-08
-1.23626e-07
-3.80572e-08
-1.45209e-07
-3.76536e-08
-1.67625e-07
-3.70337e-08
-1.90625e-07
-3.61613e-08
-2.13895e-07
-3.50023e-08
-2.37053e-07
-3.35279e-08
-2.59689e-07
-3.17125e-08
-2.81389e-07
-2.94993e-08
-3.03716e-07
-2.6171e-08
-3.20469e-07
-2.23928e-08
-3.33339e-07
-1.81119e-08
-3.41414e-07
-1.41319e-08
-3.44345e-07
-1.03449e-08
-3.41771e-07
-7.30512e-09
-3.32291e-07
-5.70706e-09
-3.1525e-07
-7.40449e-09
-3.02346e-07
-1.14927e-08
-2.79742e-07
-1.30079e-08
-2.38707e-07
-1.79557e-08
-1.95181e-07
1.26229e-08
-1.6058e-07
4.21317e-08
-1.10815e-07
6.46903e-08
-4.91602e-08
8.39424e-08
2.84964e-08
9.70557e-08
1.07968e-07
9.87568e-08
1.78554e-07
8.50264e-08
2.39549e-07
6.58955e-08
2.79775e-07
4.24513e-08
3.18952e-07
1.7298e-08
3.5641e-07
-5.18094e-09
3.79965e-07
-3.38696e-09
3.89653e-07
-5.75515e-09
4.01685e-07
-6.5014e-09
4.03758e-07
-8.1725e-09
4.02789e-07
-1.09422e-08
3.97038e-07
-1.33409e-08
3.8655e-07
-1.65869e-08
3.71004e-07
-2.04179e-08
3.51874e-07
-2.45338e-08
3.27393e-07
-2.82042e-08
3.02554e-07
-3.14828e-08
2.76624e-07
-3.39089e-08
2.50126e-07
-3.59822e-08
2.23576e-07
-3.77183e-08
1.97431e-07
-3.90995e-08
1.72072e-07
-4.01315e-08
1.4779e-07
-4.0843e-08
1.24786e-07
-4.12767e-08
1.03176e-07
-4.14802e-08
8.30014e-08
-4.14992e-08
6.42497e-08
-4.13739e-08
4.68676e-08
-4.11372e-08
3.07766e-08
-4.08151e-08
1.58858e-08
-4.04274e-08
2.10026e-09
-3.99892e-08
-1.06717e-08
-3.95118e-08
-2.25153e-08
-3.90036e-08
-3.35073e-08
-3.84704e-08
-4.37151e-08
-3.79168e-08
-5.3197e-08
-3.73469e-08
-6.20035e-08
-3.67642e-08
-7.01779e-08
-3.61729e-08
-7.77584e-08
-3.55775e-08
-8.4779e-08
-3.49835e-08
-9.12705e-08
-3.43975e-08
-9.7262e-08
-3.38277e-08
-1.02782e-07
-3.32833e-08
-1.07858e-07
-3.27756e-08
-1.12518e-07
-3.23166e-08
-1.16793e-07
-3.19189e-08
-1.20713e-07
-3.15932e-08
-1.24312e-07
-3.1345e-08
-1.27624e-07
-3.117e-08
-3.10464e-08
-1.30686e-07
1.13181e-07
-2.68239e-08
1.09729e-07
-2.66032e-08
1.05988e-07
-2.64039e-08
1.01939e-07
-2.62532e-08
9.75646e-08
-2.61629e-08
9.28539e-08
-2.61341e-08
8.78007e-08
-2.61615e-08
8.24022e-08
-2.62364e-08
7.6658e-08
-2.63488e-08
7.05694e-08
-2.64888e-08
6.41378e-08
-2.66471e-08
5.73643e-08
-2.6815e-08
5.0249e-08
-2.69843e-08
4.279e-08
-2.71477e-08
3.49838e-08
-2.72981e-08
2.68242e-08
-2.74288e-08
1.83031e-08
-2.75334e-08
9.41012e-09
-2.76055e-08
1.33512e-10
-2.76388e-08
-9.53854e-09
-2.76267e-08
-1.96163e-08
-2.75628e-08
-3.01065e-08
-2.74403e-08
-4.10108e-08
-2.72525e-08
-5.23216e-08
-2.69928e-08
-6.40191e-08
-2.66548e-08
-7.60666e-08
-2.62319e-08
-8.84067e-08
-2.57171e-08
-1.00957e-07
-2.51029e-08
-1.13611e-07
-2.43806e-08
-1.26232e-07
-2.35403e-08
-1.38663e-07
-2.25713e-08
-1.50728e-07
-2.14622e-08
-1.62239e-07
-2.02019e-08
-1.72958e-07
-1.87796e-08
-1.81939e-07
-1.71902e-08
-1.88874e-07
-1.54574e-08
-1.9335e-07
-1.36361e-08
-1.95697e-07
-1.17849e-08
-1.96001e-07
-1.00406e-08
-1.9474e-07
-8.56625e-09
-1.9286e-07
-7.58698e-09
-1.92919e-07
-7.34635e-09
-1.96484e-07
-7.92743e-09
-2.00435e-07
-9.05609e-09
-2.10469e-07
-7.92155e-09
-1.98873e-07
1.02643e-09
-1.67536e-07
1.07946e-08
-1.21318e-07
1.84732e-08
-6.14229e-08
2.40472e-08
8.61794e-09
2.7015e-08
8.07986e-08
2.65762e-08
1.42877e-07
2.29477e-08
1.9207e-07
1.67032e-08
2.25005e-07
9.51642e-09
2.4021e-07
2.09234e-09
2.38957e-07
-3.92779e-09
2.38342e-07
-2.77157e-09
2.34134e-07
-1.54735e-09
2.29664e-07
-2.03152e-09
2.2538e-07
-3.88851e-09
2.20891e-07
-6.45226e-09
2.16738e-07
-9.18772e-09
2.12037e-07
-1.18863e-08
2.06068e-07
-1.44487e-08
1.98338e-07
-1.6804e-08
1.89049e-07
-1.8915e-08
1.7834e-07
-2.07738e-08
1.66821e-07
-2.23898e-08
1.54626e-07
-2.3787e-08
1.41897e-07
-2.49892e-08
1.28816e-07
-2.60181e-08
1.15578e-07
-2.68931e-08
1.02367e-07
-2.76315e-08
8.93383e-08
-2.82481e-08
7.66134e-08
-2.8755e-08
6.42767e-08
-2.91623e-08
5.23819e-08
-2.94788e-08
4.09572e-08
-2.97123e-08
3.00122e-08
-2.98699e-08
1.95438e-08
-2.99587e-08
9.54063e-09
-2.99859e-08
-1.27787e-11
-2.99583e-08
-9.13367e-09
-2.98826e-08
-1.78383e-08
-2.97657e-08
-2.6141e-08
-2.96141e-08
-3.40537e-08
-2.9434e-08
-4.15861e-08
-2.92317e-08
-4.87453e-08
-2.90136e-08
-5.55365e-08
-2.87861e-08
-6.19633e-08
-2.85565e-08
-6.80283e-08
-2.83324e-08
-7.37336e-08
-2.81222e-08
-7.9082e-08
-2.79349e-08
-8.40772e-08
-2.77802e-08
-8.87254e-08
-2.76682e-08
-9.30362e-08
-2.76081e-08
-9.70231e-08
-2.76062e-08
-1.00705e-07
-2.76634e-08
-1.04104e-07
-2.77706e-08
-2.79056e-08
-1.07245e-07
9.27433e-08
-2.39275e-08
8.9627e-08
-2.34867e-08
8.62766e-08
-2.30535e-08
8.26819e-08
-2.26584e-08
7.88377e-08
-2.23185e-08
7.47448e-08
-2.20411e-08
7.04091e-08
-2.18258e-08
6.58406e-08
-2.16679e-08
6.10519e-08
-2.15599e-08
5.60568e-08
-2.14936e-08
5.08698e-08
-2.146e-08
4.55053e-08
-2.14504e-08
3.99773e-08
-2.14563e-08
3.42995e-08
-2.14699e-08
2.84851e-08
-2.14836e-08
2.25473e-08
-2.14909e-08
1.64994e-08
-2.14854e-08
1.03555e-08
-2.14614e-08
4.1309e-09
-2.14139e-08
-2.15756e-09
-2.1338e-08
-8.49078e-09
-2.12294e-08
-1.4847e-08
-2.10839e-08
-2.12016e-08
-2.08979e-08
-2.75263e-08
-2.0668e-08
-3.37899e-08
-2.03912e-08
-3.99567e-08
-2.0065e-08
-4.59867e-08
-1.96872e-08
-5.18337e-08
-1.92559e-08
-5.74445e-08
-1.87697e-08
-6.27571e-08
-1.82276e-08
-6.76994e-08
-1.76288e-08
-7.21887e-08
-1.6973e-08
-7.61304e-08
-1.62601e-08
-7.94186e-08
-1.54913e-08
-8.19392e-08
-1.46695e-08
-8.35974e-08
-1.37991e-08
-8.43422e-08
-1.28912e-08
-8.41701e-08
-1.1957e-08
-8.32007e-08
-1.10098e-08
-8.17033e-08
-1.00636e-08
-8.01616e-08
-9.12863e-09
-7.93043e-08
-8.20361e-09
-7.99674e-08
-7.26428e-09
-8.27845e-08
-6.23896e-09
-8.56697e-08
-5.03635e-09
-8.10611e-08
-3.58215e-09
-6.81724e-08
-2.09405e-09
-4.89153e-08
-7.83816e-10
-2.50861e-08
2.1802e-10
1.1956e-09
7.3347e-10
2.70332e-08
7.38735e-10
4.97488e-08
2.32242e-10
6.72039e-08
-7.51839e-10
7.87099e-08
-1.98955e-09
8.41568e-08
-3.35459e-09
8.49197e-08
-4.69069e-09
8.80156e-08
-5.86748e-09
9.34502e-08
-6.98195e-09
9.95073e-08
-8.08861e-09
1.04829e-07
-9.2103e-09
1.0871e-07
-1.03331e-08
1.10968e-07
-1.14455e-08
1.11619e-07
-1.25368e-08
1.10768e-07
-1.35977e-08
1.08583e-07
-1.46188e-08
1.0526e-07
-1.55921e-08
1.00996e-07
-1.65099e-08
9.5976e-08
-1.73694e-08
9.03575e-08
-1.81684e-08
8.42742e-08
-1.89058e-08
7.78373e-08
-1.95812e-08
7.11386e-08
-2.01943e-08
6.42528e-08
-2.07458e-08
5.72412e-08
-2.12365e-08
5.0154e-08
-2.16678e-08
4.30332e-08
-2.20416e-08
3.59144e-08
-2.23601e-08
2.88283e-08
-2.26261e-08
2.1801e-08
-2.28427e-08
1.48556e-08
-2.30134e-08
8.0116e-09
-2.3142e-08
1.28589e-09
-2.32327e-08
-5.30693e-09
-2.32899e-08
-1.17545e-08
-2.33183e-08
-1.80459e-08
-2.33228e-08
-2.41714e-08
-2.33087e-08
-3.01214e-08
-2.3282e-08
-3.58862e-08
-2.3249e-08
-4.1456e-08
-2.32166e-08
-4.68203e-08
-2.31924e-08
-5.19683e-08
-2.31846e-08
-5.68889e-08
-2.32017e-08
-6.15712e-08
-2.32527e-08
-6.6005e-08
-2.33465e-08
-7.01823e-08
-2.3491e-08
-7.40979e-08
-2.36924e-08
-7.77516e-08
-2.39525e-08
-8.11483e-08
-2.42667e-08
-8.42985e-08
-2.46204e-08
-2.49861e-08
-8.72179e-08
7.6809e-08
-2.15189e-08
7.42284e-08
-2.09065e-08
7.14719e-08
-2.02971e-08
6.85372e-08
-1.97239e-08
6.54274e-08
-1.92089e-08
6.21499e-08
-1.87638e-08
5.87164e-08
-1.83924e-08
5.51408e-08
-1.80924e-08
5.14387e-08
-1.78579e-08
4.7626e-08
-1.7681e-08
4.37182e-08
-1.75524e-08
3.97302e-08
-1.74626e-08
3.56759e-08
-1.74021e-08
3.1568e-08
-1.73622e-08
2.74189e-08
-1.73347e-08
2.32401e-08
-1.73122e-08
1.90431e-08
-1.72884e-08
1.48392e-08
-1.72577e-08
1.06404e-08
-1.72152e-08
6.4594e-09
-1.7157e-08
2.30983e-09
-1.70798e-08
-1.79317e-09
-1.69809e-08
-5.833e-09
-1.6858e-08
-9.79137e-09
-1.67095e-08
-1.36483e-08
-1.65342e-08
-1.73821e-08
-1.63312e-08
-2.09692e-08
-1.61e-08
-2.43844e-08
-1.58407e-08
-2.76006e-08
-1.55536e-08
-3.05888e-08
-1.52394e-08
-3.33183e-08
-1.48993e-08
-3.57562e-08
-1.45351e-08
-3.78676e-08
-1.41486e-08
-3.96164e-08
-1.37425e-08
-4.09657e-08
-1.332e-08
-4.188e-08
-1.28847e-08
-4.23303e-08
-1.24408e-08
-4.22944e-08
-1.19929e-08
-4.17586e-08
-1.15455e-08
-4.07195e-08
-1.11027e-08
-3.91808e-08
-1.06672e-08
-3.7145e-08
-1.02394e-08
-3.45934e-08
-9.81579e-09
-3.14427e-08
-9.38957e-09
-2.75233e-08
-8.95575e-09
-2.25897e-08
-8.51563e-09
-1.65793e-08
-8.10448e-09
-9.60321e-09
-7.75981e-09
-1.87271e-09
-7.51242e-09
6.24552e-09
-7.38468e-09
1.43728e-08
-7.38849e-09
2.21277e-08
-7.52252e-09
2.9146e-08
-7.76997e-09
3.52623e-08
-8.10575e-09
4.04079e-08
-8.50009e-09
4.46444e-08
-8.92715e-09
4.81474e-08
-9.37033e-09
5.09987e-08
-9.83329e-09
5.32306e-08
-1.03204e-08
5.4853e-08
-1.08328e-08
5.58856e-08
-1.13657e-08
5.63522e-08
-1.19122e-08
5.62801e-08
-1.24647e-08
5.56982e-08
-1.30159e-08
5.46385e-08
-1.35591e-08
5.31352e-08
-1.40887e-08
5.1225e-08
-1.45998e-08
4.89441e-08
-1.50885e-08
4.63275e-08
-1.55517e-08
4.34089e-08
-1.59871e-08
4.02207e-08
-1.63928e-08
3.67941e-08
-1.67676e-08
3.3159e-08
-1.71107e-08
2.9344e-08
-1.74214e-08
2.53763e-08
-1.77e-08
2.12812e-08
-1.79465e-08
1.70829e-08
-1.81617e-08
1.28033e-08
-1.83465e-08
8.46306e-09
-1.85024e-08
4.08072e-09
-1.86309e-08
-3.26807e-10
-1.87344e-08
-4.74427e-09
-1.88151e-08
-9.15782e-09
-1.88763e-08
-1.35547e-08
-1.89213e-08
-1.79228e-08
-1.89545e-08
-2.22507e-08
-1.89807e-08
-2.65271e-08
-1.90056e-08
-3.07402e-08
-1.90357e-08
-3.48781e-08
-1.90786e-08
-3.89281e-08
-1.91425e-08
-4.28763e-08
-1.92363e-08
-4.67082e-08
-1.93698e-08
-5.04085e-08
-1.95524e-08
-5.39618e-08
-1.97931e-08
-5.73535e-08
-2.00993e-08
-6.05709e-08
-2.04749e-08
-6.36049e-08
-2.09185e-08
-6.64508e-08
-2.14208e-08
-6.91089e-08
-2.19623e-08
-2.25121e-08
-7.15829e-08
6.07214e-08
-1.95576e-08
5.86326e-08
-1.88177e-08
5.642e-08
-1.80843e-08
5.40891e-08
-1.7393e-08
5.16489e-08
-1.67687e-08
4.91112e-08
-1.62259e-08
4.64893e-08
-1.57702e-08
4.37975e-08
-1.54003e-08
4.10499e-08
-1.51102e-08
3.82603e-08
-1.48913e-08
3.54413e-08
-1.47332e-08
3.26041e-08
-1.46253e-08
2.97595e-08
-1.45573e-08
2.69169e-08
-1.45195e-08
2.40852e-08
-1.45029e-08
2.12731e-08
-1.45e-08
1.84888e-08
-1.45041e-08
1.57408e-08
-1.45096e-08
1.30375e-08
-1.45118e-08
1.03877e-08
-1.45072e-08
7.8007e-09
-1.44927e-08
5.28608e-09
-1.44662e-08
2.85408e-09
-1.44259e-08
5.15465e-10
-1.43708e-08
-1.71849e-09
-1.43001e-08
-3.83604e-09
-1.42134e-08
-5.82504e-09
-1.41108e-08
-7.67312e-09
-1.39924e-08
-9.36776e-09
-1.38587e-08
-1.08966e-08
-1.37105e-08
-1.22474e-08
-1.35485e-08
-1.34085e-08
-1.33739e-08
-1.4369e-08
-1.3188e-08
-1.51192e-08
-1.29924e-08
-1.56506e-08
-1.27886e-08
-1.59568e-08
-1.25786e-08
-1.60332e-08
-1.23643e-08
-1.58781e-08
-1.21479e-08
-1.54918e-08
-1.19317e-08
-1.48765e-08
-1.17179e-08
-1.40347e-08
-1.15089e-08
-1.29673e-08
-1.13068e-08
-1.16691e-08
-1.11139e-08
-1.0126e-08
-1.09326e-08
-8.31603e-09
-1.07657e-08
-6.2145e-09
-1.06171e-08
-3.82694e-09
-1.04921e-08
-1.19077e-09
-1.0396e-08
1.6308e-09
-1.0334e-08
4.55599e-09
-1.03099e-08
7.49329e-09
-1.03258e-08
1.03526e-08
-1.03818e-08
1.30587e-08
-1.04761e-08
1.55582e-08
-1.06051e-08
1.78227e-08
-1.07645e-08
1.98452e-08
-1.09496e-08
2.16312e-08
-1.11562e-08
2.3179e-08
-1.13811e-08
2.44797e-08
-1.16211e-08
2.55203e-08
-1.18734e-08
2.62898e-08
-1.21351e-08
2.6781e-08
-1.24033e-08
2.69916e-08
-1.26752e-08
2.69237e-08
-1.29479e-08
2.65836e-08
-1.32188e-08
2.59805e-08
-1.34855e-08
2.51264e-08
-1.37455e-08
2.40349e-08
-1.39968e-08
2.27209e-08
-1.42375e-08
2.11998e-08
-1.44659e-08
1.94877e-08
-1.46805e-08
1.76004e-08
-1.48802e-08
1.55538e-08
-1.50639e-08
1.33632e-08
-1.52308e-08
1.10436e-08
-1.53803e-08
8.60944e-09
-1.55123e-08
6.07434e-09
-1.56266e-08
3.45122e-09
-1.57234e-08
7.52177e-10
-1.58034e-08
-2.01149e-09
-1.58673e-08
-4.82928e-09
-1.59166e-08
-7.69141e-09
-1.59531e-08
-1.05887e-08
-1.5979e-08
-1.35126e-08
-1.59976e-08
-1.64546e-08
-1.60126e-08
-1.94067e-08
-1.60287e-08
-2.23605e-08
-1.60518e-08
-2.53076e-08
-1.60887e-08
-2.82389e-08
-1.61474e-08
-3.11446e-08
-1.62369e-08
-3.40139e-08
-1.63671e-08
-3.68349e-08
-1.65489e-08
-3.95947e-08
-1.67927e-08
-4.22795e-08
-1.71084e-08
-4.48755e-08
-1.75033e-08
-4.73698e-08
-1.79807e-08
-4.97512e-08
-1.85372e-08
-5.2011e-08
-1.91609e-08
-5.41442e-08
-1.98292e-08
-2.05086e-08
-5.61476e-08
4.4088e-08
-1.80104e-08
4.24718e-08
-1.72013e-08
4.07946e-08
-1.64072e-08
3.90659e-08
-1.56643e-08
3.72954e-08
-1.49983e-08
3.54931e-08
-1.44237e-08
3.36687e-08
-1.39459e-08
3.1831e-08
-1.35628e-08
2.99877e-08
-1.32671e-08
2.81452e-08
-1.30488e-08
2.63085e-08
-1.28966e-08
2.44818e-08
-1.27988e-08
2.26688e-08
-1.27444e-08
2.08726e-08
-1.27233e-08
1.90963e-08
-1.27266e-08
1.73431e-08
-1.27467e-08
1.56162e-08
-1.27771e-08
1.39193e-08
-1.28126e-08
1.22565e-08
-1.2849e-08
1.06321e-08
-1.28829e-08
9.05114e-09
-1.29117e-08
7.5186e-09
-1.29336e-08
6.04e-09
-1.29472e-08
4.62107e-09
-1.29518e-08
3.26776e-09
-1.29467e-08
1.98619e-09
-1.29318e-08
7.82602e-10
-1.29071e-08
-3.36725e-10
-1.2873e-08
-1.36551e-09
-1.28299e-08
-2.29757e-09
-1.27784e-08
-3.12693e-09
-1.27191e-08
-3.84789e-09
-1.2653e-08
-4.45517e-09
-1.25808e-08
-4.944e-09
-1.25036e-08
-5.31023e-09
-1.24224e-08
-5.55048e-09
-1.23383e-08
-5.66222e-09
-1.22525e-08
-5.64387e-09
-1.21663e-08
-5.49489e-09
-1.20807e-08
-5.2158e-09
-1.1997e-08
-4.80819e-09
-1.19164e-08
-4.2747e-09
-1.18402e-08
-3.61898e-09
-1.17695e-08
-2.84585e-09
-1.17056e-08
-1.96174e-09
-1.16497e-08
-9.75563e-10
-1.16033e-08
1.00033e-10
-1.15676e-08
1.24823e-09
-1.15442e-08
2.44839e-09
-1.15342e-08
3.67697e-09
-1.15385e-08
4.9088e-09
-1.15577e-08
6.11863e-09
-1.15917e-08
7.28276e-09
-1.16403e-08
8.3802e-09
-1.17027e-08
9.39336e-09
-1.17778e-08
1.03082e-08
-1.18645e-08
1.11134e-08
-1.19616e-08
1.18e-08
-1.20677e-08
1.23606e-08
-1.21817e-08
1.27893e-08
-1.23022e-08
1.3082e-08
-1.24278e-08
1.32357e-08
-1.25572e-08
1.32491e-08
-1.26887e-08
1.31222e-08
-1.28212e-08
1.28562e-08
-1.2953e-08
1.24536e-08
-1.3083e-08
1.19176e-08
-1.32097e-08
1.12526e-08
-1.3332e-08
1.04636e-08
-1.34487e-08
9.55628e-09
-1.35587e-08
8.53683e-09
-1.36612e-08
7.41179e-09
-1.37552e-08
6.188e-09
-1.38401e-08
4.87242e-09
-1.39152e-08
3.47212e-09
-1.398e-08
1.99411e-09
-1.40342e-08
4.45313e-10
-1.40777e-08
-1.16753e-09
-1.41105e-08
-2.83788e-09
-1.4133e-08
-4.55947e-09
-1.41457e-08
-6.32632e-09
-1.41498e-08
-8.13271e-09
-1.41467e-08
-9.97323e-09
-1.41385e-08
-1.18427e-08
-1.41281e-08
-1.37363e-08
-1.4119e-08
-1.56492e-08
-1.41158e-08
-1.75769e-08
-1.41242e-08
-1.95145e-08
-1.4151e-08
-2.14574e-08
-1.42045e-08
-2.34003e-08
-1.42939e-08
-2.53375e-08
-1.44298e-08
-2.72628e-08
-1.46235e-08
-2.91691e-08
-1.48863e-08
-3.10488e-08
-1.52287e-08
-3.28936e-08
-1.56584e-08
-3.46954e-08
-1.61788e-08
-3.64462e-08
-1.67863e-08
-3.8139e-08
-1.74681e-08
-3.97675e-08
-1.82006e-08
-1.89498e-08
-4.13262e-08
2.55745e-08
-1.68749e-08
2.44441e-08
-1.60709e-08
2.3327e-08
-1.52902e-08
2.2229e-08
-1.45662e-08
2.11536e-08
-1.39228e-08
2.01029e-08
-1.3373e-08
1.90774e-08
-1.29206e-08
1.80768e-08
-1.25623e-08
1.70995e-08
-1.22899e-08
1.61433e-08
-1.20926e-08
1.52055e-08
-1.19587e-08
1.42835e-08
-1.18767e-08
1.3375e-08
-1.18358e-08
1.24783e-08
-1.18265e-08
1.15924e-08
-1.18407e-08
1.07171e-08
-1.18713e-08
9.85278e-09
-1.19128e-08
9.00071e-09
-1.19605e-08
8.16262e-09
-1.20108e-08
7.34078e-09
-1.20609e-08
6.53792e-09
-1.21087e-08
5.75713e-09
-1.21528e-08
5.00176e-09
-1.21919e-08
4.27535e-09
-1.22254e-08
3.58154e-09
-1.22529e-08
2.92396e-09
-1.22742e-08
2.30622e-09
-1.22894e-08
1.73175e-09
-1.22985e-08
1.20384e-09
-1.23019e-08
7.25512e-10
-1.22999e-08
2.9954e-10
-1.2293e-08
-7.16364e-11
-1.22816e-08
-3.85932e-10
-1.22663e-08
-6.41663e-10
-1.22477e-08
-8.37583e-10
-1.22264e-08
-9.72918e-10
-1.22029e-08
-1.0474e-09
-1.2178e-08
-1.06129e-09
-1.21524e-08
-1.01538e-09
-1.21266e-08
-9.11024e-10
-1.21014e-08
-7.50116e-10
-1.20774e-08
-5.35104e-10
-1.20553e-08
-2.68998e-10
-1.20357e-08
4.45875e-11
-1.20193e-08
4.01358e-10
-1.20066e-08
7.96225e-10
-1.19982e-08
1.22317e-09
-1.19946e-08
1.67525e-09
-1.19963e-08
2.14465e-09
-1.20036e-08
2.62294e-09
-1.20168e-08
3.10133e-09
-1.20361e-08
3.57096e-09
-1.20614e-08
4.02327e-09
-1.20926e-08
4.45016e-09
-1.21296e-08
4.84425e-09
-1.21719e-08
5.19889e-09
-1.22191e-08
5.50817e-09
-1.22708e-08
5.76686e-09
-1.23264e-08
5.97041e-09
-1.23852e-08
6.11494e-09
-1.24467e-08
6.19725e-09
-1.25101e-08
6.21488e-09
-1.25747e-08
6.16609e-09
-1.26399e-08
6.0498e-09
-1.27048e-08
5.86566e-09
-1.27688e-08
5.61391e-09
-1.28311e-08
5.2954e-09
-1.2891e-08
4.91148e-09
-1.29479e-08
4.464e-09
-1.3001e-08
3.95521e-09
-1.30498e-08
3.3877e-09
-1.30935e-08
2.76438e-09
-1.31318e-08
2.08843e-09
-1.3164e-08
1.36319e-09
-1.31898e-08
5.92181e-10
-1.32089e-08
-2.20977e-10
-1.3221e-08
-1.07261e-09
-1.3226e-08
-1.95902e-09
-1.32241e-08
-2.87654e-09
-1.32154e-08
-3.82158e-09
-1.32007e-08
-4.79069e-09
-1.31807e-08
-5.78056e-09
-1.31568e-08
-6.78814e-09
-1.3131e-08
-7.81066e-09
-1.31056e-08
-8.84567e-09
-1.3084e-08
-9.89111e-09
-1.30704e-08
-1.09453e-08
-1.30701e-08
-1.20071e-08
-1.30894e-08
-1.30756e-08
-1.3136e-08
-1.41505e-08
-1.32191e-08
-1.52316e-08
-1.33487e-08
-1.63193e-08
-1.3536e-08
-1.74137e-08
-1.3792e-08
-1.85151e-08
-1.41274e-08
-1.96236e-08
-1.455e-08
-2.07388e-08
-1.50637e-08
-2.18598e-08
-1.56654e-08
-2.29848e-08
-1.63431e-08
-2.41106e-08
-1.70749e-08
-1.78292e-08
-2.52312e-08
9.17769e-09
-1.61808e-08
8.56201e-09
-1.54553e-08
8.02566e-09
-1.47538e-08
7.56481e-09
-1.41053e-08
7.17219e-09
-1.35301e-08
6.83821e-09
-1.3039e-08
6.55201e-09
-1.26344e-08
6.30238e-09
-1.23126e-08
6.07857e-09
-1.2066e-08
5.87082e-09
-1.18848e-08
5.67075e-09
-1.17586e-08
5.47146e-09
-1.16773e-08
5.26761e-09
-1.16319e-08
5.05535e-09
-1.16142e-08
4.83222e-09
-1.16175e-08
4.59701e-09
-1.16361e-08
4.34961e-09
-1.16654e-08
4.0908e-09
-1.17017e-08
3.82208e-09
-1.17421e-08
3.54549e-09
-1.17843e-08
3.26345e-09
-1.18267e-08
2.97861e-09
-1.18679e-08
2.6938e-09
-1.1907e-08
2.41188e-09
-1.19434e-08
2.1357e-09
-1.19767e-08
1.86805e-09
-1.20066e-08
1.61163e-09
-1.2033e-08
1.36896e-09
-1.20559e-08
1.14241e-09
-1.20754e-08
9.34124e-10
-1.20917e-08
7.46019e-10
-1.21049e-08
5.79758e-10
-1.21154e-08
4.36745e-10
-1.21233e-08
3.18107e-10
-1.2129e-08
2.24697e-10
-1.21329e-08
1.57081e-10
-1.21353e-08
1.15538e-10
-1.21365e-08
1.00055e-10
-1.21369e-08
1.10318e-10
-1.21369e-08
1.45713e-10
-1.21368e-08
2.05321e-10
-1.2137e-08
2.87917e-10
-1.21379e-08
3.91965e-10
-1.21398e-08
5.15625e-10
-1.21429e-08
6.56753e-10
-1.21477e-08
8.12906e-10
-1.21543e-08
9.81359e-10
-1.2163e-08
1.15913e-09
-1.2174e-08
1.34302e-09
-1.21874e-08
1.52967e-09
-1.22034e-08
1.71565e-09
-1.2222e-08
1.89749e-09
-1.22432e-08
2.07179e-09
-1.22669e-08
2.23526e-09
-1.2293e-08
2.38481e-09
-1.23215e-08
2.51756e-09
-1.23519e-08
2.63087e-09
-1.23842e-08
2.7224e-09
-1.2418e-08
2.79008e-09
-1.2453e-08
2.83215e-09
-1.24888e-08
2.84716e-09
-1.25251e-08
2.83397e-09
-1.25616e-08
2.79175e-09
-1.25977e-08
2.71999e-09
-1.26331e-08
2.61848e-09
-1.26673e-08
2.48732e-09
-1.27e-08
2.32691e-09
-1.27307e-08
2.13795e-09
-1.2759e-08
1.9214e-09
-1.27846e-08
1.67851e-09
-1.2807e-08
1.41077e-09
-1.28259e-08
1.11993e-09
-1.28411e-08
8.07942e-10
-1.28522e-08
4.76989e-10
-1.2859e-08
1.29437e-10
-1.28615e-08
-2.3218e-10
-1.28595e-08
-6.05185e-10
-1.28531e-08
-9.86795e-10
-1.28425e-08
-1.37416e-09
-1.28281e-08
-1.76442e-09
-1.28104e-08
-2.15476e-09
-1.27903e-08
-2.5425e-09
-1.27691e-08
-2.92519e-09
-1.27482e-08
-3.30074e-09
-1.273e-08
-3.66752e-09
-1.27172e-08
-4.02455e-09
-1.27133e-08
-4.37168e-09
-1.27229e-08
-4.70972e-09
-1.27513e-08
-5.04066e-09
-1.2805e-08
-5.36782e-09
-1.28919e-08
-5.69595e-09
-1.30205e-08
-6.03129e-09
-1.32005e-08
-6.38147e-09
-1.34417e-08
-6.75533e-09
-1.37533e-08
-7.16244e-09
-1.41427e-08
-7.61251e-09
-1.46134e-08
-8.11445e-09
-1.51632e-08
-8.67528e-09
-1.57821e-08
-9.29889e-09
-1.64511e-08
-1.71426e-08
-9.98535e-09
-8.0622e-10
-9.54579e-10
-1.04373e-09
-1.07891e-09
-1.06749e-09
-1.01804e-09
-9.39542e-10
-8.40738e-10
-7.29682e-10
-6.13392e-10
-4.97681e-10
-3.87112e-10
-2.85064e-10
-1.93857e-10
-1.14911e-10
-4.89019e-11
4.09558e-12
4.44813e-11
7.30226e-11
9.07607e-11
9.89287e-11
9.88786e-11
9.20199e-11
7.9768e-11
6.35051e-11
4.45516e-11
2.41478e-11
3.44293e-12
-1.65106e-11
-3.476e-11
-5.04534e-11
-6.28415e-11
-7.12784e-11
-7.52239e-11
-7.42448e-11
-6.80165e-11
-5.63233e-11
-3.9057e-11
-1.62141e-11
1.21085e-11
4.57196e-11
8.43388e-11
1.27603e-10
1.75072e-10
2.26233e-10
2.80511e-10
3.37269e-10
3.95821e-10
4.55438e-10
5.1536e-10
5.7481e-10
6.33009e-10
6.89186e-10
7.42599e-10
7.92543e-10
8.38363e-10
8.79462e-10
9.1531e-10
9.4545e-10
9.69503e-10
9.87177e-10
9.98265e-10
1.00266e-09
1.00033e-09
9.91383e-10
9.75985e-10
9.54426e-10
9.27091e-10
8.94469e-10
8.57152e-10
8.1583e-10
7.71299e-10
7.24452e-10
6.76283e-10
6.2788e-10
5.80418e-10
5.35155e-10
4.93411e-10
4.56553e-10
4.25964e-10
4.03006e-10
3.88968e-10
3.85011e-10
3.92081e-10
4.10821e-10
4.41459e-10
4.83681e-10
5.36492e-10
5.98075e-10
6.65647e-10
7.35345e-10
8.02154e-10
8.59905e-10
9.01399e-10
9.18666e-10
9.0342e-10
8.47705e-10
7.44707e-10
5.89677e-10
3.80557e-10
1.48222e-08
-1.90463e-09
1.51017e-08
-1.65871e-09
1.53485e-08
-1.43312e-09
1.55667e-08
-1.23831e-09
1.57608e-08
-1.07981e-09
1.59352e-08
-9.57938e-10
1.60943e-08
-8.6895e-10
1.62415e-08
-8.06546e-10
1.63794e-08
-7.63678e-10
1.65095e-08
-7.33728e-10
1.66328e-08
-7.11273e-10
1.67497e-08
-6.92314e-10
1.68603e-08
-6.74226e-10
1.69645e-08
-6.55291e-10
1.70621e-08
-6.34615e-10
1.71529e-08
-6.11739e-10
1.72368e-08
-5.86478e-10
1.73136e-08
-5.58775e-10
1.73831e-08
-5.28653e-10
1.74452e-08
-4.96175e-10
1.74999e-08
-4.61424e-10
1.75471e-08
-4.24501e-10
1.75867e-08
-3.8551e-10
1.76186e-08
-3.44566e-10
1.76429e-08
-3.01785e-10
1.76594e-08
-2.5728e-10
1.76682e-08
-2.11162e-10
1.76691e-08
-1.63538e-10
1.76621e-08
-1.14528e-10
1.76474e-08
-6.42548e-11
1.76252e-08
-1.30137e-11
1.75941e-08
4.06918e-11
1.75549e-08
9.48361e-11
1.75077e-08
1.49857e-10
1.74524e-08
2.05747e-10
1.73891e-08
2.62442e-10
1.73177e-08
3.19863e-10
1.72383e-08
3.7793e-10
1.7151e-08
4.36559e-10
1.70557e-08
4.95664e-10
1.69525e-08
5.5516e-10
1.68414e-08
6.14961e-10
1.67224e-08
6.74981e-10
1.65954e-08
7.35131e-10
1.64607e-08
7.95317e-10
1.63182e-08
8.55446e-10
1.61681e-08
9.15423e-10
1.60104e-08
9.75156e-10
1.5845e-08
1.03456e-09
1.56721e-08
1.09356e-09
1.54917e-08
1.15208e-09
1.53038e-08
1.21004e-09
1.51086e-08
1.2674e-09
1.49061e-08
1.32409e-09
1.46963e-08
1.38005e-09
1.44793e-08
1.43524e-09
1.42552e-08
1.48962e-09
1.40241e-08
1.54315e-09
1.3786e-08
1.59578e-09
1.35409e-08
1.64749e-09
1.3289e-08
1.69823e-09
1.30303e-08
1.74797e-09
1.27649e-08
1.79667e-09
1.2493e-08
1.8443e-09
1.22145e-08
1.89083e-09
1.19297e-08
1.93624e-09
1.16387e-08
1.98051e-09
1.13415e-08
2.02364e-09
1.10383e-08
2.06562e-09
1.07292e-08
2.10643e-09
1.04144e-08
2.14606e-09
1.0094e-08
2.18447e-09
9.76807e-09
2.22162e-09
9.43682e-09
2.25745e-09
9.10036e-09
2.29193e-09
8.75882e-09
2.32503e-09
8.41237e-09
2.35672e-09
8.06117e-09
2.38701e-09
7.70543e-09
2.41592e-09
7.34535e-09
2.44348e-09
6.98116e-09
2.46972e-09
6.61309e-09
2.49467e-09
6.24137e-09
2.51836e-09
5.86622e-09
2.54079e-09
5.48788e-09
2.562e-09
5.10657e-09
2.58197e-09
4.72254e-09
2.6007e-09
4.336e-09
2.61819e-09
3.94714e-09
2.63438e-09
3.55618e-09
2.64912e-09
3.16332e-09
2.6621e-09
2.76876e-09
2.67259e-09
2.37284e-09
2.67917e-09
1.97626e-09
2.67901e-09
1.58051e-09
2.66658e-09
1.18877e-09
2.63055e-09
8.07865e-10
2.54688e-09
4.52892e-10
2.36223e-09
1.57814e-10
1.95496e-09
1.04323e-09
1.50265e-08
-2.24721e-09
1.53433e-08
-1.97566e-09
1.56347e-08
-1.72458e-09
1.59017e-08
-1.50554e-09
1.61465e-08
-1.32467e-09
1.63711e-08
-1.18268e-09
1.65779e-08
-1.07583e-09
1.6769e-08
-9.977e-10
1.69463e-08
-9.40937e-10
1.71112e-08
-8.98574e-10
1.72649e-08
-8.64833e-10
1.7408e-08
-8.35384e-10
1.75412e-08
-8.07297e-10
1.76647e-08
-7.78712e-10
1.77788e-08
-7.48605e-10
1.78836e-08
-7.1647e-10
1.79791e-08
-6.81989e-10
1.80655e-08
-6.4516e-10
1.81428e-08
-6.05989e-10
1.82111e-08
-5.64531e-10
1.82704e-08
-5.20855e-10
1.8321e-08
-4.75076e-10
1.83627e-08
-4.27294e-10
1.83958e-08
-3.77628e-10
1.84202e-08
-3.26162e-10
1.8436e-08
-2.72981e-10
1.84431e-08
-2.18211e-10
1.84416e-08
-1.61939e-10
1.84313e-08
-1.04206e-10
1.84123e-08
-4.51806e-11
1.83846e-08
1.46993e-11
1.83495e-08
7.58266e-11
1.83062e-08
1.38151e-10
1.82546e-08
2.01455e-10
1.81946e-08
2.65632e-10
1.81264e-08
3.30588e-10
1.80499e-08
3.96231e-10
1.79653e-08
4.62473e-10
1.78725e-08
5.29225e-10
1.77716e-08
5.964e-10
1.76628e-08
6.63909e-10
1.7546e-08
7.31665e-10
1.74213e-08
7.99581e-10
1.72888e-08
8.6757e-10
1.71484e-08
9.35545e-10
1.70004e-08
1.00342e-09
1.68446e-08
1.07111e-09
1.66811e-08
1.13854e-09
1.65099e-08
1.20562e-09
1.63311e-08
1.27229e-09
1.61446e-08
1.33846e-09
1.59505e-08
1.40408e-09
1.57489e-08
1.46906e-09
1.55398e-08
1.53336e-09
1.53231e-08
1.59689e-09
1.5099e-08
1.65961e-09
1.48674e-08
1.72146e-09
1.46284e-08
1.78239e-09
1.43819e-08
1.84237e-09
1.41282e-08
1.90134e-09
1.38671e-08
1.95928e-09
1.35989e-08
2.01615e-09
1.33236e-08
2.07191e-09
1.30413e-08
2.12652e-09
1.27521e-08
2.17995e-09
1.24562e-08
2.23217e-09
1.21537e-08
2.28314e-09
1.18447e-08
2.33283e-09
1.15294e-08
2.38123e-09
1.12078e-08
2.4283e-09
1.08802e-08
2.47401e-09
1.05467e-08
2.51834e-09
1.02074e-08
2.56125e-09
9.86244e-09
2.60271e-09
9.51194e-09
2.64267e-09
9.15604e-09
2.68112e-09
8.79487e-09
2.71803e-09
8.42857e-09
2.7534e-09
8.05731e-09
2.78723e-09
7.68128e-09
2.81953e-09
7.30071e-09
2.85031e-09
6.91585e-09
2.87958e-09
6.52696e-09
2.90735e-09
6.13432e-09
2.93362e-09
5.7382e-09
2.95837e-09
5.33883e-09
2.98162e-09
4.93644e-09
3.00335e-09
4.53126e-09
3.02355e-09
4.12352e-09
3.04219e-09
3.71349e-09
3.05912e-09
3.30146e-09
3.074e-09
2.88784e-09
3.08606e-09
2.47317e-09
3.09368e-09
2.05833e-09
3.09369e-09
1.64498e-09
3.07975e-09
1.23643e-09
3.03885e-09
8.39776e-10
2.9432e-09
4.70616e-10
2.731e-09
1.64031e-10
2.26113e-09
1.2072e-09
1.50791e-08
-2.60523e-09
1.54189e-08
-2.31551e-09
1.57406e-08
-2.04612e-09
1.60438e-08
-1.80886e-09
1.63292e-08
-1.61013e-09
1.65973e-08
-1.45083e-09
1.68487e-08
-1.3274e-09
1.70845e-08
-1.23354e-09
1.73053e-08
-1.16188e-09
1.75121e-08
-1.1054e-09
1.77054e-08
-1.05826e-09
1.78859e-08
-1.01601e-09
1.80542e-08
-9.75636e-10
1.82106e-08
-9.35215e-10
1.83555e-08
-8.93577e-10
1.84891e-08
-8.5017e-10
1.86118e-08
-8.04711e-10
1.87237e-08
-7.57061e-10
1.8825e-08
-7.07268e-10
1.89159e-08
-6.55352e-10
1.89965e-08
-6.01389e-10
1.90671e-08
-5.45464e-10
1.91276e-08
-4.87642e-10
1.91781e-08
-4.28045e-10
1.92188e-08
-3.66733e-10
1.92496e-08
-3.03821e-10
1.92709e-08
-2.39454e-10
1.92825e-08
-1.73558e-10
1.92847e-08
-1.06499e-10
1.92777e-08
-3.82195e-11
1.92604e-08
3.18715e-11
1.92336e-08
1.02599e-10
1.91975e-08
1.7427e-10
1.91521e-08
2.46826e-10
1.90976e-08
3.20181e-10
1.90339e-08
3.94249e-10
1.89612e-08
4.68941e-10
1.88794e-08
5.4417e-10
1.87886e-08
6.19851e-10
1.86889e-08
6.95899e-10
1.85803e-08
7.72232e-10
1.8463e-08
8.48767e-10
1.83368e-08
9.2542e-10
1.82021e-08
1.00211e-09
1.80588e-08
1.07874e-09
1.79069e-08
1.15524e-09
1.77465e-08
1.23151e-09
1.75777e-08
1.30748e-09
1.74005e-08
1.38305e-09
1.72148e-08
1.45815e-09
1.70208e-08
1.53271e-09
1.68184e-08
1.60664e-09
1.66077e-08
1.6799e-09
1.63887e-08
1.75241e-09
1.61615e-08
1.82411e-09
1.59262e-08
1.89495e-09
1.56828e-08
1.96486e-09
1.54313e-08
2.03379e-09
1.5172e-08
2.1017e-09
1.49048e-08
2.16852e-09
1.46299e-08
2.23422e-09
1.43473e-08
2.29874e-09
1.40571e-08
2.36204e-09
1.37594e-08
2.42408e-09
1.34544e-08
2.48482e-09
1.31422e-08
2.54423e-09
1.28229e-08
2.60227e-09
1.24967e-08
2.6589e-09
1.21638e-08
2.71407e-09
1.18243e-08
2.76777e-09
1.14783e-08
2.81993e-09
1.11261e-08
2.87054e-09
1.07678e-08
2.91956e-09
1.04035e-08
2.96695e-09
1.00334e-08
3.0127e-09
9.65759e-09
3.05679e-09
9.27635e-09
3.09918e-09
8.88984e-09
3.13988e-09
8.49826e-09
3.17885e-09
8.10182e-09
3.21608e-09
7.70072e-09
3.25156e-09
7.29515e-09
3.28529e-09
6.88534e-09
3.31725e-09
6.47152e-09
3.34744e-09
6.05396e-09
3.37587e-09
5.63294e-09
3.40254e-09
5.20874e-09
3.42744e-09
4.78163e-09
3.45057e-09
4.35188e-09
3.47186e-09
3.91973e-09
3.49117e-09
3.48549e-09
3.5081e-09
3.04953e-09
3.52183e-09
2.61244e-09
3.53057e-09
2.17515e-09
3.53082e-09
1.7394e-09
3.51544e-09
1.3086e-09
3.46971e-09
8.90013e-10
3.36193e-09
4.99832e-10
3.12132e-09
1.74864e-10
2.58616e-09
1.38192e-09
1.52422e-08
-2.97979e-09
1.56024e-08
-2.67597e-09
1.5948e-08
-2.39213e-09
1.62791e-08
-2.14015e-09
1.65953e-08
-1.92657e-09
1.68966e-08
-1.75238e-09
1.71833e-08
-1.61415e-09
1.74554e-08
-1.50567e-09
1.77132e-08
-1.41963e-09
1.7957e-08
-1.34911e-09
1.81871e-08
-1.28821e-09
1.84038e-08
-1.23257e-09
1.86074e-08
-1.17911e-09
1.87981e-08
-1.12588e-09
1.89762e-08
-1.07169e-09
1.9142e-08
-1.01594e-09
1.92956e-08
-9.58344e-10
1.94372e-08
-8.98763e-10
1.9567e-08
-8.37136e-10
1.96852e-08
-7.73557e-10
1.97918e-08
-7.0805e-10
1.98871e-08
-6.40675e-10
1.99711e-08
-5.71534e-10
2.00439e-08
-5.0066e-10
2.01055e-08
-4.28209e-10
2.01561e-08
-3.54233e-10
2.01957e-08
-2.78833e-10
2.02244e-08
-2.02078e-10
2.02422e-08
-1.2409e-10
2.02491e-08
-4.49176e-11
2.02457e-08
3.54222e-11
2.02317e-08
1.16698e-10
2.02071e-08
1.98876e-10
2.0172e-08
2.81876e-10
2.01266e-08
3.65613e-10
2.00707e-08
4.50001e-10
2.00046e-08
5.34952e-10
1.99284e-08
6.20379e-10
1.9842e-08
7.06194e-10
1.97456e-08
7.92309e-10
1.96392e-08
8.78638e-10
1.9523e-08
9.65094e-10
1.93969e-08
1.05159e-09
1.92611e-08
1.13804e-09
1.91157e-08
1.22437e-09
1.89606e-08
1.31049e-09
1.87959e-08
1.39631e-09
1.86217e-08
1.48176e-09
1.8438e-08
1.56675e-09
1.8245e-08
1.65122e-09
1.80427e-08
1.73507e-09
1.78311e-08
1.81824e-09
1.76104e-08
1.90066e-09
1.73806e-08
1.98225e-09
1.71418e-08
2.06296e-09
1.6894e-08
2.1427e-09
1.66375e-08
2.22143e-09
1.63722e-08
2.29909e-09
1.60982e-08
2.37562e-09
1.58157e-08
2.45097e-09
1.55249e-08
2.52508e-09
1.52257e-08
2.59789e-09
1.49185e-08
2.66936e-09
1.46032e-08
2.73942e-09
1.428e-08
2.80804e-09
1.39491e-08
2.87516e-09
1.36105e-08
2.94074e-09
1.32644e-08
3.00475e-09
1.29111e-08
3.06714e-09
1.25506e-08
3.12789e-09
1.21832e-08
3.18695e-09
1.18091e-08
3.24428e-09
1.14286e-08
3.29986e-09
1.10418e-08
3.35363e-09
1.06488e-08
3.40557e-09
1.02499e-08
3.45564e-09
9.84528e-09
3.50382e-09
9.43506e-09
3.55009e-09
9.01946e-09
3.59444e-09
8.59872e-09
3.63683e-09
8.17308e-09
3.67726e-09
7.74281e-09
3.71569e-09
7.30814e-09
3.75211e-09
6.86933e-09
3.78649e-09
6.42661e-09
3.81882e-09
5.98022e-09
3.8491e-09
5.53041e-09
3.87735e-09
5.07748e-09
3.90355e-09
4.62172e-09
3.92766e-09
4.16344e-09
3.94952e-09
3.70298e-09
3.9687e-09
3.24068e-09
3.98429e-09
2.77703e-09
3.99434e-09
2.3129e-09
3.99497e-09
1.85e-09
3.97824e-09
1.39193e-09
3.92757e-09
9.46546e-10
3.80707e-09
5.31291e-10
3.53639e-09
1.85622e-10
2.93175e-09
1.56752e-09
1.55981e-08
-3.37408e-09
1.59807e-08
-3.05865e-09
1.63511e-08
-2.76274e-09
1.67091e-08
-2.49825e-09
1.70542e-08
-2.27176e-09
1.73861e-08
-2.08434e-09
1.77044e-08
-1.93261e-09
1.80091e-08
-1.81042e-09
1.83e-08
-1.71063e-09
1.8577e-08
-1.62629e-09
1.88403e-08
-1.55165e-09
1.90899e-08
-1.48237e-09
1.9326e-08
-1.41534e-09
1.95486e-08
-1.34868e-09
1.9758e-08
-1.2812e-09
1.99542e-08
-1.21226e-09
2.01374e-08
-1.14162e-09
2.03078e-08
-1.0691e-09
2.04654e-08
-9.94647e-10
2.06103e-08
-9.18374e-10
2.07427e-08
-8.40249e-10
2.08625e-08
-7.60354e-10
2.09699e-08
-6.78791e-10
2.1065e-08
-5.95575e-10
2.11477e-08
-5.10854e-10
2.12182e-08
-4.2472e-10
2.12765e-08
-3.37134e-10
2.13226e-08
-2.48332e-10
2.13567e-08
-1.5829e-10
2.13788e-08
-6.71871e-11
2.13892e-08
2.48979e-11
2.13878e-08
1.1798e-10
2.13747e-08
2.11921e-10
2.13499e-08
3.06616e-10
2.13134e-08
4.01978e-10
2.12654e-08
4.97919e-10
2.12059e-08
5.94353e-10
2.11349e-08
6.91194e-10
2.10527e-08
7.88355e-10
2.09592e-08
8.85747e-10
2.08545e-08
9.83283e-10
2.07388e-08
1.08087e-09
2.06121e-08
1.17842e-09
2.04744e-08
1.27585e-09
2.03259e-08
1.37306e-09
2.01667e-08
1.46996e-09
1.99967e-08
1.56647e-09
1.98161e-08
1.66251e-09
1.9625e-08
1.758e-09
1.94234e-08
1.85287e-09
1.92114e-08
1.94704e-09
1.89892e-08
2.04043e-09
1.87569e-08
2.13298e-09
1.85145e-08
2.22462e-09
1.82623e-08
2.31526e-09
1.80002e-08
2.40484e-09
1.77286e-08
2.49328e-09
1.74473e-08
2.58052e-09
1.71567e-08
2.66647e-09
1.68568e-08
2.75109e-09
1.65477e-08
2.83432e-09
1.62296e-08
2.9161e-09
1.59026e-08
2.99637e-09
1.55668e-08
3.0751e-09
1.52225e-08
3.15222e-09
1.48699e-08
3.2277e-09
1.45091e-08
3.30147e-09
1.41403e-08
3.37348e-09
1.37637e-08
3.4437e-09
1.33795e-08
3.51206e-09
1.29878e-08
3.57852e-09
1.25889e-08
3.64306e-09
1.2183e-08
3.70563e-09
1.17703e-08
3.7662e-09
1.13511e-08
3.82472e-09
1.09256e-08
3.88118e-09
1.0494e-08
3.93551e-09
1.00567e-08
3.9877e-09
9.6136e-09
4.03771e-09
9.16507e-09
4.08551e-09
8.71126e-09
4.13109e-09
8.25241e-09
4.17441e-09
7.7888e-09
4.21548e-09
7.32074e-09
4.25428e-09
6.84857e-09
4.29078e-09
6.37261e-09
4.32499e-09
5.89315e-09
4.35688e-09
5.41044e-09
4.38643e-09
4.92471e-09
4.41358e-09
4.43621e-09
4.43815e-09
3.94526e-09
4.4597e-09
3.45227e-09
4.47721e-09
2.95786e-09
4.4886e-09
2.46304e-09
4.48958e-09
1.9697e-09
4.47133e-09
1.4817e-09
4.41531e-09
1.00737e-09
4.28117e-09
5.65259e-10
3.97837e-09
1.97401e-10
3.29961e-09
1.76502e-09
1.61374e-08
-3.79231e-09
1.65451e-08
-3.4665e-09
1.69422e-08
-3.1599e-09
1.7328e-08
-2.88418e-09
1.77021e-08
-2.64588e-09
1.80639e-08
-2.44609e-09
1.84129e-08
-2.28151e-09
1.87487e-08
-2.1461e-09
1.90711e-08
-2.03279e-09
1.93797e-08
-1.93476e-09
1.96744e-08
-1.84633e-09
1.99552e-08
-1.76315e-09
2.0222e-08
-1.68226e-09
2.0475e-08
-1.60172e-09
2.0714e-08
-1.52039e-09
2.09393e-08
-1.43767e-09
2.11507e-08
-1.35322e-09
2.13485e-08
-1.26693e-09
2.15326e-08
-1.17879e-09
2.17032e-08
-1.08882e-09
2.18601e-08
-9.97049e-10
2.20036e-08
-9.03583e-10
2.21335e-08
-8.08485e-10
2.225e-08
-7.11837e-10
2.23531e-08
-6.13734e-10
2.24427e-08
-5.14228e-10
2.25191e-08
-4.13397e-10
2.25821e-08
-3.11358e-10
2.2632e-08
-2.08258e-10
2.26686e-08
-1.03992e-10
2.26921e-08
1.28489e-12
2.27022e-08
1.07639e-10
2.26994e-08
2.14563e-10
2.26838e-08
3.22174e-10
2.26553e-08
4.30391e-10
2.26141e-08
5.39121e-10
2.25602e-08
6.48272e-10
2.24937e-08
7.5775e-10
2.24146e-08
8.6746e-10
2.23231e-08
9.77313e-10
2.22192e-08
1.08722e-09
2.2103e-08
1.19709e-09
2.19745e-08
1.30683e-09
2.18339e-08
1.41637e-09
2.16812e-08
1.52561e-09
2.15165e-08
1.63447e-09
2.134e-08
1.74285e-09
2.11518e-08
1.85068e-09
2.0952e-08
1.95785e-09
2.07408e-08
2.06428e-09
2.05181e-08
2.16988e-09
2.02842e-08
2.27457e-09
2.00392e-08
2.37826e-09
1.97831e-08
2.4809e-09
1.95161e-08
2.58239e-09
1.92382e-08
2.68268e-09
1.89498e-08
2.78169e-09
1.86509e-08
2.87936e-09
1.83416e-08
2.97562e-09
1.80223e-08
3.0704e-09
1.7693e-08
3.16363e-09
1.7354e-08
3.25524e-09
1.70055e-08
3.34517e-09
1.66474e-08
3.43335e-09
1.62802e-08
3.51972e-09
1.59038e-08
3.60423e-09
1.55185e-08
3.68683e-09
1.51246e-08
3.76747e-09
1.47222e-08
3.8461e-09
1.43115e-08
3.92267e-09
1.38929e-08
3.99714e-09
1.34666e-08
4.06945e-09
1.30328e-08
4.13956e-09
1.25917e-08
4.20741e-09
1.21435e-08
4.27298e-09
1.16885e-08
4.33622e-09
1.1227e-08
4.3971e-09
1.07592e-08
4.45558e-09
1.02853e-08
4.51164e-09
9.80569e-09
4.56523e-09
9.32053e-09
4.61633e-09
8.83009e-09
4.66489e-09
8.33462e-09
4.71089e-09
7.83439e-09
4.75432e-09
7.3297e-09
4.79518e-09
6.82088e-09
4.83346e-09
6.30828e-09
4.86917e-09
5.79223e-09
4.90227e-09
5.27302e-09
4.9327e-09
4.75094e-09
4.96024e-09
4.22626e-09
4.98441e-09
3.69933e-09
5.00412e-09
3.17072e-09
5.01712e-09
2.64143e-09
5.0187e-09
2.11342e-09
4.99916e-09
1.59078e-09
4.93784e-09
1.08236e-09
4.78957e-09
6.07962e-10
4.45282e-09
2.12593e-10
3.69504e-09
1.97764e-09
1.68559e-08
-4.2394e-09
1.72937e-08
-3.9043e-09
1.77216e-08
-3.58777e-09
1.81387e-08
-3.30147e-09
1.85446e-08
-3.05186e-09
1.89384e-08
-2.84005e-09
1.93196e-08
-2.66281e-09
1.96875e-08
-2.51419e-09
2.00418e-08
-2.38723e-09
2.03822e-08
-2.27524e-09
2.07085e-08
-2.1726e-09
2.10204e-08
-2.07507e-09
2.13178e-08
-1.97972e-09
2.16008e-08
-1.88465e-09
2.18693e-08
-1.78877e-09
2.21232e-08
-1.69145e-09
2.23626e-08
-1.59242e-09
2.25874e-08
-1.49157e-09
2.27976e-08
-1.38886e-09
2.29932e-08
-1.28431e-09
2.31741e-08
-1.17798e-09
2.33405e-08
-1.06996e-09
2.34922e-08
-9.60313e-10
2.36294e-08
-8.4911e-10
2.37518e-08
-7.36412e-10
2.38597e-08
-6.22378e-10
2.39531e-08
-5.06989e-10
2.4032e-08
-3.90461e-10
2.40964e-08
-2.72795e-10
2.41463e-08
-1.54065e-10
2.41817e-08
-3.41528e-11
2.42034e-08
8.59008e-11
2.42108e-08
2.07089e-10
2.42039e-08
3.28921e-10
2.41829e-08
4.51298e-10
2.41477e-08
5.74124e-10
2.40985e-08
6.97305e-10
2.40354e-08
8.20745e-10
2.39584e-08
9.44349e-10
2.38677e-08
1.06802e-09
2.37633e-08
1.19166e-09
2.36454e-08
1.31517e-09
2.3514e-08
1.43845e-09
2.33692e-08
1.56141e-09
2.32112e-08
1.68395e-09
2.30399e-08
1.80597e-09
2.28555e-08
1.92739e-09
2.26582e-08
2.04811e-09
2.2448e-08
2.16806e-09
2.22251e-08
2.28713e-09
2.19896e-08
2.40526e-09
2.17418e-08
2.52234e-09
2.14817e-08
2.6383e-09
2.12096e-08
2.75305e-09
2.09256e-08
2.86651e-09
2.06299e-08
2.97858e-09
2.03225e-08
3.0892e-09
2.00038e-08
3.19829e-09
1.96737e-08
3.30577e-09
1.93326e-08
3.41159e-09
1.89805e-08
3.51566e-09
1.86178e-08
3.61792e-09
1.82446e-08
3.71831e-09
1.78611e-08
3.81675e-09
1.74677e-08
3.91317e-09
1.70644e-08
4.00751e-09
1.66516e-08
4.09971e-09
1.62293e-08
4.18971e-09
1.5798e-08
4.27745e-09
1.53577e-08
4.3629e-09
1.49087e-08
4.44599e-09
1.44512e-08
4.52669e-09
1.39857e-08
4.60494e-09
1.35123e-08
4.68069e-09
1.30314e-08
4.75389e-09
1.25432e-08
4.82448e-09
1.20479e-08
4.89243e-09
1.15458e-08
4.9577e-09
1.10372e-08
5.02024e-09
1.05223e-08
5.08003e-09
1.00014e-08
5.13704e-09
9.47475e-09
5.19126e-09
8.94283e-09
5.24265e-09
8.40592e-09
5.29119e-09
7.86436e-09
5.33684e-09
7.31844e-09
5.3796e-09
6.76843e-09
5.41944e-09
6.21458e-09
5.45634e-09
5.65719e-09
5.49022e-09
5.09657e-09
5.52088e-09
4.53309e-09
5.54779e-09
3.96721e-09
5.5698e-09
3.39963e-09
5.58445e-09
2.83146e-09
5.58661e-09
2.26485e-09
5.56555e-09
1.7042e-09
5.49834e-09
1.15903e-09
5.33464e-09
6.50615e-10
4.96113e-09
2.27323e-10
4.11809e-09
2.20458e-09
1.77665e-08
-4.71872e-09
1.82365e-08
-4.3743e-09
1.86968e-08
-4.04804e-09
1.91469e-08
-3.7513e-09
1.95856e-08
-3.49048e-09
2.00124e-08
-3.26667e-09
2.04265e-08
-3.07673e-09
2.08271e-08
-2.9148e-09
2.12139e-08
-2.77402e-09
2.15864e-08
-2.6478e-09
2.19444e-08
-2.53064e-09
2.22875e-08
-2.41836e-09
2.26157e-08
-2.30805e-09
2.29286e-08
-2.19789e-09
2.32263e-08
-2.08677e-09
2.35087e-08
-1.97412e-09
2.37758e-08
-1.85966e-09
2.40273e-08
-1.74328e-09
2.42633e-08
-1.62498e-09
2.44838e-08
-1.5048e-09
2.46886e-08
-1.3828e-09
2.48777e-08
-1.25907e-09
2.50511e-08
-1.13368e-09
2.52087e-08
-1.00673e-09
2.53506e-08
-8.78307e-10
2.54767e-08
-7.48523e-10
2.5587e-08
-6.17424e-10
2.56815e-08
-4.85145e-10
2.57603e-08
-3.51774e-10
2.58234e-08
-2.17434e-10
2.58712e-08
-8.22201e-11
2.59029e-08
5.40751e-11
2.59189e-08
1.90897e-10
2.59194e-08
3.2828e-10
2.59045e-08
4.66149e-10
2.58741e-08
6.04405e-10
2.58285e-08
7.42945e-10
2.57676e-08
8.81667e-10
2.56915e-08
1.02047e-09
2.56003e-08
1.15924e-09
2.54941e-08
1.29789e-09
2.5373e-08
1.43631e-09
2.5237e-08
1.5744e-09
2.50863e-08
1.71206e-09
2.49211e-08
1.84919e-09
2.47414e-08
1.98568e-09
2.45473e-08
2.12144e-09
2.43391e-08
2.25637e-09
2.41168e-08
2.39038e-09
2.38805e-08
2.52336e-09
2.36306e-08
2.65524e-09
2.3367e-08
2.78591e-09
2.309e-08
2.91529e-09
2.27998e-08
3.04328e-09
2.24966e-08
3.1698e-09
2.21805e-08
3.29476e-09
2.18517e-08
3.41808e-09
2.15106e-08
3.53967e-09
2.11571e-08
3.65944e-09
2.07917e-08
3.77732e-09
2.04143e-08
3.89322e-09
2.00253e-08
4.00709e-09
1.96249e-08
4.11884e-09
1.92132e-08
4.22841e-09
1.87907e-08
4.33574e-09
1.83574e-08
4.44076e-09
1.79138e-08
4.5434e-09
1.74601e-08
4.64359e-09
1.69965e-08
4.74127e-09
1.65233e-08
4.83637e-09
1.60408e-08
4.92883e-09
1.55491e-08
5.0186e-09
1.50486e-08
5.10561e-09
1.45395e-08
5.18982e-09
1.40222e-08
5.27119e-09
1.3497e-08
5.34968e-09
1.29641e-08
5.42524e-09
1.2424e-08
5.49782e-09
1.18769e-08
5.56739e-09
1.13232e-08
5.63389e-09
1.07631e-08
5.6973e-09
1.01969e-08
5.75757e-09
9.62489e-09
5.8147e-09
9.04748e-09
5.86864e-09
8.46499e-09
5.91939e-09
7.87777e-09
5.96691e-09
7.28617e-09
6.0112e-09
6.69048e-09
6.0522e-09
6.09104e-09
6.08983e-09
5.48815e-09
6.12387e-09
4.8822e-09
6.15377e-09
4.27368e-09
6.17831e-09
3.66329e-09
6.19483e-09
3.05218e-09
6.19776e-09
2.44252e-09
6.17529e-09
1.83889e-09
6.10207e-09
1.25143e-09
5.92216e-09
7.03015e-10
5.5095e-09
2.45838e-10
4.57511e-09
2.45021e-09
1.88475e-08
-5.23599e-09
1.93556e-08
-4.88237e-09
1.98536e-08
-4.54624e-09
2.03411e-08
-4.23884e-09
2.0817e-08
-3.96652e-09
2.12806e-08
-3.73038e-09
2.1731e-08
-3.5273e-09
2.21676e-08
-3.35154e-09
2.25898e-08
-3.19636e-09
2.29971e-08
-3.05528e-09
2.33892e-08
-2.92287e-09
2.37658e-08
-2.79504e-09
2.41266e-08
-2.66895e-09
2.44715e-08
-2.5428e-09
2.48002e-08
-2.41554e-09
2.51127e-08
-2.2866e-09
2.54088e-08
-2.15571e-09
2.56883e-08
-2.0228e-09
2.59511e-08
-1.88785e-09
2.61972e-08
-1.75094e-09
2.64264e-08
-1.61212e-09
2.66387e-08
-1.47149e-09
2.6834e-08
-1.32914e-09
2.70123e-08
-1.18517e-09
2.71734e-08
-1.03968e-09
2.73175e-08
-8.92787e-10
2.74445e-08
-7.44589e-10
2.75544e-08
-5.95184e-10
2.76471e-08
-4.44683e-10
2.77227e-08
-2.93178e-10
2.77811e-08
-1.40786e-10
2.78227e-08
1.23703e-11
2.78473e-08
1.66181e-10
2.78549e-08
3.20569e-10
2.78455e-08
4.75402e-10
2.78193e-08
6.30568e-10
2.77763e-08
7.85952e-10
2.77166e-08
9.4144e-10
2.76402e-08
1.09692e-09
2.75473e-08
1.25227e-09
2.74379e-08
1.40739e-09
2.73122e-08
1.56217e-09
2.71702e-08
1.71649e-09
2.70121e-08
1.87025e-09
2.6838e-08
2.02335e-09
2.6648e-08
2.17567e-09
2.64423e-08
2.32712e-09
2.62211e-08
2.4776e-09
2.59845e-08
2.62699e-09
2.57326e-08
2.77521e-09
2.54658e-08
2.92213e-09
2.5184e-08
3.06766e-09
2.48876e-08
3.2117e-09
2.45768e-08
3.35415e-09
2.42516e-08
3.49491e-09
2.39124e-08
3.63391e-09
2.35594e-08
3.77104e-09
2.31928e-08
3.90623e-09
2.28127e-08
4.03938e-09
2.24196e-08
4.17042e-09
2.20135e-08
4.29926e-09
2.15949e-08
4.42581e-09
2.11638e-08
4.54999e-09
2.07206e-08
4.67171e-09
2.02656e-08
4.79091e-09
1.97989e-08
4.90751e-09
1.9321e-08
5.02143e-09
1.88319e-08
5.13261e-09
1.83321e-08
5.241e-09
1.78218e-08
5.34652e-09
1.73013e-08
5.44911e-09
1.6771e-08
5.54873e-09
1.62312e-08
5.64529e-09
1.56821e-08
5.73875e-09
1.51242e-08
5.82904e-09
1.45578e-08
5.91612e-09
1.39831e-08
5.99993e-09
1.34005e-08
6.08044e-09
1.28103e-08
6.15758e-09
1.2213e-08
6.23133e-09
1.16088e-08
6.30164e-09
1.09981e-08
6.36847e-09
1.03812e-08
6.43179e-09
9.7585e-09
6.49156e-09
9.13021e-09
6.54777e-09
8.4967e-09
6.6004e-09
7.85831e-09
6.64943e-09
7.21543e-09
6.69485e-09
6.56846e-09
6.73655e-09
5.91784e-09
6.77429e-09
5.26402e-09
6.80749e-09
4.60755e-09
6.83483e-09
3.94915e-09
6.85343e-09
3.29001e-09
6.8572e-09
2.63244e-09
6.83318e-09
1.98138e-09
6.75336e-09
1.34781e-09
6.55579e-09
7.56519e-10
6.10063e-09
2.6405e-10
5.0673e-09
2.71437e-09
2.01181e-08
-5.79515e-09
2.06677e-08
-5.43184e-09
2.12072e-08
-5.08551e-09
2.17355e-08
-4.76711e-09
2.2252e-08
-4.48288e-09
2.27556e-08
-4.23393e-09
2.32455e-08
-4.01719e-09
2.3721e-08
-3.82702e-09
2.41814e-08
-3.65678e-09
2.46261e-08
-3.50011e-09
2.50547e-08
-3.35167e-09
2.5467e-08
-3.20744e-09
2.58625e-08
-3.06463e-09
2.62411e-08
-2.92149e-09
2.66025e-08
-2.777e-09
2.69466e-08
-2.63063e-09
2.7273e-08
-2.48215e-09
2.75817e-08
-2.33147e-09
2.78725e-08
-2.17862e-09
2.81453e-08
-2.02367e-09
2.83999e-08
-1.8667e-09
2.86362e-08
-1.70784e-09
2.88541e-08
-1.54716e-09
2.90536e-08
-1.38478e-09
2.92346e-08
-1.22082e-09
2.9397e-08
-1.05539e-09
2.95408e-08
-8.88589e-10
2.96661e-08
-7.20553e-10
2.97727e-08
-5.51394e-10
2.98608e-08
-3.81255e-10
2.99303e-08
-2.10225e-10
2.99812e-08
-3.84334e-11
3.00135e-08
1.34071e-10
3.00272e-08
3.07016e-10
3.00224e-08
4.80348e-10
2.99992e-08
6.5395e-10
2.99576e-08
8.27701e-10
2.98977e-08
1.00148e-09
2.98196e-08
1.17517e-09
2.97233e-08
1.34865e-09
2.96091e-08
1.52179e-09
2.9477e-08
1.69448e-09
2.93271e-08
1.86659e-09
2.91596e-08
2.038e-09
2.89747e-08
2.20859e-09
2.87725e-08
2.37825e-09
2.85532e-08
2.54686e-09
2.83168e-08
2.71431e-09
2.80636e-08
2.88049e-09
2.77937e-08
3.04529e-09
2.75073e-08
3.20861e-09
2.72047e-08
3.37034e-09
2.6886e-08
3.53038e-09
2.65516e-08
3.68862e-09
2.62016e-08
3.84497e-09
2.58363e-08
3.9993e-09
2.5456e-08
4.15153e-09
2.50609e-08
4.30155e-09
2.46512e-08
4.44927e-09
2.42272e-08
4.5946e-09
2.37891e-08
4.73745e-09
2.33372e-08
4.87773e-09
2.28718e-08
5.01537e-09
2.23931e-08
5.15027e-09
2.19016e-08
5.28237e-09
2.13975e-08
5.41157e-09
2.08811e-08
5.53779e-09
2.03528e-08
5.66095e-09
1.98129e-08
5.78098e-09
1.92616e-08
5.89781e-09
1.86992e-08
6.01138e-09
1.81262e-08
6.12161e-09
1.75428e-08
6.22846e-09
1.69495e-08
6.33187e-09
1.63465e-08
6.43178e-09
1.57343e-08
6.52814e-09
1.51132e-08
6.62088e-09
1.44835e-08
6.70996e-09
1.38458e-08
6.79531e-09
1.32002e-08
6.8769e-09
1.25472e-08
6.95468e-09
1.18872e-08
7.0286e-09
1.12205e-08
7.09863e-09
1.05475e-08
7.16472e-09
9.86866e-09
7.22686e-09
9.18421e-09
7.28502e-09
8.49453e-09
7.33918e-09
7.79999e-09
7.3893e-09
7.101e-09
7.4353e-09
6.39801e-09
7.47694e-09
5.69152e-09
7.51361e-09
4.98212e-09
7.54389e-09
4.27058e-09
7.56471e-09
3.55818e-09
7.56942e-09
2.84736e-09
7.54384e-09
2.14347e-09
7.45708e-09
1.45835e-09
7.24068e-09
8.18853e-10
6.73986e-09
2.8601e-10
5.59986e-09
3.00033e-09
2.15651e-08
-6.40261e-09
2.21626e-08
-6.0294e-09
2.27497e-08
-5.67245e-09
2.3325e-08
-5.34253e-09
2.38878e-08
-5.04574e-09
2.44371e-08
-4.7832e-09
2.49718e-08
-4.55192e-09
2.54911e-08
-4.34635e-09
2.59944e-08
-4.15999e-09
2.64811e-08
-3.98661e-09
2.69506e-08
-3.82096e-09
2.74024e-08
-3.65912e-09
2.78363e-08
-3.49837e-09
2.82519e-08
-3.337e-09
2.8649e-08
-3.17402e-09
2.90274e-08
-3.00893e-09
2.93867e-08
-2.8415e-09
2.97268e-08
-2.67167e-09
3.00475e-08
-2.49949e-09
3.03486e-08
-2.32503e-09
3.06301e-08
-2.14839e-09
3.08917e-08
-1.96971e-09
3.11335e-08
-1.78909e-09
3.13552e-08
-1.60666e-09
3.15569e-08
-1.42257e-09
3.17383e-08
-1.23692e-09
3.18996e-08
-1.04986e-09
3.20405e-08
-8.61525e-10
3.21612e-08
-6.72038e-10
3.22616e-08
-4.8153e-10
3.23416e-08
-2.90144e-10
3.24013e-08
-9.80008e-11
3.24409e-08
9.47493e-11
3.24601e-08
2.87977e-10
3.24592e-08
4.81547e-10
3.24381e-08
6.75325e-10
3.2397e-08
8.69176e-10
3.23358e-08
1.06296e-09
3.22547e-08
1.25656e-09
3.21538e-08
1.44983e-09
3.20332e-08
1.64264e-09
3.1893e-08
1.83486e-09
3.17333e-08
2.02637e-09
3.15544e-08
2.21705e-09
3.13564e-08
2.40675e-09
3.11395e-08
2.59536e-09
3.09038e-08
2.78274e-09
3.06496e-08
2.96877e-09
3.03771e-08
3.15334e-09
3.00864e-08
3.3363e-09
2.97778e-08
3.51756e-09
2.94515e-08
3.69698e-09
2.91076e-08
3.87447e-09
2.87465e-08
4.04991e-09
2.83684e-08
4.2232e-09
2.79735e-08
4.39422e-09
2.75622e-08
4.56288e-09
2.71348e-08
4.72906e-09
2.66915e-08
4.89267e-09
2.62327e-08
5.05359e-09
2.57587e-08
5.21174e-09
2.52696e-08
5.367e-09
2.47659e-08
5.5193e-09
2.42477e-08
5.66854e-09
2.37156e-08
5.81463e-09
2.31697e-08
5.9575e-09
2.26104e-08
6.09705e-09
2.20381e-08
6.23321e-09
2.14532e-08
6.3659e-09
2.0856e-08
6.49503e-09
2.0247e-08
6.62054e-09
1.96264e-08
6.74235e-09
1.89947e-08
6.86039e-09
1.83522e-08
6.97461e-09
1.76993e-08
7.08494e-09
1.70363e-08
7.19132e-09
1.63637e-08
7.29371e-09
1.56818e-08
7.39203e-09
1.49911e-08
7.48624e-09
1.4292e-08
7.57628e-09
1.35848e-08
7.66209e-09
1.287e-08
7.74363e-09
1.21479e-08
7.82086e-09
1.14191e-08
7.89376e-09
1.06837e-08
7.96229e-09
9.94242e-09
8.02644e-09
9.19551e-09
8.08618e-09
8.44345e-09
8.14147e-09
7.68669e-09
8.19221e-09
6.92568e-09
8.23813e-09
6.16091e-09
8.27859e-09
5.39296e-09
8.31208e-09
4.62262e-09
8.33528e-09
3.85125e-09
8.34099e-09
3.08156e-09
8.31367e-09
2.31937e-09
8.21935e-09
1.57765e-09
7.98246e-09
8.85543e-10
7.43206e-09
3.09264e-10
6.17631e-09
3.30965e-09
2.32142e-08
-7.06366e-09
2.38649e-08
-6.68008e-09
2.45045e-08
-6.31206e-09
2.51322e-08
-5.97002e-09
2.57465e-08
-5.65999e-09
2.63465e-08
-5.38305e-09
2.69309e-08
-5.13628e-09
2.74988e-08
-4.91427e-09
2.80494e-08
-4.71065e-09
2.85821e-08
-4.5193e-09
2.90962e-08
-4.33513e-09
2.95913e-08
-4.15429e-09
3.0067e-08
-3.97413e-09
3.05229e-08
-3.79301e-09
3.09587e-08
-3.60996e-09
3.13741e-08
-3.42452e-09
3.1769e-08
-3.23648e-09
3.2143e-08
-3.04582e-09
3.2496e-08
-2.85259e-09
3.28277e-08
-2.6569e-09
3.3138e-08
-2.45887e-09
3.34268e-08
-2.25862e-09
3.36938e-08
-2.0563e-09
3.3939e-08
-1.85206e-09
3.41623e-08
-1.64603e-09
3.43636e-08
-1.43837e-09
3.45428e-08
-1.22922e-09
3.46999e-08
-1.01873e-09
3.48349e-08
-8.07054e-10
3.49476e-08
-5.94336e-10
3.50382e-08
-3.80731e-10
3.51065e-08
-1.66381e-10
3.51527e-08
4.85847e-11
3.51768e-08
2.63967e-10
3.51787e-08
4.79644e-10
3.51586e-08
6.95465e-10
3.51166e-08
9.11282e-10
3.50527e-08
1.12695e-09
3.4967e-08
1.34232e-09
3.48597e-08
1.55724e-09
3.47308e-08
1.77157e-09
3.45806e-08
1.98518e-09
3.44092e-08
2.19791e-09
3.42167e-08
2.40962e-09
3.40033e-08
2.62019e-09
3.37693e-08
2.82946e-09
3.35147e-08
3.03732e-09
3.32398e-08
3.24361e-09
3.29449e-08
3.44822e-09
3.26303e-08
3.65101e-09
3.2296e-08
3.85184e-09
3.19425e-08
4.0506e-09
3.15699e-08
4.24716e-09
3.11785e-08
4.44139e-09
3.07687e-08
4.63317e-09
3.03406e-08
4.8224e-09
2.98947e-08
5.00895e-09
2.94311e-08
5.19272e-09
2.89502e-08
5.37359e-09
2.84524e-08
5.55146e-09
2.7938e-08
5.72622e-09
2.74072e-08
5.89776e-09
2.68606e-08
6.06599e-09
2.62984e-08
6.2308e-09
2.57209e-08
6.3921e-09
2.51285e-08
6.5498e-09
2.45216e-08
6.7038e-09
2.39006e-08
6.85404e-09
2.32659e-08
7.00042e-09
2.26178e-08
7.14286e-09
2.19569e-08
7.2813e-09
2.12835e-08
7.41565e-09
2.05981e-08
7.54583e-09
1.99011e-08
7.67177e-09
1.91928e-08
7.7934e-09
1.84737e-08
7.91064e-09
1.77441e-08
8.02344e-09
1.70044e-08
8.13174e-09
1.62552e-08
8.23548e-09
1.54967e-08
8.33461e-09
1.47296e-08
8.42909e-09
1.39543e-08
8.51886e-09
1.31712e-08
8.60389e-09
1.23808e-08
8.68413e-09
1.15835e-08
8.75956e-09
1.07797e-08
8.83016e-09
9.96981e-09
8.89589e-09
9.15435e-09
8.95673e-09
8.33379e-09
9.01256e-09
7.50865e-09
9.06311e-09
6.67947e-09
9.10768e-09
5.84687e-09
9.14466e-09
5.01171e-09
9.17048e-09
4.17544e-09
9.17732e-09
3.341e-09
9.14818e-09
2.51469e-09
9.04573e-09
1.71052e-09
8.78671e-09
9.60093e-10
8.18263e-09
3.35176e-10
6.80144e-09
3.6451e-09
2.50706e-08
-7.78533e-09
2.57815e-08
-7.39102e-09
2.64806e-08
-7.01139e-09
2.7167e-08
-6.65655e-09
2.78393e-08
-6.33239e-09
2.84961e-08
-6.03998e-09
2.91362e-08
-5.77649e-09
2.97585e-08
-5.53664e-09
3.03621e-08
-5.31425e-09
3.0946e-08
-5.10337e-09
3.15098e-08
-4.89901e-09
3.20529e-08
-4.69745e-09
3.25748e-08
-4.49613e-09
3.30752e-08
-4.29346e-09
3.35536e-08
-4.08852e-09
3.40098e-08
-3.88087e-09
3.44435e-08
-3.67034e-09
3.48544e-08
-3.45692e-09
3.52424e-08
-3.24071e-09
3.56071e-08
-3.02181e-09
3.59485e-08
-2.80038e-09
3.62663e-08
-2.57656e-09
3.65604e-08
-2.35052e-09
3.68307e-08
-2.12242e-09
3.70769e-08
-1.8924e-09
3.72991e-08
-1.66065e-09
3.74971e-08
-1.42732e-09
3.76709e-08
-1.19259e-09
3.78204e-08
-9.56617e-10
3.79457e-08
-7.19576e-10
3.80467e-08
-4.81634e-10
3.81233e-08
-2.42963e-10
3.81757e-08
-3.6174e-12
3.82039e-08
2.35933e-10
3.82079e-08
4.75811e-10
3.81878e-08
7.15758e-10
3.81436e-08
9.55612e-10
3.80755e-08
1.19521e-09
3.79836e-08
1.4344e-09
3.78681e-08
1.67301e-09
3.7729e-08
1.91088e-09
3.75665e-08
2.14787e-09
3.73809e-08
2.3838e-09
3.71723e-08
2.61854e-09
3.69409e-08
2.85191e-09
3.66868e-08
3.08378e-09
3.64104e-08
3.31399e-09
3.61119e-08
3.5424e-09
3.57915e-08
3.76886e-09
3.54494e-08
3.99324e-09
3.5086e-08
4.2154e-09
3.47016e-08
4.43521e-09
3.42964e-08
4.65253e-09
3.38708e-08
4.86724e-09
3.3425e-08
5.07918e-09
3.29594e-08
5.28825e-09
3.24744e-08
5.49429e-09
3.19702e-08
5.6972e-09
3.14472e-08
5.89685e-09
3.09057e-08
6.09312e-09
3.03462e-08
6.2859e-09
2.97689e-08
6.47509e-09
2.91743e-08
6.66059e-09
2.85628e-08
6.84229e-09
2.79348e-08
7.02009e-09
2.72906e-08
7.19391e-09
2.66308e-08
7.36362e-09
2.59557e-08
7.52915e-09
2.52657e-08
7.69039e-09
2.45614e-08
7.84726e-09
2.38431e-08
7.99966e-09
2.31112e-08
8.14752e-09
2.23663e-08
8.29076e-09
2.16087e-08
8.42931e-09
2.08389e-08
8.56311e-09
2.00574e-08
8.69207e-09
1.92646e-08
8.81614e-09
1.84609e-08
8.93526e-09
1.7647e-08
9.04935e-09
1.68231e-08
9.15836e-09
1.59899e-08
9.26224e-09
1.51479e-08
9.36094e-09
1.42975e-08
9.4544e-09
1.34392e-08
9.54258e-09
1.25735e-08
9.62545e-09
1.17008e-08
9.70297e-09
1.08216e-08
9.77513e-09
9.9364e-09
9.84188e-09
9.04561e-09
9.90313e-09
8.1498e-09
9.95859e-09
7.24958e-09
1.00075e-08
6.34565e-09
1.00483e-08
5.43897e-09
1.00769e-08
4.53118e-09
1.0085e-08
3.62546e-09
1.00539e-08
2.72864e-09
9.94266e-09
1.85592e-09
9.65959e-09
1.04157e-09
8.99711e-09
3.63531e-10
7.47955e-09
4.0087e-09
2.71593e-08
-8.57422e-09
2.7937e-08
-8.16861e-09
2.87025e-08
-7.77674e-09
2.94543e-08
-7.40831e-09
3.0191e-08
-7.06904e-09
3.0911e-08
-6.75997e-09
3.16129e-08
-6.47837e-09
3.22955e-08
-6.21913e-09
3.29577e-08
-5.97626e-09
3.35985e-08
-5.74402e-09
3.42172e-08
-5.51759e-09
3.48132e-08
-5.29336e-09
3.5386e-08
-5.06887e-09
3.59352e-08
-4.84259e-09
3.64604e-08
-4.61367e-09
3.69612e-08
-4.3817e-09
3.74373e-08
-4.14654e-09
3.78884e-08
-3.90821e-09
3.83143e-08
-3.6668e-09
3.87148e-08
-3.42247e-09
3.90897e-08
-3.17538e-09
3.94388e-08
-2.92571e-09
3.97619e-08
-2.67365e-09
4.00588e-08
-2.41937e-09
4.03295e-08
-2.16305e-09
4.05738e-08
-1.9049e-09
4.07916e-08
-1.64508e-09
4.09827e-08
-1.38379e-09
4.11473e-08
-1.12122e-09
4.12852e-08
-8.57538e-10
4.13965e-08
-5.92944e-10
4.14811e-08
-3.27623e-10
4.15391e-08
-6.16895e-11
4.15706e-08
2.04478e-10
4.15756e-08
4.70871e-10
4.15542e-08
7.37253e-10
4.15065e-08
1.00344e-09
4.14326e-08
1.26925e-09
4.13326e-08
1.5345e-09
4.12068e-08
1.79901e-09
4.10552e-08
2.06262e-09
4.08781e-08
2.32514e-09
4.06756e-08
2.58642e-09
4.0448e-08
2.84629e-09
4.01954e-08
3.10459e-09
3.99181e-08
3.36115e-09
3.96164e-08
3.61581e-09
3.92906e-08
3.86841e-09
3.8941e-08
4.11879e-09
3.85678e-08
4.36678e-09
3.81714e-08
4.61223e-09
3.77521e-08
4.85499e-09
3.73102e-08
5.09491e-09
3.68459e-08
5.33185e-09
3.63597e-08
5.56568e-09
3.58518e-08
5.79625e-09
3.53227e-08
6.02346e-09
3.47728e-08
6.24715e-09
3.42024e-08
6.46722e-09
3.3612e-08
6.68352e-09
3.30021e-08
6.89594e-09
3.2373e-08
7.10435e-09
3.17251e-08
7.30863e-09
3.1059e-08
7.50867e-09
3.03749e-08
7.70435e-09
2.96733e-08
7.89559e-09
2.89546e-08
8.08227e-09
2.82194e-08
8.26431e-09
2.7468e-08
8.44161e-09
2.6701e-08
8.61408e-09
2.59189e-08
8.78162e-09
2.51223e-08
8.94414e-09
2.43115e-08
9.10157e-09
2.34871e-08
9.2538e-09
2.26496e-08
9.40077e-09
2.17994e-08
9.5424e-09
2.09369e-08
9.67863e-09
2.00628e-08
9.80938e-09
1.91776e-08
9.9346e-09
1.82816e-08
1.00542e-08
1.73756e-08
1.01682e-08
1.646e-08
1.02765e-08
1.55354e-08
1.0379e-08
1.46022e-08
1.04758e-08
1.3661e-08
1.05667e-08
1.27123e-08
1.06517e-08
1.17567e-08
1.07309e-08
1.07947e-08
1.08041e-08
9.82687e-09
1.08713e-08
8.8537e-09
1.09321e-08
7.8758e-09
1.09858e-08
6.89385e-09
1.10305e-08
5.90884e-09
1.10622e-08
4.92251e-09
1.10716e-08
3.93835e-09
1.10383e-08
2.96385e-09
1.09174e-08
2.01561e-09
1.06082e-08
1.131e-09
9.88221e-09
3.94734e-10
8.21636e-09
4.40368e-09
2.94963e-08
-9.43834e-09
3.03488e-08
-9.02097e-09
3.11886e-08
-8.61617e-09
3.20137e-08
-8.23325e-09
3.28226e-08
-7.87772e-09
3.36135e-08
-7.55058e-09
3.43846e-08
-7.24924e-09
3.51344e-08
-6.96878e-09
3.58617e-08
-6.70345e-09
3.65656e-08
-6.44771e-09
3.72452e-08
-6.19697e-09
3.78998e-08
-5.94776e-09
3.85288e-08
-5.69774e-09
3.91317e-08
-5.44544e-09
3.97082e-08
-5.19009e-09
4.0258e-08
-4.93131e-09
4.07805e-08
-4.66901e-09
4.12756e-08
-4.40323e-09
4.1743e-08
-4.1341e-09
4.21824e-08
-3.86179e-09
4.25936e-08
-3.5865e-09
4.29764e-08
-3.30841e-09
4.33306e-08
-3.02773e-09
4.3656e-08
-2.74468e-09
4.39526e-08
-2.45947e-09
4.42202e-08
-2.17229e-09
4.44587e-08
-1.88337e-09
4.46679e-08
-1.5929e-09
4.4848e-08
-1.30111e-09
4.49988e-08
-1.00819e-09
4.51203e-08
-7.14362e-10
4.52125e-08
-4.1983e-10
4.52757e-08
-1.24782e-10
4.53096e-08
1.70538e-10
4.53144e-08
4.65932e-10
4.52903e-08
7.61225e-10
4.52373e-08
1.05621e-09
4.51556e-08
1.3507e-09
4.50453e-08
1.64449e-09
4.49068e-08
1.93739e-09
4.47401e-08
2.2292e-09
4.45455e-08
2.51974e-09
4.43232e-08
2.80879e-09
4.40735e-08
3.09619e-09
4.37966e-08
3.38173e-09
4.34927e-08
3.66524e-09
4.31622e-08
3.94655e-09
4.28052e-08
4.22549e-09
4.24221e-08
4.50187e-09
4.20133e-08
4.77555e-09
4.15791e-08
5.04635e-09
4.112e-08
5.31412e-09
4.06363e-08
5.5787e-09
4.01283e-08
5.83992e-09
3.95966e-08
6.09763e-09
3.90414e-08
6.35168e-09
3.84631e-08
6.60193e-09
3.78622e-08
6.84823e-09
3.7239e-08
7.09045e-09
3.65941e-08
7.32846e-09
3.59279e-08
7.56213e-09
3.52409e-08
7.79134e-09
3.45335e-08
8.01596e-09
3.38063e-08
8.23588e-09
3.30597e-08
8.45097e-09
3.22943e-08
8.66112e-09
3.15104e-08
8.86622e-09
3.07086e-08
9.06616e-09
2.98894e-08
9.26084e-09
2.90533e-08
9.45016e-09
2.82009e-08
9.63403e-09
2.73326e-08
9.81235e-09
2.6449e-08
9.98504e-09
2.55507e-08
1.0152e-08
2.46382e-08
1.03132e-08
2.37121e-08
1.04685e-08
2.27728e-08
1.06178e-08
2.18211e-08
1.07612e-08
2.08573e-08
1.08984e-08
1.98821e-08
1.10296e-08
1.8896e-08
1.11545e-08
1.78996e-08
1.12731e-08
1.68935e-08
1.13854e-08
1.58782e-08
1.14913e-08
1.48542e-08
1.15908e-08
1.38221e-08
1.16839e-08
1.27826e-08
1.17705e-08
1.17361e-08
1.18506e-08
1.06834e-08
1.19241e-08
9.62504e-09
1.19907e-08
8.56167e-09
1.20495e-08
7.49403e-09
1.20986e-08
6.42313e-09
1.21335e-08
5.35081e-09
1.21443e-08
4.28081e-09
1.21086e-08
3.22126e-09
1.19772e-08
2.19026e-09
1.16394e-08
1.22856e-09
1.08442e-08
4.28444e-10
9.0169e-09
4.83256e-09
3.2111e-08
-1.03866e-08
3.30468e-08
-9.95692e-09
3.3969e-08
-9.53847e-09
3.48759e-08
-9.14006e-09
3.57651e-08
-8.76695e-09
3.66347e-08
-8.42013e-09
3.74827e-08
-8.09712e-09
3.83072e-08
-7.79329e-09
3.91069e-08
-7.50315e-09
3.98806e-08
-7.22145e-09
4.06274e-08
-6.9438e-09
4.13466e-08
-6.66694e-09
4.20375e-08
-6.38866e-09
4.26996e-08
-6.1076e-09
4.33324e-08
-5.82303e-09
4.39356e-08
-5.53463e-09
4.45089e-08
-5.24234e-09
4.50519e-08
-4.94624e-09
4.55643e-08
-4.6465e-09
4.60458e-08
-4.3433e-09
4.64962e-08
-4.03688e-09
4.69153e-08
-3.72745e-09
4.73029e-08
-3.41525e-09
4.76588e-08
-3.1005e-09
4.79829e-08
-2.78345e-09
4.82751e-08
-2.46433e-09
4.85352e-08
-2.14337e-09
4.87632e-08
-1.82081e-09
4.8959e-08
-1.49688e-09
4.91226e-08
-1.17181e-09
4.9254e-08
-8.45835e-10
4.93533e-08
-5.19174e-10
4.94205e-08
-1.92047e-10
4.94556e-08
1.35315e-10
4.9459e-08
4.62603e-10
4.94306e-08
7.89683e-10
4.93706e-08
1.11631e-09
4.92791e-08
1.44226e-09
4.91564e-08
1.76733e-09
4.90027e-08
2.09128e-09
4.8818e-08
2.41392e-09
4.86028e-08
2.73503e-09
4.83572e-08
3.0544e-09
4.80816e-08
3.37184e-09
4.77762e-08
3.68713e-09
4.74415e-08
4.00009e-09
4.70775e-08
4.31052e-09
4.66849e-08
4.61822e-09
4.62638e-08
4.92302e-09
4.58147e-08
5.22473e-09
4.5338e-08
5.52316e-09
4.48341e-08
5.81815e-09
4.43033e-08
6.10951e-09
4.37461e-08
6.3971e-09
4.3163e-08
6.68073e-09
4.25545e-08
6.96026e-09
4.19208e-08
7.23553e-09
4.12627e-08
7.50638e-09
4.05804e-08
7.77268e-09
3.98747e-08
8.03428e-09
3.91458e-08
8.29104e-09
3.83944e-08
8.54281e-09
3.7621e-08
8.78948e-09
3.68261e-08
9.03091e-09
3.60102e-08
9.26696e-09
3.51739e-08
9.49754e-09
3.43176e-08
9.72251e-09
3.3442e-08
9.94176e-09
3.25476e-08
1.01552e-08
3.16349e-08
1.03627e-08
3.07047e-08
1.05642e-08
2.97573e-08
1.07596e-08
2.87935e-08
1.09487e-08
2.78138e-08
1.11316e-08
2.68188e-08
1.13081e-08
2.58092e-08
1.14781e-08
2.47855e-08
1.16416e-08
2.37484e-08
1.17985e-08
2.26983e-08
1.19487e-08
2.16359e-08
1.20921e-08
2.05618e-08
1.22287e-08
1.94765e-08
1.23584e-08
1.83807e-08
1.24812e-08
1.7275e-08
1.2597e-08
1.616e-08
1.27057e-08
1.50365e-08
1.28075e-08
1.3905e-08
1.29021e-08
1.27663e-08
1.29896e-08
1.16208e-08
1.30699e-08
1.04693e-08
1.31425e-08
9.31227e-09
1.32068e-08
8.15057e-09
1.32605e-08
6.98533e-09
1.32989e-08
5.81865e-09
1.3311e-08
4.65464e-09
1.32726e-08
3.50221e-09
1.31297e-08
2.38103e-09
1.27606e-08
1.3354e-09
1.18899e-08
4.65621e-10
9.88678e-09
5.29809e-09
3.50362e-08
-1.14281e-08
3.60649e-08
-1.09855e-08
3.7079e-08
-1.05525e-08
3.80764e-08
-1.01374e-08
3.90547e-08
-9.74519e-09
4.00114e-08
-9.37679e-09
4.09442e-08
-9.0299e-09
4.18512e-08
-8.70018e-09
4.27307e-08
-8.38251e-09
4.35813e-08
-8.07197e-09
4.44021e-08
-7.76445e-09
4.51922e-08
-7.45689e-09
4.5951e-08
-7.14725e-09
4.66779e-08
-6.83428e-09
4.73725e-08
-6.51734e-09
4.80342e-08
-6.19616e-09
4.86627e-08
-5.87071e-09
4.92577e-08
-5.54111e-09
4.98189e-08
-5.20755e-09
5.03459e-08
-4.87025e-09
5.08386e-08
-4.52947e-09
5.12967e-08
-4.18545e-09
5.172e-08
-3.83845e-09
5.21083e-08
-3.48874e-09
5.24615e-08
-3.13658e-09
5.27794e-08
-2.78224e-09
5.30621e-08
-2.42596e-09
5.33093e-08
-2.06802e-09
5.35212e-08
-1.70868e-09
5.36976e-08
-1.3482e-09
5.38386e-08
-9.8683e-10
5.39442e-08
-6.24827e-10
5.40145e-08
-2.62431e-10
5.40496e-08
1.00168e-10
5.40497e-08
4.62434e-10
5.4015e-08
8.24395e-10
5.39456e-08
1.18574e-09
5.38416e-08
1.5462e-09
5.37035e-08
1.90556e-09
5.35312e-08
2.26356e-09
5.33252e-08
2.61997e-09
5.30857e-08
2.97457e-09
5.28129e-08
3.32713e-09
5.25073e-08
3.67742e-09
5.21692e-08
4.02522e-09
5.1799e-08
4.37033e-09
5.13969e-08
4.71253e-09
5.09635e-08
5.05161e-09
5.04991e-08
5.38738e-09
5.00041e-08
5.71962e-09
4.9479e-08
6.04816e-09
4.89243e-08
6.37279e-09
4.83405e-08
6.69333e-09
4.7728e-08
7.0096e-09
4.70873e-08
7.32143e-09
4.64189e-08
7.62865e-09
4.57234e-08
7.93109e-09
4.50013e-08
8.22858e-09
4.42531e-08
8.52098e-09
4.34794e-08
8.80813e-09
4.26807e-08
9.08988e-09
4.18576e-08
9.36608e-09
4.10107e-08
9.63659e-09
4.01405e-08
9.90127e-09
3.92476e-08
1.016e-08
3.83326e-08
1.04126e-08
3.73962e-08
1.0659e-08
3.64388e-08
1.08991e-08
3.54613e-08
1.11328e-08
3.44641e-08
1.136e-08
3.3448e-08
1.15805e-08
3.24135e-08
1.17942e-08
3.13613e-08
1.20011e-08
3.0292e-08
1.22011e-08
2.92063e-08
1.23941e-08
2.81049e-08
1.25799e-08
2.69883e-08
1.27585e-08
2.58572e-08
1.29299e-08
2.47122e-08
1.30939e-08
2.35541e-08
1.32505e-08
2.23833e-08
1.33996e-08
2.12005e-08
1.35411e-08
2.00065e-08
1.36751e-08
1.88019e-08
1.38015e-08
1.75874e-08
1.39202e-08
1.63637e-08
1.40312e-08
1.51315e-08
1.41344e-08
1.38915e-08
1.42298e-08
1.26445e-08
1.43174e-08
1.13909e-08
1.43966e-08
1.01314e-08
1.44667e-08
8.86695e-09
1.45253e-08
7.59866e-09
1.45673e-08
6.32883e-09
1.45809e-08
5.06205e-09
1.45394e-08
3.80806e-09
1.43837e-08
2.58839e-09
1.39806e-08
1.45129e-09
1.30275e-08
5.05881e-10
1.08327e-08
5.80397e-09
3.83142e-08
-1.25737e-08
3.94457e-08
-1.21171e-08
4.05614e-08
-1.16682e-08
4.16586e-08
-1.12347e-08
4.27349e-08
-1.08214e-08
4.37873e-08
-1.04291e-08
4.48132e-08
-1.00558e-08
4.58105e-08
-9.69737e-09
4.67773e-08
-9.34918e-09
4.77121e-08
-9.00667e-09
4.86137e-08
-8.66603e-09
4.94813e-08
-8.32445e-09
5.0314e-08
-7.98006e-09
5.11114e-08
-7.63173e-09
5.1873e-08
-7.27891e-09
5.25982e-08
-6.92138e-09
5.32867e-08
-6.55919e-09
5.39381e-08
-6.19247e-09
5.45521e-08
-5.82146e-09
5.51282e-08
-5.4464e-09
5.56664e-08
-5.06759e-09
5.61663e-08
-4.6853e-09
5.66277e-08
-4.29983e-09
5.70504e-08
-3.91147e-09
5.74343e-08
-3.52051e-09
5.77793e-08
-3.12725e-09
5.80854e-08
-2.73198e-09
5.83524e-08
-2.33499e-09
5.85803e-08
-1.93658e-09
5.87692e-08
-1.53703e-09
5.89191e-08
-1.13665e-09
5.90301e-08
-7.35699e-10
5.91022e-08
-3.34465e-10
5.91352e-08
6.71523e-11
5.91301e-08
4.67628e-10
5.90866e-08
8.67906e-10
5.90049e-08
1.26736e-09
5.88854e-08
1.66571e-09
5.87283e-08
2.06269e-09
5.85339e-08
2.45803e-09
5.83024e-08
2.85148e-09
5.80343e-08
3.24278e-09
5.77298e-08
3.63168e-09
5.73895e-08
4.01792e-09
5.70135e-08
4.40127e-09
5.66025e-08
4.78148e-09
5.61568e-08
5.15834e-09
5.56768e-08
5.53162e-09
5.51631e-08
5.90111e-09
5.46161e-08
6.26659e-09
5.40363e-08
6.62786e-09
5.34243e-08
6.98472e-09
5.27806e-08
7.33697e-09
5.21057e-08
7.68441e-09
5.14003e-08
8.02685e-09
5.0665e-08
8.3641e-09
4.99002e-08
8.69598e-09
4.91066e-08
9.02232e-09
4.82847e-08
9.34295e-09
4.74352e-08
9.6577e-09
4.65587e-08
9.96643e-09
4.56557e-08
1.0269e-08
4.4727e-08
1.05652e-08
4.37731e-08
1.0855e-08
4.27948e-08
1.11381e-08
4.17928e-08
1.14146e-08
4.07676e-08
1.16841e-08
3.97201e-08
1.19467e-08
3.86508e-08
1.22021e-08
3.75604e-08
1.24504e-08
3.64496e-08
1.26913e-08
3.5319e-08
1.29247e-08
3.41694e-08
1.31507e-08
3.30014e-08
1.3369e-08
3.18158e-08
1.35796e-08
3.06133e-08
1.37824e-08
2.93945e-08
1.39773e-08
2.81603e-08
1.41642e-08
2.69113e-08
1.43431e-08
2.56481e-08
1.45138e-08
2.43715e-08
1.46764e-08
2.30821e-08
1.48307e-08
2.17807e-08
1.49767e-08
2.0468e-08
1.51144e-08
1.91447e-08
1.52436e-08
1.78116e-08
1.53644e-08
1.64695e-08
1.54768e-08
1.51189e-08
1.55807e-08
1.37607e-08
1.56759e-08
1.23954e-08
1.57621e-08
1.10239e-08
1.58384e-08
9.64715e-09
1.59022e-08
8.26647e-09
1.5948e-08
6.88438e-09
1.5963e-08
5.50578e-09
1.5918e-08
4.14125e-09
1.57484e-08
2.81418e-09
1.53078e-08
1.57718e-09
1.42647e-08
5.49142e-10
1.1861e-08
6.35347e-09
4.19902e-08
-1.38348e-08
4.32354e-08
-1.33626e-08
4.44629e-08
-1.28958e-08
4.56696e-08
-1.24418e-08
4.68529e-08
-1.20049e-08
4.80097e-08
-1.1586e-08
4.9137e-08
-1.11833e-08
5.02326e-08
-1.07931e-08
5.12943e-08
-1.0411e-08
5.23206e-08
-1.00331e-08
5.33102e-08
-9.65572e-09
5.42622e-08
-9.27644e-09
5.51756e-08
-8.89355e-09
5.60497e-08
-8.50605e-09
5.68842e-08
-8.11348e-09
5.76784e-08
-7.71571e-09
5.84319e-08
-7.3128e-09
5.91443e-08
-6.90497e-09
5.98152e-08
-6.49247e-09
6.04442e-08
-6.07559e-09
6.10312e-08
-5.65466e-09
6.15758e-08
-5.22999e-09
6.20777e-08
-4.80191e-09
6.25369e-08
-4.37076e-09
6.29532e-08
-3.93686e-09
6.33265e-08
-3.50056e-09
6.36566e-08
-3.06218e-09
6.39436e-08
-2.62206e-09
6.41875e-08
-2.18053e-09
6.43883e-08
-1.7379e-09
6.4546e-08
-1.29449e-09
6.46608e-08
-8.50632e-10
6.47328e-08
-4.06611e-10
6.47614e-08
3.84232e-11
6.47483e-08
4.80583e-10
6.46931e-08
9.23066e-10
6.4596e-08
1.36446e-09
6.44574e-08
1.80446e-09
6.42774e-08
2.24274e-09
6.40564e-08
2.67903e-09
6.37949e-08
3.11304e-09
6.34931e-08
3.54449e-09
6.31515e-08
3.97312e-09
6.27705e-08
4.39865e-09
6.23507e-08
4.82084e-09
6.18927e-08
5.23941e-09
6.13968e-08
5.65414e-09
6.08637e-08
6.06476e-09
6.02938e-08
6.47104e-09
5.96878e-08
6.87274e-09
5.90462e-08
7.26965e-09
5.83695e-08
7.66154e-09
5.76583e-08
8.04819e-09
5.69134e-08
8.42941e-09
5.61352e-08
8.80499e-09
5.53245e-08
9.17475e-09
5.4482e-08
9.53849e-09
5.36083e-08
9.89603e-09
5.27041e-08
1.02472e-08
5.177e-08
1.05918e-08
5.08068e-08
1.09297e-08
4.98151e-08
1.12607e-08
4.87956e-08
1.15846e-08
4.77491e-08
1.19014e-08
4.66762e-08
1.22109e-08
4.55778e-08
1.25128e-08
4.44545e-08
1.28072e-08
4.33072e-08
1.30939e-08
4.21366e-08
1.33727e-08
4.09434e-08
1.36436e-08
3.97283e-08
1.39064e-08
3.84921e-08
1.4161e-08
3.72354e-08
1.44073e-08
3.5959e-08
1.46453e-08
3.46637e-08
1.48748e-08
3.33503e-08
1.50957e-08
3.20195e-08
1.53079e-08
3.06723e-08
1.55114e-08
2.93092e-08
1.57061e-08
2.7931e-08
1.5892e-08
2.65386e-08
1.60688e-08
2.51325e-08
1.62367e-08
2.37136e-08
1.63955e-08
2.22827e-08
1.65452e-08
2.08406e-08
1.66858e-08
1.93879e-08
1.68172e-08
1.79257e-08
1.69393e-08
1.64545e-08
1.70522e-08
1.49751e-08
1.71556e-08
1.34883e-08
1.72492e-08
1.19948e-08
1.7332e-08
1.04958e-08
1.74013e-08
8.99282e-09
1.74511e-08
7.48847e-09
1.74673e-08
5.98817e-09
1.74184e-08
4.50339e-09
1.72332e-08
3.05963e-09
1.67515e-08
1.71418e-09
1.561e-08
5.96476e-10
1.29785e-08
6.94982e-09
4.61058e-08
-1.52239e-08
4.74771e-08
-1.4734e-08
4.88277e-08
-1.42466e-08
5.0155e-08
-1.3769e-08
5.14556e-08
-1.33055e-08
5.27263e-08
-1.28568e-08
5.39644e-08
-1.24213e-08
5.51672e-08
-1.19958e-08
5.63325e-08
-1.15763e-08
5.74586e-08
-1.11592e-08
5.85441e-08
-1.07412e-08
5.9588e-08
-1.03203e-08
6.05893e-08
-9.89479e-09
6.15472e-08
-9.46394e-09
6.2461e-08
-9.02735e-09
6.33302e-08
-8.58497e-09
6.41542e-08
-8.13692e-09
6.49327e-08
-7.68347e-09
6.56651e-08
-7.22493e-09
6.63513e-08
-6.76164e-09
6.69907e-08
-6.29398e-09
6.75831e-08
-5.8223e-09
6.81282e-08
-5.34698e-09
6.86259e-08
-4.8684e-09
6.90759e-08
-4.38693e-09
6.94783e-08
-3.90294e-09
6.9833e-08
-3.41681e-09
7.014e-08
-2.92893e-09
7.03992e-08
-2.43965e-09
7.06109e-08
-1.94935e-09
7.0775e-08
-1.4584e-09
7.08918e-08
-9.6715e-10
7.09614e-08
-4.75941e-10
7.09833e-08
1.67241e-11
7.0959e-08
5.04968e-10
7.08884e-08
9.93842e-10
7.07716e-08
1.48132e-09
7.0609e-08
1.96703e-09
7.04011e-08
2.45065e-09
7.01482e-08
2.93185e-09
6.98509e-08
3.41033e-09
6.95095e-08
3.88578e-09
6.91246e-08
4.35791e-09
6.86968e-08
4.82641e-09
6.82265e-08
5.29101e-09
6.77144e-08
5.75143e-09
6.71611e-08
6.20739e-09
6.65671e-08
6.65864e-09
6.59332e-08
7.10493e-09
6.52599e-08
7.546e-09
6.45479e-08
7.98161e-09
6.37979e-08
8.41153e-09
6.30105e-08
8.83554e-09
6.21865e-08
9.2534e-09
6.13266e-08
9.66492e-09
6.04315e-08
1.00699e-08
5.95021e-08
1.0468e-08
5.85389e-08
1.08593e-08
5.75427e-08
1.12433e-08
5.65144e-08
1.16201e-08
5.54546e-08
1.19893e-08
5.43641e-08
1.23509e-08
5.32438e-08
1.27047e-08
5.20944e-08
1.30505e-08
5.09167e-08
1.33882e-08
4.97117e-08
1.37177e-08
4.84801e-08
1.40387e-08
4.72228e-08
1.43513e-08
4.59405e-08
1.46552e-08
4.4634e-08
1.49503e-08
4.33041e-08
1.52365e-08
4.19516e-08
1.55137e-08
4.05772e-08
1.57818e-08
3.91818e-08
1.60407e-08
3.77662e-08
1.62902e-08
3.63313e-08
1.65304e-08
3.48779e-08
1.67612e-08
3.34069e-08
1.69824e-08
3.19191e-08
1.71939e-08
3.04153e-08
1.73958e-08
2.88963e-08
1.7588e-08
2.7363e-08
1.77703e-08
2.5816e-08
1.79427e-08
2.42562e-08
1.81052e-08
2.26845e-08
1.82577e-08
2.11016e-08
1.84002e-08
1.95083e-08
1.85326e-08
1.79056e-08
1.86549e-08
1.62941e-08
1.87671e-08
1.46749e-08
1.88685e-08
1.30487e-08
1.89583e-08
1.14168e-08
1.90334e-08
9.78074e-09
1.90874e-08
8.14352e-09
1.9105e-08
6.51093e-09
1.90515e-08
4.8955e-09
1.88491e-08
3.32511e-09
1.83224e-08
1.86222e-09
1.70733e-08
6.47737e-10
1.41933e-08
7.59745e-09
5.06967e-08
-1.67564e-08
5.22086e-08
-1.62461e-08
5.36964e-08
-1.57347e-08
5.5157e-08
-1.52299e-08
5.65873e-08
-1.4736e-08
5.79839e-08
-1.42537e-08
5.93439e-08
-1.37815e-08
6.06647e-08
-1.33167e-08
6.19441e-08
-1.28557e-08
6.318e-08
-1.23951e-08
6.43711e-08
-1.19322e-08
6.5516e-08
-1.14651e-08
6.66138e-08
-1.09924e-08
6.76635e-08
-1.05135e-08
6.86644e-08
-1.0028e-08
6.96156e-08
-9.53614e-09
7.05167e-08
-9.03797e-09
7.13671e-08
-8.53385e-09
7.21663e-08
-8.02415e-09
7.29139e-08
-7.50928e-09
7.36096e-08
-6.98965e-09
7.4253e-08
-6.4657e-09
7.4844e-08
-5.93786e-09
7.53822e-08
-5.40656e-09
7.58676e-08
-4.87223e-09
7.63e-08
-4.33529e-09
7.66795e-08
-3.79619e-09
7.7006e-08
-3.25533e-09
7.72797e-08
-2.71314e-09
7.75006e-08
-2.17004e-09
7.76689e-08
-1.62644e-09
7.77848e-08
-1.08275e-09
7.78485e-08
-5.39325e-10
7.7861e-08
4.45442e-12
7.78212e-08
5.45038e-10
7.77304e-08
1.08493e-09
7.75888e-08
1.6231e-09
7.73969e-08
2.15906e-09
7.71552e-08
2.69246e-09
7.68643e-08
3.22294e-09
7.65245e-08
3.75015e-09
7.61366e-08
4.27376e-09
7.5701e-08
4.79344e-09
7.52185e-08
5.30889e-09
7.46897e-08
5.81979e-09
7.41152e-08
6.32584e-09
7.34958e-08
6.82676e-09
7.28323e-08
7.32226e-09
7.21253e-08
7.81206e-09
7.13755e-08
8.29591e-09
7.05838e-08
8.77352e-09
6.97508e-08
9.24467e-09
6.88774e-08
9.70909e-09
6.79643e-08
1.01666e-08
6.70123e-08
1.06169e-08
6.60223e-08
1.10598e-08
6.49952e-08
1.14951e-08
6.39318e-08
1.19226e-08
6.28329e-08
1.23422e-08
6.16995e-08
1.27535e-08
6.05323e-08
1.31565e-08
5.93322e-08
1.3551e-08
5.81001e-08
1.39368e-08
5.68368e-08
1.43137e-08
5.55433e-08
1.46817e-08
5.42205e-08
1.50405e-08
5.28693e-08
1.539e-08
5.14905e-08
1.57301e-08
5.0085e-08
1.60606e-08
4.86537e-08
1.63815e-08
4.71973e-08
1.66927e-08
4.57169e-08
1.69939e-08
4.42132e-08
1.72852e-08
4.26872e-08
1.75664e-08
4.11399e-08
1.78374e-08
3.9572e-08
1.80982e-08
3.79847e-08
1.83486e-08
3.63786e-08
1.85885e-08
3.47548e-08
1.8818e-08
3.3114e-08
1.90368e-08
3.1457e-08
1.92451e-08
2.97847e-08
1.94426e-08
2.8098e-08
1.96293e-08
2.63977e-08
1.98053e-08
2.46847e-08
1.99704e-08
2.296e-08
2.01247e-08
2.12245e-08
2.02681e-08
1.9479e-08
2.04005e-08
1.77244e-08
2.05217e-08
1.59616e-08
2.06315e-08
1.41915e-08
2.07284e-08
1.24154e-08
2.08096e-08
1.06349e-08
2.08679e-08
8.85334e-09
2.08865e-08
7.07699e-09
2.08277e-08
5.31963e-09
2.06063e-08
3.61173e-09
2.00302e-08
2.02147e-09
1.86636e-08
7.0224e-10
1.55127e-08
8.29996e-09
5.5797e-08
-1.84484e-08
5.74664e-08
-1.79155e-08
5.9108e-08
-1.73762e-08
6.0718e-08
-1.684e-08
6.22934e-08
-1.63114e-08
6.38309e-08
-1.57912e-08
6.53273e-08
-1.5278e-08
6.67798e-08
-1.47694e-08
6.81862e-08
-1.42622e-08
6.95445e-08
-1.37534e-08
7.08529e-08
-1.32407e-08
7.211e-08
-1.27223e-08
7.33147e-08
-1.21972e-08
7.44659e-08
-1.16648e-08
7.55627e-08
-1.1125e-08
7.66043e-08
-1.05779e-08
7.75899e-08
-1.00238e-08
7.8519e-08
-9.46314e-09
7.93908e-08
-8.89635e-09
8.02051e-08
-8.3239e-09
8.09614e-08
-7.74629e-09
8.16595e-08
-7.16402e-09
8.2299e-08
-6.5776e-09
8.28798e-08
-5.98752e-09
8.34018e-08
-5.39429e-09
8.38648e-08
-4.79842e-09
8.42689e-08
-4.20037e-09
8.46142e-08
-3.60066e-09
8.49007e-08
-2.99974e-09
8.51287e-08
-2.39809e-09
8.52984e-08
-1.79618e-09
8.54101e-08
-1.19446e-09
8.54641e-08
-5.93341e-10
8.54605e-08
8.09099e-12
8.54003e-08
6.05318e-10
8.52837e-08
1.20153e-09
8.51113e-08
1.79555e-09
8.48835e-08
2.38683e-09
8.46009e-08
2.97496e-09
8.42643e-08
3.55953e-09
8.38742e-08
4.14018e-09
8.34313e-08
4.71654e-09
8.29365e-08
5.28826e-09
8.23903e-08
5.85501e-09
8.17936e-08
6.41644e-09
8.11473e-08
6.97224e-09
8.0452e-08
7.52208e-09
7.97086e-08
8.06567e-09
7.89181e-08
8.60271e-09
7.80811e-08
9.13292e-09
7.71987e-08
9.65602e-09
7.62715e-08
1.01718e-08
7.53007e-08
1.06799e-08
7.4287e-08
1.11801e-08
7.32314e-08
1.16723e-08
7.21349e-08
1.21561e-08
7.09984e-08
1.26315e-08
6.9823e-08
1.3098e-08
6.86095e-08
1.35556e-08
6.73588e-08
1.40041e-08
6.6072e-08
1.44433e-08
6.475e-08
1.4873e-08
6.33937e-08
1.5293e-08
6.20042e-08
1.57032e-08
6.05824e-08
1.61034e-08
5.91292e-08
1.64935e-08
5.76458e-08
1.68734e-08
5.61331e-08
1.72429e-08
5.45921e-08
1.76019e-08
5.30236e-08
1.79502e-08
5.14286e-08
1.82878e-08
4.98081e-08
1.86146e-08
4.81629e-08
1.89304e-08
4.64941e-08
1.92351e-08
4.48026e-08
1.95288e-08
4.30893e-08
1.98112e-08
4.13554e-08
2.00823e-08
3.96017e-08
2.03421e-08
3.78292e-08
2.05904e-08
3.60388e-08
2.08272e-08
3.42315e-08
2.10525e-08
3.24081e-08
2.12661e-08
3.05696e-08
2.1468e-08
2.87168e-08
2.16581e-08
2.68506e-08
2.18365e-08
2.49721e-08
2.20031e-08
2.30822e-08
2.21579e-08
2.11817e-08
2.23008e-08
1.92716e-08
2.24317e-08
1.7353e-08
2.25501e-08
1.54268e-08
2.26547e-08
1.34944e-08
2.27422e-08
1.15577e-08
2.28047e-08
9.62004e-09
2.28242e-08
7.68845e-09
2.27593e-08
5.77791e-09
2.25168e-08
3.92161e-09
2.18863e-08
2.19384e-09
2.03911e-08
7.61424e-10
1.69448e-08
9.06123e-09
6.14404e-08
-2.03198e-08
6.32876e-08
-1.97628e-08
6.51031e-08
-1.91916e-08
6.68825e-08
-1.86195e-08
6.86225e-08
-1.80513e-08
7.03197e-08
-1.74882e-08
7.19706e-08
-1.69289e-08
7.35724e-08
-1.63712e-08
7.51225e-08
-1.58123e-08
7.66187e-08
-1.52497e-08
7.80592e-08
-1.46813e-08
7.94424e-08
-1.41056e-08
8.07669e-08
-1.35217e-08
8.20314e-08
-1.29294e-08
8.3235e-08
-1.23285e-08
8.43766e-08
-1.17195e-08
8.54555e-08
-1.11027e-08
8.64709e-08
-1.04786e-08
8.74223e-08
-9.84773e-09
8.8309e-08
-9.21071e-09
8.91308e-08
-8.56811e-09
8.98871e-08
-7.92053e-09
9.05779e-08
-7.26854e-09
9.1203e-08
-6.61274e-09
9.17623e-08
-5.9537e-09
9.22559e-08
-5.292e-09
9.26837e-08
-4.62822e-09
9.30459e-08
-3.9629e-09
9.33428e-08
-3.2966e-09
9.35746e-08
-2.62986e-09
9.37417e-08
-1.9632e-09
9.38445e-08
-1.29713e-09
9.38834e-08
-6.32132e-10
9.38583e-08
3.32759e-11
9.37709e-08
6.92815e-10
9.36213e-08
1.3511e-09
9.34101e-08
2.00665e-09
9.31381e-08
2.65878e-09
9.28059e-08
3.30703e-09
9.24144e-08
3.95098e-09
9.19644e-08
4.5902e-09
9.14567e-08
5.2243e-09
9.08921e-08
5.8529e-09
9.02716e-08
6.47563e-09
8.95961e-08
7.09213e-09
8.88664e-08
7.70205e-09
8.80835e-08
8.30506e-09
8.72484e-08
8.90084e-09
8.63621e-08
9.48909e-09
8.54256e-08
1.00695e-08
8.44399e-08
1.06418e-08
8.3406e-08
1.12057e-08
8.2325e-08
1.17609e-08
8.11979e-08
1.23073e-08
8.00257e-08
1.28444e-08
7.88095e-08
1.33722e-08
7.75504e-08
1.38904e-08
7.62494e-08
1.43988e-08
7.49077e-08
1.48972e-08
7.35263e-08
1.53853e-08
7.21063e-08
1.58631e-08
7.06487e-08
1.63304e-08
6.91547e-08
1.67869e-08
6.76254e-08
1.72325e-08
6.60617e-08
1.76671e-08
6.44648e-08
1.80905e-08
6.28357e-08
1.85025e-08
6.11755e-08
1.89032e-08
5.94852e-08
1.92922e-08
5.77658e-08
1.96696e-08
5.60185e-08
2.00352e-08
5.42441e-08
2.03889e-08
5.24439e-08
2.07306e-08
5.06188e-08
2.10603e-08
4.87699e-08
2.13778e-08
4.68981e-08
2.1683e-08
4.50046e-08
2.1976e-08
4.30902e-08
2.22565e-08
4.1156e-08
2.25246e-08
3.9203e-08
2.27802e-08
3.7232e-08
2.30232e-08
3.52443e-08
2.32536e-08
3.32407e-08
2.34713e-08
3.12223e-08
2.36763e-08
2.919e-08
2.38686e-08
2.71449e-08
2.40481e-08
2.50879e-08
2.42149e-08
2.30198e-08
2.43688e-08
2.09418e-08
2.45097e-08
1.88546e-08
2.46371e-08
1.67596e-08
2.47495e-08
1.4658e-08
2.48435e-08
1.25521e-08
2.49105e-08
1.04457e-08
2.49307e-08
8.34632e-09
2.48588e-08
6.27047e-09
2.4593e-08
4.25433e-09
2.39029e-08
2.37876e-09
2.22671e-08
8.25031e-10
1.84988e-08
9.88621e-09
6.76729e-08
-2.23921e-08
6.97213e-08
-2.18112e-08
7.17345e-08
-2.12048e-08
7.37073e-08
-2.05922e-08
7.56354e-08
-1.99795e-08
7.75151e-08
-1.93681e-08
7.9343e-08
-1.87568e-08
8.11155e-08
-1.81439e-08
8.28298e-08
-1.75269e-08
8.44834e-08
-1.69036e-08
8.6074e-08
-1.62722e-08
8.75999e-08
-1.56317e-08
8.90596e-08
-1.49815e-08
9.04515e-08
-1.43214e-08
9.17745e-08
-1.36516e-08
9.30275e-08
-1.29725e-08
9.42096e-08
-1.22848e-08
9.532e-08
-1.15889e-08
9.6358e-08
-1.08857e-08
9.73232e-08
-1.01758e-08
9.8215e-08
-9.45996e-09
9.90333e-08
-8.73879e-09
9.97778e-08
-8.01302e-09
1.00449e-07
-7.28336e-09
1.01045e-07
-6.55048e-09
1.01568e-07
-5.81505e-09
1.02018e-07
-5.07771e-09
1.02394e-07
-4.33911e-09
1.02698e-07
-3.59988e-09
1.02928e-07
-2.86063e-09
1.03087e-07
-2.12195e-09
1.03175e-07
-1.38442e-09
1.03191e-07
-6.48527e-10
1.03137e-07
8.74189e-11
1.03014e-07
8.16135e-10
1.02823e-07
1.54295e-09
1.02563e-07
2.2663e-09
1.02237e-07
2.98537e-09
1.01844e-07
3.69965e-09
1.01387e-07
4.40867e-09
1.00865e-07
5.11198e-09
1.00281e-07
5.80916e-09
9.96339e-08
6.4998e-09
9.89262e-08
7.18351e-09
9.81586e-08
7.8599e-09
9.73322e-08
8.52862e-09
9.64481e-08
9.1893e-09
9.55075e-08
9.84162e-09
9.45114e-08
1.04852e-08
9.34612e-08
1.11199e-08
9.23578e-08
1.17452e-08
9.12026e-08
1.23609e-08
8.99967e-08
1.29668e-08
8.87413e-08
1.35626e-08
8.74375e-08
1.41481e-08
8.60867e-08
1.47229e-08
8.469e-08
1.5287e-08
8.32487e-08
1.58401e-08
8.17639e-08
1.6382e-08
8.02368e-08
1.69124e-08
7.86687e-08
1.74313e-08
7.70606e-08
1.79384e-08
7.54138e-08
1.84336e-08
7.37295e-08
1.89167e-08
7.20088e-08
1.93876e-08
7.0253e-08
1.98462e-08
6.84632e-08
2.02923e-08
6.66406e-08
2.07257e-08
6.47863e-08
2.11465e-08
6.29016e-08
2.15545e-08
6.09874e-08
2.19495e-08
5.90449e-08
2.23315e-08
5.70752e-08
2.27004e-08
5.50794e-08
2.30561e-08
5.30585e-08
2.33986e-08
5.10137e-08
2.37278e-08
4.89461e-08
2.40435e-08
4.68567e-08
2.43458e-08
4.47467e-08
2.46345e-08
4.2617e-08
2.49097e-08
4.04689e-08
2.51713e-08
3.83032e-08
2.54192e-08
3.61211e-08
2.56534e-08
3.39235e-08
2.58739e-08
3.17115e-08
2.60806e-08
2.94861e-08
2.62736e-08
2.72483e-08
2.64527e-08
2.49991e-08
2.66181e-08
2.27395e-08
2.67693e-08
2.04707e-08
2.6906e-08
1.81937e-08
2.70266e-08
1.59102e-08
2.71271e-08
1.36223e-08
2.71984e-08
1.13342e-08
2.72188e-08
9.05412e-09
2.71388e-08
6.80006e-09
2.68469e-08
4.61155e-09
2.60913e-08
2.57667e-09
2.43019e-08
8.9247e-10
2.0183e-08
1.07787e-08
7.45568e-08
-2.46888e-08
7.68321e-08
-2.40867e-08
7.90702e-08
-2.34431e-08
8.1264e-08
-2.27861e-08
8.34083e-08
-2.21241e-08
8.54986e-08
-2.14586e-08
8.75305e-08
-2.07889e-08
8.94999e-08
-2.01135e-08
9.14032e-08
-1.94304e-08
9.32375e-08
-1.87381e-08
9.5e-08
-1.8035e-08
9.66886e-08
-1.73206e-08
9.83014e-08
-1.65946e-08
9.98369e-08
-1.58571e-08
1.01294e-07
-1.51086e-08
1.02671e-07
-1.43496e-08
1.03967e-07
-1.3581e-08
1.05181e-07
-1.28035e-08
1.06314e-07
-1.2018e-08
1.07363e-07
-1.12254e-08
1.08329e-07
-1.04264e-08
1.09212e-07
-9.62191e-09
1.10012e-07
-8.81277e-09
1.10728e-07
-7.99977e-09
1.11361e-07
-7.18371e-09
1.11912e-07
-6.36536e-09
1.12379e-07
-5.54548e-09
1.12765e-07
-4.72479e-09
1.13069e-07
-3.90401e-09
1.13292e-07
-3.08384e-09
1.13435e-07
-2.26494e-09
1.13499e-07
-1.44795e-09
1.13484e-07
-6.33429e-10
1.1339e-07
1.81474e-10
1.13221e-07
9.85658e-10
1.12975e-07
1.7883e-09
1.12656e-07
2.58631e-09
1.12262e-07
3.37897e-09
1.11796e-07
4.16571e-09
1.11259e-07
4.94602e-09
1.10652e-07
5.71943e-09
1.09976e-07
6.48548e-09
1.09232e-07
7.24373e-09
1.08422e-07
7.99377e-09
1.07547e-07
8.73519e-09
1.06608e-07
9.46761e-09
1.05607e-07
1.01907e-08
1.04545e-07
1.0904e-08
1.03422e-07
1.16073e-08
1.02242e-07
1.23003e-08
1.01004e-07
1.29826e-08
9.97111e-08
1.3654e-08
9.83636e-08
1.43142e-08
9.69632e-08
1.49629e-08
9.55113e-08
1.56e-08
9.40091e-08
1.6225e-08
9.2458e-08
1.6838e-08
9.08594e-08
1.74385e-08
8.92145e-08
1.80265e-08
8.75249e-08
1.86018e-08
8.57917e-08
1.91641e-08
8.40164e-08
1.97134e-08
8.22002e-08
2.02495e-08
8.03445e-08
2.07722e-08
7.84506e-08
2.12814e-08
7.65197e-08
2.17769e-08
7.4553e-08
2.22587e-08
7.2552e-08
2.27267e-08
7.05177e-08
2.31807e-08
6.84514e-08
2.36207e-08
6.63545e-08
2.40465e-08
6.4228e-08
2.44581e-08
6.20731e-08
2.48553e-08
5.98911e-08
2.52383e-08
5.76831e-08
2.56067e-08
5.54501e-08
2.59607e-08
5.31934e-08
2.63001e-08
5.09141e-08
2.6625e-08
4.86134e-08
2.69352e-08
4.62924e-08
2.72307e-08
4.39522e-08
2.75114e-08
4.1594e-08
2.77775e-08
3.92188e-08
2.80287e-08
3.68278e-08
2.82651e-08
3.44219e-08
2.84867e-08
3.20021e-08
2.86935e-08
2.95694e-08
2.88854e-08
2.7125e-08
2.90624e-08
2.46698e-08
2.92243e-08
2.22051e-08
2.93705e-08
1.97322e-08
2.94994e-08
1.72528e-08
2.96066e-08
1.47692e-08
2.96822e-08
1.2286e-08
2.97023e-08
9.81215e-09
2.9613e-08
7.3671e-09
2.92921e-08
4.99392e-09
2.84644e-08
2.78847e-09
2.65071e-08
9.64697e-10
2.20064e-08
1.17432e-08
8.2173e-08
-2.72346e-08
8.47034e-08
-2.66171e-08
8.71975e-08
-2.59372e-08
8.96449e-08
-2.52338e-08
9.2039e-08
-2.45183e-08
9.43733e-08
-2.37929e-08
9.6642e-08
-2.30576e-08
9.88396e-08
-2.23112e-08
1.00962e-07
-2.15526e-08
1.03004e-07
-2.07807e-08
1.04964e-07
-1.99949e-08
1.06839e-07
-1.91951e-08
1.08625e-07
-1.83814e-08
1.10323e-07
-1.75545e-08
1.11929e-07
-1.67151e-08
1.13444e-07
-1.5864e-08
1.14865e-07
-1.50024e-08
1.16193e-07
-1.41311e-08
1.17427e-07
-1.32513e-08
1.18565e-07
-1.23641e-08
1.19609e-07
-1.14703e-08
1.20558e-07
-1.0571e-08
1.21413e-07
-9.66716e-09
1.22173e-07
-8.75974e-09
1.22839e-07
-7.84966e-09
1.23411e-07
-6.9378e-09
1.23891e-07
-6.02504e-09
1.24278e-07
-5.1122e-09
1.24574e-07
-4.2001e-09
1.2478e-07
-3.28951e-09
1.24897e-07
-2.38117e-09
1.24924e-07
-1.47578e-09
1.24865e-07
-5.73866e-10
1.2472e-07
3.26123e-10
1.2449e-07
1.216e-09
1.24177e-07
2.102e-09
1.23781e-07
2.98212e-09
1.23305e-07
3.85553e-09
1.22749e-07
4.72163e-09
1.22116e-07
5.57986e-09
1.21405e-07
6.42971e-09
1.2062e-07
7.27071e-09
1.19762e-07
8.10241e-09
1.18831e-07
8.92436e-09
1.1783e-07
9.73616e-09
1.16761e-07
1.05374e-08
1.15623e-07
1.13278e-08
1.1442e-07
1.21069e-08
1.13153e-07
1.28744e-08
1.11824e-07
1.36299e-08
1.10433e-07
1.43733e-08
1.08983e-07
1.51042e-08
1.07475e-07
1.58223e-08
1.0591e-07
1.65274e-08
1.04291e-07
1.72192e-08
1.02618e-07
1.78976e-08
1.00894e-07
1.85623e-08
9.91189e-08
1.92131e-08
9.72954e-08
1.98499e-08
9.54246e-08
2.04724e-08
9.3508e-08
2.10806e-08
9.15471e-08
2.16742e-08
8.95433e-08
2.22532e-08
8.74981e-08
2.28174e-08
8.54129e-08
2.33666e-08
8.3289e-08
2.39009e-08
8.11279e-08
2.442e-08
7.89309e-08
2.49239e-08
7.66993e-08
2.54124e-08
7.44345e-08
2.58856e-08
7.21377e-08
2.63434e-08
6.98104e-08
2.67856e-08
6.74537e-08
2.72122e-08
6.50689e-08
2.76232e-08
6.26572e-08
2.80185e-08
6.02199e-08
2.83982e-08
5.77581e-08
2.8762e-08
5.52731e-08
2.911e-08
5.2766e-08
2.94423e-08
5.02381e-08
2.97586e-08
4.76906e-08
3.00591e-08
4.51246e-08
3.03437e-08
4.25412e-08
3.06123e-08
3.99416e-08
3.0865e-08
3.73267e-08
3.11018e-08
3.46976e-08
3.13227e-08
3.20554e-08
3.15276e-08
2.94013e-08
3.17165e-08
2.67363e-08
3.18893e-08
2.40616e-08
3.20451e-08
2.13787e-08
3.21823e-08
1.86891e-08
3.22962e-08
1.59956e-08
3.23757e-08
1.3303e-08
3.23949e-08
1.06212e-08
3.22948e-08
7.97153e-09
3.19419e-08
5.40086e-09
3.10351e-08
3.01343e-09
2.88944e-08
1.04121e-09
2.39784e-08
1.27841e-08
9.06162e-08
-3.00587e-08
9.34364e-08
-2.94373e-08
9.62248e-08
-2.87257e-08
9.89668e-08
-2.7976e-08
1.01652e-07
-2.72039e-08
1.04272e-07
-2.64129e-08
1.06818e-07
-2.56035e-08
1.09282e-07
-2.47756e-08
1.11659e-07
-2.39292e-08
1.13942e-07
-2.30644e-08
1.16129e-07
-2.21816e-08
1.18215e-07
-2.12816e-08
1.20199e-07
-2.03652e-08
1.22078e-07
-1.94336e-08
1.23851e-07
-1.8488e-08
1.25516e-07
-1.75296e-08
1.27073e-07
-1.65599e-08
1.28522e-07
-1.558e-08
1.29862e-07
-1.45914e-08
1.31093e-07
-1.35951e-08
1.32215e-07
-1.25925e-08
1.33229e-07
-1.15848e-08
1.34135e-07
-1.0573e-08
1.34934e-07
-9.55825e-09
1.35625e-07
-8.54161e-09
1.36212e-07
-7.52411e-09
1.36693e-07
-6.50672e-09
1.37072e-07
-5.49037e-09
1.37347e-07
-4.47596e-09
1.37522e-07
-3.46435e-09
1.37597e-07
-2.45635e-09
1.37574e-07
-1.45272e-09
1.37455e-07
-4.53905e-10
1.37239e-07
5.41969e-10
1.36931e-07
1.52437e-09
1.36531e-07
2.50228e-09
1.3604e-07
3.47258e-09
1.35462e-07
4.43447e-09
1.34796e-07
5.38728e-09
1.34045e-07
6.33047e-09
1.33212e-07
7.26349e-09
1.32296e-07
8.18587e-09
1.31302e-07
9.09713e-09
1.30229e-07
9.99683e-09
1.29081e-07
1.08846e-08
1.27859e-07
1.17599e-08
1.26564e-07
1.26225e-08
1.25198e-07
1.34721e-08
1.23764e-07
1.43082e-08
1.22264e-07
1.51306e-08
1.20698e-07
1.5939e-08
1.19069e-07
1.67331e-08
1.17378e-07
1.75126e-08
1.15628e-07
1.82774e-08
1.1382e-07
1.90273e-08
1.11955e-07
1.97619e-08
1.10036e-07
2.04811e-08
1.08064e-07
2.11848e-08
1.06041e-07
2.18728e-08
1.03969e-07
2.25448e-08
1.01848e-07
2.32009e-08
9.96815e-08
2.38408e-08
9.74701e-08
2.44645e-08
9.52156e-08
2.50718e-08
9.29195e-08
2.56627e-08
9.05833e-08
2.6237e-08
8.82084e-08
2.67947e-08
8.57964e-08
2.73358e-08
8.33488e-08
2.786e-08
8.08669e-08
2.83675e-08
7.83522e-08
2.88581e-08
7.5806e-08
2.93318e-08
7.32298e-08
2.97885e-08
7.06247e-08
3.02283e-08
6.79922e-08
3.0651e-08
6.53334e-08
3.10568e-08
6.26497e-08
3.14455e-08
5.99422e-08
3.18172e-08
5.72123e-08
3.21719e-08
5.44613e-08
3.25094e-08
5.16903e-08
3.28299e-08
4.89005e-08
3.31334e-08
4.60932e-08
3.34197e-08
4.32693e-08
3.3689e-08
4.043e-08
3.39411e-08
3.75764e-08
3.41763e-08
3.47097e-08
3.43943e-08
3.18309e-08
3.45953e-08
2.89412e-08
3.47788e-08
2.60418e-08
3.49444e-08
2.31342e-08
3.50898e-08
2.02202e-08
3.52102e-08
1.73024e-08
3.52933e-08
1.43863e-08
3.53109e-08
1.14825e-08
3.51983e-08
8.61432e-09
3.48096e-08
5.83295e-09
3.3816e-08
3.25167e-09
3.14753e-08
1.12176e-09
2.61081e-08
1.39059e-08
1.00014e-07
-3.31987e-08
1.0317e-07
-3.25936e-08
1.06303e-07
-3.18586e-08
1.09391e-07
-3.10646e-08
1.1242e-07
-3.0233e-08
1.15377e-07
-2.93692e-08
1.18248e-07
-2.84751e-08
1.21025e-07
-2.75519e-08
1.23697e-07
-2.66016e-08
1.26259e-07
-2.56261e-08
1.28705e-07
-2.46274e-08
1.31031e-07
-2.36077e-08
1.33235e-07
-2.25689e-08
1.35315e-07
-2.1513e-08
1.37269e-07
-2.04419e-08
1.39097e-07
-1.93573e-08
1.40798e-07
-1.82609e-08
1.42372e-07
-1.71544e-08
1.4382e-07
-1.60393e-08
1.45142e-07
-1.49171e-08
1.46339e-07
-1.37892e-08
1.47411e-07
-1.26571e-08
1.4836e-07
-1.15219e-08
1.49186e-07
-1.03849e-08
1.49892e-07
-9.2474e-09
1.50478e-07
-8.11045e-09
1.50947e-07
-6.97514e-09
1.51299e-07
-5.84252e-09
1.51537e-07
-4.71355e-09
1.51662e-07
-3.58915e-09
1.51676e-07
-2.47019e-09
1.5158e-07
-1.3574e-09
1.51377e-07
-2.50797e-10
1.51072e-07
8.47876e-10
1.50662e-07
1.93447e-09
1.50151e-07
3.01284e-09
1.49542e-07
4.0817e-09
1.48836e-07
5.14011e-09
1.48036e-07
6.18735e-09
1.47143e-07
7.22282e-09
1.46161e-07
8.24598e-09
1.4509e-07
9.25632e-09
1.43934e-07
1.02534e-08
1.42694e-07
1.12367e-08
1.41373e-07
1.22059e-08
1.39972e-07
1.31606e-08
1.38494e-07
1.41005e-08
1.36941e-07
1.50251e-08
1.35315e-07
1.59342e-08
1.33618e-07
1.68276e-08
1.31852e-07
1.77049e-08
1.30019e-07
1.85658e-08
1.28122e-07
1.94102e-08
1.26162e-07
2.02378e-08
1.2414e-07
2.10485e-08
1.2206e-07
2.1842e-08
1.19923e-07
2.26183e-08
1.1773e-07
2.33771e-08
1.15484e-07
2.41183e-08
1.13187e-07
2.48419e-08
1.1084e-07
2.55477e-08
1.08445e-07
2.62356e-08
1.06004e-07
2.69055e-08
1.03519e-07
2.75573e-08
1.00991e-07
2.81911e-08
9.84211e-08
2.88066e-08
9.58119e-08
2.94039e-08
9.31646e-08
2.9983e-08
9.04808e-08
3.05437e-08
8.7762e-08
3.10861e-08
8.50098e-08
3.16102e-08
8.22256e-08
3.21159e-08
7.94109e-08
3.26032e-08
7.65671e-08
3.30722e-08
7.36956e-08
3.35229e-08
7.07975e-08
3.39552e-08
6.78743e-08
3.43691e-08
6.49272e-08
3.47646e-08
6.19576e-08
3.51418e-08
5.89666e-08
3.55006e-08
5.59555e-08
3.58412e-08
5.29256e-08
3.61634e-08
4.9878e-08
3.64674e-08
4.68138e-08
3.67531e-08
4.37343e-08
3.70206e-08
4.06406e-08
3.72699e-08
3.75337e-08
3.7501e-08
3.4415e-08
3.77139e-08
3.12854e-08
3.79083e-08
2.81464e-08
3.80835e-08
2.49993e-08
3.82371e-08
2.18459e-08
3.83637e-08
1.86895e-08
3.845e-08
1.55355e-08
3.8465e-08
1.23958e-08
3.83381e-08
9.29567e-09
3.79097e-08
6.29067e-09
3.68209e-08
3.50374e-09
3.4262e-08
1.20681e-09
2.84048e-08
1.51127e-08
1.10599e-07
-3.66962e-08
1.14145e-07
-3.61395e-08
1.1768e-07
-3.53935e-08
1.21175e-07
-3.45587e-08
1.24607e-07
-3.36647e-08
1.27957e-07
-3.27193e-08
1.31208e-07
-3.17263e-08
1.34345e-07
-3.06895e-08
1.37358e-07
-2.96137e-08
1.40235e-07
-2.85038e-08
1.42972e-07
-2.73644e-08
1.45565e-07
-2.61996e-08
1.48009e-07
-2.50132e-08
1.50304e-07
-2.38082e-08
1.5245e-07
-2.25873e-08
1.54445e-07
-2.1353e-08
1.56292e-07
-2.01074e-08
1.57989e-07
-1.88524e-08
1.5954e-07
-1.75899e-08
1.60944e-07
-1.63216e-08
1.62204e-07
-1.50492e-08
1.63321e-07
-1.37741e-08
1.64297e-07
-1.24979e-08
1.65133e-07
-1.12219e-08
1.65833e-07
-9.94737e-09
1.66398e-07
-8.67562e-09
1.66831e-07
-7.4078e-09
1.67133e-07
-6.14501e-09
1.67308e-07
-4.88831e-09
1.67358e-07
-3.63869e-09
1.67285e-07
-2.39707e-09
1.67092e-07
-1.1642e-09
1.66771e-07
7.04333e-11
1.66345e-07
1.27365e-09
1.65806e-07
2.47362e-09
1.65156e-07
3.66251e-09
1.64399e-07
4.83902e-09
1.63537e-07
6.00241e-09
1.62572e-07
7.15197e-09
1.61508e-07
8.28713e-09
1.60346e-07
9.40738e-09
1.5909e-07
1.05122e-08
1.57742e-07
1.16013e-08
1.56305e-07
1.26741e-08
1.5478e-07
1.37302e-08
1.53172e-07
1.47694e-08
1.51481e-07
1.57912e-08
1.49711e-07
1.67953e-08
1.47863e-07
1.77816e-08
1.45941e-07
1.87496e-08
1.43946e-07
1.96993e-08
1.41882e-07
2.06303e-08
1.39749e-07
2.15425e-08
1.37551e-07
2.24357e-08
1.3529e-07
2.33098e-08
1.32967e-07
2.41646e-08
1.30585e-07
2.50001e-08
1.28146e-07
2.5816e-08
1.25652e-07
2.66123e-08
1.23105e-07
2.73889e-08
1.20507e-07
2.81457e-08
1.1786e-07
2.88827e-08
1.15166e-07
2.95999e-08
1.12426e-07
3.02972e-08
1.09642e-07
3.09745e-08
1.06817e-07
3.1632e-08
1.03951e-07
3.22695e-08
1.01046e-07
3.28871e-08
9.81052e-08
3.34847e-08
9.51288e-08
3.40624e-08
9.21187e-08
3.46202e-08
8.90767e-08
3.51581e-08
8.6004e-08
3.56761e-08
8.29022e-08
3.61743e-08
7.97726e-08
3.66527e-08
7.66164e-08
3.71113e-08
7.34352e-08
3.75502e-08
7.02302e-08
3.79694e-08
6.70027e-08
3.8369e-08
6.37542e-08
3.87489e-08
6.04858e-08
3.91094e-08
5.71989e-08
3.94502e-08
5.38947e-08
3.97716e-08
5.05743e-08
4.00736e-08
4.72389e-08
4.03562e-08
4.38895e-08
4.06194e-08
4.05273e-08
4.08633e-08
3.71534e-08
4.10878e-08
3.37689e-08
4.12927e-08
3.03751e-08
4.14771e-08
2.69734e-08
4.16385e-08
2.35659e-08
4.17709e-08
2.01559e-08
4.18597e-08
1.67496e-08
4.1871e-08
1.33598e-08
4.17277e-08
1.0014e-08
4.12555e-08
6.77251e-09
4.00623e-08
3.76858e-09
3.72659e-08
1.29594e-09
3.08772e-08
1.64084e-08
1.22822e-07
-4.05823e-08
1.26798e-07
-4.0116e-08
1.30784e-07
-3.93786e-08
1.34735e-07
-3.85103e-08
1.38623e-07
-3.75519e-08
1.42418e-07
-3.65146e-08
1.46097e-07
-3.5405e-08
1.49638e-07
-3.42311e-08
1.53027e-07
-3.3002e-08
1.5625e-07
-3.17272e-08
1.59301e-07
-3.04152e-08
1.62175e-07
-2.90735e-08
1.64869e-07
-2.77078e-08
1.67384e-07
-2.6323e-08
1.6972e-07
-2.49229e-08
1.71877e-07
-2.35107e-08
1.73859e-07
-2.20889e-08
1.75666e-07
-2.06599e-08
1.77302e-07
-1.92258e-08
1.78769e-07
-1.77885e-08
1.80069e-07
-1.63497e-08
1.81206e-07
-1.49112e-08
1.82182e-07
-1.34743e-08
1.83001e-07
-1.20407e-08
1.83665e-07
-1.06116e-08
1.84178e-07
-9.18838e-09
1.84542e-07
-7.77221e-09
1.84761e-07
-6.36422e-09
1.84838e-07
-4.96547e-09
1.84777e-07
-3.57694e-09
1.84579e-07
-2.19947e-09
1.84248e-07
-8.33575e-10
1.83794e-07
5.24351e-10
1.83208e-07
1.85932e-09
1.82501e-07
3.18077e-09
1.81675e-07
4.48896e-09
1.80732e-07
5.78165e-09
1.79676e-07
7.05814e-09
1.7851e-07
8.31772e-09
1.77237e-07
9.55984e-09
1.75861e-07
1.0784e-08
1.74383e-07
1.19897e-08
1.72808e-07
1.31766e-08
1.71138e-07
1.43443e-08
1.69376e-07
1.54924e-08
1.67524e-07
1.66207e-08
1.65586e-07
1.77288e-08
1.63565e-07
1.88165e-08
1.61463e-07
1.98835e-08
1.59283e-07
2.09297e-08
1.57027e-07
2.19548e-08
1.54699e-07
2.29588e-08
1.523e-07
2.39413e-08
1.49834e-07
2.49024e-08
1.47302e-07
2.58419e-08
1.44707e-07
2.67597e-08
1.42052e-07
2.76558e-08
1.39337e-07
2.85301e-08
1.36567e-07
2.93825e-08
1.33743e-07
3.02131e-08
1.30866e-07
3.10219e-08
1.27941e-07
3.18088e-08
1.24967e-07
3.25737e-08
1.21948e-07
3.33169e-08
1.18884e-07
3.40381e-08
1.15779e-07
3.47376e-08
1.12633e-07
3.54153e-08
1.09448e-07
3.60713e-08
1.06227e-07
3.67056e-08
1.02971e-07
3.73183e-08
9.96812e-08
3.79095e-08
9.636e-08
3.84793e-08
9.30086e-08
3.90276e-08
8.96285e-08
3.95546e-08
8.62211e-08
4.00603e-08
8.27878e-08
4.05448e-08
7.93299e-08
4.10082e-08
7.58487e-08
4.14506e-08
7.23457e-08
4.18719e-08
6.88221e-08
4.22723e-08
6.52793e-08
4.2652e-08
6.17184e-08
4.30109e-08
5.81408e-08
4.33491e-08
5.45476e-08
4.36667e-08
5.094e-08
4.39639e-08
4.7319e-08
4.42405e-08
4.36857e-08
4.44968e-08
4.00413e-08
4.47325e-08
3.63869e-08
4.49474e-08
3.27237e-08
4.51406e-08
2.90531e-08
4.53093e-08
2.53774e-08
4.54469e-08
2.16999e-08
4.55374e-08
1.80273e-08
4.55438e-08
1.43735e-08
4.53817e-08
1.07684e-08
4.48607e-08
7.27757e-09
4.35532e-08
4.04525e-09
4.04983e-08
1.38845e-09
3.35341e-08
1.77969e-08
1.37412e-07
-4.4868e-08
1.41829e-07
-4.45335e-08
1.46283e-07
-4.38323e-08
1.50717e-07
-4.29439e-08
1.55088e-07
-4.19217e-08
1.59355e-07
-4.07817e-08
1.63486e-07
-3.95352e-08
1.6745e-07
-3.81959e-08
1.71228e-07
-3.67799e-08
1.74804e-07
-3.53033e-08
1.7817e-07
-3.37805e-08
1.81319e-07
-3.22233e-08
1.84253e-07
-3.06409e-08
1.8697e-07
-2.90405e-08
1.89475e-07
-2.74271e-08
1.91769e-07
-2.58047e-08
1.93856e-07
-2.41765e-08
1.95741e-07
-2.25451e-08
1.97428e-07
-2.09127e-08
1.98921e-07
-1.92813e-08
2.00224e-07
-1.76526e-08
2.01342e-07
-1.60284e-08
2.02277e-07
-1.44102e-08
2.03036e-07
-1.27994e-08
2.03622e-07
-1.11973e-08
2.04039e-07
-9.60532e-09
2.04291e-07
-8.02454e-09
2.04383e-07
-6.45607e-09
2.04319e-07
-4.90093e-09
2.04102e-07
-3.36005e-09
2.03737e-07
-1.83415e-09
2.03226e-07
-3.228e-10
2.02575e-07
1.17531e-09
2.0179e-07
2.64384e-09
2.00872e-07
4.09868e-09
1.99826e-07
5.53561e-09
1.98654e-07
6.95319e-09
1.97362e-07
8.35081e-09
1.95952e-07
9.72783e-09
1.94428e-07
1.10837e-08
1.92794e-07
1.24181e-08
1.91053e-07
1.37306e-08
1.89208e-07
1.50207e-08
1.87264e-07
1.62883e-08
1.85224e-07
1.75329e-08
1.8309e-07
1.87544e-08
1.80867e-07
1.99525e-08
1.78556e-07
2.1127e-08
1.76162e-07
2.22778e-08
1.73687e-07
2.34047e-08
1.71134e-07
2.45076e-08
1.68506e-07
2.55864e-08
1.65807e-07
2.6641e-08
1.63037e-07
2.76715e-08
1.60202e-07
2.86776e-08
1.57302e-07
2.96595e-08
1.5434e-07
3.06172e-08
1.5132e-07
3.15505e-08
1.48243e-07
3.24596e-08
1.45112e-07
3.33445e-08
1.41928e-07
3.42051e-08
1.38695e-07
3.50417e-08
1.35415e-07
3.58543e-08
1.32088e-07
3.66429e-08
1.28719e-07
3.74077e-08
1.25307e-07
3.81487e-08
1.21856e-07
3.8866e-08
1.18368e-07
3.95598e-08
1.14843e-07
4.02301e-08
1.11284e-07
4.08771e-08
1.07693e-07
4.15008e-08
1.04071e-07
4.21014e-08
1.0042e-07
4.26791e-08
9.67406e-08
4.32338e-08
9.30351e-08
4.37658e-08
8.93047e-08
4.42751e-08
8.55507e-08
4.47619e-08
8.17746e-08
4.52264e-08
7.79777e-08
4.56685e-08
7.41614e-08
4.60885e-08
7.03269e-08
4.64864e-08
6.64755e-08
4.68624e-08
6.26083e-08
4.72165e-08
5.87265e-08
4.75489e-08
5.4831e-08
4.78596e-08
5.0923e-08
4.81487e-08
4.70034e-08
4.84164e-08
4.30735e-08
4.86624e-08
3.91342e-08
4.88866e-08
3.51869e-08
4.90878e-08
3.12331e-08
4.9263e-08
2.7275e-08
4.9405e-08
2.33162e-08
4.94962e-08
1.9364e-08
4.94962e-08
1.54332e-08
4.93126e-08
1.15562e-08
4.87377e-08
7.80406e-09
4.73052e-08
4.33276e-09
4.39693e-08
1.48387e-09
3.63827e-08
1.92808e-08
1.55391e-07
-4.95515e-08
1.60233e-07
-4.93756e-08
1.65138e-07
-4.87381e-08
1.70038e-07
-4.78434e-08
1.74873e-07
-4.67569e-08
1.79593e-07
-4.55012e-08
1.84152e-07
-4.40938e-08
1.88513e-07
-4.25568e-08
1.92649e-07
-4.09158e-08
1.96542e-07
-3.91959e-08
2.00181e-07
-3.74194e-08
2.03562e-07
-3.56045e-08
2.06686e-07
-3.37647e-08
2.09555e-07
-3.19098e-08
2.12175e-07
-3.00467e-08
2.14551e-07
-2.81803e-08
2.16689e-07
-2.63141e-08
2.18595e-07
-2.44509e-08
2.20275e-07
-2.25928e-08
2.21735e-07
-2.07417e-08
2.22982e-07
-1.88994e-08
2.24021e-07
-1.70673e-08
2.24858e-07
-1.52468e-08
2.25499e-07
-1.34394e-08
2.25948e-07
-1.16462e-08
2.26211e-07
-9.86847e-09
2.26294e-07
-8.1072e-09
2.26201e-07
-6.36343e-09
2.25939e-07
-4.63807e-09
2.25511e-07
-2.93192e-09
2.24922e-07
-1.2454e-09
2.24167e-07
4.31561e-10
2.23276e-07
2.06699e-09
2.22235e-07
3.68497e-09
2.21052e-07
5.28137e-09
2.19732e-07
6.85554e-09
2.18279e-07
8.40598e-09
2.16698e-07
9.93201e-09
2.14993e-07
1.14331e-08
2.13168e-07
1.2909e-08
2.11227e-07
1.43591e-08
2.09174e-07
1.57833e-08
2.07014e-07
1.71813e-08
2.04749e-07
1.85527e-08
2.02385e-07
1.98974e-08
1.99924e-07
2.12153e-08
1.9737e-07
2.25062e-08
1.94727e-07
2.377e-08
1.91998e-07
2.50066e-08
1.89186e-07
2.6216e-08
1.86296e-07
2.73981e-08
1.83329e-07
2.8553e-08
1.8029e-07
2.96806e-08
1.7718e-07
3.07809e-08
1.74004e-07
3.18541e-08
1.70764e-07
3.29001e-08
1.67462e-07
3.39191e-08
1.64101e-07
3.49111e-08
1.60684e-07
3.58763e-08
1.57213e-07
3.68148e-08
1.53691e-07
3.77267e-08
1.50121e-07
3.86122e-08
1.46504e-07
3.94713e-08
1.42843e-07
4.03044e-08
1.39139e-07
4.11114e-08
1.35395e-07
4.18925e-08
1.31613e-07
4.26481e-08
1.27795e-07
4.33781e-08
1.23942e-07
4.40828e-08
1.20057e-07
4.47624e-08
1.16141e-07
4.54171e-08
1.12195e-07
4.60469e-08
1.08222e-07
4.66522e-08
1.04223e-07
4.72331e-08
1.002e-07
4.77897e-08
9.61528e-08
4.83222e-08
9.20839e-08
4.88308e-08
8.79944e-08
4.93157e-08
8.38857e-08
4.9777e-08
7.97591e-08
5.02149e-08
7.56158e-08
5.06295e-08
7.14571e-08
5.10211e-08
6.72839e-08
5.13896e-08
6.30975e-08
5.17354e-08
5.88987e-08
5.20584e-08
5.46887e-08
5.23588e-08
5.04684e-08
5.26367e-08
4.62387e-08
5.2892e-08
4.20009e-08
5.31243e-08
3.7756e-08
5.33325e-08
3.35056e-08
5.35133e-08
2.9252e-08
5.36586e-08
2.49989e-08
5.37493e-08
2.07542e-08
5.3741e-08
1.65339e-08
5.3533e-08
1.23733e-08
5.28985e-08
8.349e-09
5.13295e-08
4.62955e-09
4.76887e-08
1.58206e-09
3.943e-08
2.08627e-08
1.78032e-07
-5.46362e-08
1.83271e-07
-5.4615e-08
1.8858e-07
-5.40463e-08
1.93878e-07
-5.31413e-08
1.99098e-07
-5.19764e-08
2.04179e-07
-5.05819e-08
2.09068e-07
-4.89833e-08
2.13724e-07
-4.72127e-08
2.18115e-07
-4.53067e-08
2.22221e-07
-4.33018e-08
2.26031e-07
-4.12298e-08
2.29543e-07
-3.91162e-08
2.32758e-07
-3.69799e-08
2.35682e-07
-3.48339e-08
2.38323e-07
-3.2687e-08
2.40687e-07
-3.05449e-08
2.42785e-07
-2.84114e-08
2.44623e-07
-2.62892e-08
2.4621e-07
-2.41802e-08
2.47554e-07
-2.2086e-08
2.48663e-07
-2.00081e-08
2.49544e-07
-1.79477e-08
2.50203e-07
-1.5906e-08
2.50648e-07
-1.38841e-08
2.50885e-07
-1.1883e-08
2.5092e-07
-9.90376e-09
2.5076e-07
-7.94718e-09
2.50411e-07
-6.01414e-09
2.49878e-07
-4.10536e-09
2.49168e-07
-2.22131e-09
2.48283e-07
-3.6047e-10
2.47239e-07
1.47573e-09
2.46033e-07
3.2732e-09
2.44672e-07
5.04618e-09
2.4316e-07
6.79281e-09
2.41504e-07
8.51144e-09
2.39709e-07
1.02013e-08
2.37779e-07
1.18618e-08
2.3572e-07
1.34925e-08
2.33536e-07
1.50932e-08
2.31232e-07
1.66635e-08
2.28812e-07
1.82033e-08
2.2628e-07
1.97124e-08
2.23642e-07
2.11906e-08
2.20902e-07
2.26379e-08
2.18063e-07
2.40542e-08
2.1513e-07
2.54396e-08
2.12106e-07
2.67939e-08
2.08995e-07
2.81172e-08
2.05801e-07
2.94096e-08
2.02528e-07
3.06711e-08
1.9918e-07
3.19019e-08
1.95758e-07
3.31021e-08
1.92267e-07
3.42717e-08
1.88711e-07
3.5411e-08
1.85091e-07
3.65201e-08
1.8141e-07
3.75993e-08
1.77673e-07
3.86486e-08
1.73881e-07
3.96683e-08
1.70037e-07
4.06586e-08
1.66144e-07
4.16198e-08
1.62204e-07
4.25521e-08
1.5822e-07
4.34556e-08
1.54193e-07
4.43307e-08
1.50127e-07
4.51777e-08
1.46023e-07
4.59967e-08
1.41882e-07
4.67881e-08
1.37709e-07
4.7552e-08
1.33503e-07
4.82887e-08
1.29266e-07
4.89985e-08
1.25002e-07
4.96816e-08
1.20711e-07
5.03383e-08
1.16395e-07
5.09687e-08
1.12055e-07
5.15733e-08
1.07692e-07
5.21521e-08
1.03309e-07
5.27054e-08
9.89062e-08
5.32335e-08
9.44852e-08
5.37366e-08
9.00472e-08
5.42149e-08
8.55935e-08
5.46685e-08
8.11251e-08
5.50978e-08
7.66432e-08
5.55029e-08
7.21487e-08
5.5884e-08
6.76428e-08
5.62412e-08
6.31263e-08
5.65747e-08
5.86001e-08
5.68848e-08
5.40653e-08
5.71714e-08
4.95228e-08
5.74344e-08
4.49735e-08
5.76736e-08
4.04186e-08
5.78875e-08
3.58595e-08
5.80725e-08
3.12984e-08
5.82198e-08
2.67395e-08
5.83084e-08
2.21908e-08
5.82898e-08
1.76699e-08
5.80539e-08
1.32149e-08
5.73536e-08
8.90875e-09
5.56358e-08
4.93299e-09
5.16648e-08
1.68154e-09
4.26818e-08
2.25444e-08
2.06813e-07
-6.0151e-08
2.12415e-07
-6.02172e-08
2.18035e-07
-5.96661e-08
2.23595e-07
-5.87015e-08
2.29029e-07
-5.74109e-08
2.34281e-07
-5.58336e-08
2.39301e-07
-5.40032e-08
2.4405e-07
-5.1961e-08
2.48497e-07
-4.97543e-08
2.52626e-07
-4.74304e-08
2.56427e-07
-4.50306e-08
2.59899e-07
-4.25879e-08
2.63045e-07
-4.01265e-08
2.65874e-07
-3.76626e-08
2.68394e-07
-3.52067e-08
2.70614e-07
-3.27653e-08
2.72545e-07
-3.03424e-08
2.74196e-07
-2.79403e-08
2.75577e-07
-2.55608e-08
2.76696e-07
-2.32051e-08
2.77563e-07
-2.08741e-08
2.78184e-07
-1.85689e-08
2.78569e-07
-1.62904e-08
2.78724e-07
-1.40392e-08
2.78658e-07
-1.18164e-08
2.78377e-07
-9.62251e-09
2.77888e-07
-7.4584e-09
2.77199e-07
-5.32464e-09
2.76315e-07
-3.22162e-09
2.75243e-07
-1.14879e-09
2.7398e-07
9.0202e-10
2.72555e-07
2.90069e-09
2.70963e-07
4.8652e-09
2.69208e-07
6.8013e-09
2.67297e-07
8.70458e-09
2.65234e-07
1.05738e-08
2.63027e-07
1.24085e-08
2.60681e-07
1.42081e-08
2.58201e-07
1.59725e-08
2.55593e-07
1.77015e-08
2.52861e-07
1.93949e-08
2.50012e-07
2.10527e-08
2.47049e-07
2.26748e-08
2.43979e-07
2.42613e-08
2.40804e-07
2.58121e-08
2.37531e-07
2.73274e-08
2.34164e-07
2.88072e-08
2.30706e-07
3.02517e-08
2.27162e-07
3.16611e-08
2.23536e-07
3.30355e-08
2.19831e-07
3.43752e-08
2.16053e-07
3.56804e-08
2.12204e-07
3.69513e-08
2.08287e-07
3.81882e-08
2.04307e-07
3.93913e-08
2.00266e-07
4.0561e-08
1.96168e-07
4.16976e-08
1.92015e-07
4.28013e-08
1.8781e-07
4.38726e-08
1.83557e-07
4.49117e-08
1.79257e-07
4.59191e-08
1.74914e-07
4.68949e-08
1.70531e-07
4.78396e-08
1.66108e-07
4.87535e-08
1.6165e-07
4.9637e-08
1.57156e-07
5.04903e-08
1.52631e-07
5.13139e-08
1.48075e-07
5.21081e-08
1.4349e-07
5.28733e-08
1.38879e-07
5.36097e-08
1.34243e-07
5.43178e-08
1.29583e-07
5.49978e-08
1.24902e-07
5.56501e-08
1.202e-07
5.6275e-08
1.15479e-07
5.68728e-08
1.10741e-07
5.74438e-08
1.05986e-07
5.79883e-08
1.01216e-07
5.85065e-08
9.64324e-08
5.89989e-08
9.16354e-08
5.94655e-08
8.68265e-08
5.99067e-08
8.20066e-08
6.03227e-08
7.71768e-08
6.07138e-08
7.23378e-08
6.10801e-08
6.74905e-08
6.1422e-08
6.26357e-08
6.17394e-08
5.77743e-08
6.20327e-08
5.2907e-08
6.23016e-08
4.80348e-08
6.25458e-08
4.31587e-08
6.27637e-08
3.82801e-08
6.29513e-08
3.34012e-08
6.30989e-08
2.85263e-08
6.31835e-08
2.36642e-08
6.31521e-08
1.88336e-08
6.28846e-08
1.40756e-08
6.21117e-08
9.47967e-09
6.02317e-08
5.24108e-09
5.59033e-08
1.78153e-09
4.61413e-08
2.43261e-08
2.42991e-07
-6.61295e-08
2.48899e-07
-6.6125e-08
2.54694e-07
-6.5461e-08
2.60315e-07
-6.43228e-08
2.65716e-07
-6.28112e-08
2.70859e-07
-6.09766e-08
2.75716e-07
-5.88599e-08
2.80264e-07
-5.65083e-08
2.84485e-07
-5.39755e-08
2.8837e-07
-5.13151e-08
2.91914e-07
-4.85748e-08
2.95119e-07
-4.57927e-08
2.97989e-07
-4.29967e-08
3.00532e-07
-4.02055e-08
3.02757e-07
-3.74309e-08
3.04672e-07
-3.468e-08
3.06286e-07
-3.19569e-08
3.0761e-07
-2.92639e-08
3.08651e-07
-2.66024e-08
3.0942e-07
-2.39734e-08
3.09923e-07
-2.13777e-08
3.10171e-07
-1.88161e-08
3.1017e-07
-1.62892e-08
3.09928e-07
-1.37977e-08
3.09454e-07
-1.13423e-08
3.08755e-07
-8.92365e-09
3.07839e-07
-6.54229e-09
3.06713e-07
-4.19863e-09
3.05384e-07
-1.89243e-09
3.03839e-07
3.97223e-10
3.0213e-07
2.61093e-09
3.00243e-07
4.78857e-09
2.98177e-07
6.93106e-09
2.95943e-07
9.03537e-09
2.93547e-07
1.10997e-08
2.90997e-07
1.31235e-08
2.88299e-07
1.51064e-08
2.85459e-07
1.7048e-08
2.82484e-07
1.89483e-08
2.79378e-07
2.08072e-08
2.76149e-07
2.26248e-08
2.728e-07
2.4401e-08
2.69339e-07
2.61361e-08
2.65769e-07
2.78303e-08
2.62098e-07
2.94837e-08
2.58329e-07
3.10965e-08
2.54467e-07
3.26691e-08
2.50517e-07
3.42017e-08
2.46483e-07
3.56947e-08
2.4237e-07
3.71484e-08
2.38182e-07
3.85631e-08
2.33923e-07
3.99393e-08
2.29597e-07
4.12773e-08
2.25208e-07
4.25776e-08
2.20758e-07
4.38406e-08
2.16252e-07
4.50668e-08
2.11693e-07
4.62565e-08
2.07084e-07
4.74103e-08
2.02428e-07
4.85286e-08
1.97728e-07
4.96118e-08
1.92987e-07
5.06605e-08
1.88207e-07
5.16751e-08
1.8339e-07
5.26561e-08
1.7854e-07
5.36039e-08
1.73658e-07
5.4519e-08
1.68747e-07
5.54019e-08
1.63808e-07
5.6253e-08
1.58843e-07
5.70728e-08
1.53855e-07
5.78618e-08
1.48845e-07
5.86202e-08
1.43814e-07
5.93487e-08
1.38765e-07
6.00476e-08
1.33698e-07
6.07172e-08
1.28615e-07
6.13581e-08
1.23517e-07
6.19706e-08
1.18406e-07
6.25551e-08
1.13283e-07
6.3112e-08
1.08147e-07
6.36416e-08
1.03002e-07
6.41442e-08
9.78469e-08
6.46202e-08
9.26835e-08
6.50699e-08
8.75125e-08
6.54936e-08
8.23347e-08
6.58916e-08
7.71507e-08
6.62641e-08
7.19614e-08
6.66114e-08
6.67672e-08
6.69337e-08
6.15689e-08
6.72312e-08
5.63671e-08
6.75036e-08
5.11625e-08
6.77506e-08
4.5956e-08
6.79704e-08
4.07489e-08
6.81585e-08
3.55436e-08
6.83044e-08
3.03446e-08
6.83827e-08
2.51613e-08
6.83357e-08
2.0014e-08
6.80323e-08
1.49466e-08
6.71794e-08
1.00557e-08
6.5123e-08
5.55046e-09
6.04087e-08
1.88119e-09
4.98107e-08
2.62071e-08
2.86403e-07
-7.26961e-08
2.92635e-07
-7.23565e-08
2.98528e-07
-7.13543e-08
3.04056e-07
-6.98503e-08
3.09206e-07
-6.79619e-08
3.13985e-07
-6.57549e-08
3.18401e-07
-6.32758e-08
3.22464e-07
-6.05718e-08
3.26183e-07
-5.76943e-08
3.29563e-07
-5.46952e-08
3.3261e-07
-5.16212e-08
3.35327e-07
-4.85101e-08
3.3772e-07
-4.53898e-08
3.39794e-07
-4.22795e-08
3.41554e-07
-3.91916e-08
3.43007e-07
-3.61335e-08
3.4416e-07
-3.31096e-08
3.45019e-07
-3.01226e-08
3.4559e-07
-2.71742e-08
3.45882e-07
-2.42655e-08
3.45902e-07
-2.13976e-08
3.45657e-07
-1.85713e-08
3.45156e-07
-1.57875e-08
3.44405e-07
-1.30469e-08
3.43413e-07
-1.03501e-08
3.42187e-07
-7.69795e-09
3.40736e-07
-5.09072e-09
3.39065e-07
-2.52824e-09
3.37174e-07
-6.88944e-13
3.35104e-07
2.46707e-09
3.32838e-07
4.87706e-09
3.30381e-07
7.24511e-09
3.27746e-07
9.56669e-09
3.24939e-07
1.1842e-08
3.21968e-07
1.40701e-08
3.18841e-07
1.62504e-08
3.15565e-07
1.83826e-08
3.12147e-07
2.04667e-08
3.08592e-07
2.25028e-08
3.04908e-07
2.44909e-08
3.01101e-07
2.64314e-08
2.97177e-07
2.83245e-08
2.93143e-07
3.01704e-08
2.89003e-07
3.19696e-08
2.84765e-07
3.37224e-08
2.80432e-07
3.54292e-08
2.76011e-07
3.70906e-08
2.71506e-07
3.87069e-08
2.66921e-07
4.02788e-08
2.62263e-07
4.18068e-08
2.57535e-07
4.32913e-08
2.52741e-07
4.4733e-08
2.47886e-07
4.61325e-08
2.42973e-07
4.74904e-08
2.38007e-07
4.88072e-08
2.3299e-07
5.00836e-08
2.27926e-07
5.13202e-08
2.22819e-07
5.25176e-08
2.17671e-07
5.36764e-08
2.12485e-07
5.47973e-08
2.07265e-07
5.58809e-08
2.02013e-07
5.69278e-08
1.96731e-07
5.79385e-08
1.91421e-07
5.89138e-08
1.86086e-07
5.98541e-08
1.80728e-07
6.07601e-08
1.75349e-07
6.16324e-08
1.6995e-07
6.24716e-08
1.64534e-07
6.32781e-08
1.59101e-07
6.40526e-08
1.53654e-07
6.47956e-08
1.48194e-07
6.55076e-08
1.42722e-07
6.61891e-08
1.3724e-07
6.68406e-08
1.31748e-07
6.74626e-08
1.26248e-07
6.80556e-08
1.2074e-07
6.86199e-08
1.15226e-07
6.9156e-08
1.09705e-07
6.96644e-08
1.0418e-07
7.01453e-08
9.86507e-08
7.05993e-08
9.31176e-08
7.10266e-08
8.75815e-08
7.14277e-08
8.20428e-08
7.18027e-08
7.65022e-08
7.21521e-08
7.096e-08
7.24761e-08
6.54168e-08
7.27747e-08
5.98728e-08
7.30478e-08
5.43287e-08
7.32949e-08
4.87852e-08
7.3514e-08
4.32436e-08
7.37002e-08
3.77063e-08
7.38418e-08
3.21778e-08
7.39112e-08
2.66683e-08
7.38452e-08
2.11995e-08
7.35013e-08
1.58188e-08
7.25603e-08
1.06297e-08
7.03123e-08
5.85636e-09
6.51823e-08
1.97814e-09
5.36892e-08
2.81854e-08
3.35085e-07
-7.99382e-08
3.41695e-07
-7.89659e-08
3.4771e-07
-7.7369e-08
3.53137e-07
-7.52775e-08
3.58004e-07
-7.28286e-08
3.62358e-07
-7.01087e-08
3.66253e-07
-6.7171e-08
3.69739e-07
-6.40572e-08
3.72853e-07
-6.08084e-08
3.75623e-07
-5.74649e-08
3.78065e-07
-5.40634e-08
3.80189e-07
-5.06344e-08
3.82001e-07
-4.72016e-08
3.83503e-07
-4.37817e-08
3.84698e-07
-4.03864e-08
3.85588e-07
-3.70232e-08
3.86176e-07
-3.36974e-08
3.86466e-07
-3.04124e-08
3.86462e-07
-2.71708e-08
3.86171e-07
-2.39746e-08
3.85599e-07
-2.08257e-08
3.84753e-07
-1.77254e-08
3.83641e-07
-1.46751e-08
3.8227e-07
-1.1676e-08
3.80649e-07
-8.72897e-09
3.78786e-07
-5.83479e-09
3.76689e-07
-2.99344e-09
3.74358e-07
-1.97711e-10
3.71811e-07
2.54669e-09
3.69076e-07
5.20191e-09
3.66141e-07
7.81306e-09
3.63016e-07
1.03702e-08
3.59708e-07
1.28743e-08
3.56227e-07
1.53227e-08
3.52582e-07
1.77153e-08
3.48779e-07
2.00521e-08
3.44829e-07
2.23329e-08
3.40738e-07
2.4558e-08
3.36513e-07
2.67275e-08
3.32162e-07
2.88419e-08
3.27692e-07
3.09016e-08
3.2311e-07
3.29071e-08
3.18422e-07
3.48589e-08
3.13634e-07
3.67576e-08
3.08752e-07
3.86038e-08
3.03783e-07
4.03983e-08
2.98732e-07
4.21417e-08
2.93604e-07
4.38348e-08
2.88405e-07
4.54783e-08
2.83139e-07
4.70729e-08
2.77811e-07
4.86194e-08
2.72425e-07
5.01186e-08
2.66986e-07
5.15714e-08
2.61498e-07
5.29784e-08
2.55965e-07
5.43406e-08
2.5039e-07
5.56588e-08
2.44776e-07
5.69337e-08
2.39128e-07
5.81661e-08
2.33447e-07
5.93569e-08
2.27737e-07
6.05069e-08
2.22001e-07
6.16168e-08
2.16242e-07
6.26875e-08
2.10461e-07
6.37196e-08
2.04661e-07
6.4714e-08
1.98843e-07
6.56714e-08
1.93011e-07
6.65925e-08
1.87166e-07
6.74781e-08
1.81308e-07
6.83289e-08
1.75441e-07
6.91455e-08
1.69565e-07
6.99286e-08
1.63682e-07
7.06788e-08
1.57793e-07
7.13968e-08
1.51899e-07
7.20833e-08
1.46001e-07
7.27387e-08
1.40101e-07
7.33637e-08
1.34197e-07
7.39588e-08
1.28293e-07
7.45245e-08
1.22387e-07
7.50614e-08
1.16481e-07
7.557e-08
1.10576e-07
7.60506e-08
1.04671e-07
7.65039e-08
9.87679e-08
7.69301e-08
9.28662e-08
7.73297e-08
8.69662e-08
7.7703e-08
8.10683e-08
7.80504e-08
7.51725e-08
7.83721e-08
6.92791e-08
7.86683e-08
6.33883e-08
7.89388e-08
5.75005e-08
7.91828e-08
5.16163e-08
7.93983e-08
4.5737e-08
7.95798e-08
3.9865e-08
7.97142e-08
3.4005e-08
7.97715e-08
2.81678e-08
7.96828e-08
2.23765e-08
7.92928e-08
1.6682e-08
7.82549e-08
1.11951e-08
7.57992e-08
6.15518e-09
7.02221e-08
2.07118e-09
5.77731e-08
3.02566e-08
3.85504e-07
-8.79431e-08
3.92638e-07
-8.60998e-08
3.98975e-07
-8.37051e-08
4.04548e-07
-8.08511e-08
4.09408e-07
-7.76884e-08
4.13625e-07
-7.43253e-08
4.17277e-07
-7.08231e-08
4.20438e-07
-6.72181e-08
4.23166e-07
-6.3537e-08
4.25505e-07
-5.9804e-08
4.27482e-07
-5.60408e-08
4.29115e-07
-5.22668e-08
4.3041e-07
-4.84976e-08
4.31374e-07
-4.47459e-08
4.32009e-07
-4.10213e-08
4.32317e-07
-3.73314e-08
4.32301e-07
-3.36819e-08
4.31966e-07
-3.00774e-08
4.31317e-07
-2.65219e-08
4.3036e-07
-2.30184e-08
4.29104e-07
-1.95697e-08
4.27557e-07
-1.6178e-08
4.25727e-07
-1.28452e-08
4.23624e-07
-9.57288e-09
4.21257e-07
-6.36207e-09
4.18635e-07
-3.21294e-09
4.1576e-07
-1.17729e-10
4.12652e-07
2.90937e-09
4.09352e-07
5.84753e-09
4.05832e-07
8.72101e-09
4.02109e-07
1.15358e-08
3.98194e-07
1.42861e-08
3.94096e-07
1.6972e-08
3.89825e-07
1.95929e-08
3.85392e-07
2.21484e-08
3.80805e-07
2.46389e-08
3.76073e-07
2.70645e-08
3.71206e-07
2.94257e-08
3.6621e-07
3.17232e-08
3.61094e-07
3.39575e-08
3.55866e-07
3.61295e-08
3.50533e-07
3.82398e-08
3.45102e-07
4.02893e-08
3.39581e-07
4.22789e-08
3.33975e-07
4.42096e-08
3.28292e-07
4.60822e-08
3.22536e-07
4.78978e-08
3.16714e-07
4.96573e-08
3.1083e-07
5.13618e-08
3.0489e-07
5.30124e-08
2.989e-07
5.461e-08
2.92862e-07
5.61557e-08
2.86783e-07
5.76506e-08
2.80666e-07
5.90957e-08
2.74515e-07
6.0492e-08
2.68333e-07
6.18407e-08
2.62124e-07
6.31427e-08
2.55891e-07
6.4399e-08
2.49637e-07
6.56107e-08
2.43365e-07
6.67788e-08
2.37077e-07
6.79042e-08
2.30776e-07
6.8988e-08
2.24465e-07
7.00309e-08
2.18145e-07
7.10341e-08
2.11818e-07
7.19984e-08
2.05486e-07
7.29246e-08
1.9915e-07
7.38138e-08
1.92812e-07
7.46666e-08
1.86474e-07
7.54839e-08
1.80136e-07
7.62665e-08
1.73799e-07
7.70153e-08
1.67465e-07
7.77308e-08
1.61135e-07
7.84139e-08
1.54809e-07
7.90653e-08
1.48487e-07
7.96856e-08
1.4217e-07
8.02754e-08
1.35859e-07
8.08354e-08
1.29554e-07
8.13662e-08
1.23256e-07
8.18684e-08
1.16964e-07
8.23425e-08
1.10678e-07
8.2789e-08
1.044e-07
8.32084e-08
9.81286e-08
8.36011e-08
9.1864e-08
8.39677e-08
8.56061e-08
8.43084e-08
7.93548e-08
8.46234e-08
7.311e-08
8.49131e-08
6.68716e-08
8.5177e-08
6.06398e-08
8.54144e-08
5.44151e-08
8.56229e-08
4.81985e-08
8.57962e-08
4.19924e-08
8.59202e-08
3.58021e-08
8.59619e-08
2.96389e-08
8.58462e-08
2.35274e-08
8.54044e-08
1.75223e-08
8.42603e-08
1.1742e-08
8.15798e-08
6.44137e-09
7.55229e-08
2.15865e-09
6.20559e-08
3.24152e-08
4.3626e-07
-9.65544e-08
4.43945e-07
-9.37838e-08
4.50786e-07
-9.05466e-08
4.56824e-07
-8.68894e-08
4.62095e-07
-8.29588e-08
4.66648e-07
-7.88785e-08
4.70546e-07
-7.4721e-08
4.73851e-07
-7.05227e-08
4.76617e-07
-6.63028e-08
4.78887e-07
-6.20742e-08
4.80694e-07
-5.78477e-08
4.8206e-07
-5.36332e-08
4.83002e-07
-4.94403e-08
4.83534e-07
-4.52776e-08
4.83665e-07
-4.11527e-08
4.83407e-07
-3.70726e-08
4.82769e-07
-3.30433e-08
4.81761e-07
-2.90698e-08
4.80395e-07
-2.51566e-08
4.78684e-07
-2.13075e-08
4.7664e-07
-1.75256e-08
4.74276e-07
-1.38136e-08
4.71605e-07
-1.01736e-08
4.6864e-07
-6.60696e-09
4.65392e-07
-3.11387e-09
4.61841e-07
3.38459e-10
4.5806e-07
3.66259e-09
4.54071e-07
6.89821e-09
4.49849e-07
1.007e-08
4.45405e-07
1.31643e-08
4.40757e-07
1.61838e-08
4.35917e-07
1.91269e-08
4.30895e-07
2.19931e-08
4.25705e-07
2.47828e-08
4.20357e-07
2.74963e-08
4.14861e-07
3.01342e-08
4.09228e-07
3.26972e-08
4.03468e-07
3.51863e-08
3.97589e-07
3.76023e-08
3.91601e-07
3.99462e-08
3.85512e-07
4.22193e-08
3.79329e-07
4.44226e-08
3.73061e-07
4.65575e-08
3.66714e-07
4.86252e-08
3.60297e-07
5.06269e-08
3.53815e-07
5.2564e-08
3.47276e-07
5.44379e-08
3.40683e-07
5.62498e-08
3.34044e-07
5.80012e-08
3.27363e-07
5.96933e-08
3.20646e-07
6.13275e-08
3.13896e-07
6.29052e-08
3.07119e-07
6.44277e-08
3.00318e-07
6.58964e-08
2.93498e-07
6.73125e-08
2.86662e-07
6.86774e-08
2.79812e-07
6.99923e-08
2.72953e-07
7.12586e-08
2.66086e-07
7.24774e-08
2.59215e-07
7.36499e-08
2.52342e-07
7.47774e-08
2.45468e-07
7.58611e-08
2.38598e-07
7.6902e-08
2.31731e-07
7.79013e-08
2.24869e-07
7.88601e-08
2.18015e-07
7.97794e-08
2.11168e-07
8.06603e-08
2.04331e-07
8.15037e-08
1.97505e-07
8.23106e-08
1.90689e-07
8.3082e-08
1.83886e-07
8.38187e-08
1.77095e-07
8.45216e-08
1.70317e-07
8.51916e-08
1.63553e-07
8.58295e-08
1.56803e-07
8.6436e-08
1.50066e-07
8.70119e-08
1.43344e-07
8.75579e-08
1.36635e-07
8.80747e-08
1.2994e-07
8.85629e-08
1.2326e-07
8.90231e-08
1.16593e-07
8.94561e-08
1.09939e-07
8.98622e-08
1.03298e-07
9.0242e-08
9.66701e-08
9.0596e-08
9.0054e-08
9.09245e-08
8.34496e-08
9.12279e-08
7.68563e-08
9.15063e-08
7.0274e-08
9.17594e-08
6.37024e-08
9.1986e-08
5.71418e-08
9.21835e-08
5.05931e-08
9.2345e-08
4.40586e-08
9.24548e-08
3.75437e-08
9.24768e-08
3.10605e-08
9.23294e-08
2.46354e-08
9.18294e-08
1.83268e-08
9.05689e-08
1.2261e-08
8.76456e-08
6.70891e-09
8.10751e-08
2.23777e-09
6.65272e-08
3.46531e-08
4.90649e-07
-1.0563e-07
4.9885e-07
-1.01984e-07
5.0626e-07
-9.79569e-08
5.12909e-07
-9.35381e-08
5.18798e-07
-8.88481e-08
5.23933e-07
-8.40141e-08
5.28333e-07
-7.91208e-08
5.32024e-07
-7.42138e-08
5.35037e-07
-6.93166e-08
5.37405e-07
-6.44423e-08
5.39158e-07
-5.9601e-08
5.40325e-07
-5.48008e-08
5.40934e-07
-5.00497e-08
5.41011e-07
-4.53546e-08
5.4058e-07
-4.07223e-08
5.39665e-07
-3.61585e-08
5.3829e-07
-3.16684e-08
5.36477e-07
-2.72565e-08
5.34247e-07
-2.29266e-08
5.31621e-07
-1.86819e-08
5.2862e-07
-1.45249e-08
5.25264e-07
-1.04578e-08
5.21572e-07
-6.4816e-09
5.17561e-07
-2.59561e-09
5.13188e-07
1.25908e-09
5.08615e-07
4.91161e-09
5.03781e-07
8.49613e-09
4.98692e-07
1.19872e-08
4.93373e-07
1.5389e-08
4.87835e-07
1.87021e-08
4.82095e-07
2.19235e-08
4.76168e-07
2.50537e-08
4.70068e-07
2.80933e-08
4.63808e-07
3.10432e-08
4.57399e-07
3.39044e-08
4.50855e-07
3.66782e-08
4.44187e-07
3.93658e-08
4.37404e-07
4.19686e-08
4.30518e-07
4.44882e-08
4.23539e-07
4.69261e-08
4.16474e-07
4.92839e-08
4.09333e-07
5.15634e-08
4.02125e-07
5.37662e-08
3.94856e-07
5.58941e-08
3.87535e-07
5.79487e-08
3.80167e-07
5.99319e-08
3.7276e-07
6.18454e-08
3.65319e-07
6.36909e-08
3.5785e-07
6.54702e-08
3.50358e-07
6.71851e-08
3.42849e-07
6.88372e-08
3.35325e-07
7.04283e-08
3.27793e-07
7.196e-08
3.20256e-07
7.34339e-08
3.12717e-07
7.48517e-08
3.05179e-07
7.6215e-08
2.97647e-07
7.75253e-08
2.90121e-07
7.87842e-08
2.82605e-07
7.99931e-08
2.75101e-07
8.11535e-08
2.67611e-07
8.22669e-08
2.60138e-07
8.33346e-08
2.52682e-07
8.4358e-08
2.45245e-07
8.53383e-08
2.37828e-07
8.62769e-08
2.30433e-07
8.7175e-08
2.2306e-07
8.80337e-08
2.15709e-07
8.88543e-08
2.08382e-07
8.96378e-08
2.01079e-07
9.03853e-08
1.938e-07
9.10978e-08
1.86545e-07
9.17764e-08
1.79314e-07
9.2422e-08
1.72108e-07
9.30355e-08
1.64927e-07
9.36178e-08
1.57769e-07
9.41697e-08
1.50634e-07
9.46921e-08
1.43523e-07
9.51857e-08
1.36434e-07
9.56513e-08
1.29368e-07
9.60895e-08
1.22323e-07
9.65011e-08
1.15299e-07
9.68865e-08
1.08294e-07
9.72464e-08
1.01309e-07
9.75813e-08
9.43417e-08
9.78917e-08
8.73918e-08
9.81777e-08
8.04584e-08
9.84396e-08
7.35409e-08
9.86769e-08
6.66387e-08
9.88883e-08
5.97517e-08
9.90706e-08
5.28808e-08
9.92161e-08
4.60282e-08
9.93076e-08
3.91995e-08
9.93057e-08
3.24075e-08
9.91216e-08
2.56804e-08
9.85566e-08
1.90804e-08
9.71689e-08
1.27421e-08
9.39838e-08
6.95228e-09
8.68649e-08
2.30675e-09
7.11727e-08
3.696e-08
5.57245e-07
-1.14964e-07
5.65688e-07
-1.10427e-07
5.73333e-07
-1.05602e-07
5.80207e-07
-1.00412e-07
5.86294e-07
-9.49357e-08
5.91571e-07
-8.92916e-08
5.96027e-07
-8.35759e-08
5.99663e-07
-7.78496e-08
6.02495e-07
-7.21484e-08
6.04548e-07
-6.64948e-08
6.05851e-07
-6.09049e-08
6.06441e-07
-5.53908e-08
6.06354e-07
-4.99625e-08
6.05627e-07
-4.46278e-08
6.04298e-07
-3.93929e-08
6.02402e-07
-3.42627e-08
5.99975e-07
-2.92408e-08
5.97049e-07
-2.433e-08
5.93655e-07
-1.95326e-08
5.89822e-07
-1.48499e-08
5.85581e-07
-1.02829e-08
5.80954e-07
-5.83106e-09
5.75965e-07
-1.4919e-09
5.70583e-07
2.7869e-09
5.65012e-07
6.83053e-09
5.59122e-07
1.08014e-08
5.5297e-07
1.4648e-08
5.46566e-07
1.8391e-08
5.39934e-07
2.20209e-08
5.33094e-07
2.55419e-08
5.26064e-07
2.89538e-08
5.18859e-07
3.22578e-08
5.11497e-07
3.54556e-08
5.03991e-07
3.85489e-08
4.96356e-07
4.15396e-08
4.88604e-07
4.44298e-08
4.80748e-07
4.72214e-08
4.72801e-07
4.99165e-08
4.64772e-07
5.25175e-08
4.56672e-07
5.50263e-08
4.48511e-07
5.74455e-08
4.40297e-07
5.97772e-08
4.3204e-07
6.20237e-08
4.23746e-07
6.41874e-08
4.15424e-07
6.62706e-08
4.07081e-07
6.82754e-08
3.98722e-07
7.02042e-08
3.90354e-07
7.20592e-08
3.81982e-07
7.38425e-08
3.73611e-07
7.55564e-08
3.65246e-07
7.72028e-08
3.5689e-07
7.8784e-08
3.48548e-07
8.03019e-08
3.40223e-07
8.17586e-08
3.31919e-07
8.3156e-08
3.23639e-07
8.4496e-08
3.15384e-07
8.57804e-08
3.07157e-07
8.70112e-08
2.9896e-07
8.81899e-08
2.90795e-07
8.93184e-08
2.82663e-07
9.03984e-08
2.74566e-07
9.14313e-08
2.66506e-07
9.24189e-08
2.58482e-07
9.33625e-08
2.50495e-07
9.42637e-08
2.42546e-07
9.51239e-08
2.34635e-07
9.59444e-08
2.26763e-07
9.67266e-08
2.18929e-07
9.74716e-08
2.11133e-07
9.81808e-08
2.03376e-07
9.88553e-08
1.95656e-07
9.94961e-08
1.87973e-07
1.00104e-07
1.80328e-07
1.00681e-07
1.72718e-07
1.01228e-07
1.65143e-07
1.01744e-07
1.57603e-07
1.02232e-07
1.50096e-07
1.02693e-07
1.42622e-07
1.03126e-07
1.35179e-07
1.03533e-07
1.27766e-07
1.03914e-07
1.20381e-07
1.04271e-07
1.13025e-07
1.04603e-07
1.05695e-07
1.04911e-07
9.83898e-08
1.05197e-07
9.11083e-08
1.05459e-07
8.38491e-08
1.05699e-07
7.66112e-08
1.05915e-07
6.93934e-08
1.06106e-07
6.21956e-08
1.06268e-07
5.50181e-08
1.06393e-07
4.78632e-08
1.06462e-07
4.07368e-08
1.06432e-07
3.36523e-08
1.06206e-07
2.664e-08
1.05569e-07
1.97659e-08
1.04043e-07
1.31731e-08
1.00577e-07
7.16444e-09
9.28738e-08
2.36318e-09
7.59741e-08
3.93231e-08
6.42608e-07
-1.24427e-07
6.50936e-07
-1.18756e-07
6.58259e-07
-1.12924e-07
6.64636e-07
-1.06789e-07
6.70076e-07
-1.00376e-07
6.74573e-07
-9.37881e-08
6.78126e-07
-8.71299e-08
6.80754e-07
-8.04768e-08
6.82482e-07
-7.38768e-08
6.83348e-07
-6.73602e-08
6.83391e-07
-6.09476e-08
6.82654e-07
-5.46539e-08
6.81181e-07
-4.849e-08
6.79017e-07
-4.24639e-08
6.76205e-07
-3.6581e-08
6.72788e-07
-3.08449e-08
6.68805e-07
-2.52578e-08
6.64296e-07
-1.98207e-08
6.59298e-07
-1.45341e-08
6.53845e-07
-9.39727e-09
6.4797e-07
-4.40795e-09
6.41662e-07
4.77371e-10
6.34997e-07
5.17295e-09
6.2811e-07
9.67344e-09
6.20886e-07
1.40556e-08
6.13384e-07
1.83032e-08
6.05624e-07
2.24081e-08
5.97635e-07
2.63803e-08
5.89436e-07
3.02192e-08
5.81051e-07
3.39268e-08
5.725e-07
3.75056e-08
5.63799e-07
4.09583e-08
5.54968e-07
4.42876e-08
5.4602e-07
4.74964e-08
5.36973e-07
5.05875e-08
5.27839e-07
5.3564e-08
5.18631e-07
5.64289e-08
5.09363e-07
5.9185e-08
5.00045e-07
6.18356e-08
4.90688e-07
6.43836e-08
4.81301e-07
6.6832e-08
4.71895e-07
6.91839e-08
4.62476e-07
7.14423e-08
4.53054e-07
7.361e-08
4.43635e-07
7.569e-08
4.34225e-07
7.76851e-08
4.24831e-07
7.95982e-08
4.15459e-07
8.1432e-08
4.06112e-07
8.31892e-08
3.96796e-07
8.48723e-08
3.87515e-07
8.64841e-08
3.78272e-07
8.80269e-08
3.6907e-07
8.95032e-08
3.59913e-07
9.09153e-08
3.50803e-07
9.22657e-08
3.41743e-07
9.35565e-08
3.32733e-07
9.47898e-08
3.23777e-07
9.59679e-08
3.14874e-07
9.70927e-08
3.06026e-07
9.81661e-08
2.97234e-07
9.91902e-08
2.88499e-07
1.00167e-07
2.7982e-07
1.01097e-07
2.71199e-07
1.01984e-07
2.62635e-07
1.02828e-07
2.54128e-07
1.03631e-07
2.45677e-07
1.04395e-07
2.37282e-07
1.05121e-07
2.28942e-07
1.05811e-07
2.20657e-07
1.06466e-07
2.12426e-07
1.07086e-07
2.04248e-07
1.07674e-07
1.96121e-07
1.08231e-07
1.88045e-07
1.08757e-07
1.80018e-07
1.09255e-07
1.72039e-07
1.09724e-07
1.64106e-07
1.10165e-07
1.56218e-07
1.10581e-07
1.48372e-07
1.10971e-07
1.40569e-07
1.11336e-07
1.32805e-07
1.11678e-07
1.25079e-07
1.11997e-07
1.17389e-07
1.12293e-07
1.09733e-07
1.12567e-07
1.0211e-07
1.1282e-07
9.45173e-08
1.13052e-07
8.69534e-08
1.13263e-07
7.94165e-08
1.13452e-07
7.19053e-08
1.13617e-07
6.44189e-08
1.13755e-07
5.69573e-08
1.13855e-07
4.95227e-08
1.13897e-07
4.2121e-08
1.13834e-07
3.47665e-08
1.13561e-07
2.74911e-08
1.12844e-07
2.03655e-08
1.11169e-07
1.35413e-08
1.07401e-07
7.33777e-09
9.90776e-08
2.40397e-09
8.09082e-08
4.17273e-08
7.46814e-07
-1.33706e-07
7.54587e-07
-1.26529e-07
7.61024e-07
-1.19361e-07
7.66231e-07
-1.11996e-07
7.70266e-07
-1.04411e-07
7.73166e-07
-9.66891e-08
7.74974e-07
-8.89373e-08
7.75738e-07
-8.12411e-08
7.75518e-07
-7.36563e-08
7.74374e-07
-6.62155e-08
7.72364e-07
-5.89381e-08
7.69546e-07
-5.1836e-08
7.65973e-07
-4.49171e-08
7.61696e-07
-3.81867e-08
7.56763e-07
-3.16477e-08
7.5122e-07
-2.53017e-08
7.45111e-07
-1.91488e-08
7.38478e-07
-1.31879e-08
7.3136e-07
-7.41595e-09
7.23792e-07
-1.82938e-09
7.15774e-07
3.61009e-09
7.07442e-07
8.80891e-09
6.98819e-07
1.37973e-08
6.89877e-07
1.8615e-08
6.80658e-07
2.32748e-08
6.71193e-07
2.77684e-08
6.61505e-07
3.20962e-08
6.51622e-07
3.6263e-08
6.41569e-07
4.02722e-08
6.31367e-07
4.4128e-08
6.21039e-07
4.78339e-08
6.10603e-07
5.13945e-08
6.00076e-07
5.48138e-08
5.89476e-07
5.80959e-08
5.78818e-07
6.1245e-08
5.68117e-07
6.4265e-08
5.57386e-07
6.71602e-08
5.46637e-07
6.99345e-08
5.35881e-07
7.2592e-08
5.25128e-07
7.51365e-08
5.14388e-07
7.7572e-08
5.0367e-07
7.99023e-08
4.92981e-07
8.21312e-08
4.82329e-07
8.42623e-08
4.71719e-07
8.62993e-08
4.61159e-07
8.82456e-08
4.50653e-07
9.01046e-08
4.40206e-07
9.18797e-08
4.29821e-07
9.3574e-08
4.19503e-07
9.51906e-08
4.09254e-07
9.67327e-08
3.99077e-07
9.82031e-08
3.88975e-07
9.96047e-08
3.78951e-07
1.0094e-07
3.69004e-07
1.02212e-07
3.59137e-07
1.03424e-07
3.49351e-07
1.04576e-07
3.39645e-07
1.05673e-07
3.30021e-07
1.06717e-07
3.20478e-07
1.07708e-07
3.11017e-07
1.08651e-07
3.01638e-07
1.09546e-07
2.92339e-07
1.10396e-07
2.83121e-07
1.11203e-07
2.73981e-07
1.11968e-07
2.6492e-07
1.12693e-07
2.55936e-07
1.1338e-07
2.47027e-07
1.1403e-07
2.38192e-07
1.14646e-07
2.2943e-07
1.15227e-07
2.2074e-07
1.15777e-07
2.12118e-07
1.16296e-07
2.03565e-07
1.16785e-07
1.95076e-07
1.17246e-07
1.86651e-07
1.1768e-07
1.78288e-07
1.18087e-07
1.69983e-07
1.1847e-07
1.61736e-07
1.18828e-07
1.53543e-07
1.19163e-07
1.45403e-07
1.19476e-07
1.37313e-07
1.19768e-07
1.29271e-07
1.20039e-07
1.21274e-07
1.2029e-07
1.1332e-07
1.20521e-07
1.05406e-07
1.20734e-07
9.75303e-08
1.20928e-07
8.96899e-08
1.21103e-07
8.18827e-08
1.21259e-07
7.41068e-08
1.21393e-07
6.63609e-08
1.21501e-07
5.86447e-08
1.21572e-07
5.09599e-08
1.21582e-07
4.33125e-08
1.21482e-07
3.57173e-08
1.21156e-07
2.82082e-08
1.20354e-07
2.08602e-08
1.18517e-07
1.38342e-08
1.14427e-07
7.46531e-09
1.05447e-07
2.42677e-09
8.59468e-08
4.41541e-08
8.67813e-07
-1.4214e-07
8.74389e-07
-1.33105e-07
8.79313e-07
-1.24285e-07
8.82744e-07
-1.15426e-07
8.8479e-07
-1.06457e-07
8.85529e-07
-9.7429e-08
8.85034e-07
-8.84424e-08
8.83379e-07
-7.95866e-08
8.80645e-07
-7.09221e-08
8.76913e-07
-6.24828e-08
8.72261e-07
-5.4285e-08
8.6676e-07
-4.63358e-08
8.60481e-07
-3.86375e-08
8.53484e-07
-3.11903e-08
8.45829e-07
-2.3993e-08
8.37571e-07
-1.7043e-08
8.28758e-07
-1.0336e-08
8.19446e-07
-3.87565e-09
8.09565e-07
2.46543e-09
7.99366e-07
8.36945e-09
7.88865e-07
1.41107e-08
7.78061e-07
1.96131e-08
7.66942e-07
2.49161e-08
7.55556e-07
3.00007e-08
7.43944e-07
3.4887e-08
7.32138e-07
3.95741e-08
7.20168e-07
4.40667e-08
7.08059e-07
4.83712e-08
6.95838e-07
5.24931e-08
6.83528e-07
5.64382e-08
6.71149e-07
6.02126e-08
6.58722e-07
6.38219e-08
6.46264e-07
6.72719e-08
6.33792e-07
7.05683e-08
6.21321e-07
7.37164e-08
6.08864e-07
7.67218e-08
5.96434e-07
7.95897e-08
5.84043e-07
8.23253e-08
5.71702e-07
8.49338e-08
5.59418e-07
8.742e-08
5.47201e-07
8.97888e-08
5.35058e-07
9.20449e-08
5.22997e-07
9.41929e-08
5.11022e-07
9.62372e-08
4.99139e-07
9.81821e-08
4.87353e-07
1.00032e-07
4.75668e-07
1.0179e-07
4.64086e-07
1.03461e-07
4.52611e-07
1.05049e-07
4.41244e-07
1.06557e-07
4.29989e-07
1.07988e-07
4.18845e-07
1.09346e-07
4.07815e-07
1.10635e-07
3.96899e-07
1.11856e-07
3.86097e-07
1.13014e-07
3.7541e-07
1.14111e-07
3.64836e-07
1.1515e-07
3.54376e-07
1.16134e-07
3.44028e-07
1.17065e-07
3.33792e-07
1.17945e-07
3.23666e-07
1.18777e-07
3.13649e-07
1.19563e-07
3.03739e-07
1.20306e-07
2.93935e-07
1.21007e-07
2.84235e-07
1.21668e-07
2.74636e-07
1.22292e-07
2.65136e-07
1.22879e-07
2.55733e-07
1.23433e-07
2.46425e-07
1.23953e-07
2.37209e-07
1.24443e-07
2.28084e-07
1.24903e-07
2.19045e-07
1.25334e-07
2.10091e-07
1.25739e-07
2.01218e-07
1.26118e-07
1.92424e-07
1.26473e-07
1.83706e-07
1.26805e-07
1.75062e-07
1.27114e-07
1.66487e-07
1.27403e-07
1.57979e-07
1.27671e-07
1.49536e-07
1.2792e-07
1.41154e-07
1.2815e-07
1.32829e-07
1.28363e-07
1.2456e-07
1.28559e-07
1.16343e-07
1.28739e-07
1.08174e-07
1.28903e-07
1.00051e-07
1.29051e-07
9.19709e-08
1.29184e-07
8.39302e-08
1.293e-07
7.59265e-08
1.29397e-07
6.79581e-08
1.29469e-07
6.0024e-08
1.29505e-07
5.21256e-08
1.2948e-07
4.42686e-08
1.29338e-07
3.64686e-08
1.28956e-07
2.87617e-08
1.28061e-07
2.12275e-08
1.26051e-07
1.40361e-08
1.21619e-07
7.53826e-09
1.11944e-07
2.42874e-09
9.10563e-08
4.65828e-08
1.00909e-06
-1.4855e-07
1.01334e-06
-1.37358e-07
1.01568e-06
-1.26622e-07
1.01632e-06
-1.16068e-07
1.01542e-06
-1.05562e-07
1.01311e-06
-9.51122e-08
1.00946e-06
-8.47955e-08
1.00457e-06
-7.4698e-08
9.98533e-07
-6.48832e-08
9.91438e-07
-5.53873e-08
9.83378e-07
-4.62254e-08
9.74443e-07
-3.74006e-08
9.64715e-07
-2.89101e-08
9.54273e-07
-2.07484e-08
9.43189e-07
-1.29081e-08
9.31533e-07
-5.38705e-09
9.1918e-07
2.01689e-09
9.06509e-07
8.79504e-09
8.93586e-07
1.5388e-08
8.80265e-07
2.16898e-08
8.66652e-07
2.77241e-08
8.52765e-07
3.35004e-08
8.3866e-07
3.90209e-08
8.24372e-07
4.4289e-08
8.0994e-07
4.93187e-08
7.95397e-07
5.41168e-08
7.80772e-07
5.86912e-08
7.66093e-07
6.305e-08
7.51384e-07
6.72015e-08
7.36669e-07
7.11537e-08
7.21967e-07
7.49146e-08
7.07296e-07
7.84918e-08
6.92675e-07
8.18929e-08
6.78117e-07
8.51252e-08
6.63638e-07
8.81957e-08
6.49248e-07
9.11113e-08
6.34959e-07
9.38785e-08
6.20781e-07
9.65037e-08
6.06722e-07
9.89933e-08
5.92789e-07
1.01353e-07
5.78988e-07
1.03589e-07
5.65326e-07
1.05707e-07
5.51808e-07
1.07711e-07
5.38436e-07
1.09608e-07
5.25216e-07
1.11403e-07
5.12148e-07
1.131e-07
4.99236e-07
1.14703e-07
4.86479e-07
1.16218e-07
4.73881e-07
1.17648e-07
4.6144e-07
1.18998e-07
4.49157e-07
1.20271e-07
4.37031e-07
1.21471e-07
4.25063e-07
1.22603e-07
4.13251e-07
1.23669e-07
4.01594e-07
1.24672e-07
3.90089e-07
1.25616e-07
3.78736e-07
1.26504e-07
3.67532e-07
1.27338e-07
3.56474e-07
1.28122e-07
3.45561e-07
1.28858e-07
3.34789e-07
1.29549e-07
3.24157e-07
1.30196e-07
3.13661e-07
1.30803e-07
3.03298e-07
1.31371e-07
2.93064e-07
1.31902e-07
2.82958e-07
1.32399e-07
2.72974e-07
1.32863e-07
2.63111e-07
1.33296e-07
2.53364e-07
1.337e-07
2.4373e-07
1.34077e-07
2.34206e-07
1.34427e-07
2.24788e-07
1.34753e-07
2.15472e-07
1.35055e-07
2.06255e-07
1.35336e-07
1.97132e-07
1.35596e-07
1.88101e-07
1.35836e-07
1.79157e-07
1.36058e-07
1.70296e-07
1.36263e-07
1.61516e-07
1.36451e-07
1.52812e-07
1.36624e-07
1.44181e-07
1.36782e-07
1.35618e-07
1.36926e-07
1.2712e-07
1.37057e-07
1.18683e-07
1.37176e-07
1.10304e-07
1.37282e-07
1.01978e-07
1.37377e-07
9.37021e-08
1.3746e-07
8.54726e-08
1.37529e-07
7.72863e-08
1.37583e-07
6.91405e-08
1.37615e-07
6.10336e-08
1.37612e-07
5.29664e-08
1.37548e-07
4.49444e-08
1.37361e-07
3.69836e-08
1.36917e-07
2.91224e-08
1.35922e-07
2.14453e-08
1.33729e-07
1.41317e-08
1.28933e-07
7.54795e-09
1.18528e-07
2.40667e-09
9.6198e-08
4.89897e-08
1.17764e-06
-1.51345e-07
1.17799e-06
-1.37711e-07
1.17617e-06
-1.24793e-07
1.17243e-06
-1.12336e-07
1.16702e-06
-1.00151e-07
1.1601e-06
-8.81903e-08
1.1518e-06
-7.6493e-08
1.14223e-06
-6.51292e-08
1.1315e-06
-5.4159e-08
1.11974e-06
-4.3618e-08
1.10703e-06
-3.35192e-08
1.09349e-06
-2.38604e-08
1.07921e-06
-1.46312e-08
1.06429e-06
-5.82943e-09
1.04866e-06
2.72444e-09
1.03256e-06
1.07158e-08
1.01635e-06
1.82228e-08
9.9967e-07
2.54747e-08
9.82712e-07
3.23454e-08
9.65519e-07
3.88826e-08
9.48136e-07
4.51071e-08
9.30613e-07
5.1023e-08
9.12994e-07
5.66393e-08
8.95314e-07
6.19692e-08
8.77609e-07
6.70242e-08
8.59911e-07
7.18151e-08
8.42248e-07
7.63542e-08
8.24645e-07
8.06521e-08
8.07127e-07
8.47201e-08
7.89712e-07
8.85685e-08
7.72419e-07
9.22076e-08
7.55263e-07
9.56471e-08
7.3826e-07
9.88964e-08
7.2142e-07
1.01965e-07
7.04756e-07
1.0486e-07
6.88275e-07
1.07592e-07
6.71986e-07
1.10167e-07
6.55896e-07
1.12594e-07
6.4001e-07
1.1488e-07
6.24332e-07
1.17031e-07
6.08866e-07
1.19055e-07
5.93615e-07
1.20958e-07
5.7858e-07
1.22746e-07
5.63764e-07
1.24425e-07
5.49166e-07
1.26001e-07
5.34786e-07
1.2748e-07
5.20623e-07
1.28865e-07
5.06678e-07
1.30164e-07
4.92947e-07
1.31379e-07
4.79429e-07
1.32515e-07
4.66122e-07
1.33578e-07
4.53023e-07
1.3457e-07
4.4013e-07
1.35496e-07
4.2744e-07
1.36359e-07
4.14948e-07
1.37164e-07
4.02652e-07
1.37913e-07
3.90547e-07
1.38609e-07
3.7863e-07
1.39255e-07
3.66897e-07
1.39856e-07
3.55343e-07
1.40412e-07
3.43964e-07
1.40927e-07
3.32757e-07
1.41403e-07
3.21716e-07
1.41843e-07
3.10838e-07
1.42249e-07
3.00117e-07
1.42623e-07
2.89548e-07
1.42967e-07
2.79129e-07
1.43283e-07
2.68853e-07
1.43572e-07
2.58716e-07
1.43837e-07
2.48714e-07
1.44079e-07
2.38842e-07
1.44299e-07
2.29095e-07
1.445e-07
2.19469e-07
1.44682e-07
2.09958e-07
1.44846e-07
2.00559e-07
1.44995e-07
1.91266e-07
1.45129e-07
1.82076e-07
1.45249e-07
1.72983e-07
1.45356e-07
1.63983e-07
1.45451e-07
1.55071e-07
1.45535e-07
1.46244e-07
1.4561e-07
1.37496e-07
1.45674e-07
1.28822e-07
1.45731e-07
1.20219e-07
1.45779e-07
1.11682e-07
1.45819e-07
1.03207e-07
1.45853e-07
9.47884e-08
1.45878e-07
8.64231e-08
1.45894e-07
7.81069e-08
1.45899e-07
6.98364e-08
1.45885e-07
6.16093e-08
1.45839e-07
5.34256e-08
1.45731e-07
4.52908e-08
1.45495e-07
3.72213e-08
1.44987e-07
2.92577e-08
1.43886e-07
2.14894e-08
1.41497e-07
1.41053e-08
1.36317e-07
7.48599e-09
1.25148e-07
2.35792e-09
1.01326e-07
5.13476e-08
1.37767e-06
-1.48171e-07
1.37182e-06
-1.3186e-07
1.36358e-06
-1.1655e-07
1.35328e-06
-1.02039e-07
1.34123e-06
-8.80997e-08
1.32766e-06
-7.46203e-08
1.31275e-06
-6.1587e-08
1.29666e-06
-4.90381e-08
1.27952e-06
-3.70185e-08
1.26146e-06
-2.55567e-08
1.24261e-06
-1.46632e-08
1.22306e-06
-4.316e-09
1.20266e-06
5.76721e-09
1.18201e-06
1.48219e-08
1.16117e-06
2.35653e-08
1.14004e-06
3.18433e-08
1.11858e-06
3.96834e-08
1.09698e-06
4.70803e-08
1.07525e-06
5.40711e-08
1.05346e-06
6.06695e-08
1.03167e-06
6.69035e-08
1.00991e-06
7.27794e-08
9.88232e-07
7.83188e-08
9.66665e-07
8.35361e-08
9.45241e-07
8.84481e-08
9.23986e-07
9.30698e-08
9.02924e-07
9.74158e-08
8.82076e-07
1.015e-07
8.61459e-07
1.05337e-07
8.41088e-07
1.08939e-07
8.20977e-07
1.12319e-07
8.01135e-07
1.15488e-07
7.81573e-07
1.18458e-07
7.62298e-07
1.21239e-07
7.43316e-07
1.23842e-07
7.24631e-07
1.26277e-07
7.06247e-07
1.28552e-07
6.88165e-07
1.30676e-07
6.70387e-07
1.32658e-07
6.52913e-07
1.34505e-07
6.35742e-07
1.36225e-07
6.18874e-07
1.37826e-07
6.02305e-07
1.39314e-07
5.86035e-07
1.40696e-07
5.70059e-07
1.41977e-07
5.54374e-07
1.43165e-07
5.38976e-07
1.44263e-07
5.23861e-07
1.45279e-07
5.09025e-07
1.46215e-07
4.94461e-07
1.47079e-07
4.80166e-07
1.47873e-07
4.66134e-07
1.48602e-07
4.52359e-07
1.49271e-07
4.38837e-07
1.49882e-07
4.2556e-07
1.5044e-07
4.12524e-07
1.50949e-07
3.99722e-07
1.51411e-07
3.87148e-07
1.51829e-07
3.74797e-07
1.52207e-07
3.62662e-07
1.52547e-07
3.50737e-07
1.52852e-07
3.39016e-07
1.53124e-07
3.27494e-07
1.53366e-07
3.16163e-07
1.5358e-07
3.05019e-07
1.53768e-07
2.94054e-07
1.53932e-07
2.83262e-07
1.54074e-07
2.72639e-07
1.54195e-07
2.62178e-07
1.54298e-07
2.51873e-07
1.54384e-07
2.41718e-07
1.54454e-07
2.31707e-07
1.5451e-07
2.21836e-07
1.54553e-07
2.12097e-07
1.54585e-07
2.02486e-07
1.54606e-07
1.92997e-07
1.54618e-07
1.83625e-07
1.54621e-07
1.74363e-07
1.54617e-07
1.65207e-07
1.54607e-07
1.56152e-07
1.54591e-07
1.47191e-07
1.5457e-07
1.3832e-07
1.54545e-07
1.29534e-07
1.54517e-07
1.20827e-07
1.54486e-07
1.12195e-07
1.54452e-07
1.03632e-07
1.54416e-07
9.51327e-08
1.54377e-07
8.66932e-08
1.54334e-07
7.83085e-08
1.54284e-07
6.99742e-08
1.5422e-07
6.16873e-08
1.54126e-07
5.34474e-08
1.53971e-07
4.52595e-08
1.53683e-07
3.7141e-08
1.53105e-07
2.91346e-08
1.51892e-07
2.1335e-08
1.49297e-07
1.39401e-08
1.43712e-07
7.34345e-09
1.31745e-07
2.28003e-09
1.0639e-07
5.36277e-08
1.61162e-06
-1.35517e-07
1.59625e-06
-1.16497e-07
1.57851e-06
-9.88075e-08
1.55877e-06
-8.23001e-08
1.5374e-06
-6.67269e-08
1.51469e-06
-5.19101e-08
1.49087e-06
-3.77683e-08
1.46612e-06
-2.42914e-08
1.4406e-06
-1.14976e-08
1.41437e-06
6.74917e-10
1.38756e-06
1.21486e-08
1.36044e-06
2.28006e-08
1.33338e-06
3.28289e-08
1.30592e-06
4.22798e-08
1.27839e-06
5.11024e-08
1.25083e-06
5.93993e-08
1.22332e-06
6.71953e-08
1.19591e-06
7.44909e-08
1.16865e-06
8.13254e-08
1.1416e-06
8.7724e-08
1.11479e-06
9.37111e-08
1.08826e-06
9.93084e-08
1.06205e-06
1.04537e-07
1.03616e-06
1.09418e-07
1.01064e-06
1.13972e-07
9.85494e-07
1.18217e-07
9.60738e-07
1.22171e-07
9.36386e-07
1.25852e-07
9.12447e-07
1.29276e-07
8.88929e-07
1.32458e-07
8.65836e-07
1.35412e-07
8.43173e-07
1.38152e-07
8.2094e-07
1.4069e-07
7.99139e-07
1.4304e-07
7.77768e-07
1.45213e-07
7.56826e-07
1.47219e-07
7.36309e-07
1.49069e-07
7.16214e-07
1.50771e-07
6.96535e-07
1.52336e-07
6.77268e-07
1.53772e-07
6.58406e-07
1.55087e-07
6.39944e-07
1.56289e-07
6.21873e-07
1.57384e-07
6.04188e-07
1.58381e-07
5.86881e-07
1.59285e-07
5.69943e-07
1.60102e-07
5.53368e-07
1.60839e-07
5.37146e-07
1.615e-07
5.2127e-07
1.62092e-07
5.05731e-07
1.62618e-07
4.9052e-07
1.63083e-07
4.7563e-07
1.63492e-07
4.61052e-07
1.63849e-07
4.46777e-07
1.64157e-07
4.32797e-07
1.6442e-07
4.19104e-07
1.64642e-07
4.05688e-07
1.64826e-07
3.92542e-07
1.64975e-07
3.79658e-07
1.65091e-07
3.67026e-07
1.65178e-07
3.5464e-07
1.65238e-07
3.42492e-07
1.65273e-07
3.30572e-07
1.65285e-07
3.18875e-07
1.65278e-07
3.07391e-07
1.65252e-07
2.96113e-07
1.6521e-07
2.85034e-07
1.65153e-07
2.74146e-07
1.65083e-07
2.63443e-07
1.65002e-07
2.52916e-07
1.6491e-07
2.4256e-07
1.64811e-07
2.32367e-07
1.64704e-07
2.2233e-07
1.6459e-07
2.12442e-07
1.64472e-07
2.02698e-07
1.64351e-07
1.9309e-07
1.64226e-07
1.83611e-07
1.64099e-07
1.74257e-07
1.63972e-07
1.65021e-07
1.63844e-07
1.55895e-07
1.63716e-07
1.46876e-07
1.6359e-07
1.37955e-07
1.63466e-07
1.29128e-07
1.63344e-07
1.20389e-07
1.63225e-07
1.11732e-07
1.63109e-07
1.03152e-07
1.62996e-07
9.46417e-08
1.62887e-07
8.61971e-08
1.62779e-07
7.78126e-08
1.62669e-07
6.9483e-08
1.62549e-07
6.12047e-08
1.62405e-07
5.29766e-08
1.622e-07
4.48037e-08
1.61856e-07
3.6704e-08
1.61205e-07
2.87226e-08
1.59874e-07
2.09594e-08
1.5706e-07
1.36211e-08
1.5105e-07
7.11209e-09
1.38254e-07
2.16999e-09
1.11332e-07
5.57978e-08
1.88072e-06
-1.08718e-07
1.85156e-06
-8.73354e-08
1.8204e-06
-6.76475e-08
1.78765e-06
-4.95475e-08
1.7537e-06
-3.27774e-08
1.71889e-06
-1.71024e-08
1.68345e-06
-2.31992e-09
1.64743e-06
1.17278e-08
1.61111e-06
2.48184e-08
1.57497e-06
3.68189e-08
1.53893e-06
4.81882e-08
1.5029e-06
5.88232e-08
1.46705e-06
6.86884e-08
1.43147e-06
7.78578e-08
1.39619e-06
8.63843e-08
1.36129e-06
9.42963e-08
1.32683e-06
1.01651e-07
1.29286e-06
1.08467e-07
1.2594e-06
1.14783e-07
1.22649e-06
1.20634e-07
1.19415e-06
1.26048e-07
1.16241e-06
1.31052e-07
1.13127e-06
1.35673e-07
1.10075e-06
1.39937e-07
1.07086e-06
1.43865e-07
1.0416e-06
1.4748e-07
1.01297e-06
1.50803e-07
9.84965e-07
1.53853e-07
9.57592e-07
1.56649e-07
9.30844e-07
1.59206e-07
9.04714e-07
1.61541e-07
8.79195e-07
1.6367e-07
8.54281e-07
1.65605e-07
8.2996e-07
1.67361e-07
8.06225e-07
1.68949e-07
7.83063e-07
1.70381e-07
7.60465e-07
1.71667e-07
7.38418e-07
1.72818e-07
7.1691e-07
1.73844e-07
6.9593e-07
1.74752e-07
6.75464e-07
1.75552e-07
6.55501e-07
1.76251e-07
6.36029e-07
1.76857e-07
6.17033e-07
1.77376e-07
5.98502e-07
1.77816e-07
5.80423e-07
1.78181e-07
5.62783e-07
1.78479e-07
5.4557e-07
1.78713e-07
5.28771e-07
1.7889e-07
5.12374e-07
1.79014e-07
4.96367e-07
1.7909e-07
4.80738e-07
1.79121e-07
4.65476e-07
1.79111e-07
4.50567e-07
1.79065e-07
4.36002e-07
1.78985e-07
4.21769e-07
1.78876e-07
4.07857e-07
1.78738e-07
3.94254e-07
1.78577e-07
3.80952e-07
1.78394e-07
3.67938e-07
1.78192e-07
3.55204e-07
1.77972e-07
3.42738e-07
1.77738e-07
3.30532e-07
1.77492e-07
3.18575e-07
1.77235e-07
3.06859e-07
1.76969e-07
2.95373e-07
1.76695e-07
2.8411e-07
1.76416e-07
2.7306e-07
1.76133e-07
2.62215e-07
1.75847e-07
2.51566e-07
1.75559e-07
2.41106e-07
1.75271e-07
2.30825e-07
1.74984e-07
2.20717e-07
1.74699e-07
2.10773e-07
1.74416e-07
2.00987e-07
1.74137e-07
1.9135e-07
1.73863e-07
1.81855e-07
1.73594e-07
1.72495e-07
1.73331e-07
1.63264e-07
1.73075e-07
1.54154e-07
1.72826e-07
1.45158e-07
1.72586e-07
1.36271e-07
1.72353e-07
1.27485e-07
1.7213e-07
1.18795e-07
1.71916e-07
1.10193e-07
1.71711e-07
1.01673e-07
1.71516e-07
9.32303e-08
1.7133e-07
8.48576e-08
1.71152e-07
7.65492e-08
1.70977e-07
6.82998e-08
1.70799e-07
6.0105e-08
1.706e-07
5.19634e-08
1.70341e-07
4.38802e-08
1.69939e-07
3.58743e-08
1.69211e-07
2.79932e-08
1.67755e-07
2.03419e-08
1.64711e-07
1.31352e-08
1.58257e-07
6.78572e-09
1.44603e-07
2.02656e-09
1.16091e-07
5.78243e-08
2.18125e-06
-6.18346e-08
2.133e-06
-3.90858e-08
2.08374e-06
-1.83874e-08
2.03375e-06
4.43825e-10
1.98338e-06
1.75879e-08
1.93302e-06
3.32654e-08
1.88315e-06
4.75412e-08
1.83399e-06
6.08939e-08
1.78547e-06
7.33364e-08
1.73739e-06
8.49008e-08
1.69004e-06
9.55415e-08
1.64348e-06
1.05378e-07
1.59776e-06
1.14408e-07
1.5529e-06
1.22715e-07
1.50896e-06
1.30331e-07
1.46595e-06
1.37309e-07
1.42389e-06
1.43702e-07
1.38281e-06
1.4955e-07
1.3427e-06
1.54892e-07
1.30357e-06
1.59764e-07
1.26542e-06
1.64203e-07
1.22823e-06
1.68238e-07
1.19201e-06
1.71899e-07
1.15673e-06
1.75213e-07
1.12239e-06
1.78205e-07
1.08897e-06
1.809e-07
1.05646e-06
1.83318e-07
1.02483e-06
1.85481e-07
9.9407e-07
1.87408e-07
9.64161e-07
1.89115e-07
9.35082e-07
1.9062e-07
9.06813e-07
1.91939e-07
8.79334e-07
1.93084e-07
8.52624e-07
1.9407e-07
8.26663e-07
1.9491e-07
8.0143e-07
1.95614e-07
7.76905e-07
1.96193e-07
7.53067e-07
1.96657e-07
7.29896e-07
1.97015e-07
7.07372e-07
1.97277e-07
6.85474e-07
1.97449e-07
6.64185e-07
1.97541e-07
6.43484e-07
1.97558e-07
6.23353e-07
1.97507e-07
6.03774e-07
1.97395e-07
5.84728e-07
1.97228e-07
5.66198e-07
1.97009e-07
5.48166e-07
1.96746e-07
5.30615e-07
1.96441e-07
5.1353e-07
1.961e-07
4.96893e-07
1.95726e-07
4.8069e-07
1.95324e-07
4.64906e-07
1.94896e-07
4.49524e-07
1.94447e-07
4.34531e-07
1.93978e-07
4.19913e-07
1.93493e-07
4.05656e-07
1.92995e-07
3.91746e-07
1.92486e-07
3.78172e-07
1.91968e-07
3.64919e-07
1.91444e-07
3.51976e-07
1.90915e-07
3.39331e-07
1.90383e-07
3.26973e-07
1.89851e-07
3.14889e-07
1.89319e-07
3.03069e-07
1.88788e-07
2.91502e-07
1.88262e-07
2.80178e-07
1.8774e-07
2.69087e-07
1.87224e-07
2.58218e-07
1.86715e-07
2.47563e-07
1.86214e-07
2.37112e-07
1.85722e-07
2.26856e-07
1.8524e-07
2.16785e-07
1.84769e-07
2.06892e-07
1.84309e-07
1.97168e-07
1.83862e-07
1.87604e-07
1.83427e-07
1.78193e-07
1.83005e-07
1.68926e-07
1.82598e-07
1.59796e-07
1.82204e-07
1.50796e-07
1.81826e-07
1.41919e-07
1.81463e-07
1.33156e-07
1.81116e-07
1.24501e-07
1.80785e-07
1.15947e-07
1.80469e-07
1.07487e-07
1.80171e-07
9.91151e-08
1.79888e-07
9.08237e-08
1.79621e-07
8.26066e-08
1.79369e-07
7.44574e-08
1.79126e-07
6.63702e-08
1.78886e-07
5.83405e-08
1.78629e-07
5.03666e-08
1.78315e-07
4.24541e-08
1.77852e-07
3.4623e-08
1.77042e-07
2.69236e-08
1.75454e-07
1.94659e-08
1.72169e-07
1.24716e-08
1.65251e-07
6.35905e-09
1.50716e-07
1.8485e-09
1.20602e-07
5.96728e-08
2.49912e-06
1.21582e-08
2.42624e-06
3.37922e-08
2.35423e-06
5.36212e-08
2.28329e-06
7.13832e-08
2.21383e-06
8.70464e-08
2.14586e-06
1.01231e-07
2.07937e-06
1.14031e-07
2.01457e-06
1.25699e-07
1.9515e-06
1.36401e-07
1.89021e-06
1.46195e-07
1.83059e-06
1.55158e-07
1.77267e-06
1.63299e-07
1.71641e-06
1.70669e-07
1.6618e-06
1.7733e-07
1.6088e-06
1.83323e-07
1.5574e-06
1.88708e-07
1.50757e-06
1.93535e-07
1.45927e-06
1.97848e-07
1.41247e-06
2.01691e-07
1.36714e-06
2.05101e-07
1.32322e-06
2.08114e-07
1.2807e-06
2.10762e-07
1.23952e-06
2.13075e-07
1.19966e-06
2.15079e-07
1.16106e-06
2.168e-07
1.1237e-06
2.18262e-07
1.08753e-06
2.19485e-07
1.05253e-06
2.2049e-07
1.01864e-06
2.21296e-07
9.85833e-07
2.21919e-07
9.54078e-07
2.22375e-07
9.23337e-07
2.2268e-07
8.93576e-07
2.22845e-07
8.64761e-07
2.22885e-07
8.3686e-07
2.22811e-07
8.09841e-07
2.22633e-07
7.83672e-07
2.22361e-07
7.58325e-07
2.22004e-07
7.33769e-07
2.21571e-07
7.09976e-07
2.21069e-07
6.86919e-07
2.20506e-07
6.64571e-07
2.19889e-07
6.42906e-07
2.19223e-07
6.21898e-07
2.18515e-07
6.01523e-07
2.1777e-07
5.81758e-07
2.16993e-07
5.6258e-07
2.16188e-07
5.43966e-07
2.15359e-07
5.25896e-07
2.14511e-07
5.08348e-07
2.13648e-07
4.91303e-07
2.12771e-07
4.74741e-07
2.11886e-07
4.58644e-07
2.10993e-07
4.42993e-07
2.10097e-07
4.27771e-07
2.092e-07
4.12962e-07
2.08303e-07
3.98548e-07
2.07409e-07
3.84515e-07
2.0652e-07
3.70846e-07
2.05637e-07
3.57528e-07
2.04762e-07
3.44545e-07
2.03898e-07
3.31885e-07
2.03044e-07
3.19533e-07
2.02202e-07
3.07477e-07
2.01374e-07
2.95705e-07
2.00561e-07
2.84204e-07
1.99763e-07
2.72962e-07
1.98982e-07
2.61968e-07
1.98217e-07
2.51212e-07
1.97471e-07
2.40683e-07
1.96744e-07
2.30369e-07
1.96036e-07
2.20262e-07
1.95348e-07
2.10352e-07
1.9468e-07
2.00628e-07
1.94033e-07
1.91082e-07
1.93408e-07
1.81705e-07
1.92804e-07
1.72488e-07
1.92222e-07
1.63423e-07
1.91663e-07
1.54501e-07
1.91126e-07
1.45715e-07
1.90612e-07
1.37056e-07
1.90122e-07
1.28517e-07
1.89655e-07
1.20091e-07
1.89211e-07
1.1177e-07
1.88791e-07
1.03546e-07
1.88394e-07
9.54134e-08
1.88021e-07
8.73644e-08
1.8767e-07
7.93923e-08
1.87341e-07
7.14905e-08
1.87028e-07
6.3653e-08
1.86724e-07
5.58751e-08
1.86407e-07
4.81553e-08
1.86035e-07
4.04996e-08
1.85508e-07
3.29296e-08
1.84612e-07
2.54984e-08
1.82885e-07
1.83207e-08
1.79347e-07
1.16244e-08
1.71947e-07
5.82962e-09
1.56511e-07
1.63538e-09
1.24796e-07
6.13083e-08
2.8112e-06
1.16151e-07
2.70999e-06
1.35001e-07
2.61202e-06
1.5159e-07
2.5176e-06
1.65803e-07
2.42645e-06
1.782e-07
2.33876e-06
1.88924e-07
2.2544e-06
1.98382e-07
2.17333e-06
2.06777e-07
2.09541e-06
2.14321e-07
2.02051e-06
2.21096e-07
1.94849e-06
2.27178e-07
1.87921e-06
2.32579e-07
1.81254e-06
2.37335e-07
1.74839e-06
2.41482e-07
1.68664e-06
2.45069e-07
1.62721e-06
2.4814e-07
1.57e-06
2.50743e-07
1.51493e-06
2.52922e-07
1.46191e-06
2.54714e-07
1.41085e-06
2.56156e-07
1.36169e-06
2.57278e-07
1.31434e-06
2.58111e-07
1.26873e-06
2.58681e-07
1.2248e-06
2.59012e-07
1.18247e-06
2.59126e-07
1.14169e-06
2.59045e-07
1.10239e-06
2.58787e-07
1.06451e-06
2.58371e-07
1.02799e-06
2.57811e-07
9.9279e-07
2.57124e-07
9.58843e-07
2.56322e-07
9.26104e-07
2.55419e-07
8.94524e-07
2.54425e-07
8.64057e-07
2.53353e-07
8.34658e-07
2.52211e-07
8.06283e-07
2.51008e-07
7.78891e-07
2.49753e-07
7.52442e-07
2.48453e-07
7.26898e-07
2.47115e-07
7.02221e-07
2.45745e-07
6.78378e-07
2.4435e-07
6.55333e-07
2.42934e-07
6.33055e-07
2.41502e-07
6.11511e-07
2.40059e-07
5.90672e-07
2.3861e-07
5.70508e-07
2.37157e-07
5.50992e-07
2.35704e-07
5.32097e-07
2.34254e-07
5.13797e-07
2.32811e-07
4.96068e-07
2.31377e-07
4.78886e-07
2.29953e-07
4.62229e-07
2.28543e-07
4.46074e-07
2.27149e-07
4.304e-07
2.25771e-07
4.15188e-07
2.24412e-07
4.00417e-07
2.23074e-07
3.86069e-07
2.21756e-07
3.72127e-07
2.20462e-07
3.58573e-07
2.19191e-07
3.45391e-07
2.17945e-07
3.32563e-07
2.16725e-07
3.20076e-07
2.15531e-07
3.07914e-07
2.14365e-07
2.96063e-07
2.13226e-07
2.84509e-07
2.12115e-07
2.73239e-07
2.11033e-07
2.6224e-07
2.09981e-07
2.51499e-07
2.08958e-07
2.41006e-07
2.07965e-07
2.30748e-07
2.07002e-07
2.20715e-07
2.0607e-07
2.10894e-07
2.05168e-07
2.01277e-07
2.04297e-07
1.91852e-07
2.03457e-07
1.82611e-07
2.02649e-07
1.73543e-07
2.01871e-07
1.6464e-07
2.01125e-07
1.55893e-07
2.0041e-07
1.47293e-07
1.99726e-07
1.38831e-07
1.99074e-07
1.305e-07
1.98453e-07
1.22291e-07
1.97864e-07
1.14197e-07
1.97305e-07
1.06209e-07
1.96778e-07
9.83214e-08
1.96282e-07
9.05256e-08
1.95817e-07
8.28147e-08
1.95381e-07
7.51819e-08
1.94974e-07
6.76202e-08
1.9459e-07
6.01238e-08
1.9422e-07
5.26881e-08
1.93843e-07
4.53123e-08
1.93411e-07
3.80031e-08
1.92817e-07
3.07838e-08
1.91831e-07
2.37107e-08
1.89958e-07
1.69027e-08
1.86155e-07
1.05925e-08
1.78258e-07
5.19846e-09
1.61905e-07
1.3887e-09
1.28606e-07
6.26971e-08
3.07262e-06
2.51978e-07
2.94327e-06
2.64355e-07
2.8203e-06
2.74555e-07
2.70329e-06
2.82813e-07
2.59203e-06
2.89466e-07
2.48613e-06
2.94816e-07
2.38538e-06
2.99138e-07
2.28949e-06
3.02669e-07
2.1982e-06
3.05609e-07
2.11123e-06
3.0807e-07
2.02829e-06
3.10112e-07
1.94913e-06
3.11744e-07
1.8735e-06
3.12966e-07
1.80119e-06
3.13787e-07
1.73203e-06
3.1423e-07
1.66585e-06
3.14323e-07
1.60249e-06
3.14099e-07
1.54182e-06
3.13591e-07
1.48371e-06
3.1283e-07
1.42802e-06
3.11842e-07
1.37464e-06
3.10652e-07
1.32347e-06
3.09283e-07
1.2744e-06
3.07755e-07
1.22733e-06
3.06086e-07
1.18216e-06
3.04293e-07
1.13881e-06
3.02394e-07
1.0972e-06
3.00401e-07
1.05724e-06
2.98329e-07
1.01886e-06
2.9619e-07
9.81989e-07
2.93994e-07
9.46558e-07
2.91753e-07
9.12502e-07
2.89475e-07
8.7976e-07
2.87168e-07
8.48271e-07
2.84842e-07
8.17979e-07
2.82502e-07
7.88832e-07
2.80156e-07
7.60777e-07
2.77808e-07
7.33766e-07
2.75464e-07
7.07752e-07
2.73129e-07
6.82692e-07
2.70806e-07
6.58542e-07
2.685e-07
6.35262e-07
2.66214e-07
6.12813e-07
2.63951e-07
5.91159e-07
2.61714e-07
5.70263e-07
2.59505e-07
5.50093e-07
2.57326e-07
5.30617e-07
2.5518e-07
5.11803e-07
2.53068e-07
4.93623e-07
2.50992e-07
4.76047e-07
2.48952e-07
4.59051e-07
2.4695e-07
4.42607e-07
2.44987e-07
4.26691e-07
2.43064e-07
4.1128e-07
2.41182e-07
3.96352e-07
2.39341e-07
3.81884e-07
2.37541e-07
3.67857e-07
2.35784e-07
3.54251e-07
2.34068e-07
3.41046e-07
2.32396e-07
3.28226e-07
2.30766e-07
3.15771e-07
2.29179e-07
3.03667e-07
2.27636e-07
2.91897e-07
2.26135e-07
2.80445e-07
2.24677e-07
2.69297e-07
2.23263e-07
2.58439e-07
2.21891e-07
2.47858e-07
2.20562e-07
2.37539e-07
2.19276e-07
2.27472e-07
2.18032e-07
2.17643e-07
2.16831e-07
2.08041e-07
2.15672e-07
1.98655e-07
2.14554e-07
1.89474e-07
2.13479e-07
1.80487e-07
2.12444e-07
1.71684e-07
2.11451e-07
1.63056e-07
2.10499e-07
1.54593e-07
2.09588e-07
1.46287e-07
2.08717e-07
1.38127e-07
2.07886e-07
1.30106e-07
2.07095e-07
1.22215e-07
2.06344e-07
1.14446e-07
2.05633e-07
1.06791e-07
2.0496e-07
9.92423e-08
2.04327e-07
9.17925e-08
2.03732e-07
8.44342e-08
2.03175e-07
7.71602e-08
2.02655e-07
6.99635e-08
2.0217e-07
6.28375e-08
2.01716e-07
5.57763e-08
2.01281e-07
4.87758e-08
2.00844e-07
4.18358e-08
2.00351e-07
3.49644e-08
1.99688e-07
2.81869e-08
1.98608e-07
2.15626e-08
1.96583e-07
1.52147e-08
1.92503e-07
9.37919e-09
1.84093e-07
4.46854e-09
1.66816e-07
1.1102e-09
1.31964e-07
6.38074e-08
3.23073e-06
4.11012e-07
3.08106e-06
4.14019e-07
2.93994e-06
4.15673e-07
2.80676e-06
4.15993e-07
2.68097e-06
4.1526e-07
2.56203e-06
4.13753e-07
2.4495e-06
4.1167e-07
2.34297e-06
4.09198e-07
2.24208e-06
4.06501e-07
2.14645e-06
4.03699e-07
2.05572e-06
4.00842e-07
1.96954e-06
3.97923e-07
1.8876e-06
3.94912e-07
1.8096e-06
3.91781e-07
1.73532e-06
3.88517e-07
1.66452e-06
3.85121e-07
1.59701e-06
3.81605e-07
1.53262e-06
3.77987e-07
1.47116e-06
3.74283e-07
1.4125e-06
3.70509e-07
1.35647e-06
3.66679e-07
1.30295e-06
3.62807e-07
1.2518e-06
3.58905e-07
1.2029e-06
3.54984e-07
1.15614e-06
3.51054e-07
1.11141e-06
3.47124e-07
1.06861e-06
3.43202e-07
1.02764e-06
3.39298e-07
9.88413e-07
3.35416e-07
9.50843e-07
3.31564e-07
9.14847e-07
3.27748e-07
8.8035e-07
3.23972e-07
8.47277e-07
3.20241e-07
8.15561e-07
3.16559e-07
7.85135e-07
3.12929e-07
7.55936e-07
3.09354e-07
7.27907e-07
3.05837e-07
7.0099e-07
3.0238e-07
6.75134e-07
2.98985e-07
6.50286e-07
2.95654e-07
6.264e-07
2.92387e-07
6.03429e-07
2.89185e-07
5.8133e-07
2.8605e-07
5.60062e-07
2.82982e-07
5.39586e-07
2.79981e-07
5.19864e-07
2.77049e-07
5.0086e-07
2.74184e-07
4.82542e-07
2.71386e-07
4.64877e-07
2.68657e-07
4.47834e-07
2.65995e-07
4.31385e-07
2.634e-07
4.15501e-07
2.60871e-07
4.00157e-07
2.58409e-07
3.85326e-07
2.56013e-07
3.70986e-07
2.53681e-07
3.57112e-07
2.51415e-07
3.43684e-07
2.49212e-07
3.30681e-07
2.47072e-07
3.18082e-07
2.44995e-07
3.05869e-07
2.42979e-07
2.94023e-07
2.41025e-07
2.82528e-07
2.39131e-07
2.71366e-07
2.37297e-07
2.60522e-07
2.35521e-07
2.49981e-07
2.33804e-07
2.39728e-07
2.32144e-07
2.29749e-07
2.30541e-07
2.2003e-07
2.28994e-07
2.1056e-07
2.27503e-07
2.01325e-07
2.26066e-07
1.92314e-07
2.24683e-07
1.83516e-07
2.23353e-07
1.74918e-07
2.22076e-07
1.66512e-07
2.2085e-07
1.58286e-07
2.19677e-07
1.50232e-07
2.18554e-07
1.42339e-07
2.17481e-07
1.34598e-07
2.16457e-07
1.27001e-07
2.15483e-07
1.19539e-07
2.14558e-07
1.12204e-07
2.1368e-07
1.04987e-07
2.1285e-07
9.78803e-08
2.12067e-07
9.0877e-08
2.1133e-07
8.39694e-08
2.10639e-07
7.71503e-08
2.09994e-07
7.04127e-08
2.09393e-07
6.37497e-08
2.08833e-07
5.71551e-08
2.08311e-07
5.06235e-08
2.07813e-07
4.41514e-08
2.07316e-07
3.77394e-08
2.06763e-07
3.13973e-08
2.0603e-07
2.51523e-08
2.04853e-07
1.9067e-08
2.02668e-07
1.32684e-08
1.98301e-07
7.99422e-09
1.89368e-07
3.64671e-09
1.71163e-07
8.02999e-10
1.34808e-07
6.46105e-08
3.23521e-06
5.73387e-07
3.08166e-06
5.67573e-07
2.93627e-06
5.61061e-07
2.7986e-06
5.53667e-07
2.66826e-06
5.456e-07
2.54487e-06
5.37141e-07
2.42804e-06
5.28497e-07
2.31741e-06
5.19826e-07
2.21265e-06
5.11264e-07
2.11342e-06
5.02924e-07
2.0194e-06
4.94862e-07
1.93025e-06
4.87073e-07
1.84565e-06
4.79513e-07
1.76531e-06
4.72127e-07
1.68895e-06
4.64871e-07
1.61636e-06
4.57718e-07
1.5473e-06
4.50659e-07
1.48159e-06
4.43694e-07
1.41905e-06
4.36826e-07
1.3595e-06
4.30059e-07
1.30278e-06
4.23398e-07
1.24874e-06
4.16847e-07
1.19724e-06
4.10408e-07
1.14814e-06
4.04084e-07
1.10131e-06
3.97879e-07
1.05664e-06
3.91793e-07
1.01402e-06
3.8583e-07
9.73325e-07
3.79989e-07
9.34468e-07
3.74273e-07
8.9735e-07
3.68682e-07
8.61881e-07
3.63217e-07
8.27977e-07
3.57877e-07
7.95556e-07
3.52662e-07
7.64542e-07
3.47573e-07
7.34863e-07
3.42607e-07
7.06452e-07
3.37765e-07
6.79244e-07
3.33046e-07
6.53177e-07
3.28447e-07
6.28195e-07
3.23968e-07
6.04243e-07
3.19606e-07
5.81268e-07
3.15362e-07
5.59222e-07
3.11231e-07
5.38058e-07
3.07214e-07
5.17733e-07
3.03307e-07
4.98204e-07
2.9951e-07
4.79433e-07
2.9582e-07
4.61382e-07
2.92235e-07
4.44015e-07
2.88753e-07
4.273e-07
2.85373e-07
4.11203e-07
2.82092e-07
3.95694e-07
2.78908e-07
3.80746e-07
2.7582e-07
3.66329e-07
2.72825e-07
3.5242e-07
2.69922e-07
3.38992e-07
2.67109e-07
3.26022e-07
2.64384e-07
3.13489e-07
2.61745e-07
3.01371e-07
2.5919e-07
2.89647e-07
2.56718e-07
2.78299e-07
2.54327e-07
2.67309e-07
2.52016e-07
2.56658e-07
2.49782e-07
2.4633e-07
2.47625e-07
2.36309e-07
2.45542e-07
2.26581e-07
2.43533e-07
2.1713e-07
2.41595e-07
2.07944e-07
2.39728e-07
1.99007e-07
2.37931e-07
1.90309e-07
2.36201e-07
1.81836e-07
2.34539e-07
1.73578e-07
2.32941e-07
1.65522e-07
2.31409e-07
1.57659e-07
2.29939e-07
1.49977e-07
2.28532e-07
1.42468e-07
2.27186e-07
1.35121e-07
2.259e-07
1.27927e-07
2.24674e-07
1.20878e-07
2.23506e-07
1.13965e-07
2.22396e-07
1.0718e-07
2.21343e-07
1.00514e-07
2.20346e-07
9.39596e-08
2.19404e-07
8.75099e-08
2.18516e-07
8.11572e-08
2.17683e-07
7.48945e-08
2.16902e-07
6.87148e-08
2.16174e-07
6.26116e-08
2.15496e-07
5.65783e-08
2.14867e-07
5.06092e-08
2.1428e-07
4.46996e-08
2.13723e-07
3.88467e-08
2.13169e-07
3.30524e-08
2.12557e-07
2.73281e-08
2.11755e-07
2.17037e-08
2.10478e-07
1.62446e-08
2.08127e-07
1.10813e-08
2.03465e-07
6.45142e-09
1.93998e-07
2.74248e-09
1.74872e-07
4.71425e-10
1.37079e-07
6.50819e-08
3.08474e-06
7.21535e-07
2.94248e-06
7.09833e-07
2.80593e-06
6.97612e-07
2.67507e-06
6.8453e-07
2.54995e-06
6.7072e-07
2.43057e-06
6.56517e-07
2.31685e-06
6.42219e-07
2.20864e-06
6.28039e-07
2.10577e-06
6.14133e-07
2.00806e-06
6.00627e-07
1.91532e-06
5.87602e-07
1.82732e-06
5.75079e-07
1.7438e-06
5.63028e-07
1.66454e-06
5.51392e-07
1.58929e-06
5.40116e-07
1.51785e-06
5.29159e-07
1.45001e-06
5.18498e-07
1.38558e-06
5.08123e-07
1.32438e-06
4.98026e-07
1.26624e-06
4.88204e-07
1.21098e-06
4.78653e-07
1.15846e-06
4.69368e-07
1.10853e-06
4.60344e-07
1.06103e-06
4.51577e-07
1.01585e-06
4.4306e-07
9.72855e-07
4.3479e-07
9.31924e-07
4.2676e-07
8.92946e-07
4.18966e-07
8.55817e-07
4.11403e-07
8.20434e-07
4.04064e-07
7.86705e-07
3.96946e-07
7.54539e-07
3.90043e-07
7.23852e-07
3.83349e-07
6.94565e-07
3.7686e-07
6.66603e-07
3.7057e-07
6.39895e-07
3.64474e-07
6.14373e-07
3.58567e-07
5.89976e-07
3.52844e-07
5.66644e-07
3.473e-07
5.4432e-07
3.41931e-07
5.22952e-07
3.3673e-07
5.02488e-07
3.31695e-07
4.82883e-07
3.26819e-07
4.64091e-07
3.22099e-07
4.46071e-07
3.17531e-07
4.28781e-07
3.13109e-07
4.12186e-07
3.08831e-07
3.96248e-07
3.04691e-07
3.80934e-07
3.00687e-07
3.66213e-07
2.96813e-07
3.52053e-07
2.93068e-07
3.38428e-07
2.89446e-07
3.25308e-07
2.85945e-07
3.12669e-07
2.82561e-07
3.00487e-07
2.79292e-07
2.88738e-07
2.76133e-07
2.77401e-07
2.73082e-07
2.66455e-07
2.70137e-07
2.5588e-07
2.67293e-07
2.45657e-07
2.6455e-07
2.35769e-07
2.61904e-07
2.26199e-07
2.59352e-07
2.16931e-07
2.56893e-07
2.0795e-07
2.54523e-07
1.9924e-07
2.52242e-07
1.90789e-07
2.50046e-07
1.82583e-07
2.47935e-07
1.74609e-07
2.45905e-07
1.66855e-07
2.43955e-07
1.5931e-07
2.42084e-07
1.51962e-07
2.40289e-07
1.44802e-07
2.38569e-07
1.37818e-07
2.36922e-07
1.31003e-07
2.35348e-07
1.24345e-07
2.33844e-07
1.17836e-07
2.32409e-07
1.11468e-07
2.31043e-07
1.05232e-07
2.29743e-07
9.91204e-08
2.28508e-07
9.31252e-08
2.27338e-07
8.72389e-08
2.26232e-07
8.14545e-08
2.25188e-07
7.5765e-08
2.24206e-07
7.01636e-08
2.23284e-07
6.46439e-08
2.22422e-07
5.91994e-08
2.21619e-07
5.38241e-08
2.20872e-07
4.85121e-08
2.20179e-07
4.32584e-08
2.19534e-07
3.80588e-08
2.18923e-07
3.29118e-08
2.18316e-07
2.78206e-08
2.17648e-07
2.27983e-08
2.16777e-07
1.78772e-08
2.15399e-07
1.31262e-08
2.12878e-07
8.67846e-09
2.07912e-07
4.76975e-09
1.97906e-07
1.76829e-09
1.77874e-07
1.21151e-10
1.38727e-07
6.52031e-08
2.83039e-06
8.55003e-07
2.70112e-06
8.39109e-07
2.57607e-06
8.22658e-07
2.45539e-06
8.05214e-07
2.33927e-06
7.86837e-07
2.22791e-06
7.67876e-07
2.1214e-06
7.48725e-07
2.01975e-06
7.29697e-07
1.92287e-06
7.11008e-07
1.83069e-06
6.92811e-07
1.74307e-06
6.75215e-07
1.65989e-06
6.58268e-07
1.58095e-06
6.41966e-07
1.50607e-06
6.26265e-07
1.43507e-06
6.11115e-07
1.36776e-06
5.96472e-07
1.30395e-06
5.82309e-07
1.24346e-06
5.6861e-07
1.18613e-06
5.55363e-07
1.13177e-06
5.4256e-07
1.08023e-06
5.3019e-07
1.03136e-06
5.18242e-07
9.85001e-07
5.06703e-07
9.41017e-07
4.95561e-07
8.99273e-07
4.84804e-07
8.59644e-07
4.74419e-07
8.22011e-07
4.64394e-07
7.86259e-07
4.54718e-07
7.52284e-07
4.45378e-07
7.19984e-07
4.36364e-07
6.89264e-07
4.27665e-07
6.60037e-07
4.1927e-07
6.32216e-07
4.11169e-07
6.05725e-07
4.03351e-07
5.80487e-07
3.95807e-07
5.56433e-07
3.88528e-07
5.33497e-07
3.81503e-07
5.11618e-07
3.74724e-07
4.90736e-07
3.68183e-07
4.70797e-07
3.6187e-07
4.51748e-07
3.55779e-07
4.33542e-07
3.49901e-07
4.16132e-07
3.44229e-07
3.99475e-07
3.38756e-07
3.8353e-07
3.33475e-07
3.6826e-07
3.2838e-07
3.53627e-07
3.23463e-07
3.39599e-07
3.1872e-07
3.26141e-07
3.14144e-07
3.13225e-07
3.09729e-07
3.00822e-07
3.05471e-07
2.88904e-07
3.01364e-07
2.77446e-07
2.97403e-07
2.66424e-07
2.93583e-07
2.55815e-07
2.899e-07
2.45598e-07
2.8635e-07
2.35752e-07
2.82928e-07
2.26258e-07
2.79631e-07
2.17097e-07
2.76454e-07
2.08253e-07
2.73394e-07
1.99709e-07
2.70448e-07
1.91448e-07
2.67612e-07
1.83458e-07
2.64883e-07
1.75723e-07
2.62258e-07
1.6823e-07
2.59735e-07
1.60967e-07
2.5731e-07
1.53921e-07
2.54981e-07
1.47081e-07
2.52745e-07
1.40436e-07
2.506e-07
1.33975e-07
2.48544e-07
1.27689e-07
2.46575e-07
1.21568e-07
2.4469e-07
1.15603e-07
2.42887e-07
1.09785e-07
2.41166e-07
1.04106e-07
2.39523e-07
9.85578e-08
2.37957e-07
9.31326e-08
2.36468e-07
8.78232e-08
2.35052e-07
8.26223e-08
2.33709e-07
7.75231e-08
2.32437e-07
7.25189e-08
2.31236e-07
6.76034e-08
2.30104e-07
6.27705e-08
2.29039e-07
5.8014e-08
2.28041e-07
5.33282e-08
2.27108e-07
4.87075e-08
2.26239e-07
4.41465e-08
2.25433e-07
3.96402e-08
2.24685e-07
3.51843e-08
2.2399e-07
3.07759e-08
2.23331e-07
2.64145e-08
2.22677e-07
2.21047e-08
2.21958e-07
1.78615e-08
2.2102e-07
1.37198e-08
2.19541e-07
9.75152e-09
2.16847e-07
6.0919e-09
2.11572e-07
2.97302e-09
2.01025e-07
7.39094e-10
1.80108e-07
-2.42349e-10
1.39708e-07
6.49608e-08
2.51083e-06
9.79983e-07
2.3901e-06
9.59842e-07
2.27369e-06
9.39063e-07
2.16168e-06
9.17231e-07
2.05416e-06
8.94355e-07
1.95128e-06
8.70751e-07
1.85314e-06
8.46871e-07
1.75971e-06
8.23121e-07
1.67093e-06
7.99788e-07
1.58668e-06
7.77064e-07
1.50682e-06
7.55075e-07
1.4312e-06
7.3389e-07
1.35965e-06
7.13521e-07
1.29197e-06
6.93939e-07
1.22799e-06
6.75095e-07
1.16752e-06
6.56946e-07
1.11037e-06
6.3946e-07
1.05636e-06
6.22617e-07
1.00532e-06
6.06401e-07
9.57085e-07
5.90797e-07
9.11489e-07
5.75787e-07
8.68378e-07
5.61353e-07
8.27607e-07
5.47475e-07
7.89035e-07
5.34132e-07
7.52534e-07
5.21305e-07
7.17978e-07
5.08974e-07
6.85252e-07
4.9712e-07
6.54247e-07
4.85723e-07
6.24859e-07
4.74766e-07
5.96993e-07
4.64231e-07
5.70557e-07
4.54101e-07
5.45467e-07
4.44361e-07
5.21642e-07
4.34994e-07
4.99008e-07
4.25986e-07
4.77494e-07
4.17321e-07
4.57036e-07
4.08986e-07
4.37572e-07
4.00968e-07
4.19043e-07
3.93253e-07
4.01396e-07
3.8583e-07
3.84579e-07
3.78687e-07
3.68545e-07
3.71812e-07
3.5325e-07
3.65196e-07
3.38651e-07
3.58828e-07
3.2471e-07
3.52698e-07
3.11388e-07
3.46797e-07
2.98652e-07
3.41116e-07
2.86468e-07
3.35647e-07
2.74807e-07
3.30382e-07
2.63638e-07
3.25313e-07
2.52935e-07
3.20432e-07
2.42673e-07
3.15734e-07
2.32827e-07
3.1121e-07
2.23374e-07
3.06855e-07
2.14294e-07
3.02663e-07
2.05566e-07
2.98628e-07
1.97171e-07
2.94745e-07
1.89091e-07
2.91008e-07
1.8131e-07
2.87412e-07
1.73811e-07
2.83953e-07
1.66579e-07
2.80626e-07
1.596e-07
2.77427e-07
1.5286e-07
2.74351e-07
1.46347e-07
2.71396e-07
1.40049e-07
2.68557e-07
1.33953e-07
2.6583e-07
1.2805e-07
2.63213e-07
1.22328e-07
2.60702e-07
1.16779e-07
2.58295e-07
1.11391e-07
2.55987e-07
1.06157e-07
2.53778e-07
1.01069e-07
2.51663e-07
9.61167e-08
2.49641e-07
9.12942e-08
2.4771e-07
8.65935e-08
2.45866e-07
8.20076e-08
2.44109e-07
7.75297e-08
2.42435e-07
7.31531e-08
2.40844e-07
6.88717e-08
2.39333e-07
6.46795e-08
2.37901e-07
6.05708e-08
2.36546e-07
5.65399e-08
2.35267e-07
5.25816e-08
2.34062e-07
4.86906e-08
2.3293e-07
4.4862e-08
2.31869e-07
4.10908e-08
2.30879e-07
3.73723e-08
2.29958e-07
3.37022e-08
2.29103e-07
3.00763e-08
2.28311e-07
2.64915e-08
2.27574e-07
2.29457e-08
2.26876e-07
1.94398e-08
2.26183e-07
1.59799e-08
2.25418e-07
1.25832e-08
2.24417e-07
9.28696e-09
2.22837e-07
6.16593e-09
2.19968e-07
3.35671e-09
2.14382e-07
1.08517e-09
2.03297e-07
-3.33826e-10
1.81527e-07
-6.16058e-10
1.3999e-07
6.43447e-08
2.13743e-06
1.10614e-06
2.01835e-06
1.07892e-06
1.90594e-06
1.05147e-06
1.79978e-06
1.02339e-06
1.69953e-06
9.94604e-07
1.60496e-06
9.65323e-07
1.51587e-06
9.35963e-07
1.43204e-06
9.06955e-07
1.35321e-06
8.78618e-07
1.27911e-06
8.51157e-07
1.20949e-06
8.24694e-07
1.14409e-06
7.99291e-07
1.08266e-06
7.74953e-07
1.02496e-06
7.51643e-07
9.70746e-07
7.29305e-07
9.19808e-07
7.07884e-07
8.71934e-07
6.87334e-07
8.26928e-07
6.67623e-07
7.84606e-07
6.48723e-07
7.44795e-07
6.30608e-07
7.07331e-07
6.13251e-07
6.72062e-07
5.96622e-07
6.38844e-07
5.80692e-07
6.07544e-07
5.65432e-07
5.78037e-07
5.50813e-07
5.50205e-07
5.36805e-07
5.23941e-07
5.23383e-07
4.99143e-07
5.10521e-07
4.75717e-07
4.98192e-07
4.53574e-07
4.86374e-07
4.32632e-07
4.75043e-07
4.12815e-07
4.64178e-07
3.94052e-07
4.53757e-07
3.76276e-07
4.43761e-07
3.59425e-07
4.34171e-07
3.43443e-07
4.24968e-07
3.28275e-07
4.16136e-07
3.13872e-07
4.07657e-07
3.00186e-07
3.99516e-07
2.87174e-07
3.91699e-07
2.74795e-07
3.84191e-07
2.63011e-07
3.7698e-07
2.51787e-07
3.70052e-07
2.4109e-07
3.63395e-07
2.30888e-07
3.56999e-07
2.21153e-07
3.50851e-07
2.11857e-07
3.44943e-07
2.02975e-07
3.39264e-07
1.94483e-07
3.33805e-07
1.86359e-07
3.28557e-07
1.78581e-07
3.23511e-07
1.7113e-07
3.18661e-07
1.63988e-07
3.13998e-07
1.57136e-07
3.09515e-07
1.5056e-07
3.05205e-07
1.44243e-07
3.01062e-07
1.38171e-07
2.9708e-07
1.32331e-07
2.93253e-07
1.26709e-07
2.89575e-07
1.21293e-07
2.86041e-07
1.16073e-07
2.82647e-07
1.11037e-07
2.79388e-07
1.06175e-07
2.76258e-07
1.01478e-07
2.73254e-07
9.69358e-08
2.70372e-07
9.25407e-08
2.67608e-07
8.82843e-08
2.64959e-07
8.41587e-08
2.6242e-07
8.01567e-08
2.59989e-07
7.62713e-08
2.57663e-07
7.24958e-08
2.55438e-07
6.8824e-08
2.53313e-07
6.52498e-08
2.51284e-07
6.17675e-08
2.49348e-07
5.83715e-08
2.47505e-07
5.50566e-08
2.4575e-07
5.18178e-08
2.44083e-07
4.86502e-08
2.42501e-07
4.55492e-08
2.41002e-07
4.25104e-08
2.39585e-07
3.95295e-08
2.38248e-07
3.66024e-08
2.36989e-07
3.37251e-08
2.35807e-07
3.08936e-08
2.34701e-07
2.81044e-08
2.33669e-07
2.53537e-08
2.32709e-07
2.26383e-08
2.31818e-07
1.99554e-08
2.30994e-07
1.73027e-08
2.30227e-07
1.46796e-08
2.295e-07
1.20881e-08
2.28775e-07
9.53599e-09
2.2797e-07
7.04235e-09
2.26911e-07
4.64715e-09
2.25233e-07
2.42762e-09
2.22188e-07
5.20834e-10
2.16289e-07
-8.55678e-10
2.04674e-07
-1.42031e-09
1.82092e-07
-9.84582e-10
1.39555e-07
6.33603e-08
1.66222e-06
1.22785e-06
1.54991e-06
1.19123e-06
1.44625e-06
1.15513e-06
1.35046e-06
1.11919e-06
1.26184e-06
1.08322e-06
1.17983e-06
1.04733e-06
1.10394e-06
1.01185e-06
1.03373e-06
9.77172e-07
9.68742e-07
9.43602e-07
9.08569e-07
9.1133e-07
8.52813e-07
8.8045e-07
8.01114e-07
8.50989e-07
7.53143e-07
8.22924e-07
7.08593e-07
7.96193e-07
6.67185e-07
7.70713e-07
6.28664e-07
7.46406e-07
5.92795e-07
7.23202e-07
5.5937e-07
7.01049e-07
5.28195e-07
6.79898e-07
4.99096e-07
6.59707e-07
4.71913e-07
6.40434e-07
4.465e-07
6.22035e-07
4.22724e-07
6.04469e-07
4.00461e-07
5.87695e-07
3.79598e-07
5.71674e-07
3.60034e-07
5.5637e-07
3.41672e-07
5.41745e-07
3.24425e-07
5.27768e-07
3.08213e-07
5.14404e-07
2.92962e-07
5.01625e-07
2.78604e-07
4.89401e-07
2.65077e-07
4.77705e-07
2.52322e-07
4.66511e-07
2.40288e-07
4.55796e-07
2.28925e-07
4.45534e-07
2.18187e-07
4.35706e-07
2.08033e-07
4.2629e-07
1.98424e-07
4.17266e-07
1.89324e-07
4.08617e-07
1.80699e-07
4.00324e-07
1.72519e-07
3.92371e-07
1.64756e-07
3.84743e-07
1.57382e-07
3.77426e-07
1.50374e-07
3.70404e-07
1.43708e-07
3.63665e-07
1.37363e-07
3.57196e-07
1.3132e-07
3.50987e-07
1.25559e-07
3.45025e-07
1.20064e-07
3.393e-07
1.14818e-07
3.33802e-07
1.09807e-07
3.28522e-07
1.05016e-07
3.23451e-07
1.00432e-07
3.18581e-07
9.60442e-08
3.13903e-07
9.18395e-08
3.09409e-07
8.78078e-08
3.05094e-07
8.39387e-08
3.00949e-07
8.02228e-08
2.96968e-07
7.66511e-08
2.93146e-07
7.32154e-08
2.89477e-07
6.99078e-08
2.85955e-07
6.6721e-08
2.82574e-07
6.36479e-08
2.79331e-07
6.06821e-08
2.7622e-07
5.78172e-08
2.73237e-07
5.50475e-08
2.70378e-07
5.23674e-08
2.67639e-07
4.97716e-08
2.65016e-07
4.72552e-08
2.62505e-07
4.48135e-08
2.60104e-07
4.24421e-08
2.5781e-07
4.01368e-08
2.55618e-07
3.78934e-08
2.53527e-07
3.57082e-08
2.51533e-07
3.35774e-08
2.49635e-07
3.14977e-08
2.4783e-07
2.94656e-08
2.46115e-07
2.7478e-08
2.44488e-07
2.55319e-08
2.42948e-07
2.36243e-08
2.41492e-07
2.17525e-08
2.4012e-07
1.99137e-08
2.38828e-07
1.81053e-08
2.37616e-07
1.63246e-08
2.36482e-07
1.45692e-08
2.35424e-07
1.28368e-08
2.34441e-07
1.11254e-08
2.3353e-07
9.43318e-09
2.32686e-07
7.75936e-09
2.319e-07
6.10445e-09
2.31154e-07
4.47197e-09
2.30407e-07
2.8714e-09
2.2957e-07
1.32381e-09
2.28459e-07
-1.28377e-10
2.26685e-07
-1.40582e-09
2.23465e-07
-2.3722e-09
2.17255e-07
-2.82079e-09
2.05122e-07
-2.50808e-09
1.81779e-07
-1.34602e-09
1.38393e-07
6.20142e-08
1.04436e-06
1.3311e-06
9.51621e-07
1.28397e-06
8.68314e-07
1.23844e-06
7.9339e-07
1.19411e-06
7.25922e-07
1.15069e-06
6.65108e-07
1.10815e-06
6.10251e-07
1.06671e-06
5.60732e-07
1.02669e-06
5.15987e-07
9.88347e-07
4.75502e-07
9.51814e-07
4.3882e-07
9.17131e-07
4.05539e-07
8.84271e-07
3.75299e-07
8.53164e-07
3.47778e-07
8.23715e-07
3.22698e-07
7.95794e-07
2.99808e-07
7.69296e-07
2.78884e-07
7.44126e-07
2.59728e-07
7.20204e-07
2.42164e-07
6.97462e-07
2.26027e-07
6.75845e-07
2.11189e-07
6.55272e-07
1.97527e-07
6.35696e-07
1.84932e-07
6.17064e-07
1.73304e-07
5.99322e-07
1.62556e-07
5.82422e-07
1.5261e-07
5.66316e-07
1.43394e-07
5.50962e-07
1.3484e-07
5.36321e-07
1.26895e-07
5.2235e-07
1.19506e-07
5.09014e-07
1.12626e-07
4.9628e-07
1.06215e-07
4.84117e-07
1.00232e-07
4.72494e-07
9.46441e-08
4.61384e-07
8.94191e-08
4.5076e-07
8.45283e-08
4.40597e-07
7.99456e-08
4.30873e-07
7.56471e-08
4.21565e-07
7.16114e-08
4.12652e-07
6.78188e-08
4.04116e-07
6.42516e-08
3.95938e-07
6.08886e-08
3.88106e-07
5.77193e-08
3.80595e-07
5.47296e-08
3.73393e-07
5.19062e-08
3.66488e-07
4.92374e-08
3.59865e-07
4.67123e-08
3.53512e-07
4.43209e-08
3.47416e-07
4.20539e-08
3.41567e-07
3.99029e-08
3.35953e-07
3.786e-08
3.30565e-07
3.5918e-08
3.25393e-07
3.40701e-08
3.20429e-07
3.231e-08
3.15663e-07
3.06319e-08
3.11088e-07
2.90302e-08
3.06695e-07
2.75001e-08
3.02479e-07
2.60368e-08
2.98432e-07
2.46356e-08
2.94548e-07
2.32927e-08
2.9082e-07
2.20043e-08
2.87243e-07
2.07669e-08
2.83812e-07
1.95772e-08
2.80521e-07
1.84321e-08
2.77365e-07
1.73285e-08
2.7434e-07
1.62638e-08
2.71442e-07
1.52353e-08
2.68667e-07
1.42407e-08
2.6601e-07
1.32776e-08
2.63468e-07
1.23441e-08
2.61038e-07
1.1438e-08
2.58716e-07
1.05569e-08
2.56499e-07
9.69954e-09
2.54384e-07
8.86414e-09
2.52369e-07
8.04904e-09
2.5045e-07
7.25269e-09
2.48626e-07
6.47366e-09
2.46894e-07
5.71062e-09
2.45251e-07
4.96165e-09
2.43697e-07
4.22602e-09
2.42228e-07
3.50242e-09
2.40843e-07
2.78961e-09
2.39541e-07
2.08638e-09
2.38319e-07
1.39164e-09
2.37177e-07
7.04377e-10
2.36111e-07
2.34529e-11
2.35122e-07
-6.51642e-10
2.34205e-07
-1.32137e-09
2.33355e-07
-1.98534e-09
2.32564e-07
-2.64172e-09
2.31811e-07
-3.28558e-09
2.31051e-07
-3.90575e-09
2.30191e-07
-4.47914e-09
2.29032e-07
-4.961e-09
2.27167e-07
-5.27029e-09
2.23775e-07
-5.27249e-09
2.17257e-07
-4.77426e-09
2.04624e-07
-3.57514e-09
1.8058e-07
-1.6921e-09
1.3651e-07
6.03222e-08
2.76064e-07
1.39871e-06
2.18548e-07
1.34149e-06
1.69827e-07
1.28716e-06
1.28652e-07
1.23528e-06
9.39431e-08
1.1854e-06
6.47489e-08
1.13734e-06
4.02407e-08
1.09122e-06
1.97183e-08
1.04721e-06
2.58012e-09
1.00549e-06
-1.17113e-08
9.66106e-07
-2.35675e-08
9.28988e-07
-3.33537e-08
8.94057e-07
-4.13754e-08
8.61186e-07
-4.78791e-08
8.30218e-07
-5.30995e-08
8.01014e-07
-5.72305e-08
7.73426e-07
-6.04385e-08
7.47334e-07
-6.28657e-08
7.22631e-07
-6.46323e-08
6.99228e-07
-6.58235e-08
6.77036e-07
-6.65478e-08
6.55996e-07
-6.68796e-08
6.36028e-07
-6.68824e-08
6.17066e-07
-6.66104e-08
5.9905e-07
-6.61102e-08
5.81922e-07
-6.54219e-08
5.65628e-07
-6.45789e-08
5.50119e-07
-6.36032e-08
5.35345e-07
-6.25277e-08
5.21274e-07
-6.13734e-08
5.07859e-07
-6.0158e-08
4.95064e-07
-5.88967e-08
4.82855e-07
-5.76024e-08
4.71199e-07
-5.6286e-08
4.60067e-07
-5.49569e-08
4.4943e-07
-5.3623e-08
4.39263e-07
-5.22908e-08
4.2954e-07
-5.09659e-08
4.20239e-07
-4.9653e-08
4.11339e-07
-4.83558e-08
4.02819e-07
-4.7077e-08
3.94659e-07
-4.58103e-08
3.8684e-07
-4.45668e-08
3.79352e-07
-4.33488e-08
3.72176e-07
-4.21563e-08
3.65296e-07
-4.09899e-08
3.58699e-07
-3.98502e-08
3.52372e-07
-3.87374e-08
3.46303e-07
-3.76517e-08
3.40481e-07
-3.65928e-08
3.34894e-07
-3.55609e-08
3.29533e-07
-3.45556e-08
3.24388e-07
-3.35767e-08
3.1945e-07
-3.26239e-08
3.1471e-07
-3.16968e-08
3.1016e-07
-3.07951e-08
3.05793e-07
-2.99184e-08
3.01602e-07
-2.9066e-08
2.97579e-07
-2.82368e-08
2.93718e-07
-2.74305e-08
2.90013e-07
-2.6647e-08
2.86459e-07
-2.58857e-08
2.8305e-07
-2.51461e-08
2.79781e-07
-2.44274e-08
2.76646e-07
-2.37293e-08
2.73642e-07
-2.30511e-08
2.70764e-07
-2.23923e-08
2.68008e-07
-2.17524e-08
2.6537e-07
-2.11307e-08
2.62847e-07
-2.05269e-08
2.60434e-07
-1.99403e-08
2.58129e-07
-1.93696e-08
2.55928e-07
-1.88152e-08
2.5383e-07
-1.82766e-08
2.5183e-07
-1.77534e-08
2.49927e-07
-1.72449e-08
2.48117e-07
-1.67508e-08
2.46399e-07
-1.62705e-08
2.44771e-07
-1.58027e-08
2.43229e-07
-1.53479e-08
2.41773e-07
-1.49057e-08
2.40401e-07
-1.44757e-08
2.39111e-07
-1.40575e-08
2.37901e-07
-1.36508e-08
2.3677e-07
-1.32551e-08
2.35715e-07
-1.28695e-08
2.34736e-07
-1.24939e-08
2.33829e-07
-1.21271e-08
2.32988e-07
-1.17676e-08
2.32205e-07
-1.14121e-08
2.31455e-07
-1.10542e-08
2.30693e-07
-1.06811e-08
2.29818e-07
-1.02676e-08
2.28619e-07
-9.76701e-09
2.26666e-07
-9.09713e-09
2.23105e-07
-8.12677e-09
2.16287e-07
-6.67886e-09
2.03176e-07
-4.60018e-09
1.78501e-07
-2.01589e-09
1.33926e-07
5.83062e-08
-6.4553e-07
1.40372e-06
-6.4485e-07
1.34081e-06
-6.39528e-07
1.28184e-06
-6.30429e-07
1.22618e-06
-6.18349e-07
1.17332e-06
-6.04007e-07
1.123e-06
-5.88024e-07
1.07523e-06
-5.70936e-07
1.03013e-06
-5.53156e-07
9.87706e-07
-5.34961e-07
9.4791e-07
-5.16631e-07
9.10658e-07
-4.9835e-07
8.75776e-07
-4.80248e-07
8.43084e-07
-4.62428e-07
8.12398e-07
-4.44964e-07
7.83549e-07
-4.27916e-07
7.56379e-07
-4.11333e-07
7.3075e-07
-3.95249e-07
7.06547e-07
-3.79686e-07
6.83666e-07
-3.64666e-07
6.62016e-07
-3.50187e-07
6.41517e-07
-3.36252e-07
6.22092e-07
-3.22856e-07
6.0367e-07
-3.09991e-07
5.86185e-07
-2.97647e-07
5.69578e-07
-2.85811e-07
5.53791e-07
-2.74467e-07
5.38775e-07
-2.63605e-07
5.24483e-07
-2.53199e-07
5.10868e-07
-2.43236e-07
4.97896e-07
-2.337e-07
4.85527e-07
-2.24572e-07
4.73727e-07
-2.15836e-07
4.62463e-07
-2.07475e-07
4.51706e-07
-1.99472e-07
4.41428e-07
-1.91812e-07
4.31602e-07
-1.84477e-07
4.22206e-07
-1.77454e-07
4.13216e-07
-1.70728e-07
4.04612e-07
-1.64283e-07
3.96374e-07
-1.58108e-07
3.88484e-07
-1.52192e-07
3.80924e-07
-1.46519e-07
3.73679e-07
-1.41077e-07
3.66733e-07
-1.35854e-07
3.60073e-07
-1.30842e-07
3.53686e-07
-1.2603e-07
3.47559e-07
-1.21408e-07
3.4168e-07
-1.16966e-07
3.36039e-07
-1.12697e-07
3.30625e-07
-1.08591e-07
3.25427e-07
-1.04641e-07
3.20438e-07
-1.00839e-07
3.15648e-07
-9.71779e-08
3.11049e-07
-9.36512e-08
3.06634e-07
-9.02523e-08
3.02395e-07
-8.69749e-08
2.98325e-07
-8.38137e-08
2.94418e-07
-8.07631e-08
2.90668e-07
-7.78177e-08
2.87068e-07
-7.49721e-08
2.83614e-07
-7.22215e-08
2.803e-07
-6.95618e-08
2.77121e-07
-6.69887e-08
2.74073e-07
-6.4498e-08
2.71151e-07
-6.20858e-08
2.68352e-07
-5.97485e-08
2.65671e-07
-5.74824e-08
2.63104e-07
-5.52841e-08
2.60648e-07
-5.31503e-08
2.583e-07
-5.10779e-08
2.56057e-07
-4.90646e-08
2.53915e-07
-4.71069e-08
2.51872e-07
-4.52019e-08
2.49925e-07
-4.33473e-08
2.48072e-07
-4.15405e-08
2.4631e-07
-3.97791e-08
2.44638e-07
-3.80607e-08
2.43052e-07
-3.63837e-08
2.41552e-07
-3.47453e-08
2.40135e-07
-3.31435e-08
2.388e-07
-3.15765e-08
2.37544e-07
-3.00422e-08
2.36367e-07
-2.85389e-08
2.35266e-07
-2.70646e-08
2.34241e-07
-2.56178e-08
2.33289e-07
-2.41962e-08
2.32407e-07
-2.27976e-08
2.3159e-07
-2.14192e-08
2.30826e-07
-2.00563e-08
2.30092e-07
-1.87009e-08
2.29338e-07
-1.73386e-08
2.28455e-07
-1.59424e-08
2.27222e-07
-1.44635e-08
2.25187e-07
-1.28195e-08
2.21461e-07
-1.08841e-08
2.14351e-07
-8.49957e-09
2.00792e-07
-5.56356e-09
1.75565e-07
-2.31016e-09
1.30672e-07
5.5996e-08
-1.66006e-06
1.32332e-06
-1.5823e-06
1.26305e-06
-1.50725e-06
1.20679e-06
-1.43495e-06
1.15388e-06
-1.36546e-06
1.10383e-06
-1.29891e-06
1.05645e-06
-1.2354e-06
1.01173e-06
-1.17498e-06
9.69703e-07
-1.11763e-06
9.30352e-07
-1.06329e-06
8.93568e-07
-1.01183e-06
8.59199e-07
-9.63113e-07
8.27064e-07
-9.17011e-07
7.96982e-07
-8.73382e-07
7.68768e-07
-8.32085e-07
7.42253e-07
-7.92992e-07
7.17286e-07
-7.5598e-07
6.93738e-07
-7.20935e-07
6.71501e-07
-6.87748e-07
6.50479e-07
-6.56321e-07
6.30588e-07
-6.26551e-07
6.11747e-07
-5.98343e-07
5.93884e-07
-5.71609e-07
5.76935e-07
-5.46262e-07
5.60838e-07
-5.22223e-07
5.45538e-07
-4.99415e-07
5.30984e-07
-4.7777e-07
5.1713e-07
-4.5722e-07
5.03932e-07
-4.37704e-07
4.91352e-07
-4.19161e-07
4.79353e-07
-4.01535e-07
4.67901e-07
-3.84772e-07
4.56964e-07
-3.68824e-07
4.46515e-07
-3.53644e-07
4.36526e-07
-3.39188e-07
4.26972e-07
-3.25416e-07
4.1783e-07
-3.1229e-07
4.09079e-07
-2.99772e-07
4.00698e-07
-2.87827e-07
3.92668e-07
-2.76425e-07
3.84972e-07
-2.65536e-07
3.77595e-07
-2.55132e-07
3.7052e-07
-2.45186e-07
3.63733e-07
-2.35674e-07
3.57221e-07
-2.26571e-07
3.50971e-07
-2.17856e-07
3.44971e-07
-2.09507e-07
3.3921e-07
-2.01505e-07
3.33678e-07
-1.93831e-07
3.28365e-07
-1.86469e-07
3.23262e-07
-1.79401e-07
3.1836e-07
-1.72613e-07
3.1365e-07
-1.66089e-07
3.09124e-07
-1.59817e-07
3.04777e-07
-1.53782e-07
3.006e-07
-1.47974e-07
2.96586e-07
-1.42381e-07
2.92731e-07
-1.3699e-07
2.89027e-07
-1.31792e-07
2.8547e-07
-1.26777e-07
2.82053e-07
-1.21937e-07
2.78773e-07
-1.17262e-07
2.75625e-07
-1.12744e-07
2.72603e-07
-1.08376e-07
2.69704e-07
-1.04149e-07
2.66924e-07
-1.00056e-07
2.64259e-07
-9.60918e-08
2.61706e-07
-9.22486e-08
2.59261e-07
-8.85206e-08
2.5692e-07
-8.49021e-08
2.54682e-07
-8.13876e-08
2.52542e-07
-7.79711e-08
2.50498e-07
-7.46483e-08
2.48549e-07
-7.14142e-08
2.46691e-07
-6.82641e-08
2.44922e-07
-6.51935e-08
2.4324e-07
-6.21983e-08
2.41642e-07
-5.92742e-08
2.40128e-07
-5.64174e-08
2.38695e-07
-5.36243e-08
2.37342e-07
-5.08911e-08
2.36066e-07
-4.82142e-08
2.34867e-07
-4.55904e-08
2.33742e-07
-4.30163e-08
2.32692e-07
-4.04886e-08
2.31713e-07
-3.80042e-08
2.30804e-07
-3.55597e-08
2.29963e-07
-3.31518e-08
2.29182e-07
-3.07761e-08
2.28451e-07
-2.84268e-08
2.27743e-07
-2.60946e-08
2.27005e-07
-2.37633e-08
2.26124e-07
-2.14042e-08
2.24863e-07
-1.89671e-08
2.2275e-07
-1.63702e-08
2.18863e-07
-1.34939e-08
2.11475e-07
-1.02022e-08
1.975e-07
-6.44692e-09
1.7181e-07
-2.5698e-09
1.26795e-07
5.34263e-08
-2.64024e-06
1.15164e-06
-2.48139e-06
1.10419e-06
-2.33409e-06
1.05949e-06
-2.19719e-06
1.01698e-06
-2.0698e-06
9.76445e-07
-1.95125e-06
9.37893e-07
-1.84092e-06
9.014e-07
-1.73824e-06
8.67022e-07
-1.64263e-06
8.3474e-07
-1.55354e-06
8.04471e-07
-1.47043e-06
7.76097e-07
-1.39284e-06
7.49475e-07
-1.32032e-06
7.24456e-07
-1.25245e-06
7.009e-07
-1.18887e-06
6.78675e-07
-1.12926e-06
6.57669e-07
-1.0733e-06
6.37784e-07
-1.02074e-06
6.1894e-07
-9.71327e-07
6.01063e-07
-9.24828e-07
5.84089e-07
-8.81042e-07
5.6796e-07
-8.39778e-07
5.5262e-07
-8.0086e-07
5.38018e-07
-7.64129e-07
5.24107e-07
-7.29437e-07
5.10847e-07
-6.96649e-07
4.98196e-07
-6.65638e-07
4.86118e-07
-6.36287e-07
4.74582e-07
-6.0849e-07
4.63554e-07
-5.82147e-07
4.53009e-07
-5.57164e-07
4.42918e-07
-5.33457e-07
4.33257e-07
-5.10946e-07
4.24005e-07
-4.89559e-07
4.15138e-07
-4.69226e-07
4.06639e-07
-4.49884e-07
3.98488e-07
-4.31473e-07
3.90667e-07
-4.13938e-07
3.83162e-07
-3.97227e-07
3.75957e-07
-3.81293e-07
3.69038e-07
-3.66089e-07
3.62392e-07
-3.51575e-07
3.56006e-07
-3.37711e-07
3.49869e-07
-3.2446e-07
3.4397e-07
-3.11787e-07
3.38298e-07
-2.99662e-07
3.32845e-07
-2.88052e-07
3.27601e-07
-2.7693e-07
3.22557e-07
-2.6627e-07
3.17705e-07
-2.56045e-07
3.13038e-07
-2.46234e-07
3.08548e-07
-2.36813e-07
3.04229e-07
-2.27762e-07
3.00074e-07
-2.19061e-07
2.96076e-07
-2.10692e-07
2.92231e-07
-2.02638e-07
2.88532e-07
-1.94882e-07
2.84975e-07
-1.87409e-07
2.81554e-07
-1.80204e-07
2.78265e-07
-1.73254e-07
2.75103e-07
-1.66545e-07
2.72064e-07
-1.60064e-07
2.69144e-07
-1.53801e-07
2.6634e-07
-1.47744e-07
2.63647e-07
-1.41882e-07
2.61063e-07
-1.36206e-07
2.58583e-07
-1.30707e-07
2.56206e-07
-1.25374e-07
2.53928e-07
-1.202e-07
2.51746e-07
-1.15176e-07
2.49657e-07
-1.10295e-07
2.4766e-07
-1.05549e-07
2.45752e-07
-1.00931e-07
2.43931e-07
-9.64338e-08
2.42194e-07
-9.20519e-08
2.4054e-07
-8.77786e-08
2.38966e-07
-8.3608e-08
2.37472e-07
-7.95343e-08
2.36054e-07
-7.55521e-08
2.34713e-07
-7.16562e-08
2.33445e-07
-6.78413e-08
2.32251e-07
-6.41027e-08
2.31128e-07
-6.04356e-08
2.30075e-07
-5.68353e-08
2.29092e-07
-5.32974e-08
2.28175e-07
-4.98175e-08
2.27325e-07
-4.63913e-08
2.26536e-07
-4.3014e-08
2.25805e-07
-3.96801e-08
2.25117e-07
-3.63826e-08
2.24446e-07
-3.31107e-08
2.23733e-07
-2.98467e-08
2.2286e-07
-2.65603e-08
2.21576e-07
-2.32007e-08
2.1939e-07
-1.96875e-08
2.1535e-07
-1.59096e-08
2.07697e-07
-1.17558e-08
1.93346e-07
-7.2337e-09
1.67288e-07
-2.78965e-09
1.22351e-07
5.06364e-08
-3.42133e-06
9.10577e-07
-3.20067e-06
8.83528e-07
-2.9981e-06
8.56927e-07
-2.8117e-06
8.3058e-07
-2.63992e-06
8.04661e-07
-2.48144e-06
7.79415e-07
-2.3351e-06
7.55058e-07
-2.19981e-06
7.31735e-07
-2.07459e-06
7.09514e-07
-1.95851e-06
6.88395e-07
-1.85075e-06
6.68343e-07
-1.75058e-06
6.49298e-07
-1.65731e-06
6.3119e-07
-1.57036e-06
6.13944e-07
-1.48917e-06
5.97493e-07
-1.41329e-06
5.81781e-07
-1.34226e-06
5.66761e-07
-1.27572e-06
5.52394e-07
-1.2133e-06
5.38645e-07
-1.15469e-06
5.25482e-07
-1.09961e-06
5.12874e-07
-1.04778e-06
5.00792e-07
-9.98972e-07
4.89211e-07
-9.52968e-07
4.78103e-07
-9.09568e-07
4.67446e-07
-8.68589e-07
4.57217e-07
-8.29865e-07
4.47394e-07
-7.93242e-07
4.37959e-07
-7.5858e-07
4.28892e-07
-7.25749e-07
4.20177e-07
-6.94628e-07
4.11797e-07
-6.65108e-07
4.03737e-07
-6.37086e-07
3.95983e-07
-6.10468e-07
3.8852e-07
-5.85166e-07
3.81337e-07
-5.61098e-07
3.7442e-07
-5.38191e-07
3.6776e-07
-5.16373e-07
3.61345e-07
-4.9558e-07
3.55164e-07
-4.75751e-07
3.49209e-07
-4.5683e-07
3.43471e-07
-4.38764e-07
3.3794e-07
-4.21504e-07
3.32609e-07
-4.05004e-07
3.2747e-07
-3.89221e-07
3.22516e-07
-3.74115e-07
3.17739e-07
-3.59648e-07
3.13134e-07
-3.45785e-07
3.08694e-07
-3.32494e-07
3.04414e-07
-3.19742e-07
3.00287e-07
-3.07502e-07
2.96308e-07
-2.95745e-07
2.92472e-07
-2.84446e-07
2.88774e-07
-2.7358e-07
2.85211e-07
-2.63125e-07
2.81776e-07
-2.5306e-07
2.78467e-07
-2.43363e-07
2.75278e-07
-2.34016e-07
2.72207e-07
-2.25001e-07
2.69249e-07
-2.163e-07
2.66402e-07
-2.07897e-07
2.63662e-07
-1.99778e-07
2.61025e-07
-1.91928e-07
2.58489e-07
-1.84332e-07
2.56052e-07
-1.76978e-07
2.53709e-07
-1.69854e-07
2.51459e-07
-1.62948e-07
2.493e-07
-1.56248e-07
2.47228e-07
-1.49744e-07
2.45242e-07
-1.43426e-07
2.43339e-07
-1.37284e-07
2.41518e-07
-1.31309e-07
2.39777e-07
-1.25492e-07
2.38114e-07
-1.19825e-07
2.36527e-07
-1.143e-07
2.35014e-07
-1.08908e-07
2.33575e-07
-1.03643e-07
2.32207e-07
-9.84978e-08
2.30909e-07
-9.34651e-08
2.2968e-07
-8.85385e-08
2.28519e-07
-8.37117e-08
2.27424e-07
-7.89785e-08
2.26395e-07
-7.4333e-08
2.2543e-07
-6.97695e-08
2.24528e-07
-6.52824e-08
2.23688e-07
-6.08662e-08
2.22908e-07
-5.65155e-08
2.22186e-07
-5.22245e-08
2.21514e-07
-4.79868e-08
2.20879e-07
-4.3794e-08
2.20253e-07
-3.96343e-08
2.19574e-07
-3.54887e-08
2.18714e-07
-3.13256e-08
2.17413e-07
-2.7094e-08
2.15158e-07
-2.27161e-08
2.10972e-07
-1.80911e-08
2.03072e-07
-1.31345e-08
1.88389e-07
-7.91134e-09
1.62065e-07
-2.9666e-09
1.17406e-07
4.76699e-08
-3.86935e-06
6.45644e-07
-3.62577e-06
6.39946e-07
-3.40134e-06
6.32493e-07
-3.19427e-06
6.23518e-07
-3.00307e-06
6.13459e-07
-2.82638e-06
6.02721e-07
-2.66294e-06
5.91624e-07
-2.51161e-06
5.80402e-07
-2.37131e-06
5.69212e-07
-2.24106e-06
5.58149e-07
-2.11999e-06
5.47267e-07
-2.00728e-06
5.36591e-07
-1.90222e-06
5.26128e-07
-1.80415e-06
5.15877e-07
-1.7125e-06
5.0584e-07
-1.62673e-06
4.96017e-07
-1.54639e-06
4.86416e-07
-1.47103e-06
4.77041e-07
-1.40029e-06
4.67897e-07
-1.33379e-06
4.58989e-07
-1.27124e-06
4.50318e-07
-1.21233e-06
4.41884e-07
-1.1568e-06
4.33684e-07
-1.10442e-06
4.25717e-07
-1.05495e-06
4.17979e-07
-1.0082e-06
4.10466e-07
-9.63981e-07
4.03175e-07
-9.22123e-07
3.96101e-07
-8.82468e-07
3.89238e-07
-8.44873e-07
3.82582e-07
-8.09204e-07
3.76128e-07
-7.75338e-07
3.69871e-07
-7.43161e-07
3.63805e-07
-7.12567e-07
3.57926e-07
-6.83459e-07
3.52229e-07
-6.55747e-07
3.46708e-07
-6.29346e-07
3.41359e-07
-6.04178e-07
3.36177e-07
-5.80171e-07
3.31157e-07
-5.57256e-07
3.26294e-07
-5.35371e-07
3.21585e-07
-5.14456e-07
3.17025e-07
-4.94457e-07
3.12609e-07
-4.75322e-07
3.08334e-07
-4.57002e-07
3.04196e-07
-4.39453e-07
3.00191e-07
-4.22633e-07
2.96314e-07
-4.06502e-07
2.92563e-07
-3.91022e-07
2.88934e-07
-3.76159e-07
2.85424e-07
-3.6188e-07
2.82029e-07
-3.48155e-07
2.78746e-07
-3.34953e-07
2.75573e-07
-3.22248e-07
2.72505e-07
-3.10013e-07
2.69542e-07
-2.98225e-07
2.66678e-07
-2.86861e-07
2.63913e-07
-2.75898e-07
2.61244e-07
-2.65316e-07
2.58668e-07
-2.55096e-07
2.56182e-07
-2.45219e-07
2.53785e-07
-2.35668e-07
2.51474e-07
-2.26426e-07
2.49248e-07
-2.17478e-07
2.47104e-07
-2.08809e-07
2.4504e-07
-2.00405e-07
2.43054e-07
-1.92251e-07
2.41146e-07
-1.84336e-07
2.39313e-07
-1.76647e-07
2.37553e-07
-1.69172e-07
2.35865e-07
-1.61901e-07
2.34247e-07
-1.54823e-07
2.32699e-07
-1.47927e-07
2.31218e-07
-1.41204e-07
2.29804e-07
-1.34645e-07
2.28455e-07
-1.28241e-07
2.2717e-07
-1.21983e-07
2.25949e-07
-1.15863e-07
2.24789e-07
-1.09874e-07
2.2369e-07
-1.04007e-07
2.22651e-07
-9.82544e-08
2.21672e-07
-9.26104e-08
2.2075e-07
-8.70675e-08
2.19887e-07
-8.16192e-08
2.19079e-07
-7.6259e-08
2.18328e-07
-7.09805e-08
2.1763e-07
-6.57773e-08
2.16983e-07
-6.06429e-08
2.16379e-07
-5.55696e-08
2.15806e-07
-5.05484e-08
2.15231e-07
-4.55661e-08
2.14591e-07
-4.06028e-08
2.1375e-07
-3.56264e-08
2.12437e-07
-3.0586e-08
2.10118e-07
-2.54079e-08
2.05794e-07
-2.00032e-08
1.97667e-07
-1.43164e-08
1.82702e-07
-8.46947e-09
1.56217e-07
-3.09866e-09
1.12035e-07
4.45711e-08
-3.96161e-06
4.01033e-07
-3.73375e-06
4.12088e-07
-3.52133e-06
4.20072e-07
-3.32333e-06
4.2552e-07
-3.13881e-06
4.28934e-07
-2.96684e-06
4.30747e-07
-2.80651e-06
4.31302e-07
-2.65697e-06
4.30864e-07
-2.51739e-06
4.29631e-07
-2.387e-06
4.27751e-07
-2.26506e-06
4.25331e-07
-2.15092e-06
4.22452e-07
-2.04397e-06
4.19176e-07
-1.94365e-06
4.1556e-07
-1.84946e-06
4.11653e-07
-1.76095e-06
4.07505e-07
-1.6777e-06
4.0316e-07
-1.59932e-06
3.98661e-07
-1.52546e-06
3.94045e-07
-1.45582e-06
3.89343e-07
-1.39008e-06
3.84585e-07
-1.32799e-06
3.79793e-07
-1.2693e-06
3.74988e-07
-1.21377e-06
3.70187e-07
-1.16119e-06
3.65404e-07
-1.11138e-06
3.60654e-07
-1.06415e-06
3.55945e-07
-1.01934e-06
3.51287e-07
-9.76787e-07
3.46689e-07
-9.3636e-07
3.42155e-07
-8.97924e-07
3.37692e-07
-8.61356e-07
3.33303e-07
-8.26544e-07
3.28994e-07
-7.93383e-07
3.24765e-07
-7.61775e-07
3.2062e-07
-7.31628e-07
3.16561e-07
-7.02857e-07
3.12589e-07
-6.75385e-07
3.08704e-07
-6.49136e-07
3.04908e-07
-6.24042e-07
3.01201e-07
-6.00039e-07
2.97582e-07
-5.77065e-07
2.94051e-07
-5.55065e-07
2.90609e-07
-5.33984e-07
2.87254e-07
-5.13775e-07
2.83987e-07
-4.94389e-07
2.80805e-07
-4.75783e-07
2.77708e-07
-4.57915e-07
2.74696e-07
-4.40748e-07
2.71767e-07
-4.24244e-07
2.6892e-07
-4.0837e-07
2.66154e-07
-3.93092e-07
2.63468e-07
-3.7838e-07
2.60861e-07
-3.64205e-07
2.5833e-07
-3.5054e-07
2.55876e-07
-3.37358e-07
2.53497e-07
-3.24637e-07
2.51192e-07
-3.12352e-07
2.48959e-07
-3.00481e-07
2.46797e-07
-2.89004e-07
2.44705e-07
-2.77902e-07
2.42683e-07
-2.67156e-07
2.40727e-07
-2.56747e-07
2.38839e-07
-2.46659e-07
2.37016e-07
-2.36876e-07
2.35257e-07
-2.27383e-07
2.33561e-07
-2.18165e-07
2.31928e-07
-2.09209e-07
2.30356e-07
-2.00501e-07
2.28844e-07
-1.92028e-07
2.27392e-07
-1.83779e-07
2.25998e-07
-1.75742e-07
2.24662e-07
-1.67906e-07
2.23382e-07
-1.6026e-07
2.22158e-07
-1.52794e-07
2.20989e-07
-1.45499e-07
2.19875e-07
-1.38365e-07
2.18814e-07
-1.31383e-07
2.17807e-07
-1.24545e-07
2.16851e-07
-1.17842e-07
2.15948e-07
-1.11265e-07
2.15095e-07
-1.04808e-07
2.14293e-07
-9.8462e-08
2.13541e-07
-9.22202e-08
2.12838e-07
-8.60754e-08
2.12183e-07
-8.00205e-08
2.11575e-07
-7.40486e-08
2.11011e-07
-6.81522e-08
2.10483e-07
-6.23233e-08
2.09977e-07
-5.65517e-08
2.0946e-07
-5.08237e-08
2.08863e-07
-4.51185e-08
2.08045e-07
-3.94036e-08
2.06722e-07
-3.36294e-08
2.04344e-07
-2.77271e-08
1.99892e-07
-2.16214e-08
1.91562e-07
-1.52872e-08
1.76368e-07
-8.90229e-09
1.49833e-07
-3.18489e-09
1.06318e-07
4.13862e-08
-3.78059e-06
2.01299e-07
-3.59119e-06
2.22692e-07
-3.41182e-06
2.40703e-07
-3.24223e-06
2.55928e-07
-3.08209e-06
2.68793e-07
-2.93101e-06
2.79661e-07
-2.78853e-06
2.88829e-07
-2.6542e-06
2.96534e-07
-2.52754e-06
3.02966e-07
-2.40807e-06
3.08278e-07
-2.29533e-06
3.12592e-07
-2.18889e-06
3.16014e-07
-2.08835e-06
3.18634e-07
-1.99332e-06
3.20536e-07
-1.90347e-06
3.21798e-07
-1.81846e-06
3.22495e-07
-1.73799e-06
3.22694e-07
-1.66179e-06
3.22457e-07
-1.58958e-06
3.21839e-07
-1.52113e-06
3.20891e-07
-1.4562e-06
3.19655e-07
-1.39458e-06
3.18172e-07
-1.33607e-06
3.16475e-07
-1.28048e-06
3.14595e-07
-1.22763e-06
3.12559e-07
-1.17737e-06
3.10392e-07
-1.12954e-06
3.08114e-07
-1.084e-06
3.05745e-07
-1.04061e-06
3.03302e-07
-9.99254e-07
3.008e-07
-9.59815e-07
2.98253e-07
-9.22183e-07
2.95671e-07
-8.86256e-07
2.93067e-07
-8.5194e-07
2.90449e-07
-8.19144e-07
2.87825e-07
-7.87786e-07
2.85203e-07
-7.57787e-07
2.8259e-07
-7.29074e-07
2.79992e-07
-7.01578e-07
2.77412e-07
-6.75234e-07
2.74856e-07
-6.49981e-07
2.72329e-07
-6.25762e-07
2.69832e-07
-6.02522e-07
2.67369e-07
-5.80211e-07
2.64944e-07
-5.58782e-07
2.62557e-07
-5.38188e-07
2.60211e-07
-5.18388e-07
2.57908e-07
-4.99341e-07
2.5565e-07
-4.8101e-07
2.53436e-07
-4.63358e-07
2.51269e-07
-4.46352e-07
2.49148e-07
-4.29959e-07
2.47076e-07
-4.1415e-07
2.45051e-07
-3.98896e-07
2.43076e-07
-3.84168e-07
2.41149e-07
-3.69943e-07
2.39272e-07
-3.56194e-07
2.37443e-07
-3.42899e-07
2.35664e-07
-3.30036e-07
2.33934e-07
-3.17584e-07
2.32253e-07
-3.05523e-07
2.30621e-07
-2.93833e-07
2.29038e-07
-2.82498e-07
2.27503e-07
-2.71499e-07
2.26017e-07
-2.6082e-07
2.24578e-07
-2.50446e-07
2.23187e-07
-2.40362e-07
2.21844e-07
-2.30553e-07
2.20547e-07
-2.21005e-07
2.19297e-07
-2.11706e-07
2.18093e-07
-2.02644e-07
2.16935e-07
-1.93805e-07
2.15823e-07
-1.8518e-07
2.14756e-07
-1.76756e-07
2.13734e-07
-1.68522e-07
2.12756e-07
-1.6047e-07
2.11823e-07
-1.52588e-07
2.10933e-07
-1.44868e-07
2.10087e-07
-1.373e-07
2.09283e-07
-1.29876e-07
2.08523e-07
-1.22586e-07
2.07805e-07
-1.15423e-07
2.0713e-07
-1.08379e-07
2.06496e-07
-1.01445e-07
2.05904e-07
-9.4614e-08
2.05352e-07
-8.78787e-08
2.0484e-07
-8.12313e-08
2.04363e-07
-7.46641e-08
2.03916e-07
-6.81682e-08
2.03481e-07
-6.17333e-08
2.03025e-07
-5.53449e-08
2.02475e-07
-4.89819e-08
2.01682e-07
-4.26121e-08
2.00352e-07
-3.61879e-08
1.9792e-07
-2.96465e-08
1.9335e-07
-2.29279e-08
1.84843e-07
-1.60378e-08
1.69478e-07
-9.2077e-09
1.43002e-07
-3.22671e-09
1.00337e-07
3.81595e-08
-3.43975e-06
5.21851e-08
-3.29544e-06
7.83783e-08
-3.15628e-06
1.01543e-07
-3.02251e-06
1.22154e-07
-2.89421e-06
1.40502e-07
-2.7714e-06
1.56845e-07
-2.65397e-06
1.71403e-07
-2.54179e-06
1.84357e-07
-2.43469e-06
1.95861e-07
-2.33246e-06
2.06048e-07
-2.2349e-06
2.15035e-07
-2.14181e-06
2.22927e-07
-2.053e-06
2.29819e-07
-1.96827e-06
2.35803e-07
-1.88743e-06
2.40963e-07
-1.81032e-06
2.4538e-07
-1.73675e-06
2.49126e-07
-1.66656e-06
2.52268e-07
-1.59959e-06
2.54867e-07
-1.53568e-06
2.56979e-07
-1.47467e-06
2.58652e-07
-1.41644e-06
2.59933e-07
-1.36082e-06
2.60861e-07
-1.3077e-06
2.61474e-07
-1.25695e-06
2.61805e-07
-1.20844e-06
2.61884e-07
-1.16206e-06
2.61739e-07
-1.11771e-06
2.61394e-07
-1.07528e-06
2.60872e-07
-1.03468e-06
2.60194e-07
-9.958e-07
2.59377e-07
-9.58568e-07
2.5844e-07
-9.22898e-07
2.57396e-07
-8.8871e-07
2.56261e-07
-8.5593e-07
2.55045e-07
-8.24489e-07
2.53762e-07
-7.94319e-07
2.52421e-07
-7.65359e-07
2.51031e-07
-7.37547e-07
2.49601e-07
-7.10829e-07
2.48138e-07
-6.85149e-07
2.46649e-07
-6.60459e-07
2.45141e-07
-6.36709e-07
2.4362e-07
-6.13854e-07
2.42089e-07
-5.91852e-07
2.40555e-07
-5.70661e-07
2.3902e-07
-5.50242e-07
2.3749e-07
-5.30559e-07
2.35967e-07
-5.11577e-07
2.34454e-07
-4.93262e-07
2.32954e-07
-4.75583e-07
2.31469e-07
-4.5851e-07
2.30003e-07
-4.42015e-07
2.28556e-07
-4.2607e-07
2.27131e-07
-4.10649e-07
2.25729e-07
-3.95729e-07
2.24351e-07
-3.81285e-07
2.23e-07
-3.67296e-07
2.21675e-07
-3.53741e-07
2.20378e-07
-3.40598e-07
2.1911e-07
-3.27849e-07
2.17872e-07
-3.15475e-07
2.16664e-07
-3.03459e-07
2.15487e-07
-2.91783e-07
2.14341e-07
-2.80432e-07
2.13227e-07
-2.6939e-07
2.12145e-07
-2.58643e-07
2.11096e-07
-2.48176e-07
2.1008e-07
-2.37976e-07
2.09097e-07
-2.2803e-07
2.08147e-07
-2.18325e-07
2.07231e-07
-2.0885e-07
2.06348e-07
-1.99592e-07
2.05498e-07
-1.9054e-07
2.04683e-07
-1.81685e-07
2.03901e-07
-1.73016e-07
2.03153e-07
-1.64522e-07
2.02439e-07
-1.56194e-07
2.01758e-07
-1.48022e-07
2.01112e-07
-1.39998e-07
2.00499e-07
-1.32113e-07
1.9992e-07
-1.24359e-07
1.99375e-07
-1.16726e-07
1.98864e-07
-1.09208e-07
1.98385e-07
-1.01795e-07
1.9794e-07
-9.44815e-08
1.97526e-07
-8.72583e-08
1.9714e-07
-8.01176e-08
1.96775e-07
-7.30504e-08
1.96414e-07
-6.60459e-08
1.9602e-07
-5.90893e-08
1.95518e-07
-5.21596e-08
1.94753e-07
-4.52252e-08
1.93418e-07
-3.82413e-08
1.90936e-07
-3.11524e-08
1.86261e-07
-2.39148e-08
1.77605e-07
-1.65656e-08
1.62129e-07
-9.38657e-09
1.35823e-07
-3.22545e-09
9.41752e-08
3.49338e-08
-3.03373e-06
-5.13593e-08
-2.93092e-06
-2.44339e-08
-2.8301e-06
7.25332e-10
-2.73136e-06
2.34147e-08
-2.63492e-06
4.40615e-08
-2.54098e-06
6.29085e-08
-2.44971e-06
8.01336e-08
-2.36118e-06
9.58268e-08
-2.27543e-06
1.10105e-07
-2.19245e-06
1.23076e-07
-2.11225e-06
1.34837e-07
-2.03481e-06
1.45479e-07
-1.96008e-06
1.5509e-07
-1.88803e-06
1.63751e-07
-1.8186e-06
1.7154e-07
-1.75175e-06
1.78529e-07
-1.68741e-06
1.84783e-07
-1.62551e-06
1.90365e-07
-1.56597e-06
1.95332e-07
-1.50873e-06
1.99735e-07
-1.4537e-06
2.03623e-07
-1.4008e-06
2.07039e-07
-1.34997e-06
2.10025e-07
-1.30111e-06
2.12618e-07
-1.25416e-06
2.14851e-07
-1.20903e-06
2.16757e-07
-1.16566e-06
2.18365e-07
-1.12396e-06
2.19701e-07
-1.08388e-06
2.2079e-07
-1.04534e-06
2.21655e-07
-1.00828e-06
2.22317e-07
-9.72639e-07
2.22794e-07
-9.38348e-07
2.23105e-07
-9.05352e-07
2.23265e-07
-8.73595e-07
2.23289e-07
-8.43024e-07
2.23191e-07
-8.13587e-07
2.22983e-07
-7.85233e-07
2.22677e-07
-7.57916e-07
2.22283e-07
-7.31589e-07
2.21811e-07
-7.06209e-07
2.2127e-07
-6.81735e-07
2.20667e-07
-6.58127e-07
2.20011e-07
-6.35346e-07
2.19308e-07
-6.13356e-07
2.18565e-07
-5.92122e-07
2.17787e-07
-5.71612e-07
2.16979e-07
-5.51792e-07
2.16147e-07
-5.32634e-07
2.15295e-07
-5.14106e-07
2.14427e-07
-4.96183e-07
2.13546e-07
-4.78837e-07
2.12657e-07
-4.62042e-07
2.11762e-07
-4.45775e-07
2.10864e-07
-4.30012e-07
2.09966e-07
-4.1473e-07
2.0907e-07
-3.9991e-07
2.08179e-07
-3.85529e-07
2.07294e-07
-3.7157e-07
2.06418e-07
-3.58012e-07
2.05552e-07
-3.44838e-07
2.04698e-07
-3.3203e-07
2.03857e-07
-3.19573e-07
2.0303e-07
-3.0745e-07
2.02218e-07
-2.95647e-07
2.01424e-07
-2.84148e-07
2.00647e-07
-2.72939e-07
1.99888e-07
-2.62008e-07
1.99149e-07
-2.51341e-07
1.9843e-07
-2.40925e-07
1.97731e-07
-2.30749e-07
1.97055e-07
-2.20801e-07
1.96399e-07
-2.11069e-07
1.95767e-07
-2.01544e-07
1.95157e-07
-1.92213e-07
1.94571e-07
-1.83068e-07
1.94008e-07
-1.74099e-07
1.93469e-07
-1.65296e-07
1.92955e-07
-1.56649e-07
1.92465e-07
-1.4815e-07
1.92e-07
-1.39791e-07
1.91561e-07
-1.31562e-07
1.91146e-07
-1.23456e-07
1.90757e-07
-1.15464e-07
1.90393e-07
-1.07578e-07
1.90054e-07
-9.97915e-08
1.89739e-07
-9.20956e-08
1.89444e-07
-8.44824e-08
1.89162e-07
-7.69428e-08
1.88874e-07
-6.94659e-08
1.88543e-07
-6.20372e-08
1.8809e-07
-5.46357e-08
1.87351e-07
-4.72314e-08
1.86013e-07
-3.97827e-08
1.83487e-07
-3.22424e-08
1.78721e-07
-2.45841e-08
1.69947e-07
-1.68755e-08
1.5442e-07
-9.44463e-09
1.28392e-07
-3.18479e-09
8.79154e-08
3.1749e-08
-2.62197e-06
-1.17343e-07
-2.5548e-06
-9.16055e-08
-2.48648e-06
-6.75964e-08
-2.41763e-06
-4.54347e-08
-2.34896e-06
-2.46038e-08
-2.28032e-06
-5.7328e-09
-2.21287e-06
1.26817e-08
-2.14623e-06
2.91843e-08
-2.08057e-06
4.44473e-08
-2.01606e-06
5.85697e-08
-1.95282e-06
7.15959e-08
-1.89094e-06
8.35975e-08
-1.83049e-06
9.4643e-08
-1.77154e-06
1.04797e-07
-1.71412e-06
1.14121e-07
-1.65826e-06
1.22672e-07
-1.60398e-06
1.30504e-07
-1.55129e-06
1.37668e-07
-1.50017e-06
1.44212e-07
-1.45061e-06
1.50179e-07
-1.4026e-06
1.55612e-07
-1.35611e-06
1.6055e-07
-1.31111e-06
1.65028e-07
-1.26758e-06
1.69081e-07
-1.22547e-06
1.72741e-07
-1.18474e-06
1.76037e-07
-1.14538e-06
1.78996e-07
-1.10732e-06
1.81646e-07
-1.07054e-06
1.84009e-07
-1.03499e-06
1.86108e-07
-1.00064e-06
1.87964e-07
-9.67442e-07
1.89597e-07
-9.3536e-07
1.91023e-07
-9.04355e-07
1.9226e-07
-8.74389e-07
1.93323e-07
-8.45424e-07
1.94226e-07
-8.17425e-07
1.94983e-07
-7.90354e-07
1.95607e-07
-7.64179e-07
1.96108e-07
-7.38864e-07
1.96497e-07
-7.14378e-07
1.96784e-07
-6.90689e-07
1.96978e-07
-6.67765e-07
1.97088e-07
-6.45577e-07
1.97121e-07
-6.24096e-07
1.97084e-07
-6.03295e-07
1.96986e-07
-5.83146e-07
1.96831e-07
-5.63624e-07
1.96625e-07
-5.44703e-07
1.96374e-07
-5.2636e-07
1.96083e-07
-5.08571e-07
1.95757e-07
-4.91313e-07
1.95399e-07
-4.74566e-07
1.95015e-07
-4.58308e-07
1.94606e-07
-4.4252e-07
1.94177e-07
-4.27181e-07
1.93732e-07
-4.12275e-07
1.93272e-07
-3.97781e-07
1.92801e-07
-3.83684e-07
1.92321e-07
-3.69967e-07
1.91835e-07
-3.56613e-07
1.91344e-07
-3.43608e-07
1.90851e-07
-3.30935e-07
1.90358e-07
-3.18582e-07
1.89865e-07
-3.06534e-07
1.89376e-07
-2.94778e-07
1.88891e-07
-2.83301e-07
1.88411e-07
-2.7209e-07
1.87938e-07
-2.61133e-07
1.87474e-07
-2.5042e-07
1.87018e-07
-2.39938e-07
1.86573e-07
-2.29677e-07
1.86138e-07
-2.19626e-07
1.85716e-07
-2.09774e-07
1.85306e-07
-2.00113e-07
1.8491e-07
-1.90633e-07
1.84527e-07
-1.81323e-07
1.8416e-07
-1.72175e-07
1.83807e-07
-1.6318e-07
1.8347e-07
-1.5433e-07
1.8315e-07
-1.45615e-07
1.82846e-07
-1.37029e-07
1.8256e-07
-1.28563e-07
1.8229e-07
-1.20208e-07
1.82039e-07
-1.11958e-07
1.81804e-07
-1.03805e-07
1.81586e-07
-9.57404e-08
1.8138e-07
-8.77568e-08
1.81178e-07
-7.98451e-08
1.80963e-07
-7.19945e-08
1.80693e-07
-6.41908e-08
1.80286e-07
-5.64138e-08
1.79575e-07
-4.86352e-08
1.78235e-07
-4.08178e-08
1.7567e-07
-3.29236e-08
1.70827e-07
-2.49437e-08
1.61967e-07
-1.6976e-08
1.46452e-07
-9.38897e-09
1.20805e-07
-3.10852e-09
8.16346e-08
2.86404e-08
-2.24036e-06
-1.55995e-07
-2.19917e-06
-1.3279e-07
-2.15587e-06
-1.10898e-07
-2.11103e-06
-9.02761e-08
-2.06483e-06
-7.08075e-08
-2.01806e-06
-5.25006e-08
-1.97006e-06
-3.53194e-08
-1.92156e-06
-1.93132e-08
-1.87278e-06
-4.33401e-09
-1.82447e-06
1.0267e-08
-1.77637e-06
2.34887e-08
-1.72861e-06
3.58387e-08
-1.68133e-06
4.73648e-08
-1.63464e-06
5.81096e-08
-1.58864e-06
6.81165e-08
-1.54339e-06
7.74273e-08
-1.49897e-06
8.60818e-08
-1.45542e-06
9.41184e-08
-1.41278e-06
1.01574e-07
-1.37109e-06
1.08482e-07
-1.33035e-06
1.14878e-07
-1.2906e-06
1.20793e-07
-1.25183e-06
1.26257e-07
-1.21404e-06
1.31298e-07
-1.17725e-06
1.35944e-07
-1.14143e-06
1.40221e-07
-1.10659e-06
1.44152e-07
-1.0727e-06
1.47762e-07
-1.03976e-06
1.51071e-07
-1.00775e-06
1.54099e-07
-9.76657e-07
1.56867e-07
-9.46452e-07
1.59392e-07
-9.17119e-07
1.6169e-07
-8.88637e-07
1.63778e-07
-8.60985e-07
1.6567e-07
-8.3414e-07
1.67381e-07
-8.08081e-07
1.68924e-07
-7.82784e-07
1.7031e-07
-7.58227e-07
1.71551e-07
-7.34389e-07
1.72658e-07
-7.11246e-07
1.73641e-07
-6.88777e-07
1.74509e-07
-6.66959e-07
1.7527e-07
-6.45773e-07
1.75934e-07
-6.25196e-07
1.76507e-07
-6.05208e-07
1.76998e-07
-5.85788e-07
1.77411e-07
-5.66918e-07
1.77755e-07
-5.48578e-07
1.78034e-07
-5.30748e-07
1.78254e-07
-5.13411e-07
1.7842e-07
-4.96549e-07
1.78537e-07
-4.80145e-07
1.7861e-07
-4.6418e-07
1.78642e-07
-4.4864e-07
1.78637e-07
-4.33509e-07
1.786e-07
-4.18769e-07
1.78533e-07
-4.04408e-07
1.7844e-07
-3.9041e-07
1.78323e-07
-3.7676e-07
1.78185e-07
-3.63446e-07
1.7803e-07
-3.50453e-07
1.77859e-07
-3.3777e-07
1.77674e-07
-3.25382e-07
1.77478e-07
-3.1328e-07
1.77273e-07
-3.01449e-07
1.7706e-07
-2.8988e-07
1.76842e-07
-2.78561e-07
1.76619e-07
-2.67481e-07
1.76394e-07
-2.56629e-07
1.76167e-07
-2.45997e-07
1.7594e-07
-2.35572e-07
1.75714e-07
-2.25347e-07
1.75491e-07
-2.15311e-07
1.7527e-07
-2.05455e-07
1.75054e-07
-1.95772e-07
1.74843e-07
-1.8625e-07
1.74638e-07
-1.76884e-07
1.7444e-07
-1.67663e-07
1.7425e-07
-1.5858e-07
1.74067e-07
-1.49628e-07
1.73894e-07
-1.40797e-07
1.73729e-07
-1.32082e-07
1.73575e-07
-1.23473e-07
1.7343e-07
-1.14965e-07
1.73296e-07
-1.06548e-07
1.73169e-07
-9.82175e-08
1.73049e-07
-8.9964e-08
1.72925e-07
-8.17792e-08
1.72778e-07
-7.36526e-08
1.72566e-07
-6.55707e-08
1.72204e-07
-5.75142e-08
1.71518e-07
-4.94571e-08
1.70178e-07
-4.1367e-08
1.6758e-07
-3.32158e-08
1.62675e-07
-2.50123e-08
1.53763e-07
-1.68827e-08
1.38322e-07
-9.23067e-09
1.13153e-07
-3.00127e-09
7.54052e-08
2.56391e-08
-1.90259e-06
-1.75546e-07
-1.88001e-06
-1.55363e-07
-1.85482e-06
-1.36092e-07
-1.8274e-06
-1.17691e-07
-1.79807e-06
-1.00145e-07
-1.76712e-06
-8.3445e-08
-1.73485e-06
-6.7587e-08
-1.70162e-06
-5.25496e-08
-1.66765e-06
-3.83029e-08
-1.63257e-06
-2.48097e-08
-1.59696e-06
-1.21263e-08
-1.56118e-06
5.95893e-11
-1.5253e-06
1.14852e-08
-1.48939e-06
2.21969e-08
-1.45356e-06
3.2285e-08
-1.4179e-06
4.17706e-08
-1.3825e-06
5.06826e-08
-1.34743e-06
5.90489e-08
-1.31275e-06
6.68966e-08
-1.27852e-06
7.42517e-08
-1.24478e-06
8.11397e-08
-1.21157e-06
8.7585e-08
-1.17893e-06
9.36111e-08
-1.14687e-06
9.92409e-08
-1.11542e-06
1.04496e-07
-1.0846e-06
1.09398e-07
-1.05441e-06
1.13966e-07
-1.02487e-06
1.1822e-07
-9.9598e-07
1.22179e-07
-9.67739e-07
1.25858e-07
-9.40149e-07
1.29276e-07
-9.13205e-07
1.32448e-07
-8.86904e-07
1.35389e-07
-8.61239e-07
1.38113e-07
-8.36202e-07
1.40633e-07
-8.11784e-07
1.42963e-07
-7.87974e-07
1.45114e-07
-7.64762e-07
1.47098e-07
-7.42135e-07
1.48925e-07
-7.20082e-07
1.50605e-07
-6.98589e-07
1.52148e-07
-6.77644e-07
1.53564e-07
-6.57233e-07
1.54859e-07
-6.37343e-07
1.56044e-07
-6.17959e-07
1.57124e-07
-5.99068e-07
1.58107e-07
-5.80657e-07
1.59e-07
-5.6271e-07
1.59808e-07
-5.45215e-07
1.60539e-07
-5.28158e-07
1.61197e-07
-5.11525e-07
1.61788e-07
-4.95304e-07
1.62316e-07
-4.7948e-07
1.62786e-07
-4.64042e-07
1.63203e-07
-4.48975e-07
1.63571e-07
-4.34269e-07
1.63894e-07
-4.1991e-07
1.64174e-07
-4.05887e-07
1.64416e-07
-3.92188e-07
1.64623e-07
-3.78801e-07
1.64798e-07
-3.65714e-07
1.64944e-07
-3.52918e-07
1.65063e-07
-3.40401e-07
1.65157e-07
-3.28152e-07
1.6523e-07
-3.16162e-07
1.65283e-07
-3.0442e-07
1.65319e-07
-2.92917e-07
1.65339e-07
-2.81643e-07
1.65345e-07
-2.70588e-07
1.65339e-07
-2.59743e-07
1.65323e-07
-2.491e-07
1.65297e-07
-2.3865e-07
1.65264e-07
-2.28383e-07
1.65224e-07
-2.18293e-07
1.6518e-07
-2.08369e-07
1.65131e-07
-1.98606e-07
1.6508e-07
-1.88993e-07
1.65026e-07
-1.79525e-07
1.64972e-07
-1.70193e-07
1.64918e-07
-1.6099e-07
1.64864e-07
-1.51908e-07
1.64812e-07
-1.42941e-07
1.64762e-07
-1.34082e-07
1.64715e-07
-1.25323e-07
1.64671e-07
-1.16657e-07
1.6463e-07
-1.08078e-07
1.64591e-07
-9.95791e-08
1.6455e-07
-9.11523e-08
1.64498e-07
-8.27897e-08
1.64415e-07
-7.44813e-08
1.64258e-07
-6.62143e-08
1.63937e-07
-5.7971e-08
1.63275e-07
-4.97279e-08
1.61935e-07
-4.14582e-08
1.5931e-07
-3.31438e-08
1.54361e-07
-2.48114e-08
1.45431e-07
-1.66133e-08
1.30124e-07
-8.9818e-09
1.05521e-07
-2.86851e-09
6.92919e-08
2.27707e-08
-1.61005e-06
-1.82165e-07
-1.6004e-06
-1.65012e-07
-1.58805e-06
-1.48445e-07
-1.57329e-06
-1.32448e-07
-1.5564e-06
-1.17035e-07
-1.53763e-06
-1.02217e-07
-1.51722e-06
-8.79962e-08
-1.4954e-06
-7.43719e-08
-1.47236e-06
-6.13445e-08
-1.44826e-06
-4.89094e-08
-1.42337e-06
-3.70131e-08
-1.3976e-06
-2.57152e-08
-1.37117e-06
-1.4943e-08
-1.34419e-06
-4.77818e-09
-1.31706e-06
5.1581e-09
-1.2897e-06
1.44107e-08
-1.2622e-06
2.3176e-08
-1.23463e-06
3.14775e-08
-1.20706e-06
3.9334e-08
-1.17958e-06
4.67639e-08
-1.15222e-06
5.37851e-08
-1.12505e-06
6.04151e-08
-1.09811e-06
6.66715e-08
-1.07144e-06
7.2571e-08
-1.04508e-06
7.81302e-08
-1.01904e-06
8.33654e-08
-9.93369e-07
8.82923e-08
-9.68075e-07
9.2926e-08
-9.43177e-07
9.72814e-08
-9.18692e-07
1.01373e-07
-8.94629e-07
1.05214e-07
-8.70999e-07
1.08817e-07
-8.47806e-07
1.12196e-07
-8.25056e-07
1.15363e-07
-8.02751e-07
1.18329e-07
-7.80893e-07
1.21104e-07
-7.5948e-07
1.23701e-07
-7.3851e-07
1.26128e-07
-7.17981e-07
1.28395e-07
-6.97888e-07
1.30512e-07
-6.78227e-07
1.32487e-07
-6.58992e-07
1.34328e-07
-6.40176e-07
1.36044e-07
-6.21772e-07
1.3764e-07
-6.03774e-07
1.39126e-07
-5.86173e-07
1.40506e-07
-5.68962e-07
1.41788e-07
-5.5213e-07
1.42977e-07
-5.35671e-07
1.4408e-07
-5.19575e-07
1.45101e-07
-5.03833e-07
1.46046e-07
-4.88436e-07
1.46919e-07
-4.73375e-07
1.47725e-07
-4.5864e-07
1.48469e-07
-4.44223e-07
1.49154e-07
-4.30115e-07
1.49785e-07
-4.16305e-07
1.50365e-07
-4.02786e-07
1.50897e-07
-3.89548e-07
1.51385e-07
-3.76582e-07
1.51832e-07
-3.63879e-07
1.52241e-07
-3.51431e-07
1.52615e-07
-3.39229e-07
1.52955e-07
-3.27265e-07
1.53266e-07
-3.1553e-07
1.53548e-07
-3.04015e-07
1.53805e-07
-2.92714e-07
1.54038e-07
-2.81617e-07
1.54248e-07
-2.70717e-07
1.54439e-07
-2.60006e-07
1.54612e-07
-2.49477e-07
1.54768e-07
-2.39122e-07
1.54909e-07
-2.28933e-07
1.55036e-07
-2.18903e-07
1.5515e-07
-2.09026e-07
1.55254e-07
-1.99294e-07
1.55347e-07
-1.897e-07
1.55432e-07
-1.80237e-07
1.55509e-07
-1.70899e-07
1.55579e-07
-1.61679e-07
1.55644e-07
-1.5257e-07
1.55703e-07
-1.43565e-07
1.55758e-07
-1.3466e-07
1.55809e-07
-1.25846e-07
1.55857e-07
-1.17118e-07
1.55902e-07
-1.0847e-07
1.55943e-07
-9.98954e-08
1.55975e-07
-9.13867e-08
1.55989e-07
-8.29368e-08
1.55965e-07
-7.45362e-08
1.55858e-07
-6.61731e-08
1.55574e-07
-5.78313e-08
1.54933e-07
-4.94906e-08
1.53594e-07
-4.11298e-08
1.50949e-07
-3.27414e-08
1.45973e-07
-2.43692e-08
1.37058e-07
-1.61891e-08
1.21944e-07
-8.65569e-09
9.79878e-08
-2.71513e-09
6.33513e-08
2.00555e-08
-1.36119e-06
-1.8046e-07
-1.36013e-06
-1.66071e-07
-1.35655e-06
-1.52032e-07
-1.35065e-06
-1.38347e-07
-1.34264e-06
-1.2504e-07
-1.33273e-06
-1.12129e-07
-1.3211e-06
-9.96275e-08
-1.30792e-06
-8.75448e-08
-1.29338e-06
-7.58918e-08
-1.27763e-06
-6.46605e-08
-1.26078e-06
-5.386e-08
-1.243e-06
-4.34931e-08
-1.2244e-06
-3.35495e-08
-1.20517e-06
-2.40083e-08
-1.18513e-06
-1.48809e-08
-1.16455e-06
-6.16871e-09
-1.14364e-06
2.27361e-09
-1.12243e-06
1.02678e-08
-1.10098e-06
1.78772e-08
-1.07934e-06
2.51254e-08
-1.05758e-06
3.20256e-08
-1.03575e-06
3.85901e-08
-1.01391e-06
4.48311e-08
-9.92104e-07
5.07606e-08
-9.70365e-07
5.63906e-08
-9.48732e-07
6.17329e-08
-9.27239e-07
6.67993e-08
-9.05915e-07
7.16013e-08
-8.84783e-07
7.61502e-08
-8.63868e-07
8.04571e-08
-8.43187e-07
8.45329e-08
-8.22758e-07
8.8388e-08
-8.02595e-07
9.20328e-08
-7.82709e-07
9.5477e-08
-7.63111e-07
9.87302e-08
-7.43808e-07
1.01802e-07
-7.24807e-07
1.047e-07
-7.06114e-07
1.07434e-07
-6.87731e-07
1.10012e-07
-6.6966e-07
1.12442e-07
-6.51904e-07
1.14731e-07
-6.34462e-07
1.16887e-07
-6.17334e-07
1.18915e-07
-6.00517e-07
1.20824e-07
-5.8401e-07
1.22619e-07
-5.67811e-07
1.24306e-07
-5.51914e-07
1.25892e-07
-5.36318e-07
1.27381e-07
-5.21016e-07
1.28778e-07
-5.06005e-07
1.3009e-07
-4.9128e-07
1.3132e-07
-4.76834e-07
1.32473e-07
-4.62663e-07
1.33554e-07
-4.48761e-07
1.34567e-07
-4.35121e-07
1.35514e-07
-4.21738e-07
1.36402e-07
-4.08605e-07
1.37232e-07
-3.95716e-07
1.38008e-07
-3.83064e-07
1.38733e-07
-3.70643e-07
1.39412e-07
-3.58447e-07
1.40045e-07
-3.46468e-07
1.40636e-07
-3.34701e-07
1.41189e-07
-3.23139e-07
1.41704e-07
-3.11775e-07
1.42185e-07
-3.00603e-07
1.42633e-07
-2.89617e-07
1.43051e-07
-2.78809e-07
1.43441e-07
-2.68174e-07
1.43804e-07
-2.57705e-07
1.44143e-07
-2.47396e-07
1.44459e-07
-2.3724e-07
1.44753e-07
-2.27232e-07
1.45028e-07
-2.17365e-07
1.45284e-07
-2.07634e-07
1.45522e-07
-1.98031e-07
1.45745e-07
-1.88552e-07
1.45953e-07
-1.7919e-07
1.46147e-07
-1.69939e-07
1.46329e-07
-1.60794e-07
1.46499e-07
-1.51749e-07
1.46658e-07
-1.42797e-07
1.46807e-07
-1.33935e-07
1.46946e-07
-1.25154e-07
1.47077e-07
-1.16452e-07
1.47199e-07
-1.0782e-07
1.47311e-07
-9.92543e-08
1.47409e-07
-9.0748e-08
1.47483e-07
-8.22943e-08
1.47512e-07
-7.38845e-08
1.47448e-07
-6.55078e-08
1.47197e-07
-5.715e-08
1.46575e-07
-4.87941e-08
1.45238e-07
-4.0425e-08
1.4258e-07
-3.20458e-08
1.37593e-07
-2.37163e-08
1.28729e-07
-1.56331e-08
1.13861e-07
-8.26655e-09
9.06214e-08
-2.54656e-09
5.76314e-08
1.7509e-08
-1.15305e-06
-1.73759e-07
-1.15735e-06
-1.61774e-07
-1.15941e-06
-1.49972e-07
-1.15938e-06
-1.38373e-07
-1.15742e-06
-1.27003e-07
-1.15366e-06
-1.15884e-07
-1.14826e-06
-1.05033e-07
-1.14134e-06
-9.44638e-08
-1.13304e-06
-8.41898e-08
-1.12348e-06
-7.42187e-08
-1.11278e-06
-6.45578e-08
-1.10107e-06
-5.52093e-08
-1.08843e-06
-4.61817e-08
-1.07497e-06
-3.74755e-08
-1.06076e-06
-2.90834e-08
-1.04593e-06
-2.10039e-08
-1.03045e-06
-1.32103e-08
-1.01442e-06
-5.75971e-09
-9.98043e-07
1.503e-09
-9.81333e-07
8.41555e-09
-9.64335e-07
1.50276e-08
-9.47101e-07
2.13563e-08
-9.29681e-07
2.74107e-08
-9.1212e-07
3.31996e-08
-8.9446e-07
3.87311e-08
-8.76741e-07
4.40137e-08
-8.58997e-07
4.90555e-08
-8.41261e-07
5.3865e-08
-8.23561e-07
5.84504e-08
-8.05924e-07
6.282e-08
-7.88373e-07
6.69819e-08
-7.70929e-07
7.09442e-08
-7.53612e-07
7.47149e-08
-7.36436e-07
7.83016e-08
-7.19418e-07
8.17119e-08
-7.0257e-07
8.49533e-08
-6.85902e-07
8.8033e-08
-6.69426e-07
9.09579e-08
-6.53148e-07
9.37347e-08
-6.37076e-07
9.63702e-08
-6.21215e-07
9.88705e-08
-6.0557e-07
1.01242e-07
-5.90144e-07
1.0349e-07
-5.74941e-07
1.05621e-07
-5.59961e-07
1.0764e-07
-5.45207e-07
1.09552e-07
-5.30677e-07
1.11362e-07
-5.16373e-07
1.13076e-07
-5.02293e-07
1.14698e-07
-4.88436e-07
1.16233e-07
-4.74799e-07
1.17684e-07
-4.61382e-07
1.19056e-07
-4.48181e-07
1.20353e-07
-4.35193e-07
1.21579e-07
-4.22415e-07
1.22736e-07
-4.09843e-07
1.2383e-07
-3.97474e-07
1.24863e-07
-3.85304e-07
1.25838e-07
-3.73329e-07
1.26758e-07
-3.61544e-07
1.27627e-07
-3.49945e-07
1.28446e-07
-3.38527e-07
1.29219e-07
-3.27287e-07
1.29948e-07
-3.16218e-07
1.30635e-07
-3.05317e-07
1.31283e-07
-2.94578e-07
1.31894e-07
-2.83997e-07
1.3247e-07
-2.73568e-07
1.33012e-07
-2.63287e-07
1.33523e-07
-2.53148e-07
1.34005e-07
-2.43147e-07
1.34458e-07
-2.33279e-07
1.34885e-07
-2.23538e-07
1.35287e-07
-2.13919e-07
1.35665e-07
-2.04418e-07
1.36021e-07
-1.9503e-07
1.36356e-07
-1.85749e-07
1.36672e-07
-1.7657e-07
1.36968e-07
-1.67489e-07
1.37247e-07
-1.585e-07
1.3751e-07
-1.49599e-07
1.37756e-07
-1.4078e-07
1.37988e-07
-1.3204e-07
1.38206e-07
-1.23372e-07
1.38409e-07
-1.14771e-07
1.38599e-07
-1.06234e-07
1.38774e-07
-9.77543e-08
1.38929e-07
-8.93268e-08
1.39056e-07
-8.09451e-08
1.3913e-07
-7.26016e-08
1.39105e-07
-6.42866e-08
1.38882e-07
-5.5988e-08
1.38276e-07
-4.76923e-08
1.36942e-07
-3.93908e-08
1.34278e-07
-3.10965e-08
1.29299e-07
-2.28843e-08
1.20517e-07
-1.49683e-08
1.05945e-07
-7.82814e-09
8.34812e-08
-2.3678e-09
5.21711e-08
1.51412e-08
-9.80939e-07
-1.64454e-07
-9.88209e-07
-1.54505e-07
-9.93569e-07
-1.44612e-07
-9.97127e-07
-1.34815e-07
-9.98987e-07
-1.25143e-07
-9.99254e-07
-1.15617e-07
-9.9803e-07
-1.06256e-07
-9.95417e-07
-9.70773e-08
-9.91514e-07
-8.80936e-08
-9.86415e-07
-7.93176e-08
-9.80215e-07
-7.07582e-08
-9.73e-07
-6.24244e-08
-9.64858e-07
-5.43228e-08
-9.55878e-07
-4.64562e-08
-9.46133e-07
-3.88286e-08
-9.35696e-07
-3.1441e-08
-9.24596e-07
-2.43099e-08
-9.12965e-07
-1.73908e-08
-9.00721e-07
-1.07416e-08
-8.87949e-07
-4.35632e-09
-8.7489e-07
1.96821e-09
-8.61496e-07
7.96226e-09
-8.47807e-07
1.3722e-08
-8.33866e-07
1.92581e-08
-8.19711e-07
2.45769e-08
-8.05382e-07
2.96841e-08
-7.90912e-07
3.45854e-08
-7.76333e-07
3.92866e-08
-7.61676e-07
4.37933e-08
-7.46968e-07
4.81116e-08
-7.32233e-07
5.22471e-08
-7.17495e-07
5.6206e-08
-7.02774e-07
5.9994e-08
-6.88089e-07
6.36169e-08
-6.73458e-07
6.70807e-08
-6.58895e-07
7.0391e-08
-6.44416e-07
7.35534e-08
-6.30031e-07
7.65736e-08
-6.15753e-07
7.94568e-08
-6.01591e-07
8.22083e-08
-5.87554e-07
8.48334e-08
-5.73649e-07
8.7337e-08
-5.59883e-07
8.97241e-08
-5.46262e-07
9.19994e-08
-5.3279e-07
9.41675e-08
-5.19471e-07
9.62329e-08
-5.06308e-07
9.81998e-08
-4.93304e-07
1.00073e-07
-4.80461e-07
1.01855e-07
-4.67779e-07
1.03552e-07
-4.55261e-07
1.05166e-07
-4.42906e-07
1.06701e-07
-4.30714e-07
1.0816e-07
-4.18684e-07
1.09548e-07
-4.06815e-07
1.10868e-07
-3.95106e-07
1.12121e-07
-3.83555e-07
1.13313e-07
-3.72161e-07
1.14444e-07
-3.60922e-07
1.15519e-07
-3.49834e-07
1.16539e-07
-3.38895e-07
1.17508e-07
-3.28103e-07
1.18427e-07
-3.17455e-07
1.193e-07
-3.06947e-07
1.20127e-07
-2.96576e-07
1.20913e-07
-2.86339e-07
1.21657e-07
-2.76232e-07
1.22363e-07
-2.66252e-07
1.23032e-07
-2.56394e-07
1.23666e-07
-2.46656e-07
1.24267e-07
-2.37034e-07
1.24835e-07
-2.27523e-07
1.25374e-07
-2.18119e-07
1.25883e-07
-2.0882e-07
1.26365e-07
-1.9962e-07
1.26821e-07
-1.90515e-07
1.27252e-07
-1.81503e-07
1.27659e-07
-1.72577e-07
1.28043e-07
-1.63735e-07
1.28405e-07
-1.54972e-07
1.28747e-07
-1.46284e-07
1.29069e-07
-1.37667e-07
1.29371e-07
-1.29117e-07
1.29656e-07
-1.2063e-07
1.29922e-07
-1.12201e-07
1.3017e-07
-1.03826e-07
1.30399e-07
-9.55e-08
1.30604e-07
-8.72191e-08
1.30775e-07
-7.89772e-08
1.30888e-07
-7.07677e-08
1.30895e-07
-6.25822e-08
1.30697e-07
-5.44105e-08
1.30105e-07
-4.6243e-08
1.28775e-07
-3.80769e-08
1.26112e-07
-2.99353e-08
1.21157e-07
-2.19064e-08
1.12488e-07
-1.42183e-08
9.82567e-08
-7.35394e-09
7.66169e-08
-2.18329e-09
4.70004e-08
1.29578e-08
-8.39164e-07
-1.54288e-07
-8.47672e-07
-1.45997e-07
-8.54627e-07
-1.37658e-07
-8.60099e-07
-1.29343e-07
-8.64157e-07
-1.21085e-07
-8.6687e-07
-1.12905e-07
-8.68306e-07
-1.04821e-07
-8.68533e-07
-9.68499e-08
-8.6762e-07
-8.90064e-08
-8.65634e-07
-8.13033e-08
-8.62641e-07
-7.37512e-08
-8.58706e-07
-6.63592e-08
-8.53893e-07
-5.91357e-08
-8.48262e-07
-5.2087e-08
-8.41876e-07
-4.52147e-08
-8.3479e-07
-3.85268e-08
-8.27075e-07
-3.20249e-08
-8.18749e-07
-2.57167e-08
-8.09903e-07
-1.95877e-08
-8.00604e-07
-1.36554e-08
-7.90712e-07
-7.92383e-09
-7.8041e-07
-2.34023e-09
-7.69808e-07
3.11995e-09
-7.5889e-07
8.34011e-09
-7.47689e-07
1.33763e-08
-7.36239e-07
1.82342e-08
-7.24572e-07
2.29182e-08
-7.12717e-07
2.74322e-08
-7.00704e-07
3.17801e-08
-6.88558e-07
3.5966e-08
-6.76305e-07
3.99938e-08
-6.63967e-07
4.38677e-08
-6.51565e-07
4.7592e-08
-6.39119e-07
5.11709e-08
-6.26647e-07
5.46086e-08
-6.14166e-07
5.79094e-08
-6.0169e-07
6.10775e-08
-5.89233e-07
6.41172e-08
-5.76809e-07
6.70326e-08
-5.64428e-07
6.98279e-08
-5.52102e-07
7.25072e-08
-5.39839e-07
7.50744e-08
-5.27649e-07
7.75335e-08
-5.15538e-07
7.98883e-08
-5.03513e-07
8.21427e-08
-4.9158e-07
8.43003e-08
-4.79745e-07
8.63647e-08
-4.68012e-07
8.83393e-08
-4.56384e-07
9.02277e-08
-4.44866e-07
9.20332e-08
-4.33459e-07
9.37588e-08
-4.22166e-07
9.54078e-08
-4.10989e-07
9.69832e-08
-3.99928e-07
9.84879e-08
-3.88985e-07
9.99247e-08
-3.7816e-07
1.01296e-07
-3.67453e-07
1.02606e-07
-3.56864e-07
1.03855e-07
-3.46393e-07
1.05047e-07
-3.36037e-07
1.06184e-07
-3.25797e-07
1.07268e-07
-3.15671e-07
1.08301e-07
-3.05658e-07
1.09286e-07
-2.95755e-07
1.10225e-07
-2.85961e-07
1.11119e-07
-2.76274e-07
1.1197e-07
-2.66691e-07
1.1278e-07
-2.5721e-07
1.13551e-07
-2.47829e-07
1.14285e-07
-2.38545e-07
1.14982e-07
-2.29355e-07
1.15645e-07
-2.20256e-07
1.16275e-07
-2.11245e-07
1.16873e-07
-2.0232e-07
1.1744e-07
-1.93477e-07
1.17979e-07
-1.84714e-07
1.18488e-07
-1.76026e-07
1.18971e-07
-1.67412e-07
1.19428e-07
-1.58867e-07
1.1986e-07
-1.50388e-07
1.20268e-07
-1.41971e-07
1.20652e-07
-1.33615e-07
1.21014e-07
-1.25314e-07
1.21355e-07
-1.17065e-07
1.21673e-07
-1.08866e-07
1.2197e-07
-1.00712e-07
1.22244e-07
-9.25991e-08
1.22491e-07
-8.45237e-08
1.22699e-07
-7.64806e-08
1.22845e-07
-6.84642e-08
1.22878e-07
-6.04674e-08
1.227e-07
-5.24823e-08
1.22119e-07
-4.45028e-08
1.20795e-07
-3.65323e-08
1.18142e-07
-2.86027e-08
1.13228e-07
-2.08141e-08
1.04699e-07
-1.34052e-08
9.08477e-08
-6.85662e-09
7.00682e-08
-1.99738e-09
4.2141e-08
1.09603e-08
-7.21068e-07
-1.44213e-07
-7.29827e-07
-1.37237e-07
-7.37368e-07
-1.30117e-07
-7.43736e-07
-1.22975e-07
-7.4897e-07
-1.1585e-07
-7.53111e-07
-1.08765e-07
-7.56195e-07
-1.01737e-07
-7.58264e-07
-9.47812e-08
-7.59359e-07
-8.79118e-08
-7.59522e-07
-8.11401e-08
-7.58797e-07
-7.44761e-08
-7.57228e-07
-6.79283e-08
-7.54859e-07
-6.15043e-08
-7.51737e-07
-5.52098e-08
-7.47901e-07
-4.90508e-08
-7.43397e-07
-4.30305e-08
-7.38267e-07
-3.71544e-08
-7.32561e-07
-3.14227e-08
-7.26311e-07
-2.58384e-08
-7.19568e-07
-2.03984e-08
-7.12383e-07
-1.51083e-08
-7.04747e-07
-9.97605e-09
-6.96618e-07
-5.00929e-09
-6.88165e-07
-1.12366e-10
-6.79414e-07
4.62554e-09
-6.70373e-07
9.19245e-09
-6.61067e-07
1.36124e-08
-6.51524e-07
1.78893e-08
-6.41769e-07
2.20259e-08
-6.31828e-07
2.60249e-08
-6.21723e-07
2.9889e-08
-6.11477e-07
3.3621e-08
-6.01108e-07
3.72237e-08
-5.90638e-07
4.07e-08
-5.80082e-07
4.40531e-08
-5.69458e-07
4.72858e-08
-5.58782e-07
5.04013e-08
-5.48068e-07
5.34027e-08
-5.37328e-07
5.62931e-08
-5.26576e-07
5.90756e-08
-5.15823e-07
6.17534e-08
-5.05078e-07
6.43295e-08
-4.94352e-07
6.6807e-08
-4.83652e-07
6.91889e-08
-4.72987e-07
7.14783e-08
-4.62365e-07
7.36779e-08
-4.51791e-07
7.57908e-08
-4.41271e-07
7.78198e-08
-4.30812e-07
7.97677e-08
-4.20416e-07
8.16372e-08
-4.10088e-07
8.34309e-08
-3.99832e-07
8.51516e-08
-3.89651e-07
8.68016e-08
-3.79547e-07
8.83836e-08
-3.69522e-07
8.98999e-08
-3.59578e-07
9.13528e-08
-3.49717e-07
9.27446e-08
-3.39939e-07
9.40776e-08
-3.30246e-07
9.53537e-08
-3.20637e-07
9.65752e-08
-3.11113e-07
9.7744e-08
-3.01674e-07
9.88621e-08
-2.92319e-07
9.99313e-08
-2.83048e-07
1.00953e-07
-2.73859e-07
1.0193e-07
-2.64752e-07
1.02863e-07
-2.55726e-07
1.03754e-07
-2.46779e-07
1.04604e-07
-2.3791e-07
1.05416e-07
-2.29117e-07
1.06189e-07
-2.20398e-07
1.06926e-07
-2.11751e-07
1.07628e-07
-2.03175e-07
1.08297e-07
-1.94667e-07
1.08932e-07
-1.86225e-07
1.09537e-07
-1.77847e-07
1.1011e-07
-1.6953e-07
1.10654e-07
-1.61271e-07
1.1117e-07
-1.53069e-07
1.11658e-07
-1.44921e-07
1.1212e-07
-1.36824e-07
1.12555e-07
-1.28775e-07
1.12966e-07
-1.20772e-07
1.13352e-07
-1.12812e-07
1.13713e-07
-1.04891e-07
1.1405e-07
-9.70078e-08
1.14361e-07
-8.91579e-08
1.14641e-07
-8.13381e-08
1.14879e-07
-7.35442e-08
1.15051e-07
-6.57716e-08
1.15106e-07
-5.80145e-08
1.14943e-07
-5.02674e-08
1.14372e-07
-4.25275e-08
1.13055e-07
-3.48042e-08
1.10418e-07
-2.71374e-08
1.05561e-07
-1.96374e-08
9.71991e-08
-1.25497e-08
8.37599e-08
-6.34733e-09
6.38657e-08
-1.81345e-09
3.7607e-08
9.14691e-09
-6.20393e-07
-1.34477e-07
-6.29082e-07
-1.28548e-07
-6.36822e-07
-1.22378e-07
-6.43642e-07
-1.16154e-07
-6.49563e-07
-1.0993e-07
-6.54598e-07
-1.03729e-07
-6.58766e-07
-9.7569e-08
-6.62084e-07
-9.14631e-08
-6.64574e-07
-8.54222e-08
-6.66259e-07
-7.94553e-08
-6.67165e-07
-7.35698e-08
-6.67321e-07
-6.77725e-08
-6.66756e-07
-6.20688e-08
-6.65502e-07
-5.64633e-08
-6.63592e-07
-5.09607e-08
-6.61059e-07
-4.55639e-08
-6.57936e-07
-4.02768e-08
-6.54257e-07
-3.51018e-08
-6.50052e-07
-3.00429e-08
-6.45355e-07
-2.50959e-08
-6.40191e-07
-2.02721e-08
-6.34608e-07
-1.55589e-08
-6.28649e-07
-1.09685e-08
-6.22246e-07
-6.51548e-09
-6.15465e-07
-2.15485e-09
-6.08409e-07
2.13592e-09
-6.01066e-07
6.26991e-09
-5.93459e-07
1.02817e-08
-5.85608e-07
1.41758e-08
-5.77538e-07
1.79542e-08
-5.69268e-07
2.16187e-08
-5.60818e-07
2.51711e-08
-5.52207e-07
2.86132e-08
-5.43454e-07
3.19469e-08
-5.34575e-07
3.51742e-08
-5.25586e-07
3.82971e-08
-5.16503e-07
4.13177e-08
-5.07339e-07
4.42383e-08
-4.98107e-07
4.7061e-08
-4.88819e-07
4.97882e-08
-4.79488e-07
5.2422e-08
-4.70123e-07
5.49648e-08
-4.60735e-07
5.74189e-08
-4.51333e-07
5.97866e-08
-4.41925e-07
6.20701e-08
-4.32519e-07
6.42718e-08
-4.23122e-07
6.63939e-08
-4.13741e-07
6.84386e-08
-4.04381e-07
7.04081e-08
-3.95049e-07
7.23046e-08
-3.85748e-07
7.41303e-08
-3.76484e-07
7.58873e-08
-3.6726e-07
7.75777e-08
-3.5808e-07
7.92034e-08
-3.48947e-07
8.07666e-08
-3.39864e-07
8.22691e-08
-3.30832e-07
8.37128e-08
-3.21854e-07
8.50996e-08
-3.12932e-07
8.64314e-08
-3.04067e-07
8.77097e-08
-2.95259e-07
8.89365e-08
-2.86511e-07
9.01133e-08
-2.77821e-07
9.12418e-08
-2.69191e-07
9.23234e-08
-2.60621e-07
9.33598e-08
-2.52111e-07
9.43523e-08
-2.43659e-07
9.53024e-08
-2.35266e-07
9.62114e-08
-2.26931e-07
9.70806e-08
-2.18654e-07
9.79113e-08
-2.10432e-07
9.87046e-08
-2.02265e-07
9.94617e-08
-1.94152e-07
1.00184e-07
-1.86092e-07
1.00872e-07
-1.78082e-07
1.01527e-07
-1.70122e-07
1.0215e-07
-1.6221e-07
1.02742e-07
-1.54343e-07
1.03303e-07
-1.4652e-07
1.03836e-07
-1.3874e-07
1.04339e-07
-1.30999e-07
1.04815e-07
-1.23297e-07
1.05263e-07
-1.1563e-07
1.05685e-07
-1.07998e-07
1.0608e-07
-1.00396e-07
1.06449e-07
-9.2824e-08
1.06788e-07
-8.52781e-08
1.07095e-07
-7.77557e-08
1.07356e-07
-7.02534e-08
1.07548e-07
-6.27672e-08
1.07619e-07
-5.52929e-08
1.07468e-07
-4.7827e-08
1.06906e-07
-4.03705e-08
1.05599e-07
-3.29376e-08
1.02985e-07
-2.5576e-08
9.81994e-08
-1.84036e-08
9.00268e-08
-1.16699e-08
7.70261e-08
-5.83565e-09
5.80314e-08
-1.6342e-09
3.34055e-08
7.51267e-09
-5.31247e-07
-1.245e-07
-5.40282e-07
-1.19513e-07
-5.4848e-07
-1.1418e-07
-5.55876e-07
-1.08759e-07
-5.62485e-07
-1.03321e-07
-5.68318e-07
-9.78963e-08
-5.73385e-07
-9.25023e-08
-5.77697e-07
-8.71509e-08
-5.81269e-07
-8.18506e-08
-5.84116e-07
-7.66077e-08
-5.86259e-07
-7.14271e-08
-5.87719e-07
-6.63132e-08
-5.88518e-07
-6.12695e-08
-5.88682e-07
-5.62998e-08
-5.88235e-07
-5.14068e-08
-5.87206e-07
-4.65937e-08
-5.8562e-07
-4.18629e-08
-5.83504e-07
-3.72169e-08
-5.80889e-07
-3.26579e-08
-5.77797e-07
-2.81881e-08
-5.74262e-07
-2.38074e-08
-5.70301e-07
-1.95202e-08
-5.6594e-07
-1.53288e-08
-5.61231e-07
-1.12252e-08
-5.56154e-07
-7.23167e-09
-5.50684e-07
-3.33339e-09
-5.44946e-07
5.32147e-10
-5.38938e-07
4.27365e-09
-5.32674e-07
7.91101e-09
-5.2617e-07
1.14509e-08
-5.19447e-07
1.48954e-08
-5.12521e-07
1.82457e-08
-5.05411e-07
2.15029e-08
-4.98132e-07
2.46682e-08
-4.90701e-07
2.77427e-08
-4.83132e-07
3.07277e-08
-4.75439e-07
3.36246e-08
-4.67635e-07
3.64347e-08
-4.59734e-07
3.91597e-08
-4.51747e-07
4.18008e-08
-4.43685e-07
4.43598e-08
-4.35558e-07
4.68383e-08
-4.27376e-07
4.92378e-08
-4.19149e-07
5.156e-08
-4.10886e-07
5.38066e-08
-4.02593e-07
5.59792e-08
-3.94279e-07
5.80797e-08
-3.8595e-07
6.01096e-08
-3.77613e-07
6.20707e-08
-3.69273e-07
6.39647e-08
-3.60936e-07
6.57932e-08
-3.52607e-07
6.75579e-08
-3.4429e-07
6.92604e-08
-3.35989e-07
7.09024e-08
-3.27708e-07
7.24855e-08
-3.1945e-07
7.40112e-08
-3.11218e-07
7.54812e-08
-3.03016e-07
7.68968e-08
-2.94844e-07
7.82598e-08
-2.86706e-07
7.95714e-08
-2.78603e-07
8.08331e-08
-2.70535e-07
8.20464e-08
-2.62506e-07
8.32125e-08
-2.54515e-07
8.43328e-08
-2.46564e-07
8.54086e-08
-2.38653e-07
8.6441e-08
-2.30782e-07
8.74314e-08
-2.22952e-07
8.83809e-08
-2.15162e-07
8.92906e-08
-2.07412e-07
9.01617e-08
-1.99703e-07
9.0995e-08
-1.92033e-07
9.17917e-08
-1.84402e-07
9.25528e-08
-1.76809e-07
9.3279e-08
-1.69253e-07
9.39714e-08
-1.61734e-07
9.46308e-08
-1.5425e-07
9.52579e-08
-1.468e-07
9.58537e-08
-1.39384e-07
9.64188e-08
-1.31998e-07
9.69539e-08
-1.24643e-07
9.74597e-08
-1.17317e-07
9.79368e-08
-1.10017e-07
9.83855e-08
-1.02743e-07
9.88061e-08
-9.54927e-08
9.91981e-08
-8.8264e-08
9.95596e-08
-8.1055e-08
9.98856e-08
-7.38634e-08
1.00165e-07
-6.66866e-08
1.00371e-07
-5.95216e-08
1.00454e-07
-5.23655e-08
1.00312e-07
-4.52169e-08
9.97574e-08
-3.80798e-08
9.84613e-08
-3.09736e-08
9.58788e-08
-2.39517e-08
9.11774e-08
-1.71382e-08
8.32132e-08
-1.07829e-08
7.0671e-08
-5.3306e-09
5.25793e-08
-1.46231e-09
2.95375e-08
6.05066e-09
-4.50843e-07
-1.13436e-07
-4.60903e-07
-1.09453e-07
-4.70065e-07
-1.05018e-07
-4.78378e-07
-1.00445e-07
-4.85876e-07
-9.58239e-08
-4.92582e-07
-9.11902e-08
-4.9852e-07
-8.65637e-08
-5.03715e-07
-8.19569e-08
-5.08187e-07
-7.73781e-08
-5.11962e-07
-7.28333e-08
-5.15062e-07
-6.8327e-08
-5.17512e-07
-6.3863e-08
-5.19337e-07
-5.94446e-08
-5.20561e-07
-5.50752e-08
-5.2121e-07
-5.07576e-08
-5.21309e-07
-4.64947e-08
-5.20883e-07
-4.22894e-08
-5.19955e-07
-3.81443e-08
-5.18551e-07
-3.40619e-08
-5.16695e-07
-3.00446e-08
-5.14408e-07
-2.60941e-08
-5.11716e-07
-2.22114e-08
-5.08643e-07
-1.84018e-08
-5.05207e-07
-1.46613e-08
-5.01443e-07
-1.09963e-08
-4.97369e-07
-7.40663e-09
-4.92938e-07
-3.89966e-09
-4.88187e-07
-4.77118e-10
-4.83223e-07
2.94705e-09
-4.78014e-07
6.24251e-09
-4.72577e-07
9.45829e-09
-4.66927e-07
1.25958e-08
-4.6108e-07
1.56558e-08
-4.55051e-07
1.86387e-08
-4.48854e-07
2.15451e-08
-4.42502e-07
2.43756e-08
-4.36008e-07
2.71309e-08
-4.29385e-07
2.98118e-08
-4.22645e-07
3.24191e-08
-4.15798e-07
3.49538e-08
-4.08855e-07
3.74167e-08
-4.01825e-07
3.9809e-08
-3.94719e-07
4.21317e-08
-3.87545e-07
4.43859e-08
-3.80311e-07
4.65728e-08
-3.73026e-07
4.86936e-08
-3.65695e-07
5.07494e-08
-3.58327e-07
5.27415e-08
-3.50927e-07
5.46711e-08
-3.43502e-07
5.65396e-08
-3.36057e-07
5.8348e-08
-3.28597e-07
6.00979e-08
-3.21127e-07
6.17902e-08
-3.13651e-07
6.34265e-08
-3.06174e-07
6.50078e-08
-2.98698e-07
6.65354e-08
-2.91228e-07
6.80106e-08
-2.83766e-07
6.94346e-08
-2.76314e-07
7.08086e-08
-2.68877e-07
7.21337e-08
-2.61455e-07
7.34113e-08
-2.54051e-07
7.46423e-08
-2.46667e-07
7.58278e-08
-2.39303e-07
7.69691e-08
-2.31962e-07
7.80671e-08
-2.24644e-07
7.91229e-08
-2.1735e-07
8.01375e-08
-2.10081e-07
8.11119e-08
-2.02837e-07
8.2047e-08
-1.95619e-07
8.29438e-08
-1.88428e-07
8.38031e-08
-1.81262e-07
8.46259e-08
-1.74122e-07
8.54129e-08
-1.67008e-07
8.61649e-08
-1.5992e-07
8.68828e-08
-1.52856e-07
8.75671e-08
-1.45817e-07
8.82188e-08
-1.38801e-07
8.88383e-08
-1.31808e-07
8.94264e-08
-1.24838e-07
8.99837e-08
-1.17889e-07
9.05107e-08
-1.1096e-07
9.10079e-08
-1.0405e-07
9.14757e-08
-9.71579e-08
9.19142e-08
-9.02827e-08
9.23228e-08
-8.34229e-08
9.26996e-08
-7.65768e-08
9.30394e-08
-6.97426e-08
9.33303e-08
-6.29183e-08
9.35471e-08
-5.6102e-08
9.36378e-08
-4.92919e-08
9.3502e-08
-4.24888e-08
9.29546e-08
-3.56997e-08
9.16725e-08
-2.89481e-08
8.91274e-08
-2.22927e-08
8.45221e-08
-1.58613e-08
7.67818e-08
-9.90136e-09
6.4711e-08
-4.83822e-09
4.7516e-08
-1.2993e-09
2.59984e-08
4.75121e-09
-3.8175e-07
-1.01273e-07
-3.92825e-07
-9.83795e-08
-4.0289e-07
-9.49533e-08
-4.12007e-07
-9.13279e-08
-4.20226e-07
-8.76046e-08
-4.27594e-07
-8.38226e-08
-4.34154e-07
-8.00036e-08
-4.39949e-07
-7.61626e-08
-4.45016e-07
-7.23107e-08
-4.49393e-07
-6.84564e-08
-4.53113e-07
-6.46068e-08
-4.56208e-07
-6.07679e-08
-4.58708e-07
-5.6945e-08
-4.6064e-07
-5.31428e-08
-4.62032e-07
-4.93659e-08
-4.62908e-07
-4.56183e-08
-4.63294e-07
-4.19042e-08
-4.63211e-07
-3.82267e-08
-4.62684e-07
-3.45895e-08
-4.61733e-07
-3.09955e-08
-4.60379e-07
-2.74476e-08
-4.58643e-07
-2.39478e-08
-4.56545e-07
-2.05001e-08
-4.54101e-07
-1.71053e-08
-4.51333e-07
-1.37642e-08
-4.48255e-07
-1.04847e-08
-4.44897e-07
-7.25759e-09
-4.41278e-07
-4.09694e-09
-4.37315e-07
-1.01579e-09
-4.33157e-07
2.0853e-09
-4.28775e-07
5.07573e-09
-4.24179e-07
8.00024e-09
-4.19384e-07
1.08604e-08
-4.14402e-07
1.36566e-08
-4.09246e-07
1.63888e-08
-4.03928e-07
1.90572e-08
-3.98459e-07
2.16621e-08
-3.92851e-07
2.42036e-08
-3.87113e-07
2.6682e-08
-3.81257e-07
2.90979e-08
-3.75292e-07
3.14517e-08
-3.69227e-07
3.37439e-08
-3.6307e-07
3.59751e-08
-3.56831e-07
3.81462e-08
-3.50516e-07
4.02577e-08
-3.44133e-07
4.23104e-08
-3.37689e-07
4.43051e-08
-3.3119e-07
4.62427e-08
-3.24643e-07
4.8124e-08
-3.18053e-07
4.99498e-08
-3.11426e-07
5.17212e-08
-3.04767e-07
5.3439e-08
-2.98081e-07
5.51041e-08
-2.91372e-07
5.67174e-08
-2.84645e-07
5.82801e-08
-2.77903e-07
5.97928e-08
-2.71149e-07
6.12567e-08
-2.64387e-07
6.26727e-08
-2.5762e-07
6.40416e-08
-2.5085e-07
6.53645e-08
-2.44081e-07
6.66421e-08
-2.37314e-07
6.78756e-08
-2.30552e-07
6.90656e-08
-2.23796e-07
7.02132e-08
-2.17049e-07
7.13192e-08
-2.1031e-07
7.23845e-08
-2.03583e-07
7.34098e-08
-1.96867e-07
7.4396e-08
-1.90163e-07
7.53439e-08
-1.83473e-07
7.62541e-08
-1.76798e-07
7.71275e-08
-1.70136e-07
7.79648e-08
-1.6349e-07
7.87666e-08
-1.56859e-07
7.95337e-08
-1.50243e-07
8.02666e-08
-1.43642e-07
8.09661e-08
-1.37056e-07
8.16327e-08
-1.30485e-07
8.22669e-08
-1.23928e-07
8.28694e-08
-1.17385e-07
8.34407e-08
-1.10855e-07
8.39812e-08
-1.04338e-07
8.44913e-08
-9.78337e-08
8.49713e-08
-9.13405e-08
8.54212e-08
-8.48579e-08
8.58403e-08
-7.8385e-08
8.62267e-08
-7.19206e-08
8.6575e-08
-6.54636e-08
8.68732e-08
-5.90125e-08
8.70958e-08
-5.25662e-08
8.71913e-08
-4.61243e-08
8.70599e-08
-3.96892e-08
8.65193e-08
-3.32706e-08
8.52539e-08
-2.68955e-08
8.27524e-08
-2.06265e-08
7.82533e-08
-1.45934e-08
7.07489e-08
-9.03849e-09
5.91565e-08
-4.36499e-09
4.28429e-08
-1.1466e-09
2.27804e-08
3.60472e-09
-3.30994e-07
-8.9944e-08
-3.41441e-07
-8.79329e-08
-3.51022e-07
-8.53717e-08
-3.59762e-07
-8.25881e-08
-3.6769e-07
-7.96772e-08
-3.7484e-07
-7.66721e-08
-3.81253e-07
-7.3591e-08
-3.86967e-07
-7.04483e-08
-3.92021e-07
-6.72564e-08
-3.96451e-07
-6.40263e-08
-4.0029e-07
-6.07679e-08
-4.03569e-07
-5.74896e-08
-4.06314e-07
-5.41994e-08
-4.08553e-07
-5.09042e-08
-4.10309e-07
-4.76102e-08
-4.11604e-07
-4.43234e-08
-4.1246e-07
-4.10487e-08
-4.12895e-07
-3.77911e-08
-4.1293e-07
-3.45547e-08
-4.12582e-07
-3.13435e-08
-4.11869e-07
-2.81608e-08
-4.10807e-07
-2.50101e-08
-4.09413e-07
-2.18939e-08
-4.07703e-07
-1.88151e-08
-4.05692e-07
-1.57753e-08
-4.03399e-07
-1.27782e-08
-4.00831e-07
-9.82525e-09
-3.98009e-07
-6.91903e-09
-3.94963e-07
-4.06137e-09
-3.91625e-07
-1.25298e-09
-3.88087e-07
1.53793e-09
-3.84347e-07
4.25919e-09
-3.80412e-07
6.92572e-09
-3.76295e-07
9.53894e-09
-3.72005e-07
1.20989e-08
-3.67553e-07
1.46054e-08
-3.62949e-07
1.70583e-08
-3.58203e-07
1.94574e-08
-3.53324e-07
2.18029e-08
-3.48321e-07
2.40946e-08
-3.43202e-07
2.63328e-08
-3.37976e-07
2.85176e-08
-3.3265e-07
3.06493e-08
-3.27232e-07
3.27282e-08
-3.21729e-07
3.47546e-08
-3.16148e-07
3.67291e-08
-3.10495e-07
3.8652e-08
-3.04776e-07
4.05239e-08
-2.98997e-07
4.23453e-08
-2.93164e-07
4.41168e-08
-2.87281e-07
4.58389e-08
-2.81355e-07
4.75123e-08
-2.75388e-07
4.91377e-08
-2.69386e-07
5.07156e-08
-2.63353e-07
5.22469e-08
-2.57292e-07
5.37321e-08
-2.51208e-07
5.5172e-08
-2.45102e-07
5.65673e-08
-2.38979e-07
5.79187e-08
-2.32842e-07
5.92268e-08
-2.26692e-07
6.04925e-08
-2.20533e-07
6.17163e-08
-2.14366e-07
6.2899e-08
-2.08194e-07
6.40413e-08
-2.02018e-07
6.51438e-08
-1.95841e-07
6.62072e-08
-1.89663e-07
6.72321e-08
-1.83486e-07
6.82193e-08
-1.77312e-07
6.91694e-08
-1.71141e-07
7.00829e-08
-1.64974e-07
7.09605e-08
-1.58812e-07
7.18027e-08
-1.52656e-07
7.26102e-08
-1.46506e-07
7.33834e-08
-1.40362e-07
7.41229e-08
-1.34225e-07
7.48292e-08
-1.28095e-07
7.55028e-08
-1.21972e-07
7.61442e-08
-1.15856e-07
7.67537e-08
-1.09747e-07
7.73319e-08
-1.03645e-07
7.78792e-08
-9.75499e-08
7.83958e-08
-9.14607e-08
7.8882e-08
-8.53775e-08
7.93377e-08
-7.92995e-08
7.97622e-08
-7.32262e-08
8.01533e-08
-6.7157e-08
8.05057e-08
-6.10911e-08
8.08073e-08
-5.50277e-08
8.10325e-08
-4.89665e-08
8.11301e-08
-4.29083e-08
8.10016e-08
-3.68571e-08
8.0468e-08
-3.0825e-08
7.92217e-08
-2.4842e-08
7.67692e-08
-1.89732e-08
7.23842e-08
-1.33485e-08
6.5124e-08
-8.20266e-09
5.40104e-08
-3.91478e-09
3.85548e-08
-1.00544e-09
1.98708e-08
2.5992e-09
-2.97599e-07
-8.10351e-08
-3.0595e-07
-7.95827e-08
-3.13706e-07
-7.76161e-08
-3.20868e-07
-7.54257e-08
-3.27446e-07
-7.31e-08
-3.33453e-07
-7.06657e-08
-3.38908e-07
-6.8136e-08
-3.43833e-07
-6.55231e-08
-3.48251e-07
-6.28388e-08
-3.52182e-07
-6.0095e-08
-3.55648e-07
-5.73025e-08
-3.58666e-07
-5.44713e-08
-3.61255e-07
-5.16106e-08
-3.6343e-07
-4.87284e-08
-3.65209e-07
-4.58319e-08
-3.66605e-07
-4.29276e-08
-3.67632e-07
-4.00215e-08
-3.68304e-07
-3.71188e-08
-3.68634e-07
-3.42242e-08
-3.68636e-07
-3.13419e-08
-3.68321e-07
-2.84756e-08
-3.67702e-07
-2.56289e-08
-3.66791e-07
-2.28048e-08
-3.656e-07
-2.00061e-08
-3.6414e-07
-1.72357e-08
-3.62423e-07
-1.44954e-08
-3.6046e-07
-1.17877e-08
-3.58263e-07
-9.11592e-09
-3.55842e-07
-6.48286e-09
-3.53211e-07
-3.88421e-09
-3.50343e-07
-1.33036e-09
-3.47296e-07
1.2117e-09
-3.44067e-07
3.69655e-09
-3.40664e-07
6.13536e-09
-3.37094e-07
8.52958e-09
-3.33368e-07
1.0879e-08
-3.29493e-07
1.31834e-08
-3.25478e-07
1.54423e-08
-3.21331e-07
1.76555e-08
-3.17059e-07
1.98227e-08
-3.1267e-07
2.19439e-08
-3.08172e-07
2.40188e-08
-3.03571e-07
2.60476e-08
-2.98873e-07
2.80302e-08
-2.94085e-07
2.99667e-08
-2.89213e-07
3.18573e-08
-2.84263e-07
3.37022e-08
-2.79241e-07
3.55016e-08
-2.74152e-07
3.72559e-08
-2.69001e-07
3.89653e-08
-2.63793e-07
4.06302e-08
-2.58532e-07
4.2251e-08
-2.53222e-07
4.38281e-08
-2.47869e-07
4.5362e-08
-2.42475e-07
4.6853e-08
-2.37044e-07
4.83016e-08
-2.31581e-07
4.97084e-08
-2.26087e-07
5.10738e-08
-2.20567e-07
5.23983e-08
-2.15023e-07
5.36825e-08
-2.09457e-07
5.49268e-08
-2.03873e-07
5.61318e-08
-1.98272e-07
5.72979e-08
-1.92657e-07
5.84258e-08
-1.87029e-07
5.9516e-08
-1.8139e-07
6.05688e-08
-1.75743e-07
6.15848e-08
-1.70088e-07
6.25646e-08
-1.64427e-07
6.35086e-08
-1.58761e-07
6.44172e-08
-1.53091e-07
6.5291e-08
-1.47419e-07
6.61305e-08
-1.41745e-07
6.6936e-08
-1.36069e-07
6.7708e-08
-1.30393e-07
6.84469e-08
-1.24717e-07
6.91532e-08
-1.19041e-07
6.98273e-08
-1.13366e-07
7.04694e-08
-1.07693e-07
7.10801e-08
-1.0202e-07
7.16595e-08
-9.63486e-08
7.22081e-08
-9.06786e-08
7.27261e-08
-8.50098e-08
7.32136e-08
-7.93423e-08
7.36705e-08
-7.36756e-08
7.40959e-08
-6.80097e-08
7.44877e-08
-6.23441e-08
7.48404e-08
-5.66786e-08
7.5142e-08
-5.1013e-08
7.5367e-08
-4.53475e-08
7.54647e-08
-3.9684e-08
7.53381e-08
-3.4028e-08
7.4812e-08
-2.83936e-08
7.35873e-08
-2.28127e-08
7.11882e-08
-1.73521e-08
6.69236e-08
-1.214e-08
5.99119e-08
-7.40168e-09
4.92721e-08
-3.49054e-09
3.46437e-08
-8.75603e-10
1.7256e-08
1.72361e-09
-2.78066e-07
-7.62364e-08
-2.82871e-07
-7.47784e-08
-2.876e-07
-7.28865e-08
-2.92193e-07
-7.08331e-08
-2.96598e-07
-6.86946e-08
-3.00778e-07
-6.64862e-08
-3.04704e-07
-6.42103e-08
-3.08356e-07
-6.18702e-08
-3.11724e-07
-5.94715e-08
-3.14798e-07
-5.70213e-08
-3.17573e-07
-5.4527e-08
-3.20049e-07
-5.19961e-08
-3.22224e-07
-4.94357e-08
-3.241e-07
-4.68524e-08
-3.2568e-07
-4.42521e-08
-3.26967e-07
-4.16403e-08
-3.27967e-07
-3.90221e-08
-3.28684e-07
-3.64019e-08
-3.29124e-07
-3.37839e-08
-3.29295e-07
-3.11718e-08
-3.29201e-07
-2.85691e-08
-3.28851e-07
-2.59788e-08
-3.28252e-07
-2.34037e-08
-3.27412e-07
-2.08465e-08
-3.26338e-07
-1.83095e-08
-3.25039e-07
-1.57946e-08
-3.23522e-07
-1.33049e-08
-3.21796e-07
-1.08416e-08
-3.19873e-07
-8.40628e-09
-3.17755e-07
-6.0019e-09
-3.15454e-07
-3.63088e-09
-3.12949e-07
-1.2931e-09
-3.10284e-07
1.03161e-09
-3.07459e-07
3.31011e-09
-3.04479e-07
5.54976e-09
-3.01352e-07
7.75156e-09
-2.98083e-07
9.91522e-09
-2.94682e-07
1.20403e-08
-2.91152e-07
1.41263e-08
-2.87503e-07
1.61729e-08
-2.83739e-07
1.81797e-08
-2.79867e-07
2.01465e-08
-2.75893e-07
2.20731e-08
-2.71822e-07
2.39593e-08
-2.6766e-07
2.5805e-08
-2.63413e-07
2.76102e-08
-2.59086e-07
2.93748e-08
-2.54683e-07
3.10989e-08
-2.5021e-07
3.27826e-08
-2.45671e-07
3.4426e-08
-2.4107e-07
3.60293e-08
-2.36412e-07
3.75927e-08
-2.317e-07
3.91163e-08
-2.26939e-07
4.06006e-08
-2.22131e-07
4.20456e-08
-2.17282e-07
4.34517e-08
-2.12392e-07
4.48192e-08
-2.07467e-07
4.61485e-08
-2.02509e-07
4.74397e-08
-1.9752e-07
4.86934e-08
-1.92503e-07
4.99098e-08
-1.8746e-07
5.10892e-08
-1.82394e-07
5.22322e-08
-1.77307e-07
5.3339e-08
-1.72201e-07
5.44099e-08
-1.67078e-07
5.54455e-08
-1.61939e-07
5.64459e-08
-1.56786e-07
5.74117e-08
-1.5162e-07
5.83431e-08
-1.46444e-07
5.92405e-08
-1.41257e-07
6.01044e-08
-1.36062e-07
6.09349e-08
-1.30859e-07
6.17326e-08
-1.25648e-07
6.24976e-08
-1.20432e-07
6.32304e-08
-1.1521e-07
6.39313e-08
-1.09983e-07
6.46005e-08
-1.04752e-07
6.52383e-08
-9.95175e-08
6.58451e-08
-9.42793e-08
6.64211e-08
-8.90379e-08
6.69665e-08
-8.37937e-08
6.74816e-08
-7.85467e-08
6.79663e-08
-7.3297e-08
6.84206e-08
-6.80448e-08
6.88434e-08
-6.27899e-08
6.92326e-08
-5.75325e-08
6.95828e-08
-5.22725e-08
6.98818e-08
-4.70102e-08
7.01045e-08
-4.17466e-08
7.02009e-08
-3.64842e-08
7.00757e-08
-3.123e-08
6.95577e-08
-2.59996e-08
6.83567e-08
-2.08262e-08
6.60149e-08
-1.57771e-08
6.18745e-08
-1.09773e-08
5.51121e-08
-6.6408e-09
4.49356e-08
-3.09442e-09
3.10973e-08
-7.57715e-10
1.49192e-08
9.65848e-10
-2.57263e-07
-7.38276e-08
-2.59897e-07
-7.21452e-08
-2.62658e-07
-7.01259e-08
-2.6549e-07
-6.80014e-08
-2.68338e-07
-6.58473e-08
-2.71151e-07
-6.36732e-08
-2.73888e-07
-6.14739e-08
-2.76514e-07
-5.92444e-08
-2.79002e-07
-5.69837e-08
-2.81331e-07
-5.46931e-08
-2.83482e-07
-5.23755e-08
-2.85444e-07
-5.00347e-08
-2.87205e-07
-4.76746e-08
-2.88758e-07
-4.52992e-08
-2.90098e-07
-4.29122e-08
-2.91221e-07
-4.05173e-08
-2.92125e-07
-3.81178e-08
-2.9281e-07
-3.57169e-08
-2.93277e-07
-3.33176e-08
-2.93526e-07
-3.09227e-08
-2.9356e-07
-2.85348e-08
-2.93382e-07
-2.61563e-08
-2.92996e-07
-2.37894e-08
-2.92406e-07
-2.14362e-08
-2.91617e-07
-1.90987e-08
-2.90634e-07
-1.67785e-08
-2.89461e-07
-1.44775e-08
-2.88105e-07
-1.21979e-08
-2.86572e-07
-9.94017e-09
-2.84867e-07
-7.70711e-09
-2.82997e-07
-5.501e-09
-2.80968e-07
-3.32191e-09
-2.78758e-07
-1.17834e-09
-2.76413e-07
9.65336e-10
-2.73927e-07
3.06413e-09
-2.71305e-07
5.12919e-09
-2.68552e-07
7.16153e-09
-2.65673e-07
9.16087e-09
-2.62674e-07
1.11267e-08
-2.59559e-07
1.30586e-08
-2.56336e-07
1.49562e-08
-2.53008e-07
1.68189e-08
-2.49582e-07
1.86464e-08
-2.46061e-07
2.04386e-08
-2.42451e-07
2.21951e-08
-2.38757e-07
2.39157e-08
-2.34983e-07
2.56003e-08
-2.31133e-07
2.72488e-08
-2.27212e-07
2.88612e-08
-2.23223e-07
3.04374e-08
-2.19171e-07
3.19774e-08
-2.15059e-07
3.34812e-08
-2.10891e-07
3.49489e-08
-2.06671e-07
3.63806e-08
-2.02402e-07
3.77764e-08
-1.98087e-07
3.91365e-08
-1.93728e-07
4.0461e-08
-1.8933e-07
4.175e-08
-1.84894e-07
4.30038e-08
-1.80423e-07
4.42226e-08
-1.7592e-07
4.54067e-08
-1.71387e-07
4.65561e-08
-1.66826e-07
4.76712e-08
-1.62239e-07
4.87521e-08
-1.57628e-07
4.97992e-08
-1.52995e-07
5.08127e-08
-1.48342e-07
5.17928e-08
-1.43671e-07
5.27398e-08
-1.38982e-07
5.3654e-08
-1.34277e-07
5.45356e-08
-1.29557e-07
5.53848e-08
-1.24824e-07
5.6202e-08
-1.20079e-07
5.69873e-08
-1.15322e-07
5.7741e-08
-1.10554e-07
5.84633e-08
-1.05778e-07
5.91545e-08
-1.00992e-07
5.98148e-08
-9.61982e-08
6.04444e-08
-9.13968e-08
6.10436e-08
-8.65884e-08
6.16125e-08
-8.17733e-08
6.21514e-08
-7.69519e-08
6.26602e-08
-7.21246e-08
6.31392e-08
-6.72917e-08
6.35878e-08
-6.24533e-08
6.40054e-08
-5.76098e-08
6.43895e-08
-5.27614e-08
6.47346e-08
-4.79085e-08
6.5029e-08
-4.30517e-08
6.52478e-08
-3.81925e-08
6.53416e-08
-3.33345e-08
6.52174e-08
-2.84852e-08
6.47082e-08
-2.36615e-08
6.35326e-08
-1.88973e-08
6.12505e-08
-1.42593e-08
5.72362e-08
-9.86769e-09
5.07204e-08
-5.92383e-09
4.09917e-08
-2.72758e-09
2.79011e-08
-6.5152e-10
1.28433e-08
3.14471e-10
-2.34567e-07
-7.30991e-08
-2.35688e-07
-7.10249e-08
-2.37119e-07
-6.8694e-08
-2.38788e-07
-6.63322e-08
-2.40622e-07
-6.40135e-08
-2.42553e-07
-6.1742e-08
-2.44525e-07
-5.95028e-08
-2.46488e-07
-5.72809e-08
-2.48406e-07
-5.5066e-08
-2.50246e-07
-5.28522e-08
-2.51986e-07
-5.06363e-08
-2.53603e-07
-4.84171e-08
-2.55084e-07
-4.61943e-08
-2.56414e-07
-4.39686e-08
-2.57585e-07
-4.17409e-08
-2.5859e-07
-3.95125e-08
-2.59423e-07
-3.72848e-08
-2.60081e-07
-3.50594e-08
-2.6056e-07
-3.28377e-08
-2.60862e-07
-3.06214e-08
-2.60985e-07
-2.84121e-08
-2.6093e-07
-2.62114e-08
-2.60699e-07
-2.40207e-08
-2.60293e-07
-2.18415e-08
-2.59717e-07
-1.96753e-08
-2.58972e-07
-1.75235e-08
-2.58062e-07
-1.53874e-08
-2.56991e-07
-1.32684e-08
-2.55764e-07
-1.11675e-08
-2.54384e-07
-9.08667e-09
-2.52858e-07
-7.02748e-09
-2.51189e-07
-4.99094e-09
-2.49387e-07
-2.97969e-09
-2.47428e-07
-9.93936e-10
-2.45347e-07
9.83172e-10
-2.43143e-07
2.92474e-09
-2.40819e-07
4.83727e-09
-2.38379e-07
6.72119e-09
-2.35829e-07
8.57612e-09
-2.33172e-07
1.04016e-08
-2.30412e-07
1.2197e-08
-2.27556e-07
1.3962e-08
-2.24605e-07
1.56961e-08
-2.21566e-07
1.7399e-08
-2.18441e-07
1.90702e-08
-2.15235e-07
2.07096e-08
-2.11951e-07
2.23169e-08
-2.08594e-07
2.38919e-08
-2.05168e-07
2.54343e-08
-2.01674e-07
2.69441e-08
-1.98118e-07
2.84212e-08
-1.94503e-07
2.98654e-08
-1.90831e-07
3.12768e-08
-1.87105e-07
3.26552e-08
-1.8333e-07
3.40007e-08
-1.79507e-07
3.53133e-08
-1.75639e-07
3.6593e-08
-1.71729e-07
3.784e-08
-1.67779e-07
3.90542e-08
-1.63792e-07
4.02358e-08
-1.59771e-07
4.13848e-08
-1.55716e-07
4.25015e-08
-1.5163e-07
4.35858e-08
-1.47516e-07
4.4638e-08
-1.43375e-07
4.56581e-08
-1.39209e-07
4.66464e-08
-1.35019e-07
4.76029e-08
-1.30807e-07
4.85279e-08
-1.26575e-07
4.94215e-08
-1.22323e-07
5.02838e-08
-1.18054e-07
5.11152e-08
-1.13768e-07
5.19156e-08
-1.09466e-07
5.26854e-08
-1.05149e-07
5.34246e-08
-1.00819e-07
5.41334e-08
-9.64768e-08
5.48119e-08
-9.21223e-08
5.54604e-08
-8.77567e-08
5.60789e-08
-8.33808e-08
5.66677e-08
-7.8995e-08
5.72268e-08
-7.46001e-08
5.77564e-08
-7.01965e-08
5.82565e-08
-6.57847e-08
5.87272e-08
-6.13651e-08
5.9168e-08
-5.69381e-08
5.95782e-08
-5.25041e-08
5.99552e-08
-4.80634e-08
6.02938e-08
-4.36167e-08
6.05822e-08
-3.91648e-08
6.0796e-08
-3.47099e-08
6.08868e-08
-3.02558e-08
6.07636e-08
-2.58111e-08
6.02638e-08
-2.13931e-08
5.91149e-08
-1.70362e-08
5.68938e-08
-1.28051e-08
5.30051e-08
-8.81445e-09
4.67297e-08
-5.25161e-09
3.74287e-08
-2.38944e-09
2.50387e-08
-5.56377e-10
1.10099e-08
-2.42167e-10
-2.02304e-07
-7.12949e-08
-2.04207e-07
-6.91223e-08
-2.06178e-07
-6.6723e-08
-2.08201e-07
-6.43093e-08
-2.1025e-07
-6.19649e-08
-2.12294e-07
-5.96982e-08
-2.14304e-07
-5.74927e-08
-2.16256e-07
-5.53296e-08
-2.18128e-07
-5.31943e-08
-2.19903e-07
-5.10768e-08
-2.21569e-07
-4.89709e-08
-2.23113e-07
-4.68727e-08
-2.24528e-07
-4.47799e-08
-2.25805e-07
-4.26914e-08
-2.2694e-07
-4.06065e-08
-2.27927e-07
-3.85253e-08
-2.28764e-07
-3.64481e-08
-2.29448e-07
-3.43753e-08
-2.29978e-07
-3.23078e-08
-2.30353e-07
-3.02463e-08
-2.30573e-07
-2.81917e-08
-2.30639e-07
-2.61452e-08
-2.30552e-07
-2.41076e-08
-2.30314e-07
-2.20801e-08
-2.29926e-07
-2.00636e-08
-2.2939e-07
-1.80592e-08
-2.2871e-07
-1.60679e-08
-2.27887e-07
-1.40908e-08
-2.26926e-07
-1.2129e-08
-2.25828e-07
-1.01838e-08
-2.246e-07
-8.2559e-09
-2.23244e-07
-6.34716e-09
-2.21765e-07
-4.45914e-09
-2.20165e-07
-2.59355e-09
-2.18429e-07
-7.53392e-10
-2.1659e-07
1.08598e-09
-2.14642e-07
2.88999e-09
-2.12589e-07
4.66815e-09
-2.10434e-07
6.42084e-09
-2.0818e-07
8.14769e-09
-2.05831e-07
9.84824e-09
-2.03391e-07
1.1522e-08
-2.00864e-07
1.31686e-08
-1.98253e-07
1.47875e-08
-1.95561e-07
1.63783e-08
-1.92792e-07
1.79407e-08
-1.8995e-07
1.94744e-08
-1.87037e-07
2.0979e-08
-1.84056e-07
2.24543e-08
-1.81012e-07
2.39e-08
-1.77907e-07
2.5316e-08
-1.74743e-07
2.67021e-08
-1.71525e-07
2.80581e-08
-1.68254e-07
2.9384e-08
-1.64932e-07
3.06795e-08
-1.61564e-07
3.19447e-08
-1.5815e-07
3.31795e-08
-1.54694e-07
3.43838e-08
-1.51197e-07
3.55577e-08
-1.47662e-07
3.67011e-08
-1.44091e-07
3.7814e-08
-1.40486e-07
3.88964e-08
-1.36849e-07
3.99485e-08
-1.33182e-07
4.09702e-08
-1.29486e-07
4.19617e-08
-1.25763e-07
4.29229e-08
-1.22014e-07
4.3854e-08
-1.18241e-07
4.4755e-08
-1.14446e-07
4.56261e-08
-1.10629e-07
4.64672e-08
-1.06792e-07
4.72785e-08
-1.02937e-07
4.80601e-08
-9.90634e-08
4.8812e-08
-9.51736e-08
4.95345e-08
-9.12681e-08
5.02275e-08
-8.7348e-08
5.08913e-08
-8.3414e-08
5.15258e-08
-7.94669e-08
5.21312e-08
-7.55075e-08
5.27077e-08
-7.15363e-08
5.32552e-08
-6.75541e-08
5.37738e-08
-6.35614e-08
5.42636e-08
-5.95588e-08
5.47244e-08
-5.55468e-08
5.51559e-08
-5.1526e-08
5.55572e-08
-4.74968e-08
5.59259e-08
-4.346e-08
5.62567e-08
-3.94161e-08
5.6538e-08
-3.53666e-08
5.6746e-08
-3.13136e-08
5.68333e-08
-2.72615e-08
5.6711e-08
-2.32194e-08
5.62211e-08
-1.92046e-08
5.50998e-08
-1.5251e-08
5.29399e-08
-1.14207e-08
4.91747e-08
-7.8215e-09
4.31305e-08
-4.62608e-09
3.42334e-08
-2.08054e-09
2.24933e-08
-4.72232e-10
9.40179e-09
-7.14369e-10
-1.67355e-07
-6.72264e-08
-1.7097e-07
-6.55072e-08
-1.74221e-07
-6.34718e-08
-1.77195e-07
-6.13352e-08
-1.79949e-07
-5.92109e-08
-1.82515e-07
-5.71322e-08
-1.8491e-07
-5.50976e-08
-1.87143e-07
-5.30961e-08
-1.8922e-07
-5.11172e-08
-1.91144e-07
-4.91532e-08
-1.92916e-07
-4.71989e-08
-1.94537e-07
-4.52511e-08
-1.96009e-07
-4.33079e-08
-1.97332e-07
-4.13682e-08
-1.98507e-07
-3.94315e-08
-1.99535e-07
-3.74977e-08
-2.00416e-07
-3.55671e-08
-2.01151e-07
-3.36399e-08
-2.01742e-07
-3.17168e-08
-2.0219e-07
-2.97984e-08
-2.02496e-07
-2.78854e-08
-2.02662e-07
-2.59787e-08
-2.02691e-07
-2.40792e-08
-2.02583e-07
-2.21876e-08
-2.02342e-07
-2.03049e-08
-2.01969e-07
-1.84319e-08
-2.01468e-07
-1.65695e-08
-2.0084e-07
-1.47187e-08
-2.00088e-07
-1.28803e-08
-1.99217e-07
-1.10554e-08
-1.98228e-07
-9.24505e-09
-1.97125e-07
-7.45061e-09
-1.95911e-07
-5.67305e-09
-1.94591e-07
-3.91339e-09
-1.93171e-07
-2.17339e-09
-1.91624e-07
-4.6143e-10
-1.89992e-07
1.25793e-09
-1.88265e-07
2.94131e-09
-1.86447e-07
4.60195e-09
-1.84539e-07
6.23975e-09
-1.82545e-07
7.85429e-09
-1.80468e-07
9.44507e-09
-1.78311e-07
1.10116e-08
-1.76077e-07
1.25534e-08
-1.73769e-07
1.40701e-08
-1.71389e-07
1.55612e-08
-1.68941e-07
1.70264e-08
-1.66428e-07
1.84653e-08
-1.63851e-07
1.98776e-08
-1.61213e-07
2.12629e-08
-1.58518e-07
2.2621e-08
-1.55768e-07
2.39518e-08
-1.52965e-07
2.52548e-08
-1.50111e-07
2.65301e-08
-1.47209e-07
2.77773e-08
-1.4426e-07
2.89965e-08
-1.41268e-07
3.01873e-08
-1.38234e-07
3.13499e-08
-1.3516e-07
3.24839e-08
-1.32048e-07
3.35894e-08
-1.28901e-07
3.46663e-08
-1.25719e-07
3.57146e-08
-1.22504e-07
3.67342e-08
-1.19259e-07
3.7725e-08
-1.15984e-07
3.86871e-08
-1.12682e-07
3.96206e-08
-1.09353e-07
4.05253e-08
-1.06e-07
4.14014e-08
-1.02623e-07
4.22488e-08
-9.92234e-08
4.30676e-08
-9.58028e-08
4.38578e-08
-9.23622e-08
4.46194e-08
-8.89027e-08
4.53525e-08
-8.54253e-08
4.60571e-08
-8.19309e-08
4.67333e-08
-7.84205e-08
4.73811e-08
-7.4895e-08
4.80005e-08
-7.13552e-08
4.85916e-08
-6.78018e-08
4.91544e-08
-6.42358e-08
4.96891e-08
-6.06576e-08
5.01955e-08
-5.7068e-08
5.06738e-08
-5.34676e-08
5.11237e-08
-4.98568e-08
5.15449e-08
-4.62363e-08
5.19365e-08
-4.26067e-08
5.22961e-08
-3.89685e-08
5.26185e-08
-3.53227e-08
5.28923e-08
-3.16707e-08
5.30942e-08
-2.8015e-08
5.31778e-08
-2.43605e-08
5.30567e-08
-2.07161e-08
5.25769e-08
-1.70993e-08
5.14831e-08
-1.35428e-08
4.93834e-08
-1.01052e-08
4.5737e-08
-6.88676e-09
3.99117e-08
-4.04467e-09
3.1391e-08
-1.79869e-09
2.0247e-08
-3.98064e-10
8.00085e-09
-1.1125e-09
-1.36184e-07
-6.17285e-08
-1.40897e-07
-6.07949e-08
-1.44967e-07
-5.94016e-08
-1.48543e-07
-5.77593e-08
-1.51737e-07
-5.6017e-08
-1.54625e-07
-5.42442e-08
-1.57257e-07
-5.24659e-08
-1.59665e-07
-5.06882e-08
-1.61871e-07
-4.8911e-08
-1.63891e-07
-4.71331e-08
-1.65736e-07
-4.53535e-08
-1.67415e-07
-4.35716e-08
-1.68935e-07
-4.17874e-08
-1.70302e-07
-4.0001e-08
-1.71521e-07
-3.82129e-08
-1.72595e-07
-3.64237e-08
-1.73527e-07
-3.46342e-08
-1.74322e-07
-3.2845e-08
-1.74982e-07
-3.1057e-08
-1.75509e-07
-2.92711e-08
-1.75907e-07
-2.74881e-08
-1.76177e-07
-2.57089e-08
-1.76321e-07
-2.39344e-08
-1.76343e-07
-2.21655e-08
-1.76245e-07
-2.04032e-08
-1.76028e-07
-1.86482e-08
-1.75696e-07
-1.69014e-08
-1.75251e-07
-1.51637e-08
-1.74695e-07
-1.34359e-08
-1.74032e-07
-1.17189e-08
-1.73263e-07
-1.00137e-08
-1.72393e-07
-8.3215e-09
-1.71422e-07
-6.643e-09
-1.70355e-07
-4.98007e-09
-1.69195e-07
-3.33311e-09
-1.6795e-07
-1.70631e-09
-1.66589e-07
-1.03334e-10
-1.6516e-07
1.51222e-09
-1.63648e-07
3.08932e-09
-1.62055e-07
4.64604e-09
-1.60383e-07
6.18215e-09
-1.58636e-07
7.69715e-09
-1.56815e-07
9.19052e-09
-1.54923e-07
1.06617e-08
-1.52964e-07
1.21103e-08
-1.50938e-07
1.35358e-08
-1.4885e-07
1.49378e-08
-1.46701e-07
1.63158e-08
-1.44493e-07
1.76694e-08
-1.42229e-07
1.89985e-08
-1.3991e-07
2.03025e-08
-1.3754e-07
2.15814e-08
-1.3512e-07
2.28346e-08
-1.32652e-07
2.40621e-08
-1.30138e-07
2.52636e-08
-1.27581e-07
2.64389e-08
-1.24981e-07
2.75878e-08
-1.22341e-07
2.87101e-08
-1.19663e-07
2.98058e-08
-1.16948e-07
3.08745e-08
-1.14199e-07
3.19164e-08
-1.11415e-07
3.29312e-08
-1.086e-07
3.39189e-08
-1.05755e-07
3.48794e-08
-1.02881e-07
3.58126e-08
-9.99786e-08
3.67185e-08
-9.70503e-08
3.75971e-08
-9.4097e-08
3.84482e-08
-9.112e-08
3.92718e-08
-8.81205e-08
4.0068e-08
-8.50996e-08
4.08368e-08
-8.20584e-08
4.1578e-08
-7.89979e-08
4.22917e-08
-7.59191e-08
4.29779e-08
-7.28229e-08
4.36367e-08
-6.97102e-08
4.42679e-08
-6.65817e-08
4.48717e-08
-6.34385e-08
4.54479e-08
-6.02811e-08
4.59967e-08
-5.71103e-08
4.65181e-08
-5.39269e-08
4.70119e-08
-5.07315e-08
4.74782e-08
-4.75247e-08
4.79168e-08
-4.43072e-08
4.83272e-08
-4.10796e-08
4.87087e-08
-3.78425e-08
4.90587e-08
-3.45967e-08
4.93723e-08
-3.13431e-08
4.96384e-08
-2.80833e-08
4.9834e-08
-2.48198e-08
4.99141e-08
-2.15576e-08
4.97942e-08
-1.83056e-08
4.93247e-08
-1.50807e-08
4.8258e-08
-1.19138e-08
4.62164e-08
-8.85982e-09
4.26829e-08
-6.01013e-09
3.7062e-08
-3.50633e-09
2.88872e-08
-1.54252e-09
1.82832e-08
-3.32795e-10
6.79112e-09
-1.4453e-09
-1.12804e-07
-5.61693e-08
-1.17525e-07
-5.60743e-08
-1.21551e-07
-5.53748e-08
-1.25042e-07
-5.42686e-08
-1.28126e-07
-5.2933e-08
-1.30895e-07
-5.14758e-08
-1.33408e-07
-4.99533e-08
-1.35703e-07
-4.83931e-08
-1.37805e-07
-4.68086e-08
-1.39732e-07
-4.52069e-08
-1.41494e-07
-4.35916e-08
-1.431e-07
-4.19652e-08
-1.44558e-07
-4.03295e-08
-1.45873e-07
-3.86859e-08
-1.4705e-07
-3.70356e-08
-1.48094e-07
-3.538e-08
-1.49008e-07
-3.37201e-08
-1.49796e-07
-3.2057e-08
-1.50461e-07
-3.0392e-08
-1.51006e-07
-2.87259e-08
-1.51434e-07
-2.70599e-08
-1.51748e-07
-2.53949e-08
-1.51951e-07
-2.37319e-08
-1.52044e-07
-2.2072e-08
-1.52031e-07
-2.0416e-08
-1.51915e-07
-1.8765e-08
-1.51696e-07
-1.71197e-08
-1.51379e-07
-1.54812e-08
-1.50964e-07
-1.38502e-08
-1.50456e-07
-1.22276e-08
-1.49855e-07
-1.06145e-08
-1.49165e-07
-9.01177e-09
-1.48387e-07
-7.42064e-09
-1.47525e-07
-5.84187e-09
-1.46581e-07
-4.27755e-09
-1.45558e-07
-2.72896e-09
-1.44466e-07
-1.19539e-09
-1.43283e-07
3.29375e-10
-1.42029e-07
1.8352e-09
-1.40705e-07
3.32153e-09
-1.39312e-07
4.78911e-09
-1.37852e-07
6.23754e-09
-1.36328e-07
7.66632e-09
-1.34741e-07
9.07491e-09
-1.33093e-07
1.04628e-08
-1.31387e-07
1.18295e-08
-1.29624e-07
1.31747e-08
-1.27806e-07
1.44977e-08
-1.25934e-07
1.57983e-08
-1.24012e-07
1.70761e-08
-1.2204e-07
1.83307e-08
-1.2002e-07
1.95618e-08
-1.17955e-07
2.07691e-08
-1.15845e-07
2.19524e-08
-1.13692e-07
2.31113e-08
-1.11499e-07
2.42457e-08
-1.09266e-07
2.53553e-08
-1.06996e-07
2.64399e-08
-1.04689e-07
2.74993e-08
-1.02348e-07
2.85334e-08
-9.99737e-08
2.9542e-08
-9.75673e-08
3.05249e-08
-9.51304e-08
3.14821e-08
-9.26643e-08
3.24134e-08
-9.01703e-08
3.33187e-08
-8.76498e-08
3.4198e-08
-8.51038e-08
3.50511e-08
-8.25335e-08
3.58779e-08
-7.99402e-08
3.66784e-08
-7.73247e-08
3.74525e-08
-7.46883e-08
3.82002e-08
-7.20317e-08
3.89214e-08
-6.93561e-08
3.96161e-08
-6.66623e-08
4.02842e-08
-6.39512e-08
4.09257e-08
-6.12236e-08
4.15405e-08
-5.84805e-08
4.21286e-08
-5.57225e-08
4.26901e-08
-5.29505e-08
4.32248e-08
-5.01652e-08
4.37327e-08
-4.73673e-08
4.42138e-08
-4.45573e-08
4.4668e-08
-4.1736e-08
4.50952e-08
-3.89038e-08
4.54949e-08
-3.60615e-08
4.58662e-08
-3.32097e-08
4.62068e-08
-3.03492e-08
4.65118e-08
-2.74809e-08
4.67702e-08
-2.46066e-08
4.69598e-08
-2.17288e-08
4.70365e-08
-1.88523e-08
4.69179e-08
-1.59859e-08
4.64585e-08
-1.31457e-08
4.5418e-08
-1.03605e-08
4.34314e-08
-7.68036e-09
4.00029e-08
-5.18761e-09
3.45694e-08
-3.00778e-09
2.67074e-08
-1.30996e-09
1.65854e-08
-2.7597e-10
5.75712e-09
-1.72125e-09
-9.24101e-08
-5.09771e-08
-9.67836e-08
-5.17007e-08
-1.00468e-07
-5.16898e-08
-1.03624e-07
-5.11128e-08
-1.06388e-07
-5.01686e-08
-1.08861e-07
-4.90032e-08
-1.11106e-07
-4.77076e-08
-1.13165e-07
-4.6334e-08
-1.15062e-07
-4.49116e-08
-1.16813e-07
-4.34567e-08
-1.18426e-07
-4.19785e-08
-1.19908e-07
-4.04825e-08
-1.21265e-07
-3.89722e-08
-1.22501e-07
-3.745e-08
-1.23619e-07
-3.5918e-08
-1.24621e-07
-3.43776e-08
-1.25511e-07
-3.28302e-08
-1.26291e-07
-3.12771e-08
-1.26963e-07
-2.97195e-08
-1.27531e-07
-2.81585e-08
-1.27995e-07
-2.65952e-08
-1.2836e-07
-2.50306e-08
-1.28626e-07
-2.34658e-08
-1.28796e-07
-2.19016e-08
-1.28873e-07
-2.03392e-08
-1.28859e-07
-1.87795e-08
-1.28756e-07
-1.72234e-08
-1.28565e-07
-1.56718e-08
-1.2829e-07
-1.41256e-08
-1.27932e-07
-1.25857e-08
-1.27493e-07
-1.10531e-08
-1.26976e-07
-9.52873e-09
-1.26383e-07
-8.01369e-09
-1.25716e-07
-6.50917e-09
-1.24977e-07
-5.0161e-09
-1.2417e-07
-3.53594e-09
-1.23296e-07
-2.07027e-09
-1.22346e-07
-6.21031e-10
-1.21337e-07
8.26058e-10
-1.20266e-07
2.25048e-09
-1.19134e-07
3.65737e-09
-1.17944e-07
5.04675e-09
-1.16695e-07
6.41814e-09
-1.15392e-07
7.77102e-09
-1.14034e-07
9.10486e-09
-1.12624e-07
1.04191e-08
-1.11163e-07
1.17134e-08
-1.09653e-07
1.29872e-08
-1.08094e-07
1.424e-08
-1.0649e-07
1.54716e-08
-1.0484e-07
1.66815e-08
-1.03148e-07
1.78694e-08
-1.01413e-07
1.90349e-08
-9.96384e-08
2.01778e-08
-9.78247e-08
2.12978e-08
-9.59735e-08
2.23946e-08
-9.40862e-08
2.3468e-08
-9.2164e-08
2.45177e-08
-9.02084e-08
2.55436e-08
-8.82204e-08
2.65454e-08
-8.62014e-08
2.7523e-08
-8.41526e-08
2.84761e-08
-8.20752e-08
2.94047e-08
-7.99704e-08
3.03087e-08
-7.78393e-08
3.11877e-08
-7.56832e-08
3.20418e-08
-7.35029e-08
3.28708e-08
-7.12997e-08
3.36746e-08
-6.90745e-08
3.44531e-08
-6.68283e-08
3.52062e-08
-6.4562e-08
3.59338e-08
-6.22766e-08
3.66358e-08
-5.99727e-08
3.73122e-08
-5.76515e-08
3.79629e-08
-5.53136e-08
3.85877e-08
-5.29598e-08
3.91867e-08
-5.0591e-08
3.97598e-08
-4.82079e-08
4.03069e-08
-4.58112e-08
4.0828e-08
-4.34015e-08
4.1323e-08
-4.09796e-08
4.17919e-08
-3.8546e-08
4.22345e-08
-3.61013e-08
4.26506e-08
-3.36461e-08
4.30399e-08
-3.11811e-08
4.34014e-08
-2.87069e-08
4.37328e-08
-2.62243e-08
4.40294e-08
-2.37344e-08
4.42804e-08
-2.12386e-08
4.44642e-08
-1.87397e-08
4.45377e-08
-1.62423e-08
4.44205e-08
-1.37547e-08
4.39708e-08
-1.12917e-08
4.2955e-08
-8.87964e-09
4.10193e-08
-6.56342e-09
3.76866e-08
-4.41579e-09
3.24218e-08
-2.54595e-09
2.48377e-08
-1.09878e-09
1.51383e-08
-2.2635e-10
4.88487e-09
-1.94741e-09
-7.59912e-08
-4.65688e-08
-7.96995e-08
-4.79926e-08
-8.28028e-08
-4.85866e-08
-8.54394e-08
-4.84765e-08
-8.77371e-08
-4.78711e-08
-8.97907e-08
-4.69497e-08
-9.1662e-08
-4.58363e-08
-9.33879e-08
-4.46081e-08
-9.49895e-08
-4.33101e-08
-9.64783e-08
-4.1968e-08
-9.78605e-08
-4.05963e-08
-9.914e-08
-3.92031e-08
-1.00319e-07
-3.77932e-08
-1.01399e-07
-3.63697e-08
-1.02382e-07
-3.49347e-08
-1.0327e-07
-3.34898e-08
-1.04064e-07
-3.20363e-08
-1.04765e-07
-3.05755e-08
-1.05377e-07
-2.91083e-08
-1.05899e-07
-2.7636e-08
-1.06335e-07
-2.61594e-08
-1.06686e-07
-2.46796e-08
-1.06954e-07
-2.31976e-08
-1.07141e-07
-2.17143e-08
-1.0725e-07
-2.02306e-08
-1.07282e-07
-1.87475e-08
-1.07239e-07
-1.72661e-08
-1.07124e-07
-1.57872e-08
-1.06937e-07
-1.43118e-08
-1.06682e-07
-1.28409e-08
-1.0636e-07
-1.13755e-08
-1.05972e-07
-9.91654e-09
-1.0552e-07
-8.46508e-09
-1.05007e-07
-7.02228e-09
-1.04434e-07
-5.58934e-09
-1.03803e-07
-4.16725e-09
-1.03116e-07
-2.75786e-09
-1.02376e-07
-1.36076e-09
-1.01575e-07
2.51126e-11
-1.00724e-07
1.39903e-09
-9.98218e-08
2.75508e-09
-9.88698e-08
4.09479e-09
-9.78694e-08
5.41766e-09
-9.68218e-08
6.72315e-09
-9.57279e-08
8.01071e-09
-9.45889e-08
9.27983e-09
-9.34058e-08
1.053e-08
-9.21799e-08
1.17609e-08
-9.0912e-08
1.2972e-08
-8.96035e-08
1.41629e-08
-8.82553e-08
1.53333e-08
-8.68688e-08
1.64828e-08
-8.54449e-08
1.76111e-08
-8.39851e-08
1.87179e-08
-8.24903e-08
1.9803e-08
-8.09618e-08
2.0866e-08
-7.94006e-08
2.19067e-08
-7.78079e-08
2.29248e-08
-7.61846e-08
2.39203e-08
-7.4532e-08
2.48928e-08
-7.28511e-08
2.58421e-08
-7.11428e-08
2.67681e-08
-6.94083e-08
2.76706e-08
-6.76487e-08
2.85493e-08
-6.58648e-08
2.94042e-08
-6.40578e-08
3.02351e-08
-6.22286e-08
3.10418e-08
-6.03781e-08
3.18243e-08
-5.85072e-08
3.25823e-08
-5.66168e-08
3.33159e-08
-5.47078e-08
3.40248e-08
-5.27808e-08
3.47089e-08
-5.08368e-08
3.53682e-08
-4.88764e-08
3.60026e-08
-4.69004e-08
3.66119e-08
-4.49096e-08
3.71961e-08
-4.29047e-08
3.77551e-08
-4.08863e-08
3.82887e-08
-3.88551e-08
3.87969e-08
-3.68118e-08
3.92797e-08
-3.4757e-08
3.9737e-08
-3.26911e-08
4.01685e-08
-3.06149e-08
4.05743e-08
-2.85289e-08
4.09537e-08
-2.64336e-08
4.13059e-08
-2.43296e-08
4.16288e-08
-2.22178e-08
4.19175e-08
-2.0099e-08
4.21617e-08
-1.79749e-08
4.23402e-08
-1.58479e-08
4.24109e-08
-1.37224e-08
4.22952e-08
-1.16061e-08
4.18547e-08
-9.51243e-09
4.08615e-08
-7.46492e-09
3.89719e-08
-5.50287e-09
3.57247e-08
-3.68907e-09
3.0608e-08
-2.11638e-09
2.32649e-08
-9.0619e-10
1.3928e-08
-1.83238e-10
4.16174e-09
-2.13083e-09
-5.97485e-08
-4.29678e-08
-6.27965e-08
-4.49445e-08
-6.53465e-08
-4.60364e-08
-6.75042e-08
-4.63186e-08
-6.93779e-08
-4.59973e-08
-7.10524e-08
-4.52751e-08
-7.25843e-08
-4.43043e-08
-7.40073e-08
-4.31849e-08
-7.53398e-08
-4.19775e-08
-7.65909e-08
-4.07169e-08
-7.77644e-08
-3.94226e-08
-7.88618e-08
-3.81055e-08
-7.98835e-08
-3.67714e-08
-8.08294e-08
-3.54237e-08
-8.16995e-08
-3.40644e-08
-8.24939e-08
-3.26952e-08
-8.3213e-08
-3.13171e-08
-8.38572e-08
-2.99311e-08
-8.44274e-08
-2.85381e-08
-8.49245e-08
-2.7139e-08
-8.53495e-08
-2.57347e-08
-8.57036e-08
-2.43258e-08
-8.59884e-08
-2.29131e-08
-8.62052e-08
-2.14976e-08
-8.6356e-08
-2.00799e-08
-8.64424e-08
-1.86611e-08
-8.64663e-08
-1.72421e-08
-8.64296e-08
-1.58238e-08
-8.6334e-08
-1.44074e-08
-8.61812e-08
-1.29938e-08
-8.59727e-08
-1.15842e-08
-8.57101e-08
-1.01794e-08
-8.53949e-08
-8.78046e-09
-8.50288e-08
-7.38855e-09
-8.46134e-08
-6.00481e-09
-8.41504e-08
-4.63027e-09
-8.36421e-08
-3.26625e-09
-8.30874e-08
-1.91543e-09
-8.24812e-08
-5.8116e-10
-8.18415e-08
7.59083e-10
-8.11611e-08
2.07447e-09
-8.044e-08
3.37336e-09
-7.96784e-08
4.65585e-09
-7.88769e-08
5.92148e-09
-7.80361e-08
7.1698e-09
-7.71564e-08
8.40033e-09
-7.62388e-08
9.61265e-09
-7.52839e-08
1.08064e-08
-7.42927e-08
1.1981e-08
-7.32658e-08
1.31364e-08
-7.22043e-08
1.42721e-08
-7.1109e-08
1.53877e-08
-6.99809e-08
1.64831e-08
-6.88208e-08
1.7558e-08
-6.76296e-08
1.86119e-08
-6.64084e-08
1.96448e-08
-6.5158e-08
2.06564e-08
-6.38793e-08
2.16463e-08
-6.25734e-08
2.26145e-08
-6.12413e-08
2.35606e-08
-5.98837e-08
2.44845e-08
-5.85017e-08
2.5386e-08
-5.70962e-08
2.62649e-08
-5.56681e-08
2.7121e-08
-5.42181e-08
2.79541e-08
-5.27472e-08
2.87641e-08
-5.12561e-08
2.95508e-08
-4.97457e-08
3.0314e-08
-4.82168e-08
3.10536e-08
-4.66702e-08
3.17695e-08
-4.51067e-08
3.24614e-08
-4.35269e-08
3.31293e-08
-4.19317e-08
3.37731e-08
-4.03218e-08
3.43926e-08
-3.86977e-08
3.49878e-08
-3.70603e-08
3.55584e-08
-3.54099e-08
3.61045e-08
-3.37474e-08
3.66259e-08
-3.20731e-08
3.71226e-08
-3.03876e-08
3.75943e-08
-2.86915e-08
3.8041e-08
-2.69854e-08
3.84627e-08
-2.52696e-08
3.88589e-08
-2.35449e-08
3.92294e-08
-2.18118e-08
3.95732e-08
-2.00707e-08
3.98881e-08
-1.83225e-08
4.01696e-08
-1.65681e-08
4.04075e-08
-1.48089e-08
4.0581e-08
-1.30472e-08
4.06491e-08
-1.12869e-08
4.05349e-08
-9.53504e-09
4.01028e-08
-7.80342e-09
3.91299e-08
-6.11237e-09
3.7281e-08
-4.49531e-09
3.41078e-08
-3.0047e-09
2.91176e-08
-1.71702e-09
2.19775e-08
-7.30864e-10
1.29421e-08
-1.45536e-10
3.57665e-09
-2.27634e-09
-4.4215e-08
-4.0079e-08
-4.6727e-08
-4.24323e-08
-4.88632e-08
-4.38999e-08
-5.06816e-08
-4.44999e-08
-5.22582e-08
-4.44205e-08
-5.36598e-08
-4.38733e-08
-5.49353e-08
-4.30288e-08
-5.61156e-08
-4.20045e-08
-5.72186e-08
-4.08742e-08
-5.82539e-08
-3.96813e-08
-5.92259e-08
-3.84504e-08
-6.01364e-08
-3.71948e-08
-6.0986e-08
-3.59215e-08
-6.17751e-08
-3.46344e-08
-6.25037e-08
-3.33357e-08
-6.3172e-08
-3.20269e-08
-6.37801e-08
-3.07089e-08
-6.43283e-08
-2.93827e-08
-6.48171e-08
-2.80492e-08
-6.52469e-08
-2.67091e-08
-6.56184e-08
-2.53631e-08
-6.59327e-08
-2.40115e-08
-6.6191e-08
-2.26549e-08
-6.63949e-08
-2.12938e-08
-6.65463e-08
-1.99288e-08
-6.66471e-08
-1.85605e-08
-6.66994e-08
-1.719e-08
-6.67049e-08
-1.58184e-08
-6.66654e-08
-1.44471e-08
-6.65822e-08
-1.30772e-08
-6.64566e-08
-1.171e-08
-6.62895e-08
-1.03467e-08
-6.60821e-08
-8.98822e-09
-6.58357e-08
-7.63537e-09
-6.55517e-08
-6.28911e-09
-6.52321e-08
-4.95016e-09
-6.48788e-08
-3.61984e-09
-6.44948e-08
-2.29958e-09
-6.40863e-08
-9.89778e-10
-6.36348e-08
3.0733e-10
-6.31525e-08
1.59198e-09
-6.26398e-08
2.86042e-09
-6.20964e-08
4.11208e-09
-6.15219e-08
5.34662e-09
-6.09163e-08
6.56371e-09
-6.02795e-08
7.76301e-09
-5.96114e-08
8.94421e-09
-5.89125e-08
1.0107e-08
-5.81829e-08
1.12512e-08
-5.74232e-08
1.23764e-08
-5.66338e-08
1.34825e-08
-5.58153e-08
1.45691e-08
-5.49685e-08
1.56361e-08
-5.40939e-08
1.66833e-08
-5.31924e-08
1.77103e-08
-5.22647e-08
1.87169e-08
-5.13114e-08
1.97031e-08
-5.03335e-08
2.06684e-08
-4.93318e-08
2.16127e-08
-4.83069e-08
2.25358e-08
-4.72597e-08
2.34375e-08
-4.61911e-08
2.43176e-08
-4.51017e-08
2.51757e-08
-4.39925e-08
2.60119e-08
-4.28641e-08
2.68258e-08
-4.17174e-08
2.76174e-08
-4.0553e-08
2.83864e-08
-3.93717e-08
2.91326e-08
-3.81741e-08
2.9856e-08
-3.6961e-08
3.05563e-08
-3.5733e-08
3.12334e-08
-3.44908e-08
3.18871e-08
-3.32349e-08
3.25173e-08
-3.19659e-08
3.31238e-08
-3.06845e-08
3.37066e-08
-2.93913e-08
3.42654e-08
-2.80866e-08
3.48001e-08
-2.67712e-08
3.53106e-08
-2.54456e-08
3.57969e-08
-2.41101e-08
3.62588e-08
-2.27654e-08
3.66962e-08
-2.14118e-08
3.71089e-08
-2.00498e-08
3.74967e-08
-1.86799e-08
3.78593e-08
-1.73024e-08
3.81956e-08
-1.5918e-08
3.85035e-08
-1.45271e-08
3.87787e-08
-1.31306e-08
3.90111e-08
-1.17298e-08
3.91803e-08
-1.03268e-08
3.92462e-08
-8.92497e-09
3.91333e-08
-7.53049e-09
3.87084e-08
-6.15352e-09
3.7753e-08
-4.81101e-09
3.59385e-08
-3.53023e-09
3.28269e-08
-2.35319e-09
2.79404e-08
-1.34012e-09
2.09642e-08
-5.67622e-10
1.21694e-08
-1.11974e-10
3.12076e-09
-2.38838e-09
-2.74255e-08
-3.78847e-08
-2.94807e-08
-4.03771e-08
-3.1338e-08
-4.20425e-08
-3.29876e-08
-4.28503e-08
-3.44505e-08
-4.29574e-08
-3.57581e-08
-4.25655e-08
-3.69401e-08
-4.18466e-08
-3.80198e-08
-4.09246e-08
-3.90141e-08
-3.98797e-08
-3.99345e-08
-3.87608e-08
-4.07888e-08
-3.75961e-08
-4.15821e-08
-3.64014e-08
-4.23182e-08
-3.51851e-08
-4.30002e-08
-3.39522e-08
-4.36304e-08
-3.27052e-08
-4.42109e-08
-3.14461e-08
-4.47432e-08
-3.01764e-08
-4.52285e-08
-2.88974e-08
-4.56673e-08
-2.76104e-08
-4.60599e-08
-2.63165e-08
-4.64064e-08
-2.50164e-08
-4.67071e-08
-2.37105e-08
-4.69626e-08
-2.23991e-08
-4.7174e-08
-2.10822e-08
-4.73428e-08
-1.97598e-08
-4.74709e-08
-1.84323e-08
-4.75603e-08
-1.71007e-08
-4.76126e-08
-1.57662e-08
-4.76293e-08
-1.44305e-08
-4.76109e-08
-1.30956e-08
-4.75578e-08
-1.17631e-08
-4.74701e-08
-1.04343e-08
-4.73484e-08
-9.10969e-09
-4.71943e-08
-7.78926e-09
-4.70108e-08
-6.47253e-09
-4.68017e-08
-5.15939e-09
-4.65709e-08
-3.85085e-09
-4.63211e-08
-2.54982e-09
-4.60502e-08
-1.26101e-09
-4.57639e-08
2.06128e-11
-4.54952e-08
1.32308e-09
-4.52121e-08
2.57731e-09
-4.49071e-08
3.80718e-09
-4.45767e-08
5.01638e-09
-4.42191e-08
6.20638e-09
-4.38337e-08
7.37782e-09
-4.34203e-08
8.53091e-09
-4.29789e-08
9.66572e-09
-4.251e-08
1.07822e-08
-4.20139e-08
1.18802e-08
-4.14912e-08
1.29597e-08
-4.09424e-08
1.40204e-08
-4.03684e-08
1.50622e-08
-3.97697e-08
1.60848e-08
-3.91473e-08
1.70881e-08
-3.85019e-08
1.80718e-08
-3.78343e-08
1.90357e-08
-3.71454e-08
1.99795e-08
-3.64359e-08
2.09032e-08
-3.57066e-08
2.18063e-08
-3.49582e-08
2.26889e-08
-3.41914e-08
2.35505e-08
-3.34068e-08
2.4391e-08
-3.26052e-08
2.52103e-08
-3.17873e-08
2.6008e-08
-3.09536e-08
2.6784e-08
-3.01049e-08
2.75381e-08
-2.92418e-08
2.827e-08
-2.83651e-08
2.89797e-08
-2.74753e-08
2.96668e-08
-2.65731e-08
3.03313e-08
-2.56589e-08
3.0973e-08
-2.47334e-08
3.15917e-08
-2.37969e-08
3.21872e-08
-2.28501e-08
3.27595e-08
-2.18932e-08
3.33083e-08
-2.09267e-08
3.38336e-08
-1.99512e-08
3.43351e-08
-1.89669e-08
3.48128e-08
-1.79743e-08
3.52666e-08
-1.6974e-08
3.56962e-08
-1.59662e-08
3.61015e-08
-1.49514e-08
3.64823e-08
-1.39299e-08
3.68381e-08
-1.29023e-08
3.7168e-08
-1.18688e-08
3.74701e-08
-1.08299e-08
3.77397e-08
-9.78628e-09
3.79673e-08
-8.73899e-09
3.81329e-08
-7.68972e-09
3.81968e-08
-6.6414e-09
3.80848e-08
-5.59899e-09
3.76659e-08
-4.57074e-09
3.67247e-08
-3.57e-09
3.49377e-08
-2.61766e-09
3.18745e-08
-1.74509e-09
2.70678e-08
-9.96213e-10
2.02153e-08
-4.25816e-10
1.15989e-08
-8.69829e-11
2.7818e-09
-2.4755e-09
-1.15173e-08
-3.63525e-08
-1.31492e-08
-3.87449e-08
-1.47767e-08
-4.04149e-08
-1.63198e-08
-4.13071e-08
-1.77347e-08
-4.15426e-08
-1.9006e-08
-4.1294e-08
-2.01367e-08
-4.07158e-08
-2.11389e-08
-3.99223e-08
-2.2028e-08
-3.89905e-08
-2.28196e-08
-3.79693e-08
-2.35275e-08
-3.68882e-08
-2.41639e-08
-3.57651e-08
-2.4739e-08
-3.46102e-08
-2.52614e-08
-3.34299e-08
-2.57385e-08
-3.22283e-08
-2.61762e-08
-3.10084e-08
-2.65798e-08
-2.97727e-08
-2.69534e-08
-2.85238e-08
-2.73001e-08
-2.72638e-08
-2.76219e-08
-2.59948e-08
-2.79202e-08
-2.47183e-08
-2.81956e-08
-2.34353e-08
-2.84488e-08
-2.21462e-08
-2.86803e-08
-2.0851e-08
-2.88908e-08
-1.95495e-08
-2.90816e-08
-1.82418e-08
-2.92537e-08
-1.69288e-08
-2.94077e-08
-1.56123e-08
-2.95437e-08
-1.42947e-08
-2.96601e-08
-1.29793e-08
-2.9754e-08
-1.16693e-08
-2.98213e-08
-1.0367e-08
-2.98577e-08
-9.07329e-09
-2.98601e-08
-7.78694e-09
-2.98281e-08
-6.50451e-09
-2.97655e-08
-5.222e-09
-2.96765e-08
-3.93989e-09
-2.95623e-08
-2.66405e-09
-2.942e-08
-1.40335e-09
-2.93741e-08
-2.5287e-11
-2.92819e-08
1.23086e-09
-2.91626e-08
2.45799e-09
-2.90171e-08
3.66155e-09
-2.88497e-08
4.84896e-09
-2.8663e-08
6.01953e-09
-2.84574e-08
7.17216e-09
-2.82329e-08
8.30625e-09
-2.79889e-08
9.42157e-09
-2.77252e-08
1.05183e-08
-2.74418e-08
1.15966e-08
-2.71387e-08
1.26565e-08
-2.68164e-08
1.3698e-08
-2.6475e-08
1.47208e-08
-2.61151e-08
1.57248e-08
-2.57371e-08
1.671e-08
-2.53414e-08
1.76761e-08
-2.49287e-08
1.86229e-08
-2.44994e-08
1.95502e-08
-2.40543e-08
2.04579e-08
-2.35938e-08
2.13457e-08
-2.31186e-08
2.22135e-08
-2.26293e-08
2.3061e-08
-2.21264e-08
2.3888e-08
-2.16106e-08
2.46942e-08
-2.10824e-08
2.54796e-08
-2.05423e-08
2.62437e-08
-1.9991e-08
2.69865e-08
-1.94289e-08
2.77078e-08
-1.88565e-08
2.84072e-08
-1.82742e-08
2.90845e-08
-1.76825e-08
2.97396e-08
-1.70818e-08
3.03723e-08
-1.64724e-08
3.09824e-08
-1.58547e-08
3.15696e-08
-1.52291e-08
3.2134e-08
-1.45958e-08
3.26752e-08
-1.39553e-08
3.31931e-08
-1.33079e-08
3.36877e-08
-1.26539e-08
3.41588e-08
-1.19936e-08
3.46062e-08
-1.13274e-08
3.50299e-08
-1.06556e-08
3.54296e-08
-9.97855e-09
3.58051e-08
-9.29646e-09
3.6156e-08
-8.60968e-09
3.64813e-08
-7.91851e-09
3.6779e-08
-7.2233e-09
3.70447e-08
-6.52453e-09
3.72687e-08
-5.82293e-09
3.74315e-08
-5.11976e-09
3.74938e-08
-4.41716e-09
3.73824e-08
-3.71879e-09
3.69677e-08
-3.0306e-09
3.60366e-08
-2.36203e-09
3.42692e-08
-1.7274e-09
3.12399e-08
-1.14756e-09
2.64879e-08
-6.51149e-10
1.97188e-08
-2.74064e-10
1.12217e-08
-5.29026e-11
2.56058e-09
-2.52841e-09
-2.10871e-10
-9.79538e-10
-1.83815e-09
-2.71046e-09
-3.54287e-09
-4.30561e-09
-4.98732e-09
-5.58832e-09
-6.11521e-09
-6.57724e-09
-6.98422e-09
-7.34548e-09
-7.66947e-09
-7.96367e-09
-8.2347e-09
-8.48844e-09
-8.7301e-09
-8.96435e-09
-9.19529e-09
-9.42653e-09
-9.66112e-09
-9.90173e-09
-1.01506e-08
-1.041e-08
-1.06817e-08
-1.09676e-08
-1.12695e-08
-1.15886e-08
-1.19252e-08
-1.22784e-08
-1.26458e-08
-1.3023e-08
-1.34043e-08
-1.37833e-08
-1.4154e-08
-1.45118e-08
-1.48496e-08
-1.51521e-08
-1.53828e-08
-1.55566e-08
-1.58215e-08
-1.60335e-08
-1.61778e-08
-1.62586e-08
-1.62834e-08
-1.62603e-08
-1.61966e-08
-1.60986e-08
-1.59717e-08
-1.58198e-08
-1.56464e-08
-1.54541e-08
-1.52453e-08
-1.50217e-08
-1.4785e-08
-1.45365e-08
-1.42772e-08
-1.4008e-08
-1.37299e-08
-1.34436e-08
-1.31496e-08
-1.28485e-08
-1.2541e-08
-1.22275e-08
-1.19084e-08
-1.15841e-08
-1.12551e-08
-1.09216e-08
-1.0584e-08
-1.02425e-08
-9.89723e-09
-9.54849e-09
-9.1964e-09
-8.84112e-09
-8.4828e-09
-8.12159e-09
-7.75766e-09
-7.39119e-09
-7.02236e-09
-6.65137e-09
-6.27844e-09
-5.90378e-09
-5.52762e-09
-5.15017e-09
-4.77166e-09
-4.39234e-09
-4.01246e-09
-3.63236e-09
-3.25247e-09
-2.87349e-09
-2.49649e-09
-2.12317e-09
-1.75617e-09
-1.39942e-09
-1.05867e-09
-7.42005e-10
-4.60482e-10
-2.28669e-10
-6.56494e-11
)
;
boundaryField
{
leftWall
{
type calculated;
value uniform 0;
}
rightWall
{
type calculated;
value uniform 0;
}
lowerWall
{
type calculated;
value uniform 0;
}
atmosphere
{
type calculated;
value nonuniform List<scalar>
300
(
-1.01234e-09
5.68347e-09
1.50878e-08
2.38945e-08
3.07792e-08
3.55654e-08
3.85977e-08
4.03588e-08
4.12824e-08
4.1691e-08
4.17979e-08
4.17318e-08
4.15656e-08
4.13379e-08
4.1068e-08
4.07655e-08
4.04346e-08
4.00773e-08
3.96947e-08
3.92871e-08
3.8855e-08
3.83985e-08
3.7918e-08
3.74135e-08
3.68854e-08
3.63338e-08
3.5759e-08
3.5161e-08
3.45402e-08
3.38966e-08
3.32304e-08
3.25416e-08
3.18305e-08
3.10969e-08
3.03412e-08
2.95633e-08
2.87635e-08
2.79418e-08
2.70985e-08
2.62339e-08
2.53482e-08
2.44418e-08
2.35151e-08
2.25685e-08
2.16025e-08
2.06175e-08
1.9614e-08
1.85925e-08
1.75534e-08
1.64973e-08
1.54245e-08
1.43355e-08
1.32308e-08
1.21109e-08
1.09765e-08
9.82841e-09
8.66743e-09
7.49461e-09
6.3108e-09
5.11547e-09
3.90223e-09
2.64142e-09
1.2038e-09
-3.12964e-10
-1.63098e-09
-2.84734e-09
-4.13204e-09
-5.46512e-09
-6.8211e-09
-8.18906e-09
-9.56407e-09
-1.09439e-08
-1.23273e-08
-1.37122e-08
-1.50965e-08
-1.64778e-08
-1.78545e-08
-1.9226e-08
-2.05918e-08
-2.19515e-08
-2.33035e-08
-2.46455e-08
-2.59746e-08
-2.72876e-08
-2.85812e-08
-2.98519e-08
-3.10964e-08
-3.23105e-08
-3.34887e-08
-3.46233e-08
-3.57024e-08
-3.67073e-08
-3.7608e-08
-3.83572e-08
-3.88819e-08
-3.90751e-08
-3.87936e-08
-3.78799e-08
-3.62306e-08
-3.39179e-08
-1.59712e-08
-1.53068e-08
-1.46645e-08
-1.40701e-08
-1.35416e-08
-1.30885e-08
-1.27129e-08
-1.24113e-08
-1.21769e-08
-1.2001e-08
-1.18743e-08
-1.1788e-08
-1.17341e-08
-1.17056e-08
-1.16965e-08
-1.17021e-08
-1.17183e-08
-1.1742e-08
-1.17705e-08
-1.18019e-08
-1.18347e-08
-1.18677e-08
-1.19001e-08
-1.19311e-08
-1.19604e-08
-1.19876e-08
-1.20125e-08
-1.20352e-08
-1.20554e-08
-1.20735e-08
-1.20893e-08
-1.2103e-08
-1.21149e-08
-1.21252e-08
-1.2134e-08
-1.21416e-08
-1.21482e-08
-1.21541e-08
-1.21597e-08
-1.21651e-08
-1.21706e-08
-1.21765e-08
-1.2183e-08
-1.21904e-08
-1.21988e-08
-1.22086e-08
-1.22198e-08
-1.22326e-08
-1.22471e-08
-1.22634e-08
-1.22815e-08
-1.23014e-08
-1.23231e-08
-1.23465e-08
-1.23714e-08
-1.23977e-08
-1.24253e-08
-1.24538e-08
-1.24831e-08
-1.25128e-08
-1.25428e-08
-1.25726e-08
-1.26021e-08
-1.26307e-08
-1.26584e-08
-1.26846e-08
-1.27091e-08
-1.27317e-08
-1.27519e-08
-1.27696e-08
-1.27845e-08
-1.27965e-08
-1.28053e-08
-1.28108e-08
-1.2813e-08
-1.2812e-08
-1.28078e-08
-1.28007e-08
-1.27912e-08
-1.27798e-08
-1.27674e-08
-1.2755e-08
-1.27443e-08
-1.27371e-08
-1.27359e-08
-1.2744e-08
-1.27651e-08
-1.28041e-08
-1.28666e-08
-1.29594e-08
-1.30902e-08
-1.32673e-08
-1.34995e-08
-1.37949e-08
-1.416e-08
-1.45982e-08
-1.51076e-08
-1.56791e-08
-1.62961e-08
-1.69335e-08
-3.57611e-08
-3.79763e-08
-3.95563e-08
-4.04348e-08
-4.07102e-08
-4.05313e-08
-4.00341e-08
-3.93213e-08
-3.84637e-08
-3.75073e-08
-3.64812e-08
-3.54037e-08
-3.42861e-08
-3.31356e-08
-3.19572e-08
-3.07546e-08
-2.9531e-08
-2.82894e-08
-2.70327e-08
-2.57633e-08
-2.44835e-08
-2.31945e-08
-2.18972e-08
-2.05917e-08
-1.92778e-08
-1.79559e-08
-1.66269e-08
-1.52931e-08
-1.3958e-08
-1.26259e-08
-1.13017e-08
-9.98964e-09
-8.69191e-09
-7.40801e-09
-6.1339e-09
-4.86439e-09
-3.60223e-09
-2.36166e-09
-1.17272e-09
1.48486e-10
1.49589e-09
2.67017e-09
3.80598e-09
4.92977e-09
6.04437e-09
7.149e-09
8.24242e-09
9.32352e-09
1.03913e-08
1.14447e-08
1.24831e-08
1.35058e-08
1.45121e-08
1.55014e-08
1.64734e-08
1.74275e-08
1.83635e-08
1.9281e-08
2.01797e-08
2.10593e-08
2.19194e-08
2.27599e-08
2.35805e-08
2.43808e-08
2.51607e-08
2.59197e-08
2.66578e-08
2.73745e-08
2.80697e-08
2.8743e-08
2.93944e-08
3.00236e-08
3.06303e-08
3.12144e-08
3.17757e-08
3.23141e-08
3.28293e-08
3.33214e-08
3.37902e-08
3.42354e-08
3.46571e-08
3.50551e-08
3.5429e-08
3.57785e-08
3.61027e-08
3.63996e-08
3.66647e-08
3.68885e-08
3.70515e-08
3.71148e-08
3.70053e-08
3.65943e-08
3.56695e-08
3.39123e-08
3.08991e-08
2.61711e-08
1.94372e-08
1.09898e-08
2.39743e-09
-2.59406e-09
)
;
}
defaultFaces
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
| [
"[email protected]"
] | ||
3e006ebd412dbda6c683669cf369878e926f6d46 | 1d11407d804c9d13204dfaa230a3871b9be03149 | /codeforces/388A.cpp | 14c8cb61487280c32ed112bc8d87cf24a078de60 | [] | no_license | redcpp/Competitive-Programming | c0e24b10bccc4d7697cb8e9825d998c6f1d6c4e8 | 02163fb875978d88bd7368b8a54ecede449c5b3c | refs/heads/master | 2021-09-28T08:27:00.891026 | 2018-11-16T05:06:40 | 2018-11-16T05:06:40 | 70,440,172 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,236 | cpp | #include <bits/stdc++.h>
#define fi first
#define se second
#define sz(a) (int)(a).size()
#define all(a) (a).begin(), (a).end()
#define deb(x) cout << #x << " = " << x << endl
#define forn(i, n) for (int i = 0; i < (int)(n); ++i)
#define for1(i, n) for (int i = 1; i <= (int)(n); ++i)
#define fore(i, l, r) for (int i = (int)(l); i <= (int)(r); ++i)
#define ford(i, n) for (int i = (int)(n) -1; i >= 0; --i)
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
int main (void) {
ios::sync_with_stdio(false);
cin.tie(0);
cout.precision(10);
cout << fixed;
int n;
while (cin >> n) {
vector<int> arr(n);
forn(i, n) cin >> arr[i];
sort(all(arr));
function<bool(int)> solves = [&](int k) {
int cur = 0;
int h = 0;
while (cur < n) {
if (arr[cur++] < h)
return false;
if (cur % k == 0) {
++h;
}
}
return true;
};
int ans = 100;
for1(i, 100) {
if (solves(i)) {
ans = i;
break;
}
}
cout << ans << '\n';
}
return 0;
}
| [
"[email protected]"
] | |
389d9c4839ef71e9ecba8bd8af7317b1ec508828 | 4b4395526112b8f83a2e16f3a26d7ce2200277ca | /7_22/Test/Unit_Test9.cpp | 00e0fb13b15e886d803893ac1772d02c9be8bd9a | [] | no_license | Somuns-Yjx/AlgorithmViaLeetCode | aa72da0d80a59c8d9cdbae9be51cfd6911f858f3 | bc516ac10e3c2de255fd3c151c0e6724faffffe5 | refs/heads/master | 2023-02-22T17:46:03.864212 | 2021-01-27T01:13:55 | 2021-01-27T01:13:55 | 333,263,905 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,625 | cpp | #include "stdafx.h"
#include "CppUnitTest.h"
/***9***/
#include "../Qes/AddBinary.h"
#include "./Unit_Test9.h"
//using namespace std;
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
void UnitTest9()
{
LPTSTR theIniPath = new char[Path_Length]; // 定义路径
strcpy(theIniPath, "../Test_Ini/AddBinary.ini");
int Total_Num = GetPrivateProfileInt("Number", "number", 0, theIniPath); // ini 里面的样例个数
for (int Exp_Num = 1; Exp_Num <= Total_Num; Exp_Num++)
{
// 解析 Example + 编号
char Exp_Index[Exp_Index_Length];
itoa(Exp_Num, Exp_Index, 10);//整型转换成字符串,第一参数是整型数,第三参数是由几进制转换
char Exp_Str[Exp_Str_Length] = { "Example" }; // Exp_Str = Example + 索引
strcat(Exp_Str, Exp_Index);//将第二个字符串追加到第一个字符串末尾,第二个字符串值不变,第一个变长。
LPTSTR Input1 = new char[Unit9_Input_Len];
GetPrivateProfileString(Exp_Str, "Input1", "", Input1, Unit9_Input_Len, theIniPath);
LPTSTR Input2 = new char[Unit9_Input_Len];
GetPrivateProfileString(Exp_Str, "Input2", "", Input2, Unit9_Input_Len, theIniPath);
// 读取Output
LPTSTR Output = new char[Unit9_Output_Len];
GetPrivateProfileString(Exp_Str, "Output", "", Output, Unit9_Output_Len, theIniPath);
string InputA = Input1;
string InputB = Input2;
/*输出判断*/
string Expect = Output; //期望(字符串匹配)
string Final = AddBinary(InputA,InputB);
Assert::AreEqual(Expect, Final);
delete[] Input1;
delete[] Input2;
delete[] Output;
}
delete[] theIniPath;
}
| [
"[email protected]"
] | |
71888621a1ad89034b71d4e511630e41f45413fd | 53bf2e4695fc6c485e266539d36273e4f5552b2c | /EX1/fileParsing.cpp | 8497af25ea90986df0576b50f9a193e6a65aef62 | [] | no_license | boonkey/AdvanceProgramming | c0f905e4242e651426aa4bb839eeb9700ac5a6e1 | 2f94f6bf8295f2794ad55a205152b6ffc2f228d6 | refs/heads/master | 2021-01-18T23:20:09.724573 | 2017-05-29T18:01:56 | 2017-05-29T18:01:56 | 87,102,191 | 0 | 0 | null | 2017-04-17T21:53:32 | 2017-04-03T17:35:39 | C++ | UTF-8 | C++ | false | false | 827 | cpp | #include "fileParsing.h"
pair<vector<pair<int, int>>, int> parseAttackFile(string filename) {
vector<pair<int, int>> results;
string line;
smatch m;
int numCounter = 0;
//cout << "loading file: " << filename << endl;
ifstream myfile(filename);
regex exp("\\s*(\\d*)\\s*,\\s*(\\d*)");
if (myfile.is_open()) {
while (getline(myfile, line)) {
if (regex_search(line, m, exp)) {
if (m.size() == 3) {
pair<int,int> temp = make_pair(atoi(m[1].str().c_str()), atoi(m[2].str().c_str()));
results.insert(results.end(),1,temp);
}
}
}
myfile.close();
cout << "File loaded Successfully " << filename << endl;
cout << "results size: " << results.size() << endl;
return make_pair(results, 0);
} else {
cout << "Error: Unable to open file" << endl;
return make_pair(results, -1);
}
}
| [
"[email protected]"
] | |
5a77f127fc2672ba5be0d19fc0ab23a1ad746c2d | 4c7c50889ff34f6f6376f3b8c24a835fedab7c8a | /atcoder/abc151_c.cpp | 28da75959dcf1c37ef7d5fb8c3fc2348645ed82a | [] | no_license | kojingharang/algorithm_contest | 590d4f2854a1bbed7d70ed16276bcc5e800b57a7 | 3578334ab590671d8cd9f8d97db6ceb3d7a5d3dc | refs/heads/master | 2021-01-16T23:11:50.808394 | 2020-08-19T03:45:36 | 2020-08-19T03:45:36 | 61,990,571 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,995 | cpp | #include <vector>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <numeric>
#include <sstream>
#include <iostream>
#include <iomanip>
#define _USE_MATH_DEFINES
#include <cmath>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <cfloat>
#include <cmath>
#include <ctime>
#include <cassert>
#include <cctype>
#include <cstdio>
#include <cassert>
using namespace std;
#define EPS 1e-12
#define ull unsigned long long
#define ll long long
#define VI vector<ll>
#define PII pair<ll, ll>
#define VVI vector<vector<ll> >
#define VVVI vector<vector<vector<ll>>>
#define VVVVI vector<vector<vector<vector<ll>>>>
#define REP(i,n) for(ll i=0,_n=(n);(i)<(ll)_n;++i)
#define REPR(i,n) for(ll i=(ll)(n)-1;0<=(i);--i)
#define RANGE(i,a,b) for(ll i=(ll)a,_b=(ll)(b);(i)<_b;++i)
#define RANGER(i,a,b) for(ll i=(ll)(b)-1,_a=(ll)(a);(_a)<=i;--i)
#define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();++i)
#define ALL(c) (c).begin(), (c).end()
#define ALLR(c) (c).rbegin(), (c).rend()
#define PB push_back
#define MP(a, b) make_pair(a, b)
#define POPCOUNT __builtin_popcount
#define POPCOUNTLL __builtin_popcountll
#define CLEAR(table, v) memset(table, v, sizeof(table));
#define UNIFORM_DOUBLE(a, b) (((b-a)*(double)rand()/RAND_MAX)+a) // [a, b)
#define UNIFORM_LL(a, b) (ll)UNIFORM_DOUBLE(a, b) // [a, b)
#define IN(v, lo, hi) ((lo)<=(v) && (v)<(hi))
#define DD(v) cout<<#v<<": "<<v<<endl
#define FI first
#define SE second
template <typename T0, typename T1> std::ostream& operator<<(std::ostream& os, const map<T0, T1>& v) { for( typename map<T0, T1>::const_iterator p = v.begin(); p!=v.end(); p++ ){os << p->first << ": " << p->second << " ";} return os; }
template <typename T0, typename T1> std::ostream& operator<<(std::ostream& os, const pair<T0, T1>& v) { os << v.first << ": " << v.second << " "; return os; }
template <typename T> std::ostream& operator<<(std::ostream& os, const vector<T>& v) { for( int i = 0; i < (int)v.size(); i++ ) { os << v[i] << " "; } return os; }
template <typename T> std::ostream& operator<<(std::ostream& os, const set<T>& v) { vector<T> tmp(v.begin(), v.end()); os << tmp; return os; }
template <typename T> std::ostream& operator<<(std::ostream& os, const deque<T>& v) { vector<T> tmp(v.begin(), v.end()); os << tmp; return os; }
template <typename T> std::ostream& operator<<(std::ostream& os, const vector<vector<T> >& v) { for( int i = 0; i < (int)v.size(); i++ ) { os << v[i] << endl; } return os; }
template<typename T>void maxUpdate(T& a, T b) {a = max(a, b);}
template<typename T>void minUpdate(T& a, T b) {a = min(a, b);}
#define MOD 1000000007LL
#define INF (1LL<<60)
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
ll N,M,P;
string S;
while(cin>>N>>M) {
VI ac(N);
VI wa(N);
ll a=0, pe=0;
REP(i, M) {
cin>>P>>S;
P--;
if(S=="AC" && !ac[P]) {
ac[P]++;
a++;
pe+=wa[P];
}
if(S=="WA") {
wa[P]++;
}
}
cout<<a<<" "<<pe<<endl;
}
return 0;
}
| [
"[email protected]"
] | |
a4ec05d38870e040ca532eb6d734ea8c7c947484 | 9fad4848e43f4487730185e4f50e05a044f865ab | /src/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest_chromeos.cc | dc9c48ede9bad00959004409156dc70f726883fc | [
"BSD-3-Clause"
] | permissive | dummas2008/chromium | d1b30da64f0630823cb97f58ec82825998dbb93e | 82d2e84ce3ed8a00dc26c948219192c3229dfdaa | refs/heads/master | 2020-12-31T07:18:45.026190 | 2016-04-14T03:17:45 | 2016-04-14T03:17:45 | 56,194,439 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,032 | cc | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include "chrome/browser/apps/app_browsertest_util.h"
#include "chrome/browser/chromeos/app_mode/kiosk_app_manager.h"
#include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h"
#include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h"
#include "chrome/browser/chromeos/ownership/fake_owner_settings_service.h"
#include "chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.h"
#include "chrome/browser/extensions/extension_apitest.h"
#include "components/signin/core/account_id/account_id.h"
#include "content/public/test/browser_test.h"
#include "extensions/common/switches.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace {
const std::string kTestingAppId = "pjdjhejcdkeebjehnokfbfnjmgmgdjlc";
} // namespace
namespace extensions {
namespace {
// This class contains chrome.bluetoothLowEnergy API tests.
class BluetoothLowEnergyApiTestChromeOs : public PlatformAppBrowserTest {
public:
BluetoothLowEnergyApiTestChromeOs()
: fake_user_manager_(nullptr), settings_helper_(false) {}
~BluetoothLowEnergyApiTestChromeOs() override {}
void SetUpOnMainThread() override {
PlatformAppBrowserTest::SetUpOnMainThread();
settings_helper_.ReplaceProvider(
chromeos::kAccountsPrefDeviceLocalAccounts);
owner_settings_service_ =
settings_helper_.CreateOwnerSettingsService(browser()->profile());
}
void TearDownOnMainThread() override {
PlatformAppBrowserTest::TearDownOnMainThread();
settings_helper_.RestoreProvider();
user_manager_enabler_.reset();
fake_user_manager_ = nullptr;
}
protected:
chromeos::FakeChromeUserManager* fake_user_manager_;
std::unique_ptr<chromeos::ScopedUserManagerEnabler> user_manager_enabler_;
chromeos::ScopedCrosSettingsTestHelper settings_helper_;
std::unique_ptr<chromeos::FakeOwnerSettingsService> owner_settings_service_;
void EnterKioskSession() {
fake_user_manager_ = new chromeos::FakeChromeUserManager();
user_manager_enabler_.reset(
new chromeos::ScopedUserManagerEnabler(fake_user_manager_));
const AccountId kiosk_account_id(
AccountId::FromUserEmail("[email protected]"));
fake_user_manager_->AddKioskAppUser(kiosk_account_id);
fake_user_manager_->LoginUser(kiosk_account_id);
}
void SetAutoLaunchApp() {
manager()->AddApp(kTestingAppId, owner_settings_service_.get());
manager()->SetAutoLaunchApp(kTestingAppId, owner_settings_service_.get());
manager()->SetAppWasAutoLaunchedWithZeroDelay(kTestingAppId);
}
chromeos::KioskAppManager* manager() const {
return chromeos::KioskAppManager::Get();
}
};
IN_PROC_BROWSER_TEST_F(BluetoothLowEnergyApiTestChromeOs,
RegisterAdvertisement_Flag) {
base::CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kEnableBLEAdvertising);
ASSERT_TRUE(RunPlatformAppTest(
"api_test/bluetooth_low_energy/register_advertisement_flag"))
<< message_;
}
IN_PROC_BROWSER_TEST_F(BluetoothLowEnergyApiTestChromeOs,
RegisterAdvertisement_NotKioskSession) {
ASSERT_TRUE(RunPlatformAppTest(
"api_test/bluetooth_low_energy/register_advertisement_no_kiosk_mode"))
<< message_;
}
IN_PROC_BROWSER_TEST_F(BluetoothLowEnergyApiTestChromeOs,
RegisterAdvertisement_KioskSessionOnly) {
EnterKioskSession();
ASSERT_TRUE(
RunPlatformAppTest("api_test/bluetooth_low_energy/"
"register_advertisement_kiosk_session_only"))
<< message_;
}
IN_PROC_BROWSER_TEST_F(BluetoothLowEnergyApiTestChromeOs,
RegisterAdvertisement) {
EnterKioskSession();
SetAutoLaunchApp();
ASSERT_TRUE(RunPlatformAppTest(
"api_test/bluetooth_low_energy/register_advertisement"))
<< message_;
}
} // namespace
} // namespace extensions
| [
"[email protected]"
] | |
ca7b55eb7b8d8841983683386779a7b2a5d756dd | 307e094d52f14a930c56bc2b629881d51647c676 | /src/libpolycrypto/libpolycrypto/src/KateDkg.cpp | a44f72c96997ea918a2d9abe71610fe3ca5dd5be | [] | no_license | tyurek/libpolycrypto-docker | f7ca3be921d2383bf86dfab060d8781a9fa02fdc | d4e61020b699936ed1483601f1d7eb5c91341a8e | refs/heads/master | 2021-02-14T03:33:56.550740 | 2020-04-06T21:15:51 | 2020-04-06T21:15:51 | 244,763,536 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 92 | cpp | #include <polycrypto/Configuration.h>
#include <polycrypto/KateDkg.h>
namespace Dkg {
}
| [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.